메뉴 건너뛰기

프로그램언어

2019.06.24 19:40

PHP 외부 XML 파싱 하기

조회 수 1942 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
$curl = curl_init();

        $timeout = 5; 

        $url = '가져올 xml  주소';

        curl_setopt($curl, CURLOPT_URL, $url);

        curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);

        curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, $timeout);

        $xml = curl_exec($curl);

        curl_close($curl);

        

        $doc = new DOMDocument();

        $doc->preserveWhiteSpace = false;

        $doc->loadXML( $xml); 

 

 

        $xpath = new DOMXpath( $doc);

        // Register the itunes namespace

        $xpath->registerNamespace( 'itunes', 'http://www.itunes.com/dtds/podcast-1.0.dtd');

 

 

              $items = $doc->getElementsByTagName('item');    

                

              foreach( $items as $item) {

            $title = $xpath->query( 'title', $item)->item(0)->nodeValue;

            $type = $xpath->query( 'type', $item)->item(0)->nodeValue;

            $author = $xpath->query( 'itunes:author', $item)->item(0)->nodeValue;

            $update = $xpath->query( 'itunes:subtitle', $item)->item(0)->nodeValue;

            $enclosure = $xpath->query( 'enclosure', $item)->item(0);

            $url = $enclosure->attributes->getNamedItem('url')->value;

            }
정확하게 위의 소스는 iTunes 의  xml 을 가져와서 파싱하는 예제 이다.

  1. 13자리 timestamp 생성하기

  2. No Image 28Sep
    by
    2020/09/28 Views 1253 

    cUrl를 이용한 json 데이타 주고 받기

  3. Javascript 두 좌표 사이의 거리 구하기, 두 좌표의 중앙 좌표 구하기

  4. No Image 22Sep
    by
    2020/09/22 Views 490 

    네이버 지도 API를 이용한 주소를 좌표로 변환하기 (PHP)

  5. No Image 24Aug
    by
    2020/08/24 Views 470 

    사업자등록번호 유효성 체크

  6. No Image 19Jun
    by
    2020/06/19 Views 437 

    멀티 파일다운로드 꽁수로 구현하기

  7. No Image 19Jun
    by
    2020/06/19 Views 618 

    파일 다운로드 함수(멀티 이어받기/속도제한)

  8. No Image 19Jun
    by
    2020/06/19 Views 616 

    다중 파일을 zip으로 묶어받기

  9. No Image 25May
    by
    2020/05/25 Views 766 

    사진이 회전되서 올라갈 경우

  10. No Image 31Dec
    by
    2019/12/31 Views 644 

    PHP 버전이 낮아 imagerotate() 함수가 없을때 대신 사용하는 함수

  11. No Image 24Jun
    by 조쉬
    2019/06/24 Views 1942 

    PHP 외부 XML 파싱 하기

  12. 주간단위 시작일에서 종료일을 셀렉트박스로 만들기.

  13. No Image 29Apr
    by
    2019/04/29 Views 1356 

    utf-8 문자열을 주어진 바이트로 자르기

  14. No Image 25Feb
    by
    2019/02/25 Views 1558 

    PHP $_SERVER 함수

  15. No Image 19Feb
    by
    2019/02/19 Views 1553 

    PHP에서 UTF와 EUC-KR 변환

  16. PHP 가변변수 $$

  17. No Image 19Feb
    by
    2019/02/19 Views 2181 

    PHP http 를 https 로 전환(redirect), http->https

  18. No Image 19Feb
    by
    2019/02/19 Views 1217 

    input 자동완성기능 끄기

  19. No Image 16Jan
    by
    2019/01/16 Views 1850 

    dddotag - 허용하지 않는 태그 걸러내기

  20. No Image 16Jan
    by
    2019/01/16 Views 1313 

    애니메이션 gif 와 일반 gif 구분 하기

Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 17 Next
/ 17

하단 정보를 입력할 수 있습니다

© k2s0o1d4e0s2i1g5n. All Rights Reserved