What super-global should be used to access information about uploaded files via a POST request?
What super-global should be used to access information about uploaded files via a POST
request?
What is the function of backtick (`) characters in PHP?
What is the function of backtick (`) characters in PHP?
which access modifier in PHP 5 is equivalent to "var"?
You want to run the following PHP 4 code with PHP 5. In the following example, which access
modifier in PHP 5 is equivalent to “var”?
<code>
class Test {
var $tester;
}
</code>
Which of the listed changes would you make to the following PHP 4 code in order to make it most compliant with
Which of the listed changes would you make to the following PHP 4 code in order to make it most
compliant with PHP 5? (Choose 2)
<code>
<?php
class Car {
var $model;
function Car($model) {
$this->model = $model;
} function toString() {
return “I drive a $this->model.”;
}}
$c = new Car(‘Dodge’);
echo $c->toString();
?>
</code>
The_____________ function is used to replace the current session id with the new session id, and to keep infor
Fill in the blank with the appropriate PHP function. The_____________ function is used to replace
the current session id with the new session id, and to keep information of the current session.
Which one of the following is used to manage the data within a memory -limited environment?
Which one of the following is used to manage the data within a memory -limited environment?
Which of the following actions may fail if you have exceeded your quota limit?
Which of the following actions may fail if you have exceeded your quota limit?
Which of the following code snippets will you use to instantiate Zend_XmlRpc_Server?
Which of the following code snippets will you use to instantiate Zend_XmlRpc_Server?
___________is used for logging of multiple backends, formatting messages which are sent to the log, and filter
Write the appropriate word to complete the sentence below. ___________is used for logging of
multiple backends, formatting messages which are sent to the log, and filtering those messages,
which should not be logged.
Which of the following methods will you use to retain the identity across requests according to the PHP sessio
Which of the following methods will you use to retain the identity across requests according to the
PHP session configuration?