Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

addslashes

  • addslashes

Escaping special characters such as '

<?php
  $str = "fruit: 'banana'";
  echo $str;
  echo "<br>"; 
  echo addslashes($str);
?>

[addslashes](http://php.net/manual/en/function.addslashes.php" %}