php 通过get网络路径得到json

{
 "userId": 1,
 "id": 1,
 "title": "sunt aut facere repellat provident occaecati excepturi optio reprehenderit",
 "body": "quia et suscipit\nsuscipit recusandae consequuntur expedita et cum\nreprehenderit molestiae ut ut quas totam\nnostrum rerum est autem sunt rem eveniet architecto"
}

以上是通过https访问可得到的 json

<?php
$url = 'https://jsonplaceholder.typicode.com/posts/1';//网络url
$json = file_get_contents($url);
$jo = json_decode($json);
echo $jo->title;
?>

php执行,页面输出:sunt aut facere repellat provident occaecati excepturi optio reprehenderit

注:如file_get_contents失效,需配置php.ini
 

allow_url_fopen 是on 

allow_url_include 是on

url是https,php.ini还需以下配置
extension=php_openssl.dll 果断开启

附php得到微信小程序openid

$appid='wxf0426d84f*******';//小程序appid
$secret='e0bc99163**************8';//小程序秘钥
$code=$_GET['code'];//uniapp模拟登录前台自动获得

$url = 'https://api.weixin.qq.com/sns/jscode2session?appid='.$appid.'&secret='.$secret.'&js_code='.$code.'&grant_type=authorization_code';

 
$json = file_get_contents($url);
$jo = json_decode($json);
//echo $jo->openid;

$openid = $jo->openid;
	

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值