瘦身PHP框架图片上传放数据库


slim php framework image upload put database

我是瘦身php框架的新手,我想通过POST上传图像并将文件名放在数据库中,能否有人给我一些示例代码

路由器:

$app->post('/', 'uploadFile');

指向下面的函数:

function uploadFile () {
    if (!isset($_FILES['uploads'])) {
        echo "No files uploaded!!";
        return;
    }
    $imgs = array();
    $files = $_FILES['uploads'];
    $cnt = count($files['name']);
    for($i = 0 ; $i < $cnt ; $i++) {
        if ($files['error'][$i] === 0) {
            $name = uniqid('img-'.date('Ymd').'-');
            if (move_uploaded_file($files['tmp_name'][$i], 'uploads/' . $name) === true) {
                $imgs[] = array('url' => '/uploads/' . $name, 'name' => $files['name'][$i]);
            }
        }
    }
    $imageCount = count($imgs);
    if ($imageCount == 0) {
       echo 'No files uploaded!!  <p><a href="/">Try again</a>';
       return;
    }
    $plural = ($imageCount == 1) ? '' : 's';
    foreach($imgs as $img) {
        printf('%s <img src="%s" width="50" height="50" /><br/>', $img['name'], $img['url']);
    }
}

如果有人有更好的答案,欢迎修改我的。

Slim的创建者创建了一个库来处理通过Slim上传文件:https://github.com/brandonsavage/Upload