PHP经验之-file_get_contents
操作方法
- 01
继续分享下PHP的一些常用的代码: file_get_contents 这个函数对于抓取页面,或者读取东西,URL传值都有很大的帮助的 file_get_contents可以用来模拟表单传值,更curl传值一样 json_encode是json传值用的 json_decode('值',true)加了true 之后就变成数组了 要是file_get_contents();传值过去返回值是空的话,要在前面加上下面这一句话:(模拟头部) ini_set('user_agent','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; 4399Box.560; .NET4.0C; .NET4.0E)');
赞 (0)