PrepAway - Latest Free Exam Questions & Answers

Tag: Exam ZF-100-500

Exam ZF-100-500: Zend Framework Certification

Which of the following functions will you use instead of * if you want to print the root element of the XML fi

You run the following PHP script:
<code>
<?php include(“xml.inc”);
if (!$dom = domxml_open_mem($xmlstr)) {
echo “Error while parsing the XML document \n”;
exit;
}
$a = **********
print_r($a);
?>
</code>
Which of the following functions will you use instead of * if you want to print the root element of the
XML file?

Which of the following code snippets will you insert at line number 14 to get the following output?

You have been given the following PHP script:
<code>
1. <?php
2. $xmlstring = <<<XML
3. <?xml version=”1.0″ encoding=”ISO -8859-1″?>
4. <email>
5. <to>jenny@PassGuide.com</to>
6. <from>john@PassGuide.com</from>
7. <heading>Technical issue in Linux OS</heading>
8. <body>There is a technical issue in my Linux system. Please Fix it. </body>
9. </email>
10. XML;
11. $xml = new SimpleXMLElement($xmlstring);
12. foreach($xml->children() as $child)
13. {
14. <Insert code here.>
15. }
16. ?>
</code>
Which of the following code snippets will you insert at line number 14 to get the following output?

Which of the following code snippets will you use to create a transport while considering the following PHP co

Which of the following code snippets will you use to create a transport while considering the
following PHP code segment?
<code>
<?php
require_once ‘Zend/Mail.php’;
require_once ‘Zend/Mail/Transport/Smtp.php’;
??????????????????????????????????
for ($i = 0; $i > 5; $i++) {
$mail = new Zend_Mail();
$mail->addTo(‘someone@example.com’, ‘Test’);
$mail->setFrom(‘ someone@example.com’, ‘Test’);
$mail->setSubject(‘Multiple Mails’);
$mail->setBodyText(‘Messages’);
$mail->send($transport);
}
</code>


Page 7 of 13« First...56789...Last »