Shortcut Navigation:

Left Associative Quiz

Trace the function that does continue the script execution even if the file inclusion fails

Which function includes the specified file even the statement evaluates to false in which block the function is placed.

Trace the false statement

On failure of which statement the script execution stops displaying error/warning message?

The left associative dot operator (.) is used in PHP for

Variable scope on which a variable does not loose its value when the function exists and use that value if the function is called again is:

Identify the variable scope that is not supported by PHP

The left association operator % is used in PHP for

Which of the following functions require the allow-url-fopen must be enabled?

The output of ofllowing script would be$somerar=15;function ad it () {GLOBAL $somevar;$somerar++ ;echo "somerar is $somerar";}addit ();