We can add single line comment by using
Which version of PHP introduced the instanceof
keyword?
Which one of the following regular expression matches any string containing zero or one p?
Which function is used to verify whether a variable contains a value?
What is the full form of DNS?
Which one of the following preg PHP function is used to do a find and replace on a string or an array?
Which of the following statements can be used to add two months to the existing date?
Which one of the following is the right way to clone an object?
Which one of the following statements should be used to disable just the fopen(), and file() functions?
What is the output of the following PHP code?
<?php
$user = array("Ashley", "Bale", "Shrek", "Blank");
for ($x=0; $x < count($user); $x++) {
if ($user[$x] == "Shrek") continue;
printf ($user[$x]);
}
?>