이것은 나를 미치게합니다. 30 분 전에 필요한 2 가지 값을 복사하여 붙여 넣을 수 있었지만 그 대신 "올바르게"하려고했습니다.Simplexml PHP - "깊은 노드"의 가치 얻기
전체 파일에는 하나의 "사용자 이름"만 있습니다. 그것을 어떻게 얻을 수 있습니까? 나는 xpath ($username=$xml->xpath('default_setup/connection/username');
)를 사용해 보았고 노드를 연결하려고 시도했다. ($ username = $ xml -> {... full path here ...} -> default_setup-> connection-> username;
내가 print_r($xml)
일 때, 내가 원하는 모든 노드와 그 값을 볼 수 있습니다. 내가 print_r($username)
일 때 나는 아무것도 얻지 못한다.
<?php
$xml = simplexml_load_file('database.xml',NULL,LIBXML_NOCDATA); // connection details are inside of CDATA
$username=$xml->xpath('default_setup/connection/username'); ?>
<p>Username: <?= (string)$username ?></p><?php // outputs "Array"
<?php
foreach($xml as $element) {
echo $element . '<br />'; // outputs '<br />' 2 times.
}
?>
<pre>
Username:
<?php print_r($username) ?><?php // nothing ?>
xml:
<?php print_r($xml) ?><?php // full set of all nodes with everything I need just out of reach ?>
</pre>
다음은 샘플 xml입니다.
<default_setup>
<connection>
<host><![CDATA[localhost]]></host>
<username><![CDATA[secret_username]]></username>
<password><![CDATA[secret_password]]></password>
<dbname><![CDATA[testing_database]]></dbname>
<initStatements><![CDATA[SET NAMES utf8]]></initStatements>
<model><![CDATA[mysql4]]></model>
<type><![CDATA[pdo_mysql]]></type>
<pdoType><![CDATA[]]></pdoType>
<active>1</active>
</connection>
</default_setup>
당신이 특정 문제에 샘플 XML을해야합니까? 우리는 그것이 어떻게 생겼는지 알 것입니다. – Ghost
@Ghost ok 경로의 마지막 부분을 추가했습니다. ('default_setup/connection/username'). –