Code
<?php
class base
{
public function base()
{
echo "<br/>constructor -- evoked";
}
public static function something($data)
{
echo "<br/>static base something";
}
}
base::something("Hello Wrold");
$bstatic = new Base();
$bstatic->something("can id do that");
?>

Runtime View
