Linux下PHP上傳檔案注意事項

2021-07-25 03:59:31 字數 457 閱讀 4560

1、修改上傳目錄許可權

linux 修改某目錄下所有所有子目錄許可權

chmod -r 777 html

修改某目錄為任何使用者都用寫讀執行許可權

chmod a+rwx html

2、設定上傳檔案的根目錄

siteroot = dirname(__file__); //取得專案根目錄

3、修改配置檔案的上傳大小 php.ini 

post_max_size = 200m

upload_max_filesize = 200m

4 如果要根據時間建立資料夾再上傳檔案則需

$aimurl = str_replace('\\', '/', $aimurl);

$aimdir = '';

$arr = explode('/', $aimurl);

foreach ($arr as $str) 

}

linux下php上傳檔案注意

linux下php上傳檔案注意 1 修改上傳目錄許可權 linux 修改某目錄下所有所有子目錄許可權 chmod r 777 html 修改某目錄為任何使用者都用寫讀執行許可權 chmod a rwx html 2 設定上傳檔案的根目錄 siteroot dirname file 取得專案根目錄 3...

linux下php上傳檔案注意

linux下php上傳檔案注意 1 修改上傳目錄許可權 linux 修改某目錄下所有所有子目錄許可權 chmod r 777 html 修改某目錄為任何使用者都用寫讀執行許可權 chmod a rwx html 2 設定上傳檔案的根目錄 siteroot dirname file 取得專案根目錄 3...

PHP上傳檔案注意事項

1 需配置 php.ini 1 file uploads on,通過http post方式上傳檔案 2 upload tmp dir 來配置上傳檔案的臨時目錄 3 upload max filesize 2m,上傳檔案的最大值,預設值2m 4 max file uploads 20,一次最多上傳多少...