Which of the following items in the $_SERVER superglobal are important for authenticating the client when using HTTP Basic authentication? (Choose two.)
What function can reverse the order of values in an array so that keys are preserved?
Which of the following functions are used to escape data within the context of HTML? (Choose two.)
One common security risk is exposing error messages directly in the browser. Which PHP configuration directive can be disabled to prevent this?
What is the difference between the spaceship operator (<=>) and the strcmp() function?
Which of the following statements about anonymous functions in PHP are NOT true? (Choose two.)
Which of the following expressions will evaluate to a random value from an array below?
$array = [“Sue”,”Mary”,”John”,”Anna”];
What can prevent PHP from being able to open a file on the hard drive? (Choose two.)
Given a php.ini setting of
default_charset = utf-8
what will the following code print in the browser?
Which of the following are NOT acceptable ways to create a secure password hash in PHP? (Choose two.)
Consider the following two files. When you run test.php, what would the output look like?
You work for a shared hosting provider, and your supervisor asks you do disable user scripts to dynamically load PHP extensions using the d1() function. How can you do this? (Choose two.)