An unbuffered database query will: (Choose 2)
When using password_hash() with the PASSWORD_DEFAULT algorithm constant, which of the following is true? (Choose 2)
Which php.ini setting is usually required to use an opcode cache?
Which of the following statements about anonymous functions in PHP are NOT true? (Choose 2)
Which PHP function sets a cookie and URL encodes its value when sending it to the browser?
Which of the following tasks can be achieved by using magic methods? (Choose 3)
What is the result of the following code?
define('PI', 3.14);
class T
{
const PI = PI;
}
class Math
{
const PI = T::PI;
}
echo Math::PI;
Which of the following functions will allow identifying unique values inside an array?
Which of the following is NOT true about PHP traits? (Choose 2)
What is the output of the following code?
$first = "second";
$second = "first";
echo $$$first;