<?php

class Greeter {

    function 
sayHello($to) {
        echo 
"Hello, ".$to;
    }
}

$g = new Greeter();

$g->sayHello("world");

?>