Lines Matching refs:count
2 SPL: Countable::count() with wrong return types and exception.
7 function count() {
12 function count() {
18 function count() {
24 function count() {
30 function count() {
31 throw new Exception('Thrown from count');
37 var_dump(count(new returnNull));
40 var_dump(count(new returnString));
43 var_dump(count(new returnObject));
46 var_dump(count(new returnArray));
50 echo count(new throwException);
68 Thrown from count