Created
September 13, 2019 06:22
-
-
Save oppara/debdbea1881243e34a85a9e83a72691a to your computer and use it in GitHub Desktop.
全角スペースを含む trim
This file contains hidden or 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
<?php | |
function trim(string $str): string | |
{ | |
return preg_replace('/\A[\p{C}\p{Z}]++|[\p{C}\p{Z}]++\z/u', '', $str); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment