PHP - Classes and Objects
You want to count how many objects of class
User have been created using a static property. Which code correctly implements this?class User {
public static $count = 0;
public function __construct() {
// What goes here?
}
}