2014-11-25 3 views
0

이것은 나를 미치게합니다. 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> 
+0

당신이 특정 문제에 샘플 XML을해야합니까? 우리는 그것이 어떻게 생겼는지 알 것입니다. – Ghost

+0

@Ghost ok 경로의 마지막 부분을 추가했습니다. ('default_setup/connection/username'). –

답변

0

사물을 단순화하는 문제에서 벗어날 수 있습니다 (이것은 "응용 프로그램을/etc/local.xml"파일을 실제로 젠토)입니다. 여기에 예제가 있습니다.

XML 파일, example.php :

예 # 2

<?php 
include 'example.php'; 

$movies = new SimpleXMLElement($xmlstr); 

echo $movies->movie[0]->plot; 
?> 

이 방법 :

<?php 
$xmlstr = <<<XML 
<?xml version='1.0' standalone='yes'?> 
<movies> 
<movie> 
    <title>PHP: Behind the Parser</title> 
    <characters> 
    <character> 
    <name>Ms. Coder</name> 
    <actor>Onlivia Actora</actor> 
    </character> 
    <character> 
    <name>Mr. Coder</name> 
    <actor>El Act&#211;r</actor> 
    </character> 
    </characters> 
    <plot> 
    So, this language. It's like, a programming language. Or is it a 
    scripting language? All is revealed in this thrilling horror spoof 
    of a documentary. 
    </plot> 
    <great-lines> 
    <line>PHP solves all my web problems</line> 
    </great-lines> 
    <rating type="thumbs">7</rating> 
    <rating type="stars">5</rating> 
</movie> 
</movies> 
XML; 
?> 

PHP 코드는 귀하의 경우 사용자 이름 것, 플롯을 추출 출처 : http://php.net/manual/en/simplexml.examples-basic.php


괜찮습니다.

이것을 시도해 볼 수 있습니다. 특수 값 *은 모든 태그와 일치합니다.

<?php 
$xml = <<< XML 
<?xml version="1.0" encoding="utf-8"?> 
<books> 
<book>Patterns of Enterprise Application Architecture</book> 
<book>Design Patterns: Elements of Reusable Software Design</book> 
<book>Clean Code</book> 
</books> 
XML; 

$dom = new DOMDocument; 
$dom->loadXML($xml); 
$books = $dom->getElementsByTagName('book'); 
foreach ($books as $book) { 
    echo $book->nodeValue, PHP_EOL; 
} 
?> 

시도해보십시오. 여기에 php.net의 URL이 있습니다 : http://php.net/manual/en/domdocument.getelementsbytagname.php

더 많은 예제가있는 경우 여기를 클릭하십시오. 경로 체인 원하는 일부 노드 누락

+0

1 레벨 정도 깊이 있습니다. 좀 더 레벨로 가야 해. 중간 노드가 고유 한 노드 이름이라 할지라도'[0]'을 포함시켜야합니까? 그리고 타겟 노드는 전체 문서에서 "사용자 이름"이라고 불리는 유일한 노드입니다. 그래서 나는 왜 얻을 수 없습니까? "!! 실망스러운 경험, 이것. 당신의 도움을 주셔서 감사합니다! –

3

개봉은 다음과 같습니다

$conn = $xml->global->resources->default_setup->connection; 
$user = (string) $conn->username; 
$pass = (string) $conn->password; 

현재 XPath를 사용할 수 있지만 항상 (NodeList를 표현)이 노드의 배열을 반환하기 때문에 번거 로움 실제로 더욱 그렇다 루프를 반복하거나 [0]을 사용해야합니다. 더 쉽고/더 읽기 쉽게 직접 액세스를 사용할 수 있습니다. 즉 것 XPath는 그것을 할 말했다 : 경우에 내 수입에서

$nodes = $xml->xpath('//default_setup/connection'); 
if (count($nodes) > 0) { 
    $conn = $nodes[0]; 
    $user = (string) $conn->username; 
    $pass = (string) $conn->password; 
} 

전체 XML/연결 코드가 도움이 :

// get path for config 
$config = realpath(dirname(__FILE__) . '/../magento/app/etc/local.xml'); 

if (!$config) { 
    // I've made a terrible mistake. 
    throw new Exception('Could not load magento config.'); 
} else { 
    // load up XML 
    $conf = new SimpleXMLElement($config, LIBXML_NOCDATA, true); 

    // pull the database connection config node 
    $conn = $conf->global->resources->default_setup->connection; 

    // create a DSN - we will worry about manually setting the attributes ourself 
    // since this is a simple one off 
    $dsn = sprintf('mysql:host=%s;dbname=%s', $conn->host, $conn->dbname); 
    $user = (string) $conn->username; 
    $pass = (string) $conn->password; 
    $db = new PDO($dsn, $user, $pass); 


    if (!$db instanceof PDO) { 
     // WOMP, WOMP! 
     throw new Exception('Could not create database connection!'); 
     exit; 
    } 
} 
+0

그렇다면 누군가가 '연결'노드를 원한다면 문서에있는 유일한 노드이므로 글로벌 노드를 가져 오기 위해 모든 노드를 포함해야한다는 말입니까? –

+0

네, xpath를 사용하지 않는 한,하지만 내가 말한 것처럼 xpath는이 특정 인스턴스에서 번거 로움이 더 많습니다. – prodigitalson

+0

감사합니다. 귀하의 답이 적용됩니다. 하지만 내 xpath 사용법에 문제가 있는지 궁금합니다. 나는 올바른 길을 넣은 것 같았지만 아무 것도 얻지 못하는 것 같습니다. 내'print_r'가 아무 것도 보이지 않는 이유는 무엇입니까? –