PHP深层扫描,该怎么处理

WBOY
Release: 2016-06-13 13:18:51
Original
839 people have browsed it

PHP深层扫描
我想抓取网页中的内容时
file_get_contents 参数填入url就可以获得当前的内容

现在我想做的是如何深层抓取?

难道是遇到 a标签后 就获取url 然后再file_get_contents

一直这么遍历下去吗??

不知道有没好的思路呢?

------解决方案--------------------
爬虫么?
不外乎两种常见的遍历形式:
1.深度扫描,类似图的深度遍历。递归是最容易理解的方式。

2.广度扫描。即按照层次的方式来扫描网页。容易实现且可以控制抓取的层次。

你说的方式基本就是深度爬虫的策略。ps:这个相当耗时额。

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template