Created
May 3, 2018 11:08
-
-
Save gartes/8610d8e69bdb910c11f09d7fedf90264 to your computer and use it in GitHub Desktop.
Получить имя файла из URL
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
$info = new SplFileInfo( $url ); | |
$fileName = $info->getBasename() ; |
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
$info = new SplFileInfo( '/path/to/file.txt' ); | |
$fileName = $info->getBasename( '.txt' ); | |
// $fileName == "file" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment