pizza.class.php:
<?php
class pizza {
    var 
$ingredients = array();

    function 
get_price() {
        return 
4.12;
    }

    function 
set_ingredients($ingredients) {
        
$this->ingredients $ingredients;
    }
}
?>


Script (pizza-test.php):
<?php
include '/usr/local/srm/banana/lib/pizza.class.php';

$pizza = new pizza;
$s = new SRM('/tmp/srm.socket');
$pizza = new SRMApp($s$f'quatro_fromaggi');

echo 
$pizza->get_price(), "\n";
$pizza->set_ingredients(
    array(
'cheese''cheese''cheese''cheese'));
?>