Home > php教程 > php手册 > body text

PHP修改文件(夹)的属性

WBOY
Release: 2016-06-06 19:59:02
Original
1383 people have browsed it

?php function set_writeable($file_name){ if(is_writeable($file_name)) echo 文件(夹)$file_name......可写br; else{ echo 文件(夹)$file_name......不可写br; if(@chmod($file_name,0777)) echo 修改成功; else{ echo 修改失败,请手动修改此文件访问权

function set_writeable($file_name){
 if(is_writeable($file_name))
  echo "文件(夹)$file_name......可写
";
 else{
  echo "文件(夹)$file_name......不可写
";
  if(@chmod($file_name,0777))
   echo "修改成功";
   else{
    echo "修改失败,请手动修改此文件访问权限!";
    exit;
   }
 }
}

set_writeable("1.php");
?> 

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 Recommendations
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!