What does the array operator '===' mean?
- Identity comparison
- Value comparison
- Index assignment
- Array concatenation
The '===' operator in PHP is the identity comparison operator. It compares both the value and the type of the operands. It returns true if the operands are identical, and false otherwise. Learn more: http://php.net/manual/en/language.operators.comparison.php
Loading...
Related Quiz
- What is a common use case for Regular Expressions in PHP?
- You need to create a MySQL table, execute some queries, and then close the connection in your PHP script. How would you do this?
- To access a global variable inside a function using $GLOBALS, you can use $GLOBALS['variable_name'] where 'variable_name' is the name of the ______.
- What function do you use in PHP to generate a random number?
- In PHP, you can connect to a MySQL database using the mysqli_connect function.