Home > Backend Development > PHP Tutorial > file_get_contents有关问题

file_get_contents有关问题

WBOY
Release: 2016-06-13 10:06:39
Original
781 people have browsed it

file_get_contents问题
代码如下: 
$text=strstr(file_get_contents(http://www.baidu.com/s?wd=百度'),'找到相关结果约');

运行后 $text 为什么没值;

------解决方案--------------------
你在浏览器地址栏输入 http://www.baidu.com/s?wd=百度
你看到了 找到相关结果约 字样了吗?

我眼神不好,没看见
------解决方案--------------------
你不说我也找不到那个 相关结果,以前相关结果都是在上面的。
你的代码少了个' 不过即使加了也是一个效果.

弄这种东西 最好的就是正则了

$html = file_get_contents('http://www.baidu.com/s?wd=百度');
$html = iconv('GBK', 'UTF-8', $html);//如果你的页面是utf-8编码需要一个转换
preg_match('/找到相关结果约([0-9,]+个)/', $html, $math);
echo $math[1];

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