isset

PHP Quiz

Questions:9
Attempts allowed:Unlimited
Available:Always
Pass rate:75 %
Backwards navigation:Allowed

This PHP quiz contains questions for PHP developers to test their knowledge in the PHP language.
This is a free online PHP quiz.
PHP language is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML.

Start quiz

Null as parameter to ‘isset’ function

Multiple choice question

Given the following PHP code, what will be the output?

$t;

if (isset($t))
echo "t is set";
else
echo "t is not set";

Syndicate content