반응형
php 명령어
simplexml_load_string
xml 문서를 파싱합니다.
$response = file_get_contents($url);
$object = simplexml_load_string($response);
echo $object->title;
echo $object->from;
====================================
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>
위 와 같다면
$object에는 엘러먼트 값이 배열로 리턴되게 됩니다.
출력결과
Forty What? Joe
이렇게 되요~
반응형
'IT > php' 카테고리의 다른 글
The mbstring extension is missing. Please check your PHP configuration. (0) | 2015.11.24 |
---|---|
php multipart 사용법 stream_context_create (0) | 2015.11.23 |
array_push — 배열의 끝에 하나 이상의 원소를 넣는다 (0) | 2015.11.05 |
php in_array 사용법 배열값 확인하기 (0) | 2015.11.03 |
ob_start callback ob_get_contents 사용법 (0) | 2015.11.03 |