Skip to content

Instantly share code, notes, and snippets.

View soberanes's full-sized avatar
馃
Enjoying

Paul Soberanes soberanes

馃
Enjoying
View GitHub Profile
@soberanes
soberanes / CustomValidator.php
Last active August 29, 2015 14:12
Zend Framework 2 : Code snippets
<?php
//Validate rephone
$inputFilter->add(array(
'name' => 'rephone',
'required' => true,
'validators' => array(
array(
'name' => 'StringLength',
'options' => array (
'min' => 10,
<?php
use Zend\Db\Sql\Select;
// basic table
$select0 = new Select;
$select0->from('foo');
// 'SELECT "foo".* FROM "foo"';
@soberanes
soberanes / 0_reuse_code.js
Last active August 29, 2015 14:07
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console