美文网首页
php http Guzzlehttp

php http Guzzlehttp

作者: 风寒夜末 | 来源:发表于2018-09-15 14:36 被阅读0次

https://guzzle-cn.readthedocs.io/zh_CN/latest Guzzlehttp

laravel 自带 GuzzleHttp\Client 包,可以用作post,get等http请求;

useGuzzleHttp\Client;

$http =newClient();

$url ='http://www.baidu.com';

$response = $http->get($url);

$data = json_decode((string);

$response->getBody(),true);

具体请查看GuzzleHttp官方文档

相关文章

网友评论

      本文标题:php http Guzzlehttp

      本文链接:https://www.haomeiwen.com/subject/wqzzgftx.html