ZF-100-500 試験問題を無料オンラインアクセス
試験コード: | ZF-100-500 |
試験名称: | Zend Framework Certification |
認定資格: | Zend-Technologies |
無料問題数: | 200 |
更新日: | 2025-08-21 |
Consider the following script:
<html>
<head>
<title>
This is a test script.
</title>
</head>
<body>
<?php
echo 'This is some sample text';
?>
</body>
</html>
Which of the following tags is used in the php script?
You have been given the following PHP script:
1. <?php
2. $xmlstring = <<<XML
3. <?xml version="1.0" encoding="ISO -8859-1"?>
4. <email>
5. <to>[email protected]</to>
6. <from>[email protected]</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. ?>
Which of the following code snippets will you insert at line number 14 to get the foll owing output?
Which of the following methods is used to attach files to an e-mail and returns a Zend_Mime_Part object?
Which of the following methods will you use to get the actual set language in Zend_Translate class?