gpt4 book ai didi

mysql - 在数据库中更新扩展名之前的文件名

转载 作者:行者123 更新时间:2023-11-30 00:31:10 24 4
gpt4 key购买 nike

当在我们的 CRM 上执行操作时,它会触发一个流程。我想要的是,当它满足某些条件时,我需要更新数据库中文档的名称。但是,如果调用该文档,例如:

Prospectus.docx

我想重命名文档:Prospectus_1.docx

如何进行更新以在文档扩展名前添加数字?

$sql = "UPDATE b_bp_history SET NAME ='$documentName_[this is where I need the number before the document extension] ' 
WHERE ID='".$_POST['ID']."

我想我可能需要先删除文档扩展名,然后再添加它?

我将原始文档名称存储为 $documentName。

我们将不胜感激您的帮助。

最佳答案

以下是如何使用 PHP 的 preg_replace 给定 $documentName$number 生成新文档名称 ($newDocumentName)。功能:

$newDocumentName = preg_replace('/(.*)\.(.*)/', '$1_' . $number . '.$2', $documentName);

然后在 UPDATE SQL 语句的 SET 子句中使用 $newDocumentName,如下所示:

$sql = "UPDATE b_bp_history SET NAME ='$newDocumentName' WHERE ID='".$_POST['ID']."

关于mysql - 在数据库中更新扩展名之前的文件名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22505885/

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