#php #simplexml
#php #simplexml
Вопрос:
Это мой первый скрипт синтаксического анализа xml. Мой код:
<?php
$xmlstring = "
<book>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
<note>
<to>Tove1</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
</book>
";
$xml = new SimpleXMLElement($xmlstring);
foreach($xml->note as $note){
echo $note["to"] . $note["from"] . $note["heading"] . $note["body"];
}
?>
я хочу напечатать note
дочерние элементы. но этот код ничего не печатает ..
В чем проблема?
Спасибо…
Ответ №1:
note
является объектом SimpleXMLObject. Таким образом, вам потребуется указатель (стрелка), а не массив (скобка).
foreach($xml->note as $note){
echo $note->to . $note->from . $note->heading . $note->body;
}