Skip to content

Instantly share code, notes, and snippets.

@Menencia
Created August 14, 2012 07:15
Show Gist options
  • Save Menencia/3347138 to your computer and use it in GitHub Desktop.
Save Menencia/3347138 to your computer and use it in GitHub Desktop.
<?php
// ORM request
$v = ORM::factory('user')->where('activated', '=', 1);
// Checks the number of results
$x = clone $v;
var_dump($x->count_all());
// Operations that would change the number of results
// [...]
// Then execute the request
$v->find_all();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment