Documentation is available at func.php
1 <?php
2 /*
3 Misc stand-alone functions
4 No database or METAZO-object specific stuff here!
5 */
6
7 function myaddslashes($string) {
8 if (get_magic_quotes_gpc()) {
9 return $string;
10 } else {
11 return addslashes($string);
12 }
13 }
14
15 ?>
Documentation generated on Thu, 9 Jun 2005 06:52:30 +0200 by phpDocumentor 1.2.3