AddCslashes (PHP 4, PHP 5, PHP 7, PHP 8)

<?php
echo addcslashes('foo[ ]', 'A..z');
// output:  \f\o\o\[ \]
// All upper and lower-case letters will be escaped
// ... but so will the [\]^_`
?>
SAMER SAEID