PHP 8.6.0 Beta 1 is available for testing

Voting

: min(six, nine)?
(Example: nine)

The Note You're Voting On

francois at bonzon point com
17 years ago
aaron, to discard unsupported characters instead of printing a ?, you might as well simply set the configuration directive:

mbstring.substitute_character = "none"

in your php.ini. Be sure to include the quotes around none. Or at run-time with

<?php
ini_set('mbstring.substitute_character', "none");
?>

<< Back to user notes page

To Top