Home >php教程 >php手册 >PHP修改文件(夹)的属性

PHP修改文件(夹)的属性

WBOY
WBOYOriginal
2016-06-06 19:59:021444browse

?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");
?> 

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