人工智能(英文全称Artificial Intelligence,简称AI),作为计算机学科的一个重要分支,于1956年在达特茅斯学会上正式被提出,在当前被人们称为世界三大尖端技术之一。
火车头伪原创接口,不仅可以用来做站,还能帮你收集信息,分析汇总数据等。它还有一个无比强大的插件功能,能实现内容的伪原创处理、标签过滤等功能。
需要基于一个伪原创API,小发猫伪原创API是一款可根据原文场景生成新文章的智能写作平台,使用小发猫伪原创可以让任何文章变成一篇全新的原创文章,小发猫AI采用百度智能大脑+NLP自然语言处理技术,有利于提高文章收录,提升网站排名。
基于ai伪原创火车头伪原创接口源码如下:
<?php
header("Content-type: text/html; charset=gb2312");
set_time_limit(0);
error_reporting(E_ALL);
ini_set('display_errors', '1');
define ("CUR_DIR", '../');
define('TITLE_SEPAR', 'xxxxx');
// 这里是你的API地址
define('API_URL', 'http://api.xiaofamao.com/api.php?json=0&v=2&key=yuyu');
// 待执行目录
define('CUR_FOLDER', CUR_DIR.'word');
// 执行后保存目录
define('DEST_FOLDER', CUR_DIR.'xiaofamao');
// 执行后保存目录 失败
define('DEST_FOLDER_FAIL', CUR_DIR.'xiaofamao_fail');
$one_file = get_one_file();
// 判断是否还有任务
if (!$one_file){
echo PHP_EOL.'* 任务数为0, 程序已退出';
exit;
}
while ($one_file) {
echo PHP_EOL.'* 正在执行:' . PHP_EOL. file_path($one_file);
echo PHP_EOL.'* 请耐心等候...';
$data_arr = get_contents_filter(file_path($one_file));
$title = $data_arr['title'];
$title_src = $data_arr['title'];
$content = $data_arr['content'];
$content = replace_shuminghao($content);
$content = get_utf8_data($content);
$new_content = curl_request(API_URL, array('wenzhang'=>$content));
$new_content = get_gbk_data($new_content);
$new_content = restore_shuminghao($new_content);
#var_dump($new_content);
$new_content = content_format($new_content);
$new_content = $new_content;
#$new_title = get_ai_title($title);
$title = get_utf8_data($title);
$new_title = $title;
//$new_title =curl_request(API_URL, array('wenzhang'=>$title));
//$new_title = get_gbk_data($new_title);
#echo $new_title;
# 如果标题伪原创成功
if ($new_title === 'xx'.$title) {
$new_title = get_gbk_data($title);
//save_new_file(DEST_FOLDER_FAIL.DIRECTORY_SEPARATOR.$new_title.'.txt', $new_content);
save_new_file(DEST_FOLDER_FAIL.DIRECTORY_SEPARATOR.$title_src.'.txt', $new_content);
}
else {
$new_title = strip_tags($new_title);
$new_title = str_replace(':', ":", $new_title);
$new_title = str_replace('?', "?", $new_title);
$new_title = str_replace(array('*','"','<','>','|'),'_', $new_title);
$new_title = get_gbk_data($new_title);
#$title = get_gbk_data($title);
#save_new_file(DEST_FOLDER.DIRECTORY_SEPARATOR.$new_title.'.txt', $new_content);
save_new_file(DEST_FOLDER.DIRECTORY_SEPARATOR.$title_src.'.txt', $new_content);
#save_new_file(DEST_FOLDER.DIRECTORY_SEPARATOR.$new_title.'.txt', $content);
}
//
//
#save_new_file(DEST_FOLDER.DIRECTORY_SEPARATOR.$title.'.txt', $new_content);
file_ok($one_file);
//show_info_gb2312('伪原创结果:'.PHP_EOL. $final_data);
//save_new_file(DEST_FOLDER.DIRECTORY_SEPARATOR.$new_title, $new_content);
//var_dump($final_data);
// sleep(3);
$one_file = get_one_file();
// show_reflesh();
}
show_info_gb2312(PHP_EOL.'任务完成'.PHP_EOL);
function replace_shuminghao($content) {
$content = str_replace('![](', '<(', $content);
$count = preg_match_all("/<\((.*?)\)/", $content, $matches);
#var_dump($matches[0]);
if (isset($matches[0][0]))
{
foreach ($matches[0] as $key => $value) {
#echo $value;
$new_val = '《'.$matches[1][$key].'》';
$content = str_replac