gpt4 book ai didi

php - 如何使用数据表和数据映射器?它们有必要吗?

转载 作者:行者123 更新时间:2023-12-02 07:40:35 25 4
gpt4 key购买 nike

我之前有过使用框架的经验,但从未真正深入了解过模型。我不知道是所有框架都是这种情况还是只是 zend,但目前我正在学习 Zend Framework。

我一直在浏览示例应用程序并尝试阅读大量文章,但我无法找到让我感到困惑的简短而明确的答案。

3个类之间是什么关系? (模型、模型映射器、数据表)

假设我有一个名为 users 的数据库表,它有 3 个字段 userID、userName、userPassword 什么是示例代码?

是否有必要以这种方式构建我的应用程序的模型部分?如果我只有从数据库中检索数据并将结果作为数组返回的函数,这会是一种不好的做法吗?

请考虑这是一个非常简单的应用程序,它具有用户、用户的图片库和消息传递功能。

提前致谢。

最佳答案

对于简单的应用程序和让您在 ZF 中有所涉猎,只需使用将数据库表绑定(bind)到数据库适配器的 DbTable 模型即可开始。这不是最佳做法,但很容易,可以帮助您入门。

使用 Zend_Tool cli 命令将具有这种格式
zf create db-table name actual-table-name module force-overwrite,
这将转化为:

zf create db-table Users users

数据库这将在 /application/models/DbTable/ 中创建一个名为 Users.php 的文件,它看起来像:

<?php

class Application_Model_DbTable_Users extends Zend_Db_Table_Abstract
{
protected $_name = 'users'; //name of table, does not have to match name of class
}

现在在 Controller 中使用它来 fetchAll 非常简单:

<?php

class IndexController extends Zend_Controller_Action {

public function indexAction(){
$db = new Application_Model_DbTable_Users();//instantiate model
$result = $db->fetchAll();//perform query, see Zend_Db_Table_Abstract for API
$this->view->users = $result;//send to view
}
}

只需制作这个小类,您就可以访问所选数据库适配器的功能。您还可以在 DbTable 模型中构建方法来自定义您的访问需求。

<?php

class Application_Model_DbTable_Users extends Zend_Db_Table_Abstract
{
protected $_name = 'users'; //name of table, does not have to match name of class

public function getUser($id) {
$select = $this->select();//see Zend_Db_Select for info, provides more secure interface for building queries.
$select->where('id = ?', $id);//can be chained

$result = $this->fetchRow($select);//returns a row object, if array is needed use ->toArray()
return $result;
}
}

此方法的使用方式与 fetchAll() 方法类似:

<?php

class IndexController extends Zend_Controller_Action {

public function indexAction(){
$id = $this->getRequest()->getParam('id');//assumes the id is set somehow and posted
$db = new Application_Model_DbTable_Users();//instantiate model
$result = $db->getUser($id);//perform query, see Zend_Db_Table_Abstract for API
//$this->view->user = $result;//send to view as object
$this->view->user = $result->toArray();//send to view as an array
}
}

希望这能让您入门,不要忘记阅读 manual

关于php - 如何使用数据表和数据映射器?它们有必要吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11595196/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com