如上图中有许多文件。PHP怎么循环列出liuyanben文件夹里的所有文件的权限,并依次列出
就像dz安装时检查文件权限的列表似得
改用什么PHP代码???
PHP는 디렉토리에 있는 모든 파일의 권한을 확인하고 나열합니다. - PHP 중국어 웹사이트 Q&A - PHP는 디렉토리에 있는 모든 파일의 권한을 확인하고 나열합니다. - PHP 중국어 웹사이트 Q&A
둘러보고 배워보세요.
<?php function stripleft($string,$str){ $i=stripos($string,$str); if($i===0){ return substr($string,strlen($str)); }else{ return $string; } } $files=glob(FCPATH.'*.*'); foreach($files as $k=>$f){ $a=stripleft($f,FCPATH); echo $a.' | '.getChmod($a).'<br>'; }
/* * substr 返回字符串的子串 * base_convert 在任意进制之间转换数字 * fileperms 取得文件的权限 */ // 获取权限 function getChmod($filepath){ return substr(base_convert(@fileperms($filepath),10,8),-4); }
PHP는 디렉토리에 있는 모든 파일의 권한을 확인하고 나열합니다. - PHP 중국어 웹사이트 Q&A - PHP는 디렉토리에 있는 모든 파일의 권한을 확인하고 나열합니다. - PHP 중국어 웹사이트 Q&A
둘러보고 배워보세요.