gpt4 book ai didi

PHP使用正则表达式将大写文件扩展名转换为小写

转载 作者:行者123 更新时间:2023-12-05 08:16:37 25 4
gpt4 key购买 nike

我正在尝试实现以下转换:

IM22_htp.JPG -> IM22_htp.jpg

到目前为止,我已经尝试了以下方法,但它似乎不起作用:

$string = "IM22_htp.JPG";
$pattern = '/(.+) \.(\w+)/i';
$replacement = '${1}\. strtolower($3)';
echo preg_replace($pattern, $replacement, $string);

最佳答案

使用正则表达式:

$string = "IM22_htp.JPG";
$new_string = preg_replace_callback('/\.\w+$/', function($m){
return strtolower($m[0]);
}, $string);
echo $new_string;

使用 pathinfo() :

$string = "IM22_htp.JPG";
$new_string = pathinfo($string, PATHINFO_FILENAME) . '.' . strtolower(pathinfo($string, PATHINFO_EXTENSION));
echo $new_string;

关于PHP使用正则表达式将大写文件扩展名转换为小写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15348906/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com