<?php
class SampleClass
{
function getValue()
{
return "foobar";
}
}
$sc = new SampleClass();
SampleFunction($sc);


function SampleFunction($refClass)
{
    echo $refClass->getValue();
}
?>