I have a php class for which I create multiple instances. I would like to know how many times I created this object.
<?php
class myObject {
}
$object1 = new myObject;
$object2 = new myObject;
$object3 = new myObject;
?>
Is there any way to find that I created 3 myObjects?
source
share