RosettaCodeData/Task/Call-an-object-method/PHP/call-an-object-method.php
2023-07-01 13:44:08 -04:00

9 lines
230 B
PHP

// Static method
MyClass::method($someParameter);
// In PHP 5.3+, static method can be called on a string of the class name
$foo = 'MyClass';
$foo::method($someParameter);
// Instance method
$myInstance->method($someParameter);