Shortcut Navigation:

PHP Code XA0 Quiz

Assume that your php file 'index.php' in location c:/apache/htdocs/phptutor/index.php. If you used$_SERVER['PHP_SELF'] function in your page, then what is the return value of this function?

Which operator is used to concatenate two strings in php?

Are there regular expressions in PHP?

In PHP, which of the following function is used to insert content of one php file into another php file before server executes it

Assume that today is 2009-5-19:2:45:32 pm. What will be the output of PHP code below? 
PHP Code
 
<?php
$today = date("F j, Y, g:i a");
?>

Which of the following function is used for terminate the script execution in PHP?

What function used to print statement in PHP?

What will be the output of PHP code below? 
PHP Code
 
<?php
define("x","5");
$x=x+10;
echo x;
?>

What will be the output of below mentioned PHP code? 
PDF Generated by PHPKB Knowledge Base Script
 
PHP Code
 
<?php
$arr = array(5 => 1, 12 => 2);
$arr[] = 56;
$arr["x"] = 42;
unset($arr);
echo var_dump($arr);
?>

PHP variables are