Problem Statement
Which keyword allows accessing class methods or properties without creating an object?
Explanation
Static properties and methods belong to the class itself, not to instances. You can access them using ClassName::method().
Code Solution
SolutionRead Only
class Math { static $pi=3.14; static function add($a,$b){ return $a+$b; } }
echo Math::$pi;