there is:
class MyClass {} $a = new MyClass(); $b = new MyClass(); $d = new MyClass(); // etc... need to get something like:
Array ( [0] => a [1] => b [3] => c // etc... ) Actually the question:
"How to get for the custom class MyClass list of objects created by it?", Is there a built-in php-function?
MyClass- red_python am