Q. What will be the output of the following PHP code?
Code:
<?php
$str = addcslashes("IncludeHelp","e");
echo($str);
?>
β
Correct Answer: (D)
Includ\eH\elp
<?php
$str = addcslashes("IncludeHelp","e");
echo($str);
?>
You must be Logged in to update hint/solution