Critter.php

Source of Critter.php

<?php
//Critter with access modifiers

class Critter{
  //now the property is protected
  protected $name;
  
  public function __construct($name = "Anonymous"){
    $this->name = $name;
  }
  
  public function setName($name){
    $this->name = $name;
  }
  
  public function getName(){
    return $this->name;
  }
  
  public function sayHi(){
    return "Hi. My name is $this->name.";
  }
  
} // end critter def
?>