Skip to content

Instantly share code, notes, and snippets.

@oppara
Created September 13, 2019 06:22
Show Gist options
  • Save oppara/debdbea1881243e34a85a9e83a72691a to your computer and use it in GitHub Desktop.
Save oppara/debdbea1881243e34a85a9e83a72691a to your computer and use it in GitHub Desktop.
全角スペースを含む trim
<?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