PHP 8.5.0 Alpha 4 available for testing

Voting

: min(three, eight)?
(Example: nine)

The Note You're Voting On

gjarrige at six-axe dot fr
13 years ago
to remove the ASCII control characters (except "line feed" and "tab") :

$tab_chr = array() ;
for($control = 0; $control < 32; $control++) {
if ($control != 9 && $control != 10) {
$tab_chr[]= chr($control) ;
}
}
$tab_chr[]= chr(127) ;
$string = str_replace($tab_chr, '', $string);

<< Back to user notes page

To Top