linux下php上傳文件注意事項(xiàng)

字號:


    本文實(shí)例為大家分享了linux下php上傳文件注意事項(xiàng),供大家參考,具體內(nèi)容如下
    1、修改上傳目錄權(quán)限
    linux 修改某目錄下所有所有子目錄權(quán)限
    chmod -R 777 html
    修改某目錄為任何用戶都用寫讀執(zhí)行權(quán)限
    chmod a+rwx html
    2、設(shè)置上傳文件的根目錄
    //取得項(xiàng)目根目錄
    $siteRoot = dirname(__file__);
    3、修改配置文件的上傳大小 php.ini
    post_max_size = 200M
    upload_max_filesize = 200M
    4、如果要根據(jù)時(shí)間創(chuàng)建文件夾再上傳文件則需要如下
    $aimUrl = str_replace('', '/', $aimUrl);
    $aimDir = '';
    $arr = explode('/', $aimUrl);
    foreach ($arr as $str) 
    {
    $aimDir .= $str . '/';
    if (!file_exists($aimDir)) {
     mkdir($aimDir);
     chmod($aimDir, 0777);
     }
    }
    以上就是本文的全部內(nèi)容,希望對大家學(xué)習(xí)php程序設(shè)計(jì)有所幫助。