linux下php上传文件需要注意什么

PHPz
Release: 2020-09-05 14:23:34
Original
2100 people have browsed it

linux下php上传文件需要注意:1、修改上传目录权限;2、设置上传文件的根目录;3、修改配置文件的上传大小限制;4、先根据时间创建文件夹再上传文件。

linux下php上传文件需要注意什么

linux下php上传文件需要注意哪些事项?

linux下php上传文件注意

1、修改上传目录权限

linux 修改某目录下所有所有子目录权限

chmod -R 777 html
Copy after login

修改某目录为任何用户都用写读执行权限

chmod a+rwx html
Copy after login

2、设置上传文件的根目录

siteRoot = dirname(__file__); //取得项目根目录
Copy after login

3、修改配置文件的上传大小 php.ini

post_max_size = 200M
upload_max_filesize = 200M
Copy after login

4 如果要根据时间创建文件夹再上传文件则需

 $aimUrl = str_replace('\\', '/', $aimUrl);
    $aimDir = '';
    $arr = explode('/', $aimUrl);
    foreach ($arr as $str)
    {
        $aimDir .= $str . '/';
        if (!file_exists($aimDir)) {
            mkdir($aimDir);
            chmod($aimDir, 0777);
        }
    }
Copy after login

更多相关技术知识,请访问PHP中文网

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template