상세 컨텐츠

본문 제목

PHP cURL 이용하여 JSON 데이터 가져와 활용

php

by 개발일지작성 2024. 3. 26. 12:59

본문

728x90
<?php

echo "<p>날씨 출력</p>";

$ch = curl_init();

// json을 만들어 주는 url..? 입력한대로 만들어줌
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$response = curl_exec($ch);
curl_close($ch);

// json 데이터를 배열화
$arr = json_decode($response);
print_r($arr);

// 데이터 가져오는 방식
echo $arr->wind; // 3

?>

<table border="1" width="200">
    <tr>
        <td>온도</td>
        <td><?= $arr->temerature; ?></td>
    </tr>
    <tr>
        <td>습도</td>
        <td><?= $arr->humidity; ?></td>
    </tr>
    <tr>
        <td>풍속</td>
        <td><?= $arr->wind; ?>m/s</td>
    </tr>
</table>

'php' 카테고리의 다른 글

PHP+Ajax 이미지 파일 업로드  (0) 2024.03.26
PHP+Ajax+MySQLI(PDO) 아이디 중복체크  (0) 2024.03.26
PHP curl  (0) 2024.03.26
PHP short_open_tag  (0) 2024.03.26
PHP MySQL Prepared Statements (PDO) 인젝션 공격 방어  (1) 2024.03.25

관련글 더보기