示例#1
0
文件: App.php 项目: hutchike/YAWF
 /**
  * Get/set the prefix to apply to URIs
  *
  * @param String $prefix an optional prefix to apply to URIs
  * @return String the current prefix being applied to URIs
  */
 public static function prefix($prefix = NULL)
 {
     return is_null($prefix) ? self::$prefix : (self::$prefix = $prefix);
 }