Skip to content

Instantly share code, notes, and snippets.

@sandacn
Forked from oppara/gist:132274
Last active September 4, 2017 09:23
Show Gist options
  • Save sandacn/32721e3b4efa9a5cd67d485957bfebe1 to your computer and use it in GitHub Desktop.
Save sandacn/32721e3b4efa9a5cd67d485957bfebe1 to your computer and use it in GitHub Desktop.
php: mb_trim
function mb_trim( $str ) {
return mb_ereg_replace(
'^[[:space:]]*([\s\S]*\S)?[[:space:]]*$', '\1', $str );
}
@sandacn
Copy link
Author

sandacn commented Sep 4, 2017

faster than forked version

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment