Class Php

class Dog { 
    function __construct($name='No-name', $breed='breed unknown', $price = 15) { 
        $this->name = $name; 
        $this->breed = $breed; 
        $this->price = $price; 
    } 

$aDog = new Dog(); 
$tweety = new Dog('A', 'a'); 
printf("

%s is a %s and costs \$%.2f.

\n", 
$aDog->name, $aDog->breed, $aDog->price); 
$tweety->price = 24.95; 
printf("

%s is a %s and costs \$%.2f.

\n", 
$tweety->name, $tweety->breed, $tweety->price); 
?>