이 기사의 예에서는 PHP가 simplexml_load_file을 사용하여 XML 파일을 로드하고 XML을 표시하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 구현 방법은 다음과 같습니다.
<?php $xml = simplexml_load_file("sample.xml"); echo htmlspecialchars($xml->asXML()); ?>
sample.xml 파일의 내용은 다음과 같습니다
<library> <book> <title>A</title> <author gender="female">B</author> <description>C</description> </book> <book> <title>C</title> <author gender="male">D</author> <description>E</description> </book> <book> <title>F</title> <author gender="male">G</author> <description>H</description> </book> </library>
이 기사가 모든 사람의 PHP 프로그래밍 설계에 도움이 되기를 바랍니다.