ZendFramework2连接数据库操作实例


Posted in PHP onApril 18, 2017

本文实例讲述了ZendFramework2连接数据库操作。分享给大家供大家参考,具体如下:

相对于zf1,来说,zf2让我们对于数据库这方面的操作我的个人感觉是对于字段起别名简单了,但是对数据库的操作虽然配置写好的就基本不需要动了,但是还是比1的配置要繁琐,

还是那句话,大家可以去看看源码。。。

Module.php 里面添加

public function getServiceConfig()
{
    return array(
      'factories' => array(
        'Student\Model\StudentTable' => function($sm) {
          $tableGateway = $sm->get('StudentTableGateway');
          $table = new StudentTable($tableGateway);
          return $table;
        },
        'StudentTableGateway' => function ($sm) {
          $dbAdapter = $sm->get('Zend\Db\Adapter\Adapter');
          $resultSetPrototype = new ResultSet();
          $resultSetPrototype->setArrayObjectPrototype(new Student());
          return new TableGateway('cc_user', $dbAdapter, null, $resultSetPrototype);//table Name is cc_user
        },
      ),
    );
}

student.php 这个是Model/Student.php

namespace Student\Model;
class Student
{
  public $id;
  public $name;
  public $phone;
  public $mark;
  public $email;
  public function exchangeArray($data)//别名
  {
    $this->id   = (!empty($data['cc_u_id'])) ? $data['cc_u_id'] : null;
    $this->name = (!empty($data['cc_u_name'])) ? $data['cc_u_name'] : null;
    $this->phone = (!empty($data['cc_u_phone'])) ? $data['cc_u_phone'] : null;
    $this->mark = (!empty($data['cc_u_mark'])) ? $data['cc_u_mark'] : null;
    $this->email = (!empty($data['cc_u_email'])) ? $data['cc_u_email'] : null;
  }
}

StudentTable.php Model/StudentTable.php

<?php
namespace Student\Model;
use Zend\Db\ResultSet\ResultSet;
use Zend\Db\TableGateway\TableGateway;
use Zend\Db\Sql\Select;
use Zend\Paginator\Adapter\DbSelect;
use Zend\Paginator\Paginator;
class StudentTable
{
  protected $tableGateway;
  protected $table='cc_user';
  public function __construct(TableGateway $tableGateway)
  {
    $this->tableGateway = $tableGateway;
  }
  public function fetchAll($paginated)
  {//分页
     if($paginated) {
      // create a new Select object for the table album
      $select = new Select('cc_user');
      // create a new result set based on the Student entity
      $resultSetPrototype = new ResultSet();
      $resultSetPrototype->setArrayObjectPrototype(new Student());
      // create a new pagination adapter object
      $paginatorAdapter = new DbSelect(
        // our configured select object
        $select,
        // the adapter to run it against
        $this->tableGateway->getAdapter(),
        // the result set to hydrate
        $resultSetPrototype
      );
      $paginator = new Paginator($paginatorAdapter);
      return $paginator;
    }
    $resultSet = $this->tableGateway->select();
    return $resultSet;
  }
  public function getStudent($id)
  {
    $id = (int) $id;
    $rowset = $this->tableGateway->select(array('id' => $id));
    $row = $rowset->current();
    if (!$row) {
      throw new \Exception("Could not find row $id");
    }
    return $row;
  }
  public function deleteStudent($id)
  {
    $this->tableGateway->delete(array('id' => $id));
  }
  public function getLIValue(){
    return $this->tableGateway->getLastInsertValue();
  }
}

Student/IndexController.php 调用数据库

public function indexAction(){
    /* return new ViewModel(array(
      'students' => $this->getStudentTable()->fetchAll(), //不分页
    ));*/
    $page=$this->params('page');//走分页 在model.config.php里面设置:
/*model.config.php
'defaults' => array(
 'controller' => 'Student\Controller\Index',
 'action'   => 'index',
 'page'=>'1',
),
*/
    $paginator = $this->getStudentTable()->fetchAll(true);
    // set the current page to what has been passed in query string, or to 1 if none set
    $paginator->setCurrentPageNumber((int)$this->params()->fromQuery('page', $page));
    // set the number of items per page to 10
    $paginator->setItemCountPerPage(10);
    return new ViewModel(array(
      'paginator' => $paginator //模板页面调用的时候的名字
    ));
  //print_r($this->getStudentTable()->fetchAll());
}

在模板页面的调用

<?php foreach ($this->paginator as $student) : ?>
<tr id="<?php echo $this->escapeHtml($student->id);?>">
  <td><?php echo $this->escapeHtml($student->id);?></td>
  <td><?php echo $this->escapeHtml($student->name);?></td>
  <td><?php echo $this->escapeHtml($student->phone);?></td>
  <td><?php echo $this->escapeHtml($student->email);?></td>//应用了在Student.php的别名
  <td><?php echo $this->escapeHtml($student->mark);?></td>
    <td><a href='#'  class='icol-bandaid editUserInfo'></a>  
      <a href='#' class='icol-key changePwd'></a>  
      <a herf='#'  class='icol-cross deleteStud'></a>
    </td>
  </tr>
<?php endforeach;?>

希望本文所述对大家基于Zend Framework框架的PHP程序设计有所帮助。

PHP 相关文章推荐
php后台程序与Javascript的两种交互方式
Oct 25 PHP
对于ThinkPHP框架早期版本的一个SQL注入漏洞详细分析
Jul 04 PHP
smarty自定义函数htmlcheckboxes用法实例
Jan 22 PHP
php+xml结合Ajax实现点赞功能完整实例
Jan 30 PHP
PHP二分查找算法示例【递归与非递归方法】
Sep 29 PHP
SAE实时日志接口SDK用法示例
Oct 09 PHP
CI框架无限级分类+递归的实现代码
Nov 01 PHP
PHP实现表单提交数据的验证处理功能【防SQL注入和XSS攻击等】
Jul 21 PHP
PHP+MySQL实现消息队列的方法分析
May 09 PHP
PHP删除数组中特定元素的两种方法
Feb 28 PHP
如何在centos8自定义目录安装php7.3
Nov 28 PHP
PHP dirname(__FILE__)原理及用法解析
Oct 28 PHP
PHP实现的数独求解问题示例
Apr 18 #PHP
PHP使用finfo_file()函数检测上传图片类型的实现方法
Apr 18 #PHP
php实现不通过扩展名准确判断文件类型的方法【finfo_file方法与二进制流】
Apr 18 #PHP
基于thinkPHP3.2实现微信接入及查询token值的方法
Apr 18 #PHP
PHP递归删除多维数组中的某个值
Apr 17 #PHP
Thinkphp5.0自动生成模块及目录的方法详解
Apr 17 #PHP
php正则表达式基本知识与应用详解【经典教程】
Apr 17 #PHP
You might like
php将字符串随机分割成不同长度数组的方法
2015/06/01 PHP
PHP防盗链的基本思想 防盗链的设置方法
2015/09/25 PHP
JavaScript与HTML结合的基本使用方法整理
2015/10/12 PHP
PHP实现用户登录的案例代码
2018/05/10 PHP
Laravel5.1 框架控制器基础用法实例分析
2020/01/04 PHP
jquery 表单下所有元素的隐藏
2009/07/25 Javascript
js 静态动态成员 and 信息的封装和隐藏
2011/05/29 Javascript
图片在浏览器中底部对齐 解决方法之一
2011/11/30 Javascript
JQuery异步加载无限下拉框级联功能实现示例
2014/02/19 Javascript
javascript实现获取cookie过期时间的变通方法
2014/08/14 Javascript
js由下向上不断上升冒气泡效果实例
2015/05/07 Javascript
javascript自定义右键弹出菜单实现方法
2015/05/25 Javascript
JavaScript脚本判断蜘蛛来源的方法
2015/09/22 Javascript
jQuery+CSS实现滑动的标签分栏切换效果
2015/12/17 Javascript
canvas实现图像布局填充功能
2017/02/06 Javascript
Webpack打包css后z-index被重新计算的解决方法
2017/06/18 Javascript
基于 Vue 的树形选择组件的示例代码
2017/08/18 Javascript
vue2 mint-ui loadmore实现下拉刷新,上拉更多功能
2018/03/21 Javascript
paramiko模块安装和使用(远程登录服务器)
2014/01/27 Python
Python多进程同步Lock、Semaphore、Event实例
2014/11/21 Python
Python urllib、urllib2、httplib抓取网页代码实例
2015/05/09 Python
基于Python的关键字监控及告警
2017/07/06 Python
Python实现E-Mail收集插件实例教程
2019/02/06 Python
PyQtGraph在pyqt中的应用及安装过程
2019/08/04 Python
python实现发送邮件
2021/03/02 Python
意大利运动服减价商店:ScontoSport
2020/03/10 全球购物
在子网210.27.48.21/30种有多少个可用地址?分别是什么?
2014/07/27 面试题
什么是方法的重载
2013/06/24 面试题
PyQt QMainWindow的使用示例
2021/03/24 Python
2014年应届大学生自我评价
2014/01/09 职场文书
制药工程专业职业生涯规划范文
2014/03/10 职场文书
员工合理化建议书
2014/05/19 职场文书
2014年社区教育工作总结
2014/12/02 职场文书
2015大学生暑假调查报告
2015/07/13 职场文书
为什么不建议在go项目中使用init()
2021/04/12 Golang
win server2012 r2服务器共享文件夹如何设置
2022/06/21 Servers