在 PHP 中从 URL 访问 JSON 对象
要从给定 URL 获取 JSON 对象并在 PHP 中提取“access_token”值,有几种方法:
使用 file_get_contents()
<?php $json = file_get_contents('url_here'); $obj = json_decode($json); echo $obj->access_token; ?>
使用curl
<?php $ch = curl_init(); // Enable SSL verification (set to true for production environments) curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_URL, 'url_here'); $result = curl_exec($ch); curl_close($ch); $obj = json_decode($result); echo $obj->access_token; ?>
启用“ file_get_contents”,确保 PHP 配置中的“allow_url_fopen”设置为“1”或使用以下代码:
<?php ini_set('allow_url_fopen', 1);
以上是如何在 PHP 中从 URL 访问 JSON 对象并提取访问令牌?的详细内容。更多信息请关注PHP中文网其他相关文章!