本文整理汇总了PHP中Phalcon\Mvc\Router::addGet方法的典型用法代码示例。如果您正苦于以下问题:PHP Router::addGet方法的具体用法?PHP Router::addGet怎么用?PHP Router::addGet使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Phalcon\Mvc\Router
的用法示例。
在下文中一共展示了Router::addGet方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: addRoutes
public function addRoutes(Router $router)
{
$router->add('/' . $this->getApiRootUrl() . '(\\/?)', array('namespace' => $this->getApiControllerRootNamespace(), 'controller' => 'Index', 'action' => 'index'));
$router->addGet('/' . $this->getApiRootUrl() . '/:controller/:params', array('namespace' => $this->getApiControllerRootNamespace(), 'controller' => 1, 'action' => 'show', 'params' => 2));
$router->addGet('/' . $this->getApiRootUrl() . '/:controller', array('namespace' => $this->getApiControllerRootNamespace(), 'controller' => 1, 'action' => 'index'));
$router->addPost('/' . $this->getApiRootUrl() . '/:controller', array('namespace' => $this->getApiControllerRootNamespace(), 'controller' => 1, 'action' => 'create'));
$router->addOptions('/' . $this->getApiRootUrl() . '/:controller', array('namespace' => $this->getApiControllerRootNamespace(), 'controller' => 1, 'action' => 'options'));
$router->addOptions('/' . $this->getApiRootUrl() . '/:controller/:params', array('namespace' => $this->getApiControllerRootNamespace(), 'controller' => 1, 'action' => 'options'));
$router->addDelete('/' . $this->getApiRootUrl() . '/:controller/:params', array('namespace' => $this->getApiControllerRootNamespace(), 'controller' => 1, 'action' => 'delete', 'params' => 2));
$router->addPut('/' . $this->getApiRootUrl() . '/:controller/:params', array('namespace' => $this->getApiControllerRootNamespace(), 'controller' => 1, 'action' => 'update', 'params' => 2));
}
示例2: Router
<?php
use Phalcon\Mvc\Router;
$router = new Router(false);
$router->removeExtraSlashes(true);
$router->addGet("/", ['controller' => 'index', 'action' => 'index']);
$router->addPost("/", ['controller' => 'index', 'action' => 'handleCardSubmit']);
$router->addGet('/index/success', ['controller' => 'index', 'action' => 'success']);
return $router;
示例3: Router
<?php
use Phalcon\Mvc\Router;
$router = new Router();
//Remove trailing slashes automatically
$router->removeExtraSlashes(true);
//main route
$router->add("/", array('controller' => 'index', 'action' => 'index'));
//GET VERB - GET ELEMENT
//Get elemets of relationship. Ex: /department/2/user
$router->addGet('/:controller/:int/([a-zA-Z0-9_-]+)', array('controller' => 1, 'action' => "list", 'id' => 2, 'relationship' => 3));
//Get one element. Ex: /user/2
$router->addGet('/:controller/:int', array('controller' => 1, 'action' => "get", 'id' => 2));
//Get all elements. Ex: /user
$router->addGet('/:controller', array('controller' => 1, 'action' => "list"));
//POST VERB - CREATE ELEMENT
//Create a new element. Ex: /user
$router->addPost('/:controller', array('controller' => 1, 'action' => "save"));
//PUT VERB - UPDATE ELEMENT
//Update a new element. Ex: /user
$router->addPut('/:controller/:int', array('controller' => 1, 'action' => "save", 'id' => 2));
//DELETE VERB - UPDATE ELEMENT
//Update a new element. Ex: /user
$router->addDelete('/:controller/:int', array('controller' => 1, 'action' => "delete", 'id' => 2));
//not founded route
$router->notFound(array('controller' => 'error', 'action' => 'page404'));
$router->setDefaults(array('controller' => 'index', 'action' => 'index'));
return $router;
示例4: Router
<?php
use Phalcon\Mvc\Router;
$router = new Router();
//Remove trailing slashes automatically
$router->removeExtraSlashes(true);
//main route
$router->add("/", array('controller' => 'index', 'action' => 'index'));
//Get one element. Ex: /user/2
$router->addGet('/:controller/:int', array('controller' => 1, 'action' => "get", 'id' => 2));
//Get all elements. Ex: /user
$router->addGet('/:controller', array('controller' => 1, 'action' => "list"));
//Create a new element. Ex: /user
$router->addPost('/:controller', array('controller' => 1, 'action' => "create"));
//Update a new element. Ex: /user
$router->addPut('/:controller/:int', array('controller' => 1, 'action' => "update", 'id' => 2));
//DELETE a new element. Ex: /user
$router->addDelete('/:controller/:int', array('controller' => 'user', 'action' => "delete", 'id' => 2));
$router->add('/:controller/index', array('controller' => 1, 'action' => "index"));
// CRUD and Session
$router->add('/:controller/signup', array('controller' => 1, 'action' => "signup"));
$router->add('/:controller/login', array('controller' => 1, 'action' => "login"));
$router->add('/:controller/logout', array('controller' => 1, 'action' => "logout"));
//CRUD
$router->add('/:controller/search/:int', array('controller' => 1, 'action' => "search"));
$router->add('/:controller/edit/:int', array('controller' => 1, 'action' => "edit", 'id' => '2'));
//not founded route
$router->notFound(array('controller' => 'error', 'action' => 'page404'));
$router->setDefaults(array('controller' => 'index', 'action' => 'index'));
return $router;
示例5: Router
<?php
use Phalcon\Mvc\Router;
$router = new Router();
$router->addGet("/", array("controller" => "index"));
$router->addPost("/new", array("controller" => "new"));
// Covers /v/ and /view/
$router->addGet("/v(iew)?/([a-zA-Z0-9]{5,13})", array("controller" => "view", "id" => 2));
$router->addGet("/v(iew)?/([a-zA-Z0-9]{5,13})/raw", array("controller" => "view", "action" => "raw", "id" => 2));
$router->removeExtraSlashes(true);
return $router;
示例6: Router
<?php
use Phalcon\Mvc\Router;
$router = new Router(false);
/**
* You can define routes in this file the router gets
* loaded back into the dependency injection after you define routes.
*
*
*/
$router->addGet('/', 'Home::show');
$router->addGet('/response', 'Home::response');
return $router;
示例7: function
/**
* Start the session the first time some component request the session service
*/
$di->set('session', function () {
$session = new SessionAdapter();
$session->start();
return $session;
});
/**
* Register configurations
*/
$di->set('config', function () use($config) {
return $config;
});
/**
* Register router
*/
$di->set('router', function () {
$router = new Router();
$router->removeExtraSlashes(true);
$router->setDefaults(['controller' => 'index', 'action' => 'index']);
/*$router->notFound([
'controller' => 'errors',
'action' => 'pageNotFound'
]);*/
$router->addGet('/project/{profile:([a-zA-Z0-9-(.)]+)}', ['action' => 'profile', 'project' => 1]);
$router->addPost('/filter', ['action' => 'filter'])->beforeMatch(function ($uri, $route) {
return isset($_SERVER['HTTP_X_REQUESTED_WITH']) && $_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest';
});
return $router;
});
示例8: addGet
public function addGet($pattern, $paths = null, $position = Router::POSITION_LAST)
{
return parent::addGet($pattern, $paths, $position);
}