The DateTime class has ___ methods.
How many predefined exceptions does SPL provide access to?
For defining a variable without any data, which value must use to assign them?
What is the default value of max_input_time directive?
What will be the output of the following PHP code?
<?php
$num = 1;
$num1 = 2;
print $num . "+" . $num1;
?>
What will be the output of the following PHP code? (If say date is 22/06/2013.)
<?php
printf( date("t") );
?>
Which one of the following PHP function is used to determine a file’s last access time?
The practice of creating objects based on predefined classes is often referred to as?
What will be the output of the following PHP code?
<?php
function foo($msg)
{
echo "$msg";
}
$var1 = "foo";
$var1("will this work");
?>