Zend 100-500 - Zend Framework Certification
Which of the following functions sets up start and end element handlers?
Which function is used to take a locale string as a parameter and set a new locale?
Which of the following is the template layer, where all the HTML rendering takes place, and where everything to be displayed to a user is assembled?
Which of the following resource objects is used to support Zend_Acl?
Which of the following code snippets will you use to instantiate Zend_XmlRpc_Server?
Which of the following keywords will you use to set the default timezone?
Each correct answer represents a complete solution. Choose all that apply.
You have given the following XML data in the tasks.XML file:
Now, you run the following PHP script:
$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
";
}
?>
What should be displayed when this script is executed?
Which of the following methods will you use to get the actual set language in Zend_Translate class?
Which of the following joins will you use to display data that do not have an exact match in the column?
Which of the following keywords will you use to set the default timezone?
Each correct answer represents a complete solution. Choose all that apply.