Mega Code Archive

 
Categories / Php / Class
 

Using Class Constants

<?php  class Employee {      const CATEGORY_WORKER = 0;      const CATEGORY_SUPERVISOR = 1;      const CATEGORY_MANAGER = 2;       } ?>