api 하나 질문드리겠습니다. 채택완료

index.php 에 저 빨간 동그라미 숫자만 불러오게 하려고 합니다.
Copy
$api_url = 'http://도메인/map_data_i3.php?id=2387';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $api_url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_GET, true);
curl_setopt($ch, CURLOPT_HEADER, false);
$response = curl_exec($ch);
$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
echo json_encode($tree_data, true);
이런식으로 했는데 맞는지 모르겠어요 ㅠㅠ 우선 정상으로 불러오질 않습니다. ㅠㅠ null 값 나오네요 ㅠ
답변 2개
답변을 작성하려면 로그인이 필요합니다.
로그인