去掉方法:首先使用strrchr()返回“.后缀名”形式的字符串;然后使用str_replace()将文件名中“.后缀名”形式的字符串替换为空字符即可;语法“str_replace(strrchr(文件名, "."),"",文件名);”。
php去掉文件后缀名
<?php $filename="help.php"; $filename=str_replace(strrchr($filename, "."),"",$filename); echo $filename; ?>
输出:
help
推荐:《PHP视频教程》
说明:
strrchr() 函数查找字符串在另一个字符串中最后一次出现的位置,并返回从该位置到字符串结尾的所有字符。
语法:
strrchr(string,char)
参数:
string 必需。规定被搜索的字符串。
char 必需。规定要查找的字符。如果该参数是数字,则搜索匹配数字 ASCII 值的字符。
str_replace() 函数替换字符串中的一些字符(区分大小写)。
语法:
str_replace(find,replace,string,count)
参数:
find 必需。规定要查找的值。
replace 必需。规定替换 find 中的值的值。
string 必需。规定被搜索的字符串。
count 可选。一个变量,对替换数进行计数。
以上是php怎么去掉文件后缀名?的详细内容。更多信息请关注PHP中文网其他相关文章!