Lines Matching refs:count
2 SPL: Countable::count() with wrong return types and exception.
7 function count(): int {
14 function count() {
21 function count() {
28 function count() {
35 function count() {
36 throw new Exception('Thrown from count');
42 var_dump(count(new returnNull));
45 var_dump(count(new returnString));
48 var_dump(count(new returnObject));
51 var_dump(count(new returnArray));
55 echo count(new throwException);
73 Thrown from count