<?php
class Employee
{
var $name;
var $salary;
function Employee($new_name)
{
$name = $new_name;
}
function set_salary($new_salary)
{
$salary = $new_salary;
}
}
$josh = new Employee("josh");
$josh->set_salary(100);
?>
Class instances are created using the new operator