首頁  >  文章  >  後端開發  >  php file_get_contents實作取檔案中陣列元素的方法

php file_get_contents實作取檔案中陣列元素的方法

墨辰丷
墨辰丷原創
2018-05-24 11:24:592090瀏覽

這篇文章主要介紹php file_get_contents實作取檔案中陣列元素的方法,有興趣的朋友參考下,希望對大家有幫助。

用file_get_contents()抓取了這個網址上的內容

http://simonfenci.sinaapp.com/index.php? key=simon&wd=1314abc

看似好像反回的是陣列。 。但是我不管怎麼用foreach迴圈都報錯。 。

我只想把陣列中的word裡面的值 拿出來。

方法如下:正解(其他的字段一樣,把word替換即可)


$s=file_get_contents(&#39;http://simonfenci.sinaapp.com/index.php?key=simon&wd=1314abc&#39;);$rule=&#39;#(?<=\[word\] =>)\s\w+#&#39;;preg_match_all($rule,$s,$arr);print_r($arr);



我的遇到的問題如下:


<?php 
@header(&#39;content-type:text/html;charset=utf-8&#39;);
function show_bug($msg){
echo "<pre class="brush:php;toolbar:false">";
print_r($msg);
echo "
"; } //ini_set('user_agent','Mozilla/4.0 (compatible; MSIE 5.00; Windows 98)'); //$url="http://redhatcn.cn//Home/Login/mmzh2/t/user"; // 所有[jb] => 后面的金额,所有金额相加 $url='array.txt'; $s=file_get_contents($url); $rule='#(?<=\[jb\] =>)\s\w+#';preg_match_all($rule,$s,$arr); // $bool=is_array($arr); // var_dump($bool); //show_bug($arr); $arr_num=$arr[0]; //array_sum函数返回数组中所有值的总和。 echo '文件中所有jb之和为:'.array_sum($arr_num); ?>


array.txt內容如下:


##

Array( [0] => Array ( [id] => 183 [cf] => 0 [date] => 2016-08-26 21:17:32 [zffs1] => 0 [zffs2] => 1 [zffs3] => 0 [jb] => 5000 [zt] => 1 [user] => 18676081117 [qr_zt] => 1 [user_tjr] => 18943636615 [user_nc] => ¿ÉÀÖ [cf_ds] => 0 [jycg_ds] => 0 [yid] => [ok] => 1 ) [1] => Array ( [id] => 240 [cf] => 0 [date] => 2016-09-03 12:06:50 [zffs1] => 1 [zffs2] => 1 [zffs3] => 1 [jb] => 8000 [zt] => 0 [user] => 15192777617 [qr_zt] => 0 [user_tjr] => 13987611435 [user_nc] => Ö콨¸Û [cf_ds] => 0 [jycg_ds] => 0 [yid] => [ok] => 1 ) )


以上就是本文的全部內容,希望對大家的學習有所幫助。


相關推薦:

PHP header()的7種用法 

php的二維陣列排序

phpcms搜尋功能實作

以上是php file_get_contents實作取檔案中陣列元素的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn