關於ZendFramework2連接資料庫的操作

不言
發布: 2023-04-01 11:00:02
原創
1405 人瀏覽過

這篇文章主要介紹了ZendFramework2連接資料庫操作,結合完整實例形式分析了ZendFramework2連接資料庫的具體步驟、配置方法、相關操作技巧與注意事項,需要的朋友可以參考下

本文實例講述了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

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()); }
登入後複製

在模板頁面的呼叫

paginator as $student) : ?>  escapeHtml($student->id);?> escapeHtml($student->name);?> escapeHtml($student->phone);?> escapeHtml($student->email);?>//应用了在Student.php的别名 escapeHtml($student->mark);?>      
登入後複製

以上就是本文的全部內容,希望對大家的學習有所幫助,更多相關內容請關注PHP中文網!

相關推薦:

Zend Framework中Bootstrap類別的用法解析

Yii2框架實作資料庫常用操作解析

##關於Zend Framework如何實作將session儲存在memcache中

以上是關於ZendFramework2連接資料庫的操作的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!