如何在没有音译的路线参数中使用西里尔字符?

时间:2016-06-03 15:24:26

标签: routing symfony cyrillic

我在symfony 3.1中有一个西里尔语的残缺。

我有下一条路线:

group_content:
path:     /{name}/{subgroup}
defaults: { _controller: "AppBundle:Group:showSchedule", subgroup: 1 }
methods:  [ GET ]
requirements:
      name: ".+"

然后我在控制器中做了下一件事:

public function showScheduleAction($name, $subgroup)
{
    dump($name); 
    // other unimportant code goes here
}

我将'тест'作为名称参数传递,然后转储显示我:

dump result

如何在没有音译的路线参数中使用russin字母?

谢谢!

UPD:我只在IIS 10上出现此错误,如果我在linux-server上运行此代码,它可以正常工作。

0 个答案:

没有答案