当前位置:  开发笔记 > 编程语言 > 正文

PHP获取URL内容并搜索字符串

如何解决《PHP获取URL内容并搜索字符串》经验,为你挑选了2个好方法。

在PHP中我需要获取URL(源)的内容搜索字符串"也许宝贝爱你",如果它不包含这个,那么做x.



1> okoman..:

只需阅读页面内容就像读取文件一样.PHP为您完成连接.然后只需通过正则表达式或简单的字符串比较查找字符串.

$url = 'http://my.url.com/';
$data = file_get_contents( $url );

if ( strpos( 'maybe baby love you', $data ) === false )
{

    // do something

}


这应该是"strpos($ data,'也许宝贝爱你');" [strpos](http://php.net/manual/en/function.strpos.php)

2> 小智..:
//The Answer No 3 Is good But a small Mistake in the function strpos() I have correction the code bellow.

$url = 'http://my.url.com/';
$data = file_get_contents( $url );

if ( strpos($data,'maybe baby love you' ) === false )
{
    // do something
}

推荐阅读
夏晶阳--艺术
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有