相关关键词
关于我们
最新文章
php file_get_contents取文件中数组元素的方法
发布日期:2017-04-01 00:00:00
74
用file_get_contents()抓取了 这个网址上的内容
http://simonfenci.sinaapp.com/index.php?key=simon&wd=1314abc
看似好像反回的是数组。。但是我不管怎么用foreach循环都报错。。
我只想把数组中的word里面的值 取出来。
方法如下:正解(其他的字段一样,把word替换即可)
$s=file_get_contents('http://simonfenci.sinaapp.com/index.php?key=simon&wd=1314abc');$rule='#(?<=\[word\] =>)\s\w+#';preg_match_all($rule,$s,$arr);print_r($arr);