Zend 200-530 - Zend PHP 5.3 Certification
Which requirements need NOT be met so that file uploads work?
What is the difference between isset() and other is_*() functions (is_alpha(), is_number(), etc.)?
What will the following code print?
echo addslashes('I am a small "HTML" string, which is
\'invalid\'.');
How can XML parsing errors be suppressed in the SimpleXML extension?
What function can be used to retrieve an array of current options for a stream context?
What DOM method is used to load HTML files?
You are creating an application that generates invoices in a variety of formats, including PDF, ODS and HTML. Each of these formats is represented as a PHP class in your application. While some of the operations can be performed on all of the different formats (such as saving and loading), other operations may be specific to one or two of the formats (such as setting as read only). Which design pattern should you use for this application?
How can precisely one byte be read from a file, pointed by $fp? (Choose 2)
You have a variable $test that contains sub-strings divided by a dash ("-"). How can you put every sub-string into an array element easily?
Is the following code piece E_STRICT compliant?
final class Testing {
private $test;
public function tester() {
return "Tested!";
}}