从数组中获取文件输入值 - PHP

时间:2016-08-30 09:36:38

标签: php forms file input upload

我有一个PHP块,它位于我拥有的表单上,我有多个文件输入表单元素,允许表单用户上传文件。这很好用,但我希望能够返回文件上传位置的服务器的文件名/路径 - 但似乎无法解决如何执行此操作 - 目前该字段的值返回为“数组”

有关如何获取每个输入的实际上传路径和文件名的任何想法?

// initialize output;
$output = true;

// valid extensions
$ext_array = array('pdf', 'txt', 'doc', 'docx', 'rtf', 'jpg', 'jpeg', 'png', 'eps', 'svg', 'gif', 'ai');

// create unique path for this form submission
//$uploadpath = 'assets/uploads/';

// you can create some logic to automatically
// generate some type of folder structure here.
// the path that you specify will automatically
// be created by the script if it doesn't already
// exist.

// UPLOAD TO FOLDER IN /ASSETS/UPLOADS/ WITH ID OF THE PARENT PROJECT FOLDER RESOURCE 

// Get page ID
// $pageid = $modx->resource->get('id');
// $uploadpath = 'assets/uploads/'.$pageid.'/';

// Get parent page title
$parentObj = $modx->resource->getOne('Parent');
$parentpageid = $parentObj->get('pagetitle');
$uploadpath = 'assets/uploads/'.$parentpageid.'/';

// get full path to unique folder
$target_path = $modx->config['base_path'] . $uploadpath;

// get uploaded file names:
$submittedfiles = array_keys($_FILES);


// loop through files
foreach ($submittedfiles as $sf) {

// Get Filename and make sure its good.
$filename = basename( $_FILES[$sf]['name'] );

// Get file's extension
$ext = pathinfo($filename, PATHINFO_EXTENSION);
$ext = mb_strtolower($ext); // case insensitive

// is the file name empty (no file uploaded)
if($filename != '') {

    // is this the right type of file?
    if(in_array($ext, $ext_array)) {

        // clean up file name and make unique
        $filename = mb_strtolower($filename); // to lowercase
        $filename = str_replace(' ', '_', $filename); // spaces to underscores
        $filename = date("Y-m-d_G-i-s_") . $filename; // add date & time

        // full path to new file
        $myTarget = $target_path . $filename;

        // create directory to move file into if it doesn't exist
        mkdir($target_path, 0755, true);

        // is the file moved to the proper folder successfully?
        if(move_uploaded_file($_FILES[$sf]['tmp_name'], $myTarget)) {
            // set a new placeholder with the new full path (if you need it in subsequent hooks)
            $modx->setPlaceholder('fi.'.$sf.'_new', $myTarget);
            // set the permissions on the file
            if (!chmod($myTarget, 0644)) { /*some debug function*/ }

        } else {
            // File not uploaded
            $errorMsg = 'There was a problem uploading the file.';
            $hook->addError($sf, $errorMsg);
            $output = false; // generate submission error
        }

    } else {
        // File type not allowed
        $errorMsg = 'Type of file not allowed.';
        $hook->addError($sf, $errorMsg);
        $output = false; // generate submission error
    }

// if no file, don't error, but return blank
} else {
    $hook->setValue($sf, '');
}

}

return $output;

0 个答案:

没有答案