file_get_contents()函数

Posted hq金水

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了file_get_contents()函数相关的知识,希望对你有一定的参考价值。

 $data = file_get_contents(‘http://www.zgjmwl.com/jinshui/pro_one/ceshi_a.php‘);
 var_dump(substr($data,3));
 //用php读取json数据;
 //substr($data,3)去掉BOM头
 $data_arr = json_decode(substr($data,3),true);
 echo $data_arr["user"];    

以上是关于file_get_contents()函数的主要内容,如果未能解决你的问题,请参考以下文章

file_get_contents HTTP 请求失败

从本地 LAMP 访问 SoapClient 和 file_get_contents

JSON 到 PHP 数组使用 file_get_contents

使用 file_get_contents 将本地 PHP 文件的 HTML 输出存储到字符串中

如何解决file_get_contents()函数运行时间过长的问题? - 技术问答

PHP读取TXT中文乱码的解决方法