Voting

: zero minus zero?
(Example: nine)

The Note You're Voting On

rmamdaminov at gmail dot com
1 year ago
Note that this function also counts enums.

<?php

enum Bla
{
case
Foo;
}

var_dump(get_declared_classes());
?>

Result:
array(116) {
...
[115]=> string(3) "Bla"
}

<< Back to user notes page

To Top