Getters And Setters

Lesson 32
Last Updated : November, 2017


PHP - Programming Language
This course covers the basics of programming in PHP. Work your way through the videos/articles and I'll teach you everything you need to know to start your programming journey!
Table of Content

Code

Copyclass Movie{
     public $title;
     private $rating;

     function __construct($title, $rating){
          $this->title = $title;
          $this->setRating($rating);
     }

     function getRating(){
          return $this->rating;
     }
     function setRating($rating){
          if($rating == "G" || $rating == "PG" || $rating == "PG-13" || $rating == "R" || $rating == "NR"){
               $this->rating = $rating;
          } else {
               $this->rating = "NR";
          }
     }
};