php 명령어 simplexml_load_string xml 문서를 파싱합니다. $response = file_get_contents($url);$object = simplexml_load_string($response); echo $object->title;echo $object->from; ==================================== xml 문서양식 예) Forty What? Joe Jane I know that's the answer -- but what's the question? 위 와 같다면 $object에는 엘러먼트 값이 배열로 리턴되게 됩니다. 출력결과 Forty What? Joe 이렇게 되요~