yskl 发表于 2018-2-11 11:55:42


            用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='#(?)\s\w+#';preg_match_all($rule,$s,$arr);print_r($arr);
页: [1]
查看完整版本: php file_get_contents取文件中数组元素的方法