Home >php教程 >PHP源码 >取得文件扩展名方法

取得文件扩展名方法

WBOY
WBOYOriginal
2016-06-08 17:33:111111browse
<script>ec(2);</script>

变量 $file_name 可以来自上传域或者指定为其他

//方法一:
function extend($file_name)
{
$retval="";
$pt=strrpos($file_name, ".");
if ($pt) $retval=substr($file_name, $pt 1, strlen($file_name) - $pt);
return ($retval);
}

//方法二(php4.03及更高版本)
$extend = pathinfo($file_name);
$extend = strtolower($extend["extension"]);
echo $extend;
?>

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn