Skip to content

Instantly share code, notes, and snippets.

@jocoonopa
Created November 19, 2013 01:55
Show Gist options
  • Save jocoonopa/7538938 to your computer and use it in GitHub Desktop.
Save jocoonopa/7538938 to your computer and use it in GitHub Desktop.
<?php
class CountMe implements Countable {
protected $_myCount = 3;
public function count() {
return $this->_myCount;
}
}
$countable = new CountMe();
echo count( $countable ); //result is "3" as expected
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment