$json_string = file_get_contents($api_url);
또는
$curl =curl_init();
curl_setopt($curl,CURLOPT_URL, $api_url);
curl_setopt($curl,CURLOPT_RETURNTRANSFER, true);
$xml = curl_exec($curl);
로 $api_url에 경로주소 던져 주고 값 받아오기.
$result_xml = simplexml_load_string($xml);
'컴퓨터 > PHP' 카테고리의 다른 글
failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known (0) | 2019.07.22 |
---|---|
Strict Standards: Only variables should be passed by reference 에러 (0) | 2019.07.22 |
php json decode 시 에러 또는 Null뜰때. (0) | 2019.07.22 |
php 파일이동 (0) | 2018.08.28 |
php 메일 보내기 (0) | 2018.08.28 |