Inheritance: extends Pattern
コード例 #1
0
ファイル: Prefixed.php プロジェクト: Pixy/ezpublish-kernel
 public function parse($type, $url)
 {
     if (strpos($url, $this->prefix) === 0) {
         $url = substr($url, strlen($this->prefix));
     }
     return parent::parse($type, $url);
 }