예제 #1
0
파일: File.php 프로젝트: rendix2/QW_MVS
 public static function isWritable($filePath)
 {
     if (!Validator::isFile($filePath)) {
         throw new IllegalArgumentException();
     }
     return is_writable($filePath);
 }