Zend 100-500 - Zend Framework Certification
Which of the following methods of Zend_Auth returns TRUE if and only if the result represents a successful authentication attempt?
Which of the following is an example of a database connection that needs to be created once at the beginning of a script and then used throughout its code?
Which component is used to offer an API to manipulate dates and times?
Which method is used to store the cache records into a SQLite database?
What will be the output of the following PHP script?
include("xml.inc");
if (!$dom = domxml_open_mem($xmlstr)) {
echo "Error while parsing the XML document\n";
exit;
}
$a = $dom->document_element();
print_r($a);
?>
Which inheritance does Zend_Acl support among Resource objects?
Fill in the blank with the appropriate method name.
The________ method is used to check whether a date is valid or not.
Which of the following is an abstract class that is used to provide the basic interface and functionality required by the helper broker?
All of the following are the basic steps in setting up a multi-lingual site, except for which one?
Fill in the blank with the appropriate PHP function.
The___________ function is used to return the sum of the values of every entry within an array.