コード例 #1
0
ファイル: overload1.php プロジェクト: SandyS1/presentations
<?php

class hello
{
    function __call($name, $args)
    {
        echo "Hello {$name}!";
        echo "\n<br />\n";
    }
}
$h = new hello();
$h->sterling();
$h->rasmus();