gpt4 book ai didi

php - Zend 翻译路线

转载 作者:可可西里 更新时间:2023-11-01 12:58:29 25 4
gpt4 key购买 nike

我有针对不同语言环境的多条路线:

例子:

/de 的路线

$routes['industry'] = array(
'route' => 'branche/:type',
'defaults' => array(
'module' => 'default',
'controller' => 'index',
'action' => 'branche',
'type' => 'automobil'
),
'reqs' => array(
'type' => '(automobil|textil)'
)
);

/en 的路线

$routes['industry'] = array(
'route' => 'industry/:type',
'defaults' => array(
'module' => 'default',
'controller' => 'index',
'action' => 'branche',
'type' => 'car'
),
'reqs' => array(
'type' => '(car|textile)'
)
);

在这种情况下,有可能只有一条路线而不是两条路线吗?

注意的不仅仅是改变的路由,还有请求的类型和默认类型。

最佳答案

我看到那里有两条不同的路线通常国际化在页面上而不是在url上

让我说清楚,你保留你的 url 并在 url 中使用你知道页面语言的参数

$routes['industry'] = array(
'route' => 'industry/:lang/:type',
'defaults' => array(
'module' => 'default',
'controller' => 'index',
'action' => 'branche',
'type' => 'car',
'lang' => 'en'
),
'reqs' => array(
'lang' => '(en|de)',
'type' => '(car|textile)'
)
);

根据参数 lang,您可以在 twig 或 phtml 或 html 上显示正确的消息

另一种更改 url 的方法是:

$routes['industry'] = array(
'route' => ':industry/:type',
'defaults' => array(
'module' => 'default',
'controller' => 'index',
'action' => 'branche',
'type' => 'car',
'industry' => 'industry'
),
'reqs' => array(
'industry' => '(industry|branche)',
'type' => '(car|textile)'
)
);

关于php - Zend 翻译路线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40553951/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com