preg_quote : preg_quote « String « PHP






preg_quote

 
<?php
   $text = "this is a test";
   echo preg_quote($text);
?>
  
  

Related examples in the same category