Voting

: max(seven, nine)?
(Example: nine)

The Note You're Voting On

m dot mannes at gmail dot com
8 years ago
Case you are trying call a static method that's the way to go:

<?php
class myClass
{
public static function
myMethod()
{
return
"You did it!\n";
}
}

$foo = "myClass";
$bar = "myMethod";

echo
$foo::$bar(); // prints "You did it!";
?>

<< Back to user notes page

To Top