Can calls to Web Services be queued natively in PHP?
Assume that you are using PHP s session management without cookies and want to make sure that session information does not get lost when redirecting the client to another URL. Which of the following functions do you need to achieve that? (Choose 3)
One common security risk is exposing error messages directly in the browser. Which PHP configuration directive can be disabled to prevent this?
How can precisely one byte be read from a file, pointed by $fp? (Choose 2)
Which of the following commands will append data to an existing file?
Which function can help prevent cross-site scripting? (Choose 2)
Which of the following statements is correct?
When a browser requests an image identified by an img tag, it never sends a Cookie header.
What is the result of the following code?
$a = 1;
$b = "1";
var_dump($a === $b);
Which PHP function sets a cookie whose value does not get URL encoded when sending it to the browser?