xml 문서 배열 반환 - SimpleXMLElement simplexml_load_string ( string $data )
2014. 1. 17. 13:07
- <?php
- // 빈공간(스페이스바 ) 에러나서 붙였음
- $string = <<<XML
- <?xml version='1.0'?>
- <document>
- <title>Forty What?</title>
- <from>Joe</from>
- <to>Jane</to>
- <body>
- I know that's the answer -- but what's the question?
- </body>
- </document>
- XML;
- $xml = simplexml_load_string($string);
- print_r($xml);
- /* xml 출력
- SimpleXMLElement Object
- (
- [title] => Forty What?
- [from] => Joe
- [to] => Jane
- [body] =>
- I know that's the answer -- but what's the question?
- )
- */
- ?>
--------------------------------------------------------------------------------------------
3. 라인
$data의 xml 데이터를 배열로 반환합니다.
※xml 데이터의 파일이나 url로 읽는 simplexml_load_file()함수도 있습니다.
'php5 > 기본단계2문법' 카테고리의 다른 글
xml 문서 작성 - public string DOMDocument::saveXML () (0) | 2014.01.17 |
---|---|
JSON 문자열 배열 반환 - mixed json_decode ( string $json ) (0) | 2014.01.17 |
JSON 표현 문자열 반환 - string json_encode ( mixed $value ) (0) | 2014.01.17 |
출력 버퍼링(Output Buffering) - bool ob_start (), bool ob_end_flush ( void ) (0) | 2014.01.17 |
$_SESSION 기능 - bool session_start ( void ) (0) | 2014.01.17 |