Created
June 18, 2009 23:13
-
-
Save oppara/132274 to your computer and use it in GitHub Desktop.
php: mb_trim
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function mb_trim( $str ) { | |
return mb_ereg_replace( | |
'^[[:space:]]*([\s\S]*?)[[:space:]]*$', '\1', $str ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
this one faster than above