PHP同步爬虫

22 篇文章 1 订阅

主文件

<?php
/**
 * 同步爬虫
 */
require_once 'Crawler.php';

$start = microtime(true);//unix微妙数

$url = 'http://www.swoole.com/';
$ins = new Crawler($url);
$ins->visitOneDegree();

$timeUsed = microtime(true) - $start;
echo "time used: " . $timeUsed;

爬虫类

<?php

/**
 * Class Crawler
 * Path: /Sync/Crawler.php
 */
class Crawler
{
    private $url;
    private $toVisit = [];
    public function __construct($url)
    {
        $this->url = $url;
    }

    public function visitOneDegree()
    {
        $this->loadPageUrls();
        $this->visitAll();
    }

    private function loadPageUrls()
    {
        $content = $this->visit($this->url);
        $pattern = '#((http|ftp)://(\S*?\.\S*?))([\s)\[\]{},;"\':<]|\.\s|$)#i';
        preg_match_all($pattern, $content, $matched);//正则匹配
        foreach ($matched[0] as $url) {
            if (in_array($url, $this->toVisit)) {
                continue;
            }
            echo $url;echo "<br/>";
            $this->toVisit[] = $url;
        }
    }

    private function visitAll()
    {
        foreach ($this->toVisit as $url) {
            $this->visit($url);
        }
    }

    private function visit($url)
    {
        return @file_get_contents($url);//读取地址内容
    }
}

爬取结果

http://wiki.swoole.com/"
http://compiler.swoole.com/"
http://wiki.swoole.com/wiki/page/prid-1-p-project/change_log.html"
http://group.swoole.com"
http://wiki.swoole.com/wiki/page/prid-1-p-author.html"
http://wiki.swoole.com/wiki/page/p-case.html"
http://wiki.swoole.com/wiki/page/p-donate.html"
http://127.0.0.1:
time used: 275.22750902176

参考地址

https://www.jianshu.com/p/8035266e8f42
https://www.w3cschool.cn/swoole/swoole-functions.html
https://wiki.swoole.com/wiki/page/245.html

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值