简体   繁体   中英

How can i change the path to a specific folder

the folder structure is like this:

plugin->upload->php->files

list->

'script_url' => $this->getFullUrl().'/'.basename(__FILE__),
            //'upload_dir' => dirname(__FILE__).'/files/',
            //'upload_url' => $this->getFullUrl().'/files/',
            'upload_dir' => dirname(__FILE__).'/'.$_SESSION['username'].'/',
            'upload_url' => $this->getFullUrl().'/'.$_SESSION['username'].'/',

How can i change this file to list folder??

然后将“ upload_dir”设置为: dirname(__FILE__).'/../../list/'.$_SESSION['username']

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM