How to set a (UTF8) modifier for RegEx of a RegEx Route in Zend Framework 2?(如何在 Zend Framework 2 中为 RegEx 路由的 RegEx 设置 (UTF8) 修饰符?)
问题描述
我有 URI 中(德语)特殊字符的问题 并希望尝试使用 RegEx Route 和 PCRE 模式修饰符,用于 UTF-8 u
.
I'm having troubles with (german) special characters in URIs and want to try to resolve it with a RegEx Route and a PCRE pattern modifier for UTF-8 u
.
'router' => array(
'routes' => array(
// ...
'city' => array(
'type' => 'regex',
'options' => array(
'regex' => '/catalog/(?<city>[a-zA-Z0-9_-äöüÄÖÜß]*)/u',
'defaults' => array(
'controller' => 'CatalogControllerCatalog',
'action' => 'list-sports',
),
'spec' => '/catalog/%city%',
),
'may_terminate' => true,
),
),
),
但是当我设置它时,路由完全停止工作(错误 404)——无论是带有特殊字符的 URI 还是没有特殊字符的 URI.
But when I set it, the route stopps to work at all (error 404) -- neither for URIs with nor to ones without special characters.
如何正确设置修饰符?
推荐答案
因为我已经打开了这个,这里有一个处理程序可以解决这个问题.
Since I already had this open here's a handler that solves the problem.
<?php
namespace ApplicationMvcRouterHttp;
use ZendMvcRouterHttpRegex;
use ZendMvcRouterHttpRouteMatch;
use ZendStdlibRequestInterface as Request;
class UnicodeRegex extends Regex
{
/**
* match(): defined by RouteInterface interface.
*
* @param Request $request
* @param integer $pathOffset
* @return RouteMatch
*/
public function match(Request $request, $pathOffset = null)
{
if (!method_exists($request, 'getUri')) {
return null;
}
$uri = $request->getUri();
// path decoded before match
$path = rawurldecode($uri->getPath());
// regex with u modifier
if ($pathOffset !== null) {
$result = preg_match('(G' . $this->regex . ')u', $path, $matches, null, $pathOffset);
} else {
$result = preg_match('(^' . $this->regex . '$)u', $path, $matches);
}
if (!$result) {
return null;
}
$matchedLength = strlen($matches[0]);
foreach ($matches as $key => $value) {
if (is_numeric($key) || is_int($key) || $value === '') {
unset($matches[$key]);
} else {
$matches[$key] = $value;
}
}
return new RouteMatch(array_merge($this->defaults, $matches), $matchedLength);
}
}
假设你把文件放在 Application/Mvc/Router/Http/UnicodeRegex
你的路由定义应该是这样的
Assuming you place the file in Application/Mvc/Router/Http/UnicodeRegex
your route definition should look like this
'router' => array(
'routes' => array(
// ...
'city' => array(
'type' => 'ApplicationMvcRouterHttpUnicodeRegex',
'options' => array(
'regex' => '/catalog/(?<city>[p{L}]+)',
// or if you prefer, your original regex should work too
// 'regex' => '/catalog/(?<city>[a-zA-Z0-9_-äöüÄÖÜß]*)',
'defaults' => array(
'controller' => 'CatalogControllerCatalog',
'action' => 'list-sports',
),
'spec' => '/catalog/%city%',
),
'may_terminate' => true,
),
),
),
这篇关于如何在 Zend Framework 2 中为 RegEx 路由的 RegEx 设置 (UTF8) 修饰符?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Zend Framework 2 中为 RegEx 路由的 RegEx 设置 (UTF8) 修饰符?
基础教程推荐
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01