Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gartes/8610d8e69bdb910c11f09d7fedf90264 to your computer and use it in GitHub Desktop.
Save gartes/8610d8e69bdb910c11f09d7fedf90264 to your computer and use it in GitHub Desktop.
Получить имя файла из URL
$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