Created
August 23, 2019 00:20
-
-
Save neyasbltb88/a437ea3dccb2d41320b98e976d85d215 to your computer and use it in GitHub Desktop.
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 join_paths(...$paths) { | |
return preg_replace('~[/\\\\]+~', DIRECTORY_SEPARATOR, implode(DIRECTORY_SEPARATOR, $paths)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment