PHP 8.4.24 Released!

Voting

: four minus one?
(Example: nine)

The Note You're Voting On

o-zone at zerozone dot it
17 years ago
If you need to remove all slashes from a string, here's a quick hack:

<?php
function stripallslashes($string) {
    while(strchr($string,'\\')) {
        $string = stripslashes($string);
    }
}
?>

Hope it's usefull , O-Zone

<< Back to user notes page

To Top