本文整理汇总了PHP中Routes::controller方法的典型用法代码示例。如果您正苦于以下问题:PHP Routes::controller方法的具体用法?PHP Routes::controller怎么用?PHP Routes::controller使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Routes
的用法示例。
在下文中一共展示了Routes::controller方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: add
public static function add($path, $controller, $method)
{
if (isset(self::$controller))
return true;
// Get URL Variables
preg_match_all('/\(\:(.+?)\)/', $path, $matches);
$URLVars = $matches[1];
// Generate URL Parser - '/^\/example\/([^\/]+?)\/$/i'
$path = preg_replace(self::$search, self::$replace, $path);
if (preg_match($path, self::$url, $values))
{
// Path Found Set Vars and Route
array_shift($values);
self::$controller = $controller;
self::$method = $method;
// Add Params to Method Call
if (!empty($values)) foreach(array_combine($URLVars, $values)
as $key => $value)
self::$params[] = $value;
}
}
示例2: build_rewrite
/**
* Build Rewrite
*
* Construye la estructura de ejecución de la APP desde la URL.
*
* @author Adrián Méndez <bin.cat.service@gmail.com>
*/
public static function build_rewrite($request)
{
$aGet = explode('/', $request);
foreach ($aGet as $k => $v) {
switch ($k) {
case 0:
$v = preg_replace('/^(\\_|[ ])+/', NULL, $v);
strtolower($v);
if (!is_null($v)) {
self::$controller = ucfirst($v);
}
break;
case 1:
$v = preg_replace('/^(\\_|[ ])+/', NULL, $v);
strtolower($v);
if (!is_null($v)) {
self::$action = $v;
}
break;
default:
if (!is_null($v)) {
self::$getAttrs[] = $v;
}
break;
}
}
return true;
}