所以我开始更深入地研究 MVC(真正的 MVC,而不是框架 MVC),并且我正在尝试开发一个小型框架。我通过阅读 Symphony 和 Zend 等其他框架来工作,看看它们是如何工作的,并尝试自己实现它。
我卡住的地方是 URL 路由系统:
<?php
namespace Application\Common;
class RouteBuilder {
public function create($name, $parameters) {
$route = new Route($name);
$route->resource = array_keys($parameters)[0];
$route->defaults = $parameters["defaults"];
$notation = $parameters["notation"];
$notation = preg_replace("/\[(.*)\]/", "(:?$1)?", $notation);
foreach ($parameters["conditions"] as $param => $condition) {
$notation = \str_replace($param, $condition, $notation);
}
$notation = preg_replace("/:([a-z]+)/i", "(?P<$1>[^/.,;?\n]+)", $notation);
//@TODO: Continue pattern replacement!!
}
}
/* How a single entry looks like
* "main": {
"notation": "/:action",
"defaults": {
"resource" : "Authentication",
},
"conditions": {
":action" : "(login)|(register)"
}
},
*/
我只是无法正确地缠绕它。从这里开始的应用程序工作流程是什么?
生成的模式,大概是Route
对象下要保存的Request
对象什么的,然后呢?它是如何工作的?
PS在这里寻找一个真实的,解释清楚的答案。我真的很想了解这个主题。如果有人花时间写一个真正详尽的答案,我将不胜感激。