Skip to content

Instantly share code, notes, and snippets.

View klukiyan's full-sized avatar
🎯
Focusing

Kiril Lukiyan klukiyan

🎯
Focusing
View GitHub Profile
@klukiyan
klukiyan / zf2-sql-examples.php
Created April 25, 2017 21:21 — forked from anton-kotik/zf2-sql-examples.php
Zend Framework 2 database SQL examples
<?php
use Zend\Db\Sql\Expression;
use Zend\Db\Sql\Predicate\Operator;
use Zend\Db\Sql\Select;
use Zend\Db\Sql\Where;
use Zend\Db\TableGateway\TableGateway;
$adapter = $this->getServiceLocator()->get('Zend\Db\Adapter\Adapter');
$table = new TableGateway('users', $adapter);