[snip]
class Collection implements Countable
{
  public function count()
  {
    return 200;
  }   
}

$c = new Collection();
echo(count($c));
[/snip]

Shouldn't this be 

echo Collection->count($c);

or something like that?

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to