// find position of last dot "."
$pos = strrpos( $s, "." );
// loose the extension
// get substring from start of string to the last dot including the dot ( the + 1 )
$s_s = substr($s, 0, 1 + $pos );
// add your string to the end of it
$s_s .= "webp";
4条答案
按热度按时间2w2cym1i1#
使用
preg_replace
:字符串
下面是为您准备的单元测试:
型
kuhbmx9i2#
字符串
koaltpgm3#
简单的字符串操作:
字符串
解释:
型
这适用于任何扩展。我认为这是最通用的解决方案,为您的问题做的方式,你要求- php,字符串。
1cklez4t4#
字符串
在回答中有错误的信息遗漏这里才是正确的方法。