What is the result of the following code?
$a = 1;
$b = "1";
var_dump($a === $b);
You'd like to use the class MyDBConnection that's defined in the MyGreatFrarnework\GreafDatabaseAbstractionLayer namespace, but you want to minimize *as much as possible* the length of the class name you have to type. What would you do?
What is the output of the following code?
echo '1' . (print '2') + 3;
How can XML parsing errors be suppressed in the SimpleXML extension?
Type hinting in PHP allows the identification of the following variable types: (Choose 2)
What function returns the filename component of the file's path:
You want to test if a string matches a relatively complex pattern. Which of the following functions can you use? (Choose 2)
Identify the security vulnerability in the following example:
1
2 echo "Welcome, {$_POST['name']}.";
3 ?>
When a transaction reports no affected rows, it means that: (Choose 2)
Which sentence describes the following regular expression match?
preg_match('/^\d*(?:\.[0-9]+)?$/', $test);