1

我目前有一个脚本,允许我将 1 个文件上传到我的服务器。它工作得很好。

这是我用来执行此操作的代码的一部分:

        // Custom configuration for this upload
        $config = array(
            'path' => DOCROOT.DS.'foldername/tomove/your/images',
            'randomize' => true,
            'ext_whitelist' => array('img', 'jpg', 'jpeg', 'gif', 'png'),
        );

        Upload::process($config);

        // if a valid file is passed than the function will save, or if its not empty
        if (Upload::is_valid())
        {
            // save them according to the config
            Upload::save();

           //if you want to save to tha database lets grab the file name
            $value = Upload::get_files();  
            $article->filename = $value[0]['saved_as'];
         } 

我现在想知道,如何遍历多个文件并将它们上传到我的服务器?

我猜想使用foreach循环,但恐怕我对此有点不知所措。

最终,我计划将这些文件名存储在我数据库的单独表中。

非常感谢您对此的任何帮助。

4

1 回答 1

3

您的代码中已经有了结果。

你已经存储了

$value = Upload::get_files();  

所以

$value = Upload::get_files();  

foreach($value as $files) {
   print_r($files); 
}

你会得到你需要的一切

于 2012-11-14T11:05:20.513 回答