コード例 #1
0
ファイル: RouteHandler.php プロジェクト: QuangDang212/roadiz
 public static function getBaseRoute($path)
 {
     if (StringHandler::endsWith($path, "Locale")) {
         $path = StringHandler::replaceLast("Locale", "", $path);
     }
     return $path;
 }
コード例 #2
0
 /**
  * @dataProvider replaceLastProvider
  */
 public function testReplaceLast($input, $wanted, $expected)
 {
     $this->assertEquals($expected, StringHandler::replaceLast($wanted, "", $input));
 }