在PHP中,可以使用以下方法來獲取JSON數據:
$url = 'example.json';
$json = file_get_contents($url);
$url = 'example.json';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$json = curl_exec($ch);
curl_close($ch);
$url = 'example.json';
$options = array(
'http' => array(
'method' => 'GET',
'header' => 'Content-type: application/x-www-form-urlencoded',
),
);
$context = stream_context_create($options);
$json = file_get_contents($url, false, $context);
以上是獲取JSON數據的幾種常見方法,可以根據實際需求選擇合適的方法來使用。