What is stored in $message by the code that follows? $message = "The file is in \"C:\\My Documents\""; What is stored in $message by the code that follows?$message = "The file is in \"C:\\My Documents\""; Answer: The file is in "C:\My Documents"
Which PHP function returns a string with all special HTML converted to the HTML entity? Which PHP function returns a string with all special HTML converted to the HTML entity? Answer: htmlentities
When you use the substr function to extract a substring, you need to at least pass an argument that gives When you use the substr function to extract a substring, you need to at least pass an argument that gives Answer: the starting position of the substring
If the date is December 25, 2014, what output would be produced by the code below? echo date('M. d, Y'); If the date is December 25, 2014, what output would be produced by the code below?echo date('M. d, Y'); Answer: Dec. 25, 2014