php代码
function spider($url, $spider = 'Blankspider', $port = 80, $timeout = 15) { $content= ''; $resolve = parse_url($url); $host = $resolve['host']; $path = empty($resolve['path']) ? '/' : $resolve['path'].(!empty($resolve['query']) ? '?'.$resolve['query'] : ''); if(empty($host)) { return 'Requested host name can\'t be empty'; } $fp = fsockopen($host, $port, $errno, $errstr, $timeout); if (!$fp) { return $errstr; } else { $fputs = "GET $path HTTP/1.1\r\n"; $fputs.= "Accept: */*\r\n"; $fputs.= "Host: $host\r\n"; $fputs.= "Spider: $spider\r\n"; $fputs.= "Connection: Close\r\n\r\n"; stream_set_blocking($fp, 1); stream_set_timeout($fp, $timeout); fputs($fp, $fputs); while(!feof($fp)) { if(($return = fgets($fp)) && ($return == "\r\n" || $return == "\n")) { break; } } while(!feof($fp)) { $content .= fgets($fp, 8192); } fclose($fp); return $content; } } function cron2spider($iptable, $sleep = 5) { set_time_limit(0); $i = 0; date_default_timezone_set('PRC'); if(!file_exists($iptable)) { return json_encode(array( 'status'=> 'error', 'description'=> 'iptable.conf file not exists')); } $file = file($iptable); if(empty($file)) { return json_encode(array( 'status'=> 'error', 'description'=> 'iptable.conf can\'t be empty')); } while($i< count($file)) { if(!file_exists('robots') || !is_writable('robots')) { return json_encode(array( 'status'=> 'error', 'description'=> 'directory doesn\'t exist or don\'t have write permissions')); } $dir = 'robots/'.preg_replace('/(http\:\/\/)|(\s)|(www\.)/', '', $file[$i]); if(!file_exists($dir)){ mkdir($dir); } file_put_contents($dir.'/'.date('Y.m.d.H.i.s', time()).'.txt', spider(preg_replace('/\s/', '', $file[$i]))); $i++; sleep($sleep); } return json_encode(array( 'status'=> 'ok', 'description'=> 'robots program execution success')); } echo cron2spider('iptable.conf');
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
How Long Does It Take To Beat Split Fiction?
3 weeks agoByDDD
R.E.P.O. Save File Location: Where Is It & How to Protect It?
3 weeks agoByDDD

Hot Tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SublimeText3 Linux new version
SublimeText3 Linux latest version

Notepad++7.3.1
Easy-to-use and free code editor
