Detect file attribute function
Let’s take a screenshot of the installation process of discuz, a very famous software in China:
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
Function: whether the file exists.
Function: whether the file is readable
Function: whether the file is readable Writable
Function: whether the file is executable
Function: Whether it is a file
Function: whether it is a directory
Function: clear the status cache of the file
<?php if(file_exists('install.lock')){ echo '已安裝,請(qǐng)不要再次進(jìn)行安裝'; exit; } ?>Let’s do a file installation detection experiment to detect whether the file or directory has write or read permissions. If not, the installation cannot be performed. The idea of ????handling this matter is as follows: 1. Define a batch of arrays that need to detect permissions2. You can detect whether it is a folder or a file3. Make a set variable. If the set variable is false, the next step of installation will not be displayed.
<?php //可以定義一批文件是否存在 $files = [ 'config.php', 'img/', 'uploads/', ]; //定義標(biāo)志位變量 $flag = true; foreach($files as $v){ echo $v; //判斷是文件還是文件夾 if(is_file($v)){ echo '是一個(gè)文件 '; }else if(is_dir($v)){ echo '是一個(gè)文件夾 '; } if(is_readable($v)){ echo ' 可讀'; }else{ echo '<font color="red">不可讀</font>'; } if(is_writeable($v)){ echo '可寫'; }else{ echo '<font color="red">不可寫</font>'; } echo '<br />'; } if($flag){ echo '<a href="step1">下一步</a>'; }else{ echo '不能進(jìn)行安裝'; } ?>Through the above example, we have done it. Implement installation detection during the installation process of a certain PHP software. This is the realization of our above ideas.