标签: php json
我有这个网站,这为我提供了json数据,
https://httpbin.org/ip
如何获取并在php中阅读?
答案 0 :(得分:0)
尝试一下,它应该可以工作。
<?php $data = file_get_contents("https://httpbin.org/ip"); print_r($data );