PrepAway - Latest Free Exam Questions & Answers

Category: 100-500

Exam 100-500: Zend Framework Certification

What should be displayed when this script is executed?

You have given the following XML data in the tasks.XML file:
<?xml version=”1.0″ encoding=”ISO-8859-1″?>
<tasklist>
<note>
<tasks>Validate data</tasks>
<details>String Validation</details>
</note>
<note>
<tasks>Secure data</tasks>
<details>Encryption</details>
</note>
</tasklist>
Now, you run the following PHP script:
<?php
$objDOM = new DOMDocument();

$objDOM->load(“tasks.xml”);
$note = $objDOM->getElementsByTagName(“note”);
foreach( $note as $value )
{
$tasks = $value->getElementsByTagName(“tasks”);
$task = $tasks->item(0)->nodeValue;
$details = $value->getElementsByTagName(“details”);
$detail = $details->item(0)->nodeValue;
echo “$task :: $detail <br>”;
}
?>
What should be displayed when this script is executed?


Page 3 of 1812345...10...Last »