RosettaCodeData/Task/Call-an-object-method/PHP/call-an-object-method.php

10 lines
230 B
PHP
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
// 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);