Home  >  Article  >  Backend Development  >  How to modify directory permissions in php

How to modify directory permissions in php

青灯夜游
青灯夜游Original
2021-03-19 11:35:052651browse

In PHP, you can use the chmod() function to modify the directory permissions. This function can change the permissions of the specified file. The syntax format is "chmod (file/directory to be checked, new permissions)"; if modified Returns TRUE on success and FALSE on failure.

How to modify directory permissions in php

The operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer

php modify directory permissions

Use the mkdir() function to create an xw folder and modify the permissions of the folder to "0777"

<?php
mkdir(&#39;xw/&#39;);
chmod(&#39;xw/&#39;,0777);
?>

Description:

chmod() function changes the specified file permission. Returns TRUE if successful, FALSE if failed. The syntax is as follows:

chmod(file,mode)

How to modify directory permissions in php

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to modify directory permissions in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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