鉴于zendframework2在国内的教程比较少,本人有感而发,写下此篇关于zf2框架的技术文章,希望能帮助到需要的人。
一、config\autoload\global.php
<?php //php中文网 www.php.cn return array( 'db' => array( 'driver' => 'pdo', 'driver_options' => array( \PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES \'UTF8\'' ) ) );
二、config\autoload\local.php
<?php //php中文网 www.php.cn return array( 'db' => array( 'dsn' => 'mysql:dbname=testdb;hostname=localhost', 'username' => 'root', 'password' => 'root', 'prefix' => 'phpcn_' ), );
三、module\Application\Module.php
public function getServiceConfig() { return array( 'factories'=>array( 'Application\Model\Db'=>function($sm){ $service=new Model\Db($sm); return $service; }, 'Db\Adapter'=>function($sm){ $configs=$sm->get('Config'); $adapter = new \Zend\Db\Adapter\Adapter($configs['db']); return $adapter; }, 'Db\Feature'=>function($sm){ $configs=$sm->get('Config'); $Feature=new \Application\Model\TableNamePrefixFeature($configs['db']['prefix']); return $Feature; }, 'Db\Padapter'=>function($sm){ $Padapter=new \Zend\Paginator\Adapter\DbSelect($sm->get('Application\Model\Db')->select,$sm->get('Db\Adapter')); return $Padapter; }, 'Db\Paginator'=>function($sm){ $Paginator=new \Zend\Paginator\Paginator($sm->get('Db\Padapter')); return $Paginator; }, ), 'abstract_factories'=>array('Application\Services\CommonDbAbstractFactory') ); }
四、module\Application\view\pagination\tmpl.phtml
<?php if ($this->pageCount): ?> <p class="pageX"> <?php if (isset($this->previous)): ?> <a href="<?php echo $this->url().'?p='.$this->previous;?>">< 前一页</a> | <?php else: ?> <span>< 前一页</span> | <?php endif; ?> <?php foreach ($this->pagesInRange as $page): ?> <?php if ($page != $this->current): ?> <a href="<?php echo $this->url().'?p='.$page;?>"><?php echo $page;?></a> | <?php else: ?> <?php echo $page; ?> | <?php endif; ?> <?php endforeach; ?> <?php if (isset($this->next)): ?> <a href="<?php echo $this->url().'?p='.$this->next;?>">下一页 ></a> <?php else: ?> <span>下一页 ></span> <?php endif; ?> </p> <?php endif; ?>
五、module\Application\src\Application\Services\CommonDbAbstractFactory.php
<?php //php中文网 www.php.cn namespace Application\Services; use Zend\ServiceManager\AbstractFactoryInterface; use Zend\ServiceManager\ServiceLocatorInterface; class CommonDbAbstractFactory implements AbstractFactoryInterface { public function canCreateServiceWithName(ServiceLocatorInterface $locator, $name, $requestedName) { $a=explode(':',$name); if(!empty($a[0]) && $a[0]=='db'){ return true; } return false; } public function createServiceWithName(ServiceLocatorInterface $locator, $name, $requestedName) { $a=explode(':',$name); return $locator->get('Application\Model\Db')->get($a[1]); } }
六、module\Application\src\Application\Model\Db.php
<?php //php中文网 www.php.cn namespace Application\Model; use Zend\Db\TableGateway\TableGateway; use Zend\ServiceManager\ServiceManager; class Db { public function construct(ServiceManager $sm){ $this->sm=$sm; } public function get($tablename=null) { $configs=$this->sm->get('Config'); $adapter=$this->sm->get('Db\Adapter'); $dbFeature=$this->sm->get('Db\Feature'); $this->db=new TableGateway($tablename,$adapter,$dbFeature); $this->select=$this->db->getSql()->select(); return $this; } public function fetch(){ return $this->db->selectWith($this->select); } public function getSql(){ return $this->select; } public function getTableGateway(){ return $this->db; } public function select($where = null){ return $this->db->select($where); } public function insert($set){ return $this->db->insert($set); } public function update($set, $where = null){ return $this->db->update($set,$where); } public function delete($where){ return $this->db->delete($where); } public function call($functionName,$args){ $this->select=call_user_func_array(array($this->select,$functionName),$args); return $this; } }
七、module\Application\src\Application\Model\TableNamePrefixFeature.php
<?php //php中文网 www.php.cn namespace Application\Model; use Zend\Db\TableGateway\Feature\AbstractFeature; class TableNamePrefixFeature extends AbstractFeature { protected $prefix=null; public function construct($prefix=null) { if(null!==$prefix) { $this->setPrefix($prefix); } } public function setPrefix($prefix) { $this->prefix=$prefix; } public function postInitialize() { if(null!==$this->prefix){ $this->tableGateway->getSql()->setTable($this->prefix.$this->tableGateway->table); } } }
八、module\Application\src\Application\Controller\IndexController.php
$this->sm=$this->getServiceLocator(); $this->model=$this->sm->get('db:model'); $p=intval($this->getRequest()->getQuery('p',1)); $per_page=1; $result=$this->model->where('id > 2')->order('id DESC')->limit($per_page)->offset(($p-1)*$per_page)->fetch()->toArray(); $paginator=$this->sm->get('Db\Paginator'); $paginator->setCurrentPageNumber($p); $paginator->setItemCountPerPage($per_page); \Zend\Debug\Debug::dump($result); echo $this->sm->get('ViewRenderer')->paginationcontrol($paginator, 'Sliding', 'pagination/tmpl.phtml');
【本文由“Ty80账号”发布,2017年7月13日】
以上是zendframework2数据库网关及分页简化的详细内容。更多信息请关注PHP中文网其他相关文章!

负载均衡会影响会话管理,但可以通过会话复制、会话粘性和集中式会话存储解决。1.会话复制在服务器间复制会话数据。2.会话粘性将用户请求定向到同一服务器。3.集中式会话存储使用独立服务器如Redis存储会话数据,确保数据共享。

Sessionlockingisatechniqueusedtoensureauser'ssessionremainsexclusivetooneuseratatime.Itiscrucialforpreventingdatacorruptionandsecuritybreachesinmulti-userapplications.Sessionlockingisimplementedusingserver-sidelockingmechanisms,suchasReentrantLockinJ

PHP会话的替代方案包括Cookies、Token-basedAuthentication、Database-basedSessions和Redis/Memcached。1.Cookies通过在客户端存储数据来管理会话,简单但安全性低。2.Token-basedAuthentication使用令牌验证用户,安全性高但需额外逻辑。3.Database-basedSessions将数据存储在数据库中,扩展性好但可能影响性能。4.Redis/Memcached使用分布式缓存提高性能和扩展性,但需额外配

Sessionhijacking是指攻击者通过获取用户的sessionID来冒充用户。防范方法包括:1)使用HTTPS加密通信;2)验证sessionID的来源;3)使用安全的sessionID生成算法;4)定期更新sessionID。

本文比较了PHP和ASP.NET,重点是它们对大规模Web应用程序,性能差异和安全功能的适用性。两者对于大型项目都是可行的,但是PHP是开源和无关的,而ASP.NET,


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

Video Face Swap
使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热门文章

热工具

mPDF
mPDF是一个PHP库,可以从UTF-8编码的HTML生成PDF文件。原作者Ian Back编写mPDF以从他的网站上“即时”输出PDF文件,并处理不同的语言。与原始脚本如HTML2FPDF相比,它的速度较慢,并且在使用Unicode字体时生成的文件较大,但支持CSS样式等,并进行了大量增强。支持几乎所有语言,包括RTL(阿拉伯语和希伯来语)和CJK(中日韩)。支持嵌套的块级元素(如P、DIV),

安全考试浏览器
Safe Exam Browser是一个安全的浏览器环境,用于安全地进行在线考试。该软件将任何计算机变成一个安全的工作站。它控制对任何实用工具的访问,并防止学生使用未经授权的资源。

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

SecLists
SecLists是最终安全测试人员的伙伴。它是一个包含各种类型列表的集合,这些列表在安全评估过程中经常使用,都在一个地方。SecLists通过方便地提供安全测试人员可能需要的所有列表,帮助提高安全测试的效率和生产力。列表类型包括用户名、密码、URL、模糊测试有效载荷、敏感数据模式、Web shell等等。测试人员只需将此存储库拉到新的测试机上,他就可以访问到所需的每种类型的列表。

适用于 Eclipse 的 SAP NetWeaver 服务器适配器
将Eclipse与SAP NetWeaver应用服务器集成。