This utility creates a PHP class definition, e.g.:
     class Car{
       var $year;
       var $make;
       var $model;
       function Car($year,$make,$model){
         $this->year=$year;
         $this->make=$make;
         $this->model=$model;
       }
       function getYear(){
         return $this->year;
       }
       function getMake(){
         return $this->make;
       }
       function getModel(){
         return $this->model;
       }
    }
    
Class Name:
Variable Names (comma-separated):