What is the output of the following code?
class test {
public $value = 0;
function test() {
$this->value = 1;
} function __construct() {
$this->value = 2;
}}
$object = new test();
echo $object->value;
What is the difference between isset() and other is_*() functions (is_alpha(), is_number(), etc.)?
What is the function of backtick (`) characters in PHP?
What is the output of the following code?
$first = "second";
$second = "first";
echo $$$first;
Which options do you have in PHP to set the expiry date of a session?
Type hinting in PHP allows the identification of the following variable types: (Choose 2)
Transactions can be used to: (Choose 2)
When working with the MVC paradigma, the business logic should be implemented in which of the following components?
When checking whether two English words are pronounced alike, which function should be used for the best possible result?
When a class is defined as final it: