The mkdir () function of php is used to create a secure folder for permission setting.

Source: Internet
Author: User
This article mainly introduces the php mkdir () function to create secure permission settings for folders. in this case, the system umask affects the specified permission parameters of mkdir, which is smaller than expected, there is no such problem when using the chmod function. if you need it, refer to the following problem description:
Use the following php code to create a directory. the expected permission for the directory is 0777, and the actual result is 0755.

The code is as follows:

Mkdir ('./aa/', 0777 );

Analysis and test results:

1. the directory permission specified by the mkdir () function must be less than or equal to the default permission set by the system umask.

For example, the default umask in linux is generally 0022, that is, the default permission for creating a directory is 0755. Therefore, the directory permission obtained by php mkdir ('./aa/', 0777) is 0755.

The code is as follows:


Xw @ xw-X201 :~ /Desktop/dd/aa $ umask
0022
Xw @ xw-X201 :~ /Desktop/dd/aa $ php-r "mkdir ('./xw/', 0777 );"
Xw @ xw-X201 :~ /Desktop/dd/aa $ php-r "mkdir ('./xw1/', 0755 );"
Xw @ xw-X201 :~ /Desktop/dd/aa $ php-r "mkdir ('./xw2/", 0747 );"
Xw @ xw-X201 :~ /Desktop/dd/aa $ ll
Total usage 20
Drwxrwxrwx 5 xw 4096 ./
Drwxr-xr-x 6 xw 4096 ../
Drwxr-xr-x 2 xw 4096 xw/
Drwxr-xr-x 2 xw 4096 xw1/
Drwxr -- r-x 2 xw 4096 xw2/


Change the default system permission to 777, and mkdir () can specify more permissions.

The code is as follows:


Xw @ xw-X201 :~ /Desktop/dd/aa $ umask 000
Xw @ xw-X201 :~ /Desktop/dd/aa $ php-r "mkdir ('./xw2/", 0777 );"
Xw @ xw-X201 :~ /Desktop/dd/aa $ ll
Total usage 12
Drwxrwxrwx 3 xw 4096 ./
Drwxr-xr-x 6 xw 4096 ../
Drwxrwxrwx 2 xw 4096 xw2/

2. the chmod () function is not affected by the system umask. you can set a higher permission than the default permission of the system.

The code is as follows:


Xw @ xw-X201 :~ /Desktop/dd/aa $ umask
0022
Xw @ xw-X201 :~ /Desktop/dd/aa $ php-r "mkdir ('./xw1/', 0777 );"
Xw @ xw-X201 :~ /Desktop/dd/aa $ php-r "mkdir ('./xw2 /');"
Xw @ xw-X201 :~ /Desktop/dd/aa $ php-r "mkdir ('./xw3/'); chmod ('./xw3/', 0777 );"
Xw @ xw-X201 :~ /Desktop/dd/aa $ ll
Total usage 20
Drwxrwxrwx 5 xw 4096 ./
Drwxr-xr-x 6 xw 4096 ../
Drwxr-xr-x 2 xw 4096 xw1/
Drwxr-xr-x 2 xw 4096 xw2/
Drwxrwxrwx 2 xw 4096 xw3/

3. the mkdir command of the system can be used to set permissions greater than the default value.

The code is as follows:


Xw @ xw-X201 :~ /Desktop/dd/aa $ umask
0022
Xw @ xw-X201 :~ /Desktop/dd/aa $ mkdir-m0777 xw
Xw @ xw-X201 :~ /Desktop/dd/aa $ ll
Total usage 12
Drwxrwxrwx 3 xw 4096 ./
Drwxr-xr-x 6 xw 4096 ../
Drwxrwxrwx 2 xw 4096 xw/


  

Summary:

To create a directory with read and write permissions for php, you 'd better use the following code. do not directly use the mkdir function to specify permissions to avoid the impact of the umask system.

The code is as follows:


Mkdir ('./xw /');
Chmod ('./xw/', 0777 );

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.