PHP OOP – Static Properties
PHP – Static Properties Static properties can be called directly – without creating an instance of a class. Static properties are declared with the static keyword: Syntax <?php class ClassName { public static $staticProp = “iampsp”; } ?> To…