1

我想将它连接到我的数据库并使用已设置名称的变量更改路径方式。

mysql_connect.php 完全适用于我的其他网站主页,它包含一个变量:$path_way在里面,它不会作为这个 UploadfileHandler.php 上的路径工作。

我在网上做了很多研究,似乎找不到明确的答案或任何正确的解决方案。

请注意,这只是正在编辑的代码的一小部分。

require('mysql_connect.php');
function __construct($options = null, $initialize = true, $error_messages = null) {
    $this->options = array(
        'script_url' => $this->get_full_url().'/',
        'upload_dir' => dirname($this->get_server_var('SCRIPT_FILENAME')).'/../../../uploads/user/table1/'.$path_way.'/',
        'upload_url' => $this->get_full_url().'/../../../uploads/user/table1/'.$path_way.'/',
        'user_dirs' => false,
        'mkdir_mode' => 0755,
        'param_name' => 'files',
        // Set the following option to 'POST', if your server does not support
        // DELETE requests. This is a parameter sent to the client:
        'delete_type' => 'DELETE',
        'access_control_allow_origin' => '*',
        'access_control_allow_credentials' => false,
        'access_control_allow_methods' => array(
            'OPTIONS',
            'HEAD',
            'GET',
            'POST',
            'PUT',
            'PATCH',
            'DELETE'
        ),
4

0 回答 0