如何在最后一个版本使用jQuery的文件上传PHP和数据库?(How use Jquery-File

2019-08-03 03:37发布

如何使用jQuery的文件上传使用PHP和数据库? 我想插入或删除有关的图像行,当我上传或删除图像和各图像的名称将随着时间的(),当他们被上传到该目录。

所有的结果,我通过谷歌发现告诉我,我需要编辑upload.class.php但最后版本具有的index.php只有UploadHandler.php ...

文件UploadHandler.php具有类UploadHandler与代码

public function post($print_response = true) {
        if (isset($_REQUEST['_method']) && $_REQUEST['_method'] === 'DELETE') {
            return $this->delete($print_response);
        }
        $upload = isset($_FILES[$this->options['param_name']]) ?
            $_FILES[$this->options['param_name']] : null;
        // Parse the Content-Disposition header, if available:
        $file_name = isset($_SERVER['HTTP_CONTENT_DISPOSITION']) ?
            rawurldecode(preg_replace(
                '/(^[^"]+")|("$)/',
                '',
                $_SERVER['HTTP_CONTENT_DISPOSITION']
            )) : null;
        $file_type = isset($_SERVER['HTTP_CONTENT_DESCRIPTION']) ?
            $_SERVER['HTTP_CONTENT_DESCRIPTION'] : null;
        // Parse the Content-Range header, which has the following form:
        // Content-Range: bytes 0-524287/2000000
        $content_range = isset($_SERVER['HTTP_CONTENT_RANGE']) ?
            preg_split('/[^0-9]+/', $_SERVER['HTTP_CONTENT_RANGE']) : null;
        $size =  $content_range ? $content_range[3] : null;
        $info = array();
        if ($upload && is_array($upload['tmp_name'])) {
            // param_name is an array identifier like "files[]",
            // $_FILES is a multi-dimensional array:
            foreach ($upload['tmp_name'] as $index => $value) {
                $info[] = $this->handle_file_upload(
                    $upload['tmp_name'][$index],
                    $file_name ? $file_name : $upload['name'][$index],
                    $size ? $size : $upload['size'][$index],
                    $file_type ? $file_type : $upload['type'][$index],
                    $upload['error'][$index],
                    $index,
                    $content_range
                );

            }
        } else {
            // param_name is a single object identifier like "file",
            // $_FILES is a one-dimensional array:
            $info[] = $this->handle_file_upload(
                isset($upload['tmp_name']) ? $upload['tmp_name'] : null,
                $file_name ? $file_name : (isset($upload['name']) ?
                        $upload['name'] : null),
                $size ? $size : (isset($upload['size']) ?
                        $upload['size'] : $_SERVER['CONTENT_LENGTH']),
                $file_type ? $file_type : (isset($upload['type']) ?
                        $upload['type'] : $_SERVER['CONTENT_TYPE']),
                isset($upload['error']) ? $upload['error'] : null,
                null,
                $content_range
            );
        }
        return $this->generate_response($info, $print_response);
    }



public function delete($print_response = true) {
            $file_name = $this->get_file_name_param();
            $file_path = $this->get_upload_path($file_name);
            $success = is_file($file_path) && $file_name[0] !== '.' && unlink($file_path);
            if ($success) {
                foreach($this->options['image_versions'] as $version => $options) {
                    if (!empty($version)) {
                        $file = $this->get_upload_path($file_name, $version);
                        if (is_file($file)) {
                            unlink($file);
                        }
                    }
                }
            }
            return $this->generate_response($success, $print_response);
        }

做什么行我需​​要添加到插入或删除mysql的文件名?

PS:我用PHP

Answer 1:

我用docementation,现在可以说,不是文件upload.class.php要编辑的文件UploadHandler.php比使用next:

搜索这行 - > $这个- >选项=阵列(

添加以下代码在接下来的几行:

// mysql connection settings
'database' => '**YOUR DATABASE**',
'host' => '**localhost**',
'username' => '**YOUR USERNAME**',
'password' => '**YOUR PASSWORD**',
// end

所以,现在你必须编写的SQL查询的功能,该功能handle_file_upload后复制和粘贴例如下面的代码:

function query($query) {
$database = $this->options['database'];
$host = $this->options['host'];
$username = $this->options['username'];
$password = $this->options['password'];
$link = mysql_connect($host,$username,$password);
if (!$link) {
die(mysql_error());
}
$db_selected = mysql_select_db($database);
if (!$db_selected) {
die(mysql_error());
}
$result = mysql_query($query);
mysql_close($link);
return $result;
}

添加文件的详细信息数据库我解释了图片上传这个功能,所以在这里我们的图片名称保存到数据库中添加此功能也太upload.class.php

function add_img($whichimg)
{
$add_to_db = $this->query("INSERT INTO yourtable (**yourcolumnone**) VALUES ('".$whichimg."')") or die(mysql_error());
return $add_to_db;
}

所以在这个功能我们称之为与夹具之间的字符串函数查询。

你也可以插入其他细节也一样,例如,文件的大小。

至少我们必须调用这个函数,在函数handle_file_upload结束下面的代码。 以下代码下方粘贴或超过此线:$文件- >大小= $ FILE_SIZE;

$file->upload_to_db = $this->add_img($file->name);

删除我们创建删除之前我们做是很容易进入的入口,我们创建了一个新的功能,这也使得SQL查询来删除它。

function delete_img($delimg)
{
$delete_from_db = $this->query("DELETE FROM yourtable WHERE yourcolumnone = '$delimg'") or die(mysql_error());
return $delete_from_db;
}

现在,我们必须调用函数,这个时候删除功能。 转至删除功能和搜索这行:如果($成功){在这个下面的代码粘贴。

$this->delete_img($file_name);

享受=)



Answer 2:

你应该重载默认的方法,以添加自定义功能(如文档中所述)。 如果修改原始文件,您会在插件的新版本(或修正)被释放还有更多的工作。

对于我自己而言,我基本确定它扩展了原来的和修改只有/server/php/index.php文件的自定义类:

class myUploadHandler extends UploadHandler {
    //do your stuff
    //for exemple if you are using a DB:
    //overload methods like handle_file_upload() for insertion in a DB,
    //set_additional_file_properties() if you need more fields linked to each uploaded file
    // or delete() also if you want to remove from DB
}
$upload_handler = new myUploadHandler(array(
    'user_dirs' => true,
    'download_via_php' => true,
));


文章来源: How use Jquery-File-Upload PHP with database in last release?