コード例 #1
0
ファイル: xysti.php プロジェクト: SerdarSanri/Xysti
 /**
  * Count URI segments
  * @var string $uri
  * @return int
  */
 public static function uri_count($uri = NULL)
 {
     if (is_null($uri)) {
         $uri = URI::current();
     }
     return count(Xysti::uri_array($uri));
 }