日期:2013-04-27 浏览次数:20561 次
//方法二
function extend_2($file_name)
{
??? $extend = pathinfo($file_name);
??? $extend = strtolower($extend["extension"]);
??? return $extend;
}
//方法三
function extend_3($file_name)
{
??? $extend =explode("." , $file_name);
??? return $extend[1];
}
$file = "c:\test.test\haha.haha.txt";
echo extend_1($file);
echo "\n
\n";
echo extend_2($file);
echo "\n
\n";
echo extend_3($file);
?>
返回结果:
txt
txt
test\haha
=============================================================
$file = "a.b.c.jpeg";
$ext = strrchr($file, ".");
print $ext;