php-file_get_contents 파일 의 배열 요소 사용 방법

file 로get_contents()캡 처 이 사이트 의 내용
http://simonfenci.sinaapp.com/index.php?key=simon&wd=1314abc
거꾸로 배열 인 것 같 습 니 다.하지만 나 는 아무리 foreach 순환 으로 도 잘못 보고 했다.
나 는 단지 배열 의 워드 안의 값 을 빼내다
방법 은 다음 과 같다.정 해(다른 필드 와 마찬가지 로 워드 를 바 꾸 면 된다)$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 );
내 가 만난 문 제 는 다음 과 같다.
";
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 ) )

참조 링크:
http://bbs.csdn.net/topics/390960440?page=1#post-401552660

좋은 웹페이지 즐겨찾기