Created
December 25, 2013 09:36
-
-
Save yourtion/8121744 to your computer and use it in GitHub Desktop.
PHP文件名、扩展名 From http://www.jb51.net/article/21878.htm
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 getExt($url) | |
| { | |
| $path=parse_url($url); | |
| $str=explode('.',$path['path']); | |
| return $str[1]; | |
| } |
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
| function retrieve($url) | |
| { | |
| //文件名 | |
| preg_match('/\/([^\/]+\.[a-z]+)[^\/]*$/',$url,$match); | |
| return $match[1]; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment