Example #1
0
 public static function includeOnce($file_path)
 {
     $key = md5(Fn::truepath(Fn::convertPath($file_path)));
     if (!isset(self::$files[$key])) {
         include $file_path;
         self::$files[$key] = 1;
     }
 }