Call class methods directly : Class Method « Class « PHP
- PHP
- Class
- Class Method
Call class methods directly
<?php
class Visitors
{
public function greetVisitor()
{
echo "Hello<br />";
}
function sayGoodbye()
{
echo "Goodbye<br />";
}
}
Visitors::greetVisitor();
$visitor = new Visitors();
$visitor->sayGoodbye();
?>
Related examples in the same category