class Bird { function __construct($name, $breed) { $this->name = $name; $this->breed = $breed; } } $tweety = new Bird('Tweety', 'canary'); printf("%s is a %s.\n", $tweety->name, $tweety->breed);?>
%s is a %s.