php curl phpquery 求大神
我想用curl自带的库把东西趴下来,然后用phpquery操作,求大神指点,代码我不贴了,大神给我一脚,我就应该能明白了。。最新情况是:file_get_contents...
我想用curl自带的库把东西趴下来,然后用phpquery操作,求大神指点,代码我不贴了,大神给我一脚,我就应该能明白了。 。
最新情况是:
file_get_contents(E:\AppServ\www\weather) [function.file-get-contents]: failed to open stream: Permission denied in E:\AppServ\www\weather\phpQuery.php on line 4767
已崩溃。。。。。。。。。。。。。 展开
最新情况是:
file_get_contents(E:\AppServ\www\weather) [function.file-get-contents]: failed to open stream: Permission denied in E:\AppServ\www\weather\phpQuery.php on line 4767
已崩溃。。。。。。。。。。。。。 展开
1个回答
2014-09-09
展开全部
通过phpquery直接可以采集到互联网指定url内容的,应该里面已经集成了curl方式采集内容,不需要在用curl处理了,直接用
二、phpQuery简单实用
<?php
include 'phpQuery.php';
phpQuery::newDocumentFile('http://www.scutephp.com');
$companies = pq('#hotcoms .coms')->find('div');
foreach($companies as $company)
{
echo pq($company)->find('h3 a')->text()."<br>";
}
?>
详细的操作方法及细节可以参考我的例子 http://www.scutephp.com/topic-id56.html
二、phpQuery简单实用
<?php
include 'phpQuery.php';
phpQuery::newDocumentFile('http://www.scutephp.com');
$companies = pq('#hotcoms .coms')->find('div');
foreach($companies as $company)
{
echo pq($company)->find('h3 a')->text()."<br>";
}
?>
详细的操作方法及细节可以参考我的例子 http://www.scutephp.com/topic-id56.html
追问
嗯嗯,想问问newDocumentFile和其他众多的newDocmentFileHTML及其他的方式有什么区别?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询