Example:
<?php class Product{ private $name; public function set_name($value){ return $this->name=$value; } public function get_name(){ return $this->name; } } $p=new Product; $p->set_name('Laptop'); $p->get_name();//Laptop