PHP 8.5.0 Beta 1 available for testing

Voting

: seven plus zero?
(Example: nine)

The Note You're Voting On

efesar
14 years ago
This small mb_trim function works for me.

<?php
function mb_trim( $string )
{
$string = preg_replace( "/(^\s+)|(\s+$)/us", "", $string );

return
$string;
}
?>

<< Back to user notes page

To Top