因此,我一直在研究并致力于构建自己的 MVC 框架,但不断遇到 6 种不同的实现方式,我想知道到目前为止我是否走在正确的轨道上。是的,我知道我可以使用 Zend 或其他类似的工具,但我真的想了解框架是如何工作的,而不仅仅是使用其他人的。
这是我的索引文件的简单版本:
if(isset($_GET['url']))
{
$url = strtolower($_GET['url']);
}
else
{
$url = 'home';
}
switch($url) // Select the controller based on the GET var in the url
{
case 'home': include(ROOT_DIR . 'app/controllers/homeCon.php'); // This page has the link to the DB test page on it
break;
case 'dbtest': include(ROOT_DIR . 'app/controllers/dbTestCon.php');
break;
default: include(ROOT_DIR . 'app/views/error404View.php');
}
这是我的 dbTestCon.php 控制器的简单版本:
if(isset($_POST['dbSubBtn']))
{
$model = new DbTestModel();
if($_POST['firstName'] != '' && $_POST['lastName'] != '')
{
$model->submitToDb($_POST['firstName'], $_POST['lastName'])
$model->displayPage('goodToGo');
}
else
{
$model->displayPage('noInput');
}
}
else
{
$model->displayPage('normal');
}
这是我的 DbTestModel.php:
class DbTestModel
{
public function displayPage($version)
{
$title = "DB Test Page";
$themeStylesheetPath = 'public/css/cssStyles.css';
include(ROOT_DIR . 'app/views/headerView.php');
include(ROOT_DIR . 'app/views/dbTestView.php');
switch($version)
{
case 'goodToGo':
include(ROOT_DIR . 'app/views/dbTestSuccessView.php');
break;
case 'noInput':
include(ROOT_DIR . 'app/views/noInputView.php');
break;
}
include(ROOT_DIR . 'app/views/footerView.php');
}
public function submitToDb($firstName, $lastName)
{
try
{
$db = new PDO("mysql:host=" . DB_HOST . ";dbname=" . DB_NAME, DB_USER, DB_PASS);
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$sql = $db->prepare('insert into dbtest(firstName, lastName) values(:firstName, :lastName)');
$sql->bindParam(':firstName', $firstName);
$sql->bindParam(':lastName', $lastName);
$sql->execute();
$db = null;
}
catch(PDOException $e)
{
echo "It seems there was an error. Please refresh your browser and try again. " . $e->getMessage();
}
}
}
这是我的 dbTestView.php:
<form name="dbTestForm" id="dbTestForm" method="POST" action="dbtest">
<label for="firstName">First Name</label>
<input type="text" name="firstName" id="firstName" />
<label for="lastName">Last Name</label>
<input type="text" name="lastName" id="lastName" />
<input type="submit" name="dbSubBtn" id="dbSubBtn" value="Submit to DB" />
</form>
这个简单的示例适用于我的测试环境,但我担心我会在下一个项目中开始使用它,并在进行到一半时意识到我的框架存在根本性的问题,必须重新开始。感谢您提供任何帮助或建议。