Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/298.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php HPLeague路由-uri中的区域设置_Php_Routes_Request_Uri_Locale - Fatal编程技术网

Php HPLeague路由-uri中的区域设置

Php HPLeague路由-uri中的区域设置,php,routes,request,uri,locale,Php,Routes,Request,Uri,Locale,嗨,我已经从一个自编的路线引擎切换到了HPLeague路线。我的问题是:我可以访问路由操作方法之外的通配符变量吗 例子 路由部分: $router = new League\Route\RouteCollection; $router->addRoute('GET', '{locale}/{controller}/{action}', '\Backend\Controller\{controller}Controller::{action}'); $dispatcher = $rout

嗨,我已经从一个自编的路线引擎切换到了HPLeague路线。我的问题是:我可以访问路由操作方法之外的通配符变量吗

例子
路由部分:

$router = new League\Route\RouteCollection;
$router->addRoute('GET', '{locale}/{controller}/{action}', '\Backend\Controller\{controller}Controller::{action}');

$dispatcher = $router->getDispatcher();

//making a call with, for example, '/en/foo/bar', or '/de/foo/bar'
$response = $dispatcher->dispatch($oRequest->getMethod(), $oRequest->getPathInfo());

$response->send();

控制器部件

class FooController extends AppController  {

    public function __construct() {
        //<---- here i want to access the {locale} from the URI somehow
    }

    public function bar(Request $request, Response $response, array $args) {
        // $args = [
        //     'locale'   => 'de',  // the actual value of {locale}
        //     'controller' => 'foo' // the actual value of {controller}
        //     'action' => 'bar' // the actual value of {bar}
        // ];
    }
}
类FooController扩展了AppController{
公共函数构造(){
//'de',//{locale}的实际值
//'controller'=>'foo'//{controller}的实际值
//'action'=>'bar'//{bar}的实际值
// ];
}
}
我在文件里找不到任何东西


我使用的是“league/route”:“^1.2”

我认为默认情况下,您只能静态调用控制器类中的方法,当您这样做时,控制器的构造函数将不会自动调用。而且,您不能使用路由的通配符来动态调用控制器

请注意,这是不安全的,但您仍然可以通过这样的联盟/路线完成您想要的任务:


控制器

class TestController  {

    public function __construct($args) {
        //the wildcards will be passed as an array in the constructor like this
        $this->locale = $args['locale'];
    }

    public function check(Request $request, Response $response, array $args) {
        // $args = [
        //     'locale'   => 'de',  // the actual value of {locale}
        //     'controller' => 'Test' // the actual value of {controller}
        //     'action' => 'check' // the actual value of {action}
        // ];

        return $response;
    }
}

自定义策略

class CustomStrategy implements StrategyInterface {
    public function dispatch($controller, array $vars)
    {
        $controller_parts = [];
        foreach($controller as $con){
            foreach ($vars as $key => $value) {
                $placeholder = sprintf('{%s}', $key);
                $con = str_replace($placeholder, $value, $con);
            }
            $controller_parts[] = $con;
        }

        //the controller will be instantiated inside the strategy
        $controllerObject = new $controller_parts[0]($vars);

        //and the action will be called here
        return $controllerObject->$controller_parts[1](Request::createFromGlobals(),new Response(),$vars);
    }
}

具有自定义策略集成的路由

$router = new League\Route\RouteCollection;
$router->setStrategy(new CustomStrategy()); //integrate the custom strategy
$router->addRoute('GET', '/{locale}/{controller}/{action}', '{controller}Controller::{action}');

$dispatcher = $router->getDispatcher();

//if your url is /en/Test/check, then TestController->check() will be called
$response = $dispatcher->dispatch($oRequest->getMethod(), $oRequest->getPathInfo());

$response->send();

我认为不可能在构造函数中访问它,但您可以自己尝试解析$u服务器['REQUEST\u URI']