我需要将文件扩展名.zip添加到以下字符串中:
$zipfilename = $row_rsParentGal['gallery_name'];
似乎没有把它弄好,最接近的是:
$zipfilename = $row_rsParentGal['gallery_name'].zip;
但只是将zip添加到gallery_name而不是点。
非常感谢 贝
答案 0 :(得分:5)
我想你只想要
$row_rsParentGal['gallery_name'] . ".zip";
这应该将字符串“.zip”连接到图库名称。
答案 1 :(得分:0)
我有一个可以为你提供方式的功能
function replace_extension($filename, $new_extension) {
$info = pathinfo($filename);
return $info['filename'] . '.' . $new_extension;
}
或者您也可以使用
function replace_extension($filename, $new_extension) {
return preg_replace('/\..+$/', '.' . $new_extension, $filename);
}