检索变量中的文件名

时间:2013-03-18 03:42:42

标签: php

要将文件从文件夹移动到另一个,我使用以下代码:

$new_file = new File($file['destination']->getPath() . File::SEPARATOR . $file['file']->getName());

现在,我需要添加一个唯一的ID并在数据库中存储文件名。 确定uniqid():

$new_file = new File($file['destination']->getPath() . File::SEPARATOR . uniqid() . '---' . $file['file']->getName());

产生如下文件名: 514685b08e6db --- SL004321_7_03-2013.pdf

现在,如何检索变量中的文件名以将其存储在MySQL上?

1 个答案:

答案 0 :(得分:0)

您可以将其存储在变量中并使用,例如

$filename = uniqid() . '---' . $file['file']->getName(); //your filename
$new_file = new File($file['destination']->getPath() . File::SEPARATOR . $filename);