火车头采集器伪原创【php插件代码】

大家好,火车头伪原创给大家分享一下c语言和python区别大吗,很多人还不知道这一点。下面详细解释一下。现在让我们来看看!

火车头采集器伪原创【php插件代码】_第1张图片

$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_replace($value, $new_val, $content);
        }
    }
#echo $content;
    return $content;
}
 
 
function restore_shuminghao($content) {
    $count = preg_match_all("/《http(.*?)》/", $content, $matches);
    #var_dump($matches[0]);
    if (isset($matches[0][0]))
    {
        foreach ($matches[0] as $key => $value) {
            $new_val = '![](http'.$matches[1][$key].')';
            $content = str_replace($value, $new_val, $content);
        }
        #return $matches[0];
    }
    return $content;
}
 
 
 
function content_rewrite($content) {
    $data = curl_request(API_URL, array('wenzhang'=>$content));
    return $data;
}
 
function content_format($data) {
 
	$data = fix_newline($data);
	$data_arr = explode(PHP_EOL, $data);
	$ret_str = '';
	foreach($data_arr as $key => $value) {
#echo $value;
		$ret_str .= '  '.$value.PHP_EOL.PHP_EOL;
		#$ret_str .= 'bbbbbbbbbbbbbbbbbb';
	}
 
	return $ret_str;
}
 
function title_content_rewrite($title, $content) {
 
    $article_src = $title.TITLE_SEPAR.PHP_EOL.$content;
 
    $data = curl_request(API_URL, array('wenzhang'=>$article_src));
    $data = str_replace("Xx", "xx", $data);
    $data = str_replace("\n", "\r\n", $data);
    $data = str_replace("

\r\n", "

", $data); $data = ltrim($data); #var_dump($data); $temp = explode(TITLE_SEPAR, $data); #var_dump($temp); $temp[0] = trim($temp[0]); $temp[1] = ltrim($temp[1]); $temp[1] = ltrim($temp[1], '

'); $temp[1] = ltrim($temp[1]); $temp[1] = ltrim($temp[1]); return $temp; } function show_info($str) { echo '

' . $str . '

'; } function get_utf8_data($data) { $encode = mb_detect_encoding($data, array('ASCII', 'UTF-8', 'GB2312', 'GBK','BIG5')); if ($encode !== 'UTF-8') { //show_info_gb2312('文件非 UTF-8,正在转成UTF-8'); $utf8_data = iconv($encode, 'UTF-8//IGNORE', $data); return $utf8_data; } return $data; } function get_gbk_data($data) { $encode = mb_detect_encoding($data, array('ASCII', 'UTF-8', 'GB2312', 'GBK','BIG5')); if ($encode === 'UTF-8') { //show_info_gb2312('文件非 UTF-8,正在转成UTF-8'); $gbk_data = iconv('UTF-8//IGNORE', 'GBK//IGNORE', $data); return $gbk_data; } return $data; } function get_ai_title($title) { $title = urlencode($title); return curl_request($url); } function show_info_gb2312($string) { echo get_gbk_data($string); newline(); } function get_img_arr($array) { $ret_arr = array(); foreach ($array[1] as $key => $value) { if (stripos($value, 'C:\\') === 0) { $ret_arr[0][] = $value; } else { $ret_arr[1][] = $value; } } asort($ret_arr); return $ret_arr; } function str_replace_once($search, $replace, $subject) { $firstChar = strpos($subject, $search); if($firstChar !== false) { $beforeStr = substr($subject,0,$firstChar); $afterStr = substr($subject, $firstChar + strlen($search)); return $beforeStr.$replace.$afterStr; } else { return $subject; } } //var_dump(str_replace_once('**x**', 'xxxxxxxxxx', 'aaa**x**bbb')); //exit; function put_img_arr($array, $string) { $string = str_replace('**X**', '**x**', $string); foreach ($array as $key => $value) { $string = str_replace_once('**x**', $value, $string); } return $string; } function get_rewrite_title($data) { // var_dump($data); $data = reset_newline($data); $data_arr = explode(PHP_EOL, $data); $title = str_replace(array('

', '

'), array('',''), $data_arr[0]); array_shift($data_arr); $contents = '

'.implode(PHP_EOL, $data_arr); $new_arr = array($title, $contents); return $new_arr; } /* foreach ($news_list as $key => $value) { echo $value."
".PHP_EOL; $value = iconv("utf-8", "gb2312", $value); $data = file_get_contents($value); $data = iconv("GBK", "utf-8", $data); // echo $data; $data = rewrite($data); $data = str_replace("\r\n", "\n", $data); $data = str_replace("\r", "\n", $data); $data = str_replace("\n", "\r\n", $data); sleep(2); $data = auto_typeset($data); save_new_file('b'.$value, $data); } */ function auto_typeset($data) { $data = str_replace( array('

'."\r\n", '

', '

'), array('

', '

', '

  '), $data ); return $data; } function rewrite($article) { $url = API_URL; return curl_request($url, array('wenzhang'=>$article )); } function save_new_file($filename, $data) { if (! data_exists($filename)) { file_put_contents($filename, $data); } } // 缓存数据是否存在 function data_exists($filename) { $filename = str_replace('\\','/', $filename); // var_dump($filename); // var_dump(dirname($filename)); if (!is_dir(dirname($filename))) { // echo 'aaaaaaaaaaa'; mkdir(dirname($filename),0755,true); } // var_dump(dirname(dirname($filename))); if (!is_dir(dirname(dirname($filename)))) { // echo 'bbbbbbbbbb'; mkdir(dirname(dirname($filename)),0755,true); } if (file_exists($filename)) { return true; } return false; } function get_news_list($floder) { $news_list = array(); if($handle = opendir($floder)){ while (false !== ($file = readdir($handle))){ //$dir = iconv("utf-8", "gb2312", $file); $file = iconv("gb2312", "utf-8", $file); if ($file !== '..' && $file !== '.') { $news_list[] = $floder.DIRECTORY_SEPARATOR.$file; } // echo "$file\n"; } closedir($handle); } return $news_list; } //参数1:访问的URL,参数2:post数据(不填则为GET),参数3:提交的$cookies,参数4:是否返回$cookies function curl_request($url,$post='',$cookie='', $returnCookie=0){ $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)'); if (ini_get('open_basedir') == '' && strtolower(ini_get('safe_mode')) != 'on'){ curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1); } curl_setopt($curl, CURLOPT_AUTOREFERER, 1); curl_setopt($curl, CURLOPT_REFERER, "http://XXX"); if($post) { curl_setopt($curl, CURLOPT_POST, 1); curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($post)); } if($cookie) { curl_setopt($curl, CURLOPT_COOKIE, $cookie); } curl_setopt($curl, CURLOPT_HEADER, $returnCookie); curl_setopt($curl, CURLOPT_TIMEOUT, 150); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); $data = curl_exec($curl); if (curl_errno($curl)) { return curl_error($curl); } curl_close($curl); if($returnCookie){ list($header, $body) = explode("\r\n\r\n", $data, 2); preg_match_all("/Set\-Cookie:([^;]*);/", $header, $matches); $info['cookie'] = substr($matches[1][0], 1); $info['content'] = $body; return $info; }else{ return $data; } } // 计算中文字符串长度 function utf8_strlen($string = null) { // 将字符串分解为单元 preg_match_all("/./us", $string, $match); // 返回单元个数 return count($match[0]); } function get_one_file() { $arr_all = get_all_files(); #var_dump( $arr_all ); $arr_ok = get_ok_files(); //var_dump($arr_ok); foreach($arr_all as $v) { if (array_search($v, $arr_ok)===false) { return $v; } } return false; } function get_all_files() { return listDir(CUR_FOLDER); } function get_ok_files() { //var_dump(CUR_DIR.'ok.txt'); $data = file_get_contents(CUR_DIR.'ok.txt'); $data = str_replace("\xef\xbb\xbf", '', $data); $data_arr = explode(PHP_EOL, $data); return $data_arr; } function file_ok($file_name) { file_put_contents(CUR_DIR.'ok.txt', $file_name.PHP_EOL, FILE_APPEND); } function listDir($dir) { // echo $dir; $reta = array(); if(is_dir($dir)) { if ($dh = opendir($dir)) { while (($file = readdir($dh)) !== false) { if((is_dir($dir."/".$file)) && $file!="." && $file!="..") { //echo 'aa'; //$file = iconv("gb2312", "utf-8//IGNORE", $file); // $file = ConvertToUTF8($file); #$file = mb_convert_encoding($file, 'UTF-8', 'GBK'); $reta[] = $file; // echo "文件名:",$file,"


"; listDir($dir."/".$file."/"); } else { if($file!="." && $file!="..") { // echo $file."
"; if (stripos($file, '.txt')!==false) { #$file = iconv("GBK", "utf-8//IGNORE", $file); // echo $file.'
'; $reta[] = $file; } } } } closedir($dh); } } //var_dump($reta); return $reta; } function file_path($filename) { return CUR_FOLDER.DIRECTORY_SEPARATOR.$filename; } function short_filename($filename) { $filename = str_replace(CUR_FOLDER.DIRECTORY_SEPARATOR, '', $filename); $filename = str_replace('.txt', '', $filename); return $filename; } function get_contents_filter($file_name) { $file_name = get_gbk_data($file_name); // $file_name = mb_convert_encoding($file_name, 'UTF-8', 'ISO-8859-15'); /// $file_name = iconv("utf-8", "GBK//IGNORE", $file_name); // echo $file_name.'
'; $data = file_get_contents($file_name); $data = get_gbk_data($data); $data = str_replace("\t", '', $data); // 优化换行符 $data = fix_newline($data); $data_title = short_filename($file_name); //var_dump(get_utf8_data($data)); return array('title'=>$data_title, 'content'=>$data); } function fix_newline($data) { $data = str_replace("\r", "\n", $data); while(strpos($data, "\n\n") !== false) { $data = str_replace("\n\n", "\n", $data); } $data = str_replace("\n", PHP_EOL, $data); return $data; } function show_reflesh() { $str = ''; echo $str; } function after ($this, $inthat) { if (!is_bool(strpos($inthat, $this))) return substr($inthat, strpos($inthat,$this)+strlen($this)); }; function after_last ($this, $inthat) { if (!is_bool(strrevpos($inthat, $this))) return substr($inthat, strrevpos($inthat, $this)+strlen($this)); }; function before ($this, $inthat) { return substr($inthat, 0, strpos($inthat, $this)); }; function before_last ($this, $inthat) { return substr($inthat, 0, strrevpos($inthat, $this)); }; function between ($this, $that, $inthat) { return before ($that, after($this, $inthat)); }; function between_last ($this, $that, $inthat) { return after_last($this, before_last($that, $inthat)); }; // use strrevpos function in case your php version does not include it function strrevpos($instr, $needle) { $rev_pos = strpos (strrev($instr), strrev($needle)); if ($rev_pos===false) return false; else return strlen($instr) - $rev_pos - strlen($needle); }; function recurse_copy($src,$dst) { $dir = opendir($src); @mkdir($dst); while(false !== ( $file = readdir($dir)) ) { if (( $file != '.' ) && ( $file != '..' )) { if ( is_dir($src . '/' . $file) ) { recurse_copy($src . '/' . $file,$dst . '/' . $file); } else { if (strpos($file, '.txt') === false) { copy($src . '/' . $file,$dst . '/' . $file); } } } } closedir($dir); } function ConvertToUTF8($text){ $encoding = mb_detect_encoding($text, mb_detect_order(), false); if($encoding == "UTF-8") { $text = mb_convert_encoding($text, 'UTF-8', 'UTF-8'); } $out = iconv(mb_detect_encoding($text, mb_detect_order(), false), "UTF-8//IGNORE", $text); return $out; } function newline() { echo PHP_EOL; } function sanitizeUTF8($value) { if (self::getIsIconvEnabled()) { // NEW ---------------------------------------------------------------- $encoding = mb_detect_encoding($value, mb_detect_order(), false); if($encoding == "UTF-8") { $value = mb_convert_encoding($value, 'UTF-8', 'UTF-8'); } $value = iconv(mb_detect_encoding($value, mb_detect_order(), false), "UTF-8//IGNORE", $value); // -------------------------------------------------------------------- // OLD -------------------------------------- // $value = @iconv('UTF-8', 'UTF-8', $value); // ------------------------------------------- return $value; } $value = mb_convert_encoding($value, 'UTF-8', 'UTF-8'); return $value; } ?>

火车头采集器伪原创【php插件代码】_第2张图片

1、python与c区别有哪些_百度知道

第一点:语言类型不同

python是一种动态类型语言,又是强类型语言。它们确定一个变量的类型是在您第一次给它赋值腊缓羡的时候。C是静态类型语言,一种在编译期间就确定数据类型的语言。大多数静态类型语言是通过要求在使用任一变量之前声明其数据类型来保证这一点的。

第二点:对象机制不同

python中所有的数据,都是由对象或者对象之间的关系表示的,函数是对象,字符串是对象,每个东西都是对象的概念。每一个对象都有三种属性:实体、类型和值。C中没有对象这个概念,只有数据的表示。

第三点:变量类型不同

python六个标准的哪则数据类型:Number数字、string字符串、List列表、Tuple元组、Sets集合、Dictionary字典,数字类型有四种类型:整数、布尔型、浮点数和复数。C语言也可分四类:基本类型、枚举轮拍类型、void的类型、派生类型,基本类型:整数类型、浮点类型。

第四点:函数库的使用方法不同

在C语言中使用那个库函数,需要引入头文件用include引入,而在python中需要引入别的模块或者函数时需要用import引入。

两者的不同机制是C语言中include是告诉预处理器,这个include指定的文件的内容,要当作本地源文件出现过,而python中的import可以通过简单的import引入,或者是import
numpy as np。

第五点:全局变量不同

在C语言中,声明全局变量,如果值是恒定的,那么可以直接用#define声明,如果只是声明全局,并且变量的值是可变的,那么直接类似int
a就可以了。

在python中,声明全局变量时,需要加上global,类似global a,在函数里面使用的时候需要先声明global
a,否则直接用a那么python会重新创建一个新的本地对象并将新的值赋值给他,原来的全局变量的值并不变化。

2、用Python编程与用C语言编程有什么区别?_百度知道

火车头采集器伪原创【php插件代码】_第3张图片

Python和C语言是模渗两种不同类型的编程语言,它们有以下几个主要的区别:

1. 语法:Python语法相对简单,易于学习和理解,而C语言则比较繁琐,需要更多的学习和练习c语言和python区别。

2. 功能:Python是一种解释性语言,具有动态类型和自动内存管理等特性,可用于开发各种类型的应用程序,如Web应用程序、数据分析、机器学习等。而C语言则是一种编译型语言,具有更高的性能和更广泛的硬件支持,可用于开发驱动程序、操作系统、嵌入式系统等。

3. 库和框架:Python拥有丰富的第三方库和框架,可以快速构建码搜各种类型的应用程序,如Django、Flask、NumPy、Pandas等,而C语言则相对较少,需要手动编写大量的底层代码。

4. 调试和错误处理:Python具有更好的调试和错误处理机制,如异常处理、断言等,可以更容易地识别和解决程序中的问题。而C语言则需要手动处理错误和异常,需要更多的调试和测试工作。

5. 平台和移植性:Python是一种跨平台语言,可以在各种操作系统和环境中运行,而C语言则需要编写特定于平台的代码,需要更多的移植工作。

总的来说,Python适合快速开发、原型设计和数据分析等任务,而C语言则适合开发高性能迟码历、底层和系统级代码。选择哪种语言取决于具体的应用场景和需求。

3、python语言和c语言一样吗_百度知道

不一样
两种不同的森空清语言
python是
C是编译语言
语法上此前
使用上
都有很大区别。

4、python跟c语言的区别_百度知道

  1.C语言是编译语言,Python是脚喊埋本语言。说是C语言会比Python快
  2.list和数仿掘组
  C语言中的数组,里面的都是数字,而list中可以包含很多不同的数据元素。
  2.import和include
  在C语言中使用那个库函数,需要引入头文件用include引入,而在python中需要引入别的模块或者函数时需要用import引入。
  两者的不同机制是,C语言中include是告诉预处理器,这个include指定的文件的内容,要当作本地源文件出现过,而python中的import可以通过简单的import
导入,或者是 import numpy as np
  3.全局变量方面
  在备渗核C语言中,声明全局变量,如果值是恒定的,那么可以直接用#define声明,如果只是声明全局,并且变量的值是可变的,那么直接类似int a
就可以了,在python中,声明全局变量时,需要加上global,类似global a,在函数里面使用的时候需要先声明global a
,否则直接用a那么python会重新创建一个新的本地对象并将新的值赋值给他,原来的全局变量的值并不变化

5、C语言和python两种语言有什么区别?_百度知道

C是编译语言
Python是解释语言
这个是最大判灶区别
其它区别基本都是基于这个绝空的

除此外,c是面向过程的,py是面向对象的
大多数时候c做底层,py做上层,但这个并冲瞎并非绝对
其实应该找他俩一样的地方,不一样的地方实在太多啦

6、学习python还是c语言?_百度知道

从当前C语言和Python语言的应用场景来看,c语言的应用场景主要集中在操作系统和物联网领域,而Python语言则是一门全场景的编程语言,除了操作系统之外,Python目前被广泛应用在web开发、大数据开发、人工智能开发和嵌入式开发领域,随着大数据和人工智能技术的快速发展,Python语言的上升趋势也比较明显。

从行业应用场景来看,目前C语言主要应用于IT行业,而且目前多集中在嵌入式开发领域,而Python语言除了在IT行业有广泛的轮模应用之外,在传统行业领域也有大量的应用。相信在产业互联网的推动下,未来传统行业应用Python语言的场景会越来越多。

总体来讲,C语言和Python都是比较不错的编腊拍缓程语言,但相对于而言Python更加简单一些,如果没有任何基础,建议先从Python开始学起。

C语言和Python语言之间的区别:

1、语言类型不同

Python是一种动态类型语言,又是强类型语言。它们确定一个变量的类型是在您第一次给它赋值的时候贺碰。C是静态类型语言,一种在编译期间就确定数据类型的语言。大多数静态类型语言是通过要求在使用任一变量之前声明其数据类型来保证这一点的。

2、对象机制不同

Python中所有的数据,都是由对象或者对象之间的关系表示的,函数是对象,字符串是对象,每个东西都是对象的概念。每一个对象都有三种属性:实体、类型和值。

c中没有对象这个概念,只有数据的表示。

3、变量类型不同

Python六个标准的数据类型:Number数字、String字符串、List列表、Tuple元组、Sets集合、Dictionary字典,数字类型有四种类型:整数、布尔型、浮点数和复数。C语言也可分四类:基本类型、枚举类型、void的类型、派生类型。基本类型:整数类型、浮点类型。

7、python与c的区别_百度知道

Python这类解释型的语言适合快速搭建原型,快速完成那些用过即扔的小程序,或者写一些对性能不很敏感的网络应用。C这类编译型的语言适合写业务逻辑清楚明确,性能要求高,写后不会经常变化的程序,或者是库。一次编写,长期运行。

Python的优点就是C的缺点,反之也一样。闷皮解释型语言确实写起来很方便,但是由于类型自动推导,会造成一些bug不容易发现,有的只能在运行时刻才能爆发,对重瞎罩败要场合还是很让人懊恼的。编译型语言能在编译期发现更多问题,但也会花大量时间和代码处理各种磨颤类型转换的无聊问题,这点又是解释型的优点。编程语言的一个发展趋势是编译型和解释型语言正在互相融合,彼此吸收借鉴,现在类型自动推导也在很多编译型语言里有了。

可以结合C和Python使用,用C写核心的功能,稳定不变的部分,封装成库,用Python完成频繁变化的业务逻辑部分,C+Python是一对强大组合。

8、python和C语言。哪个好?_百度知道

两种语言没有好坏之分,学C语言难而python简单,但是先学C语言能更好打基础。毕竟,要做程序员,不能只会一门语言,大多数程序员都需要会至少三门语言的。

C语言是你上大学第一门接触的,可兆亩见它的重要性。C语言是一种的语言,而Python是一种面向对象的解释型计算机。而你需要先了解什么是面向过程,然后去了解什么是面向对象。

如果使用C入门编程,能更好地掌握编程基础,理解代码运行原理,但是学习c比较枯燥,很难迅速见到成效,可能会打击学习的积极性。使手帆用python见效快,但是因为大部分使用高级接口,所以对底层实现方面可能就毕猜雹比较模糊,但是也可等学完python之后再学习C去补上。

现在国外教初学者编程都换python了,C是偏低层的,细节多,不易学。学python,你现在想做的东西,用python都可以很快很方便的实现。


 

9、先学c++还是python?_百度知道

c++和python从难易程度来说,可以先学。

C语言是一门通用,是的语言,其语法结构及其严谨,且应用十分广泛。只要将C语言研究透彻了的话,学习其他语言就会轻松很多,又因C语言庞大的功能性,入门程序相对来说比较复杂,很难迅速的见到成效。Python语言是一门的解释型计算机,相较于C语言而言,学者先了解了什么是面向过程,再去了解什么是面向对象的话,这样子学习会更有效率,达到事半功倍的效果。并且Python语言的入门程序比较简单,前期的学习也比C语言要简单。C语言程序设计是专业基础课,但是C语言本身却是一个非常强大的工具,它是到目前为止最为广泛使用的工具。而Python 是一种通用的脚本开发语言,比其他编程语言更加简单、易学,其面向对象特性甚至比Java、C#、.NET更加彻底,因此非常适合快速开发。

想了解更多有关c++和python的详情,推荐咨询。独创TTS8.0教学系统,企业双选会。达内OMO,全新升级,线上线下交互学习,满足学生多样化学习需求。对标企业人才标准,制定专业学习计划,囊括主流热点技术。理论知识+学习思维+实战操作,打造完整学习。实战讲师,经验丰富。

你可能感兴趣的:(php,android,开发语言)