PHP Compiler
<!DOCTYPE html> <html> <body> <?php echo addslashes("Using ' single quote <br>"); echo addslashes('Using " double quote <br>'); echo addslashes("Using \ backslash <br>"); echo addslashes('Using \0 (NUL byte)<br>'); ?> </body> </html>
OUTPUT
Using \' single quote
Using \" double quote
Using \\ backslash
Using \\0 (NUL byte)
×

Save as Private