php zend framework2,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

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) : ?>

<?php echo $this->escapeHtml($student->id);?><?php echo $this->escapeHtml($student->name);?><?php echo $this->escapeHtml($student->phone);?><?php echo $this->escapeHtml($student->email);?>//应用了在Student.php的别名<?php echo $this->escapeHtml($student->mark);?>   

  

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

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值