How to modify directory permissions in php

青灯夜游
Release: 2023-03-08 20:56:01
Original
2599 people have browsed it

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);
?>
Copy after login

Description:

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

chmod(file,mode)
Copy after login

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!

Related labels:
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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!