duanran6441 2013-01-09 09:31
浏览 340
已采纳

如何在上传前为文件添加前缀?

CMS (Modx Evolution) that I`m currently using has ability to print some informations into site (like date/username etc.). I want to use those functions to work with plupload.

Is it possible to add a prefix or completely rename file after (or before uploading) to server trough plupload depending on which user is actually logged in?

Example:

  • user uploads file test.txt,
  • on server it will look username_test.txt
  • 写回答

3条回答 默认 最新

  • doulu8341 2013-01-09 10:01
    关注

    try this

    <?php
    $username = 'username';
    $tmp_name = $_FILES["file"]["tmp_name"];
    $name = $username.$_FILES["file"]["name"];
    move_uploaded_file($tmp_name, "$uploads_dir/$name");
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?