yoesoff

test-xxyy

May 13th, 2016
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4. * task-1-Create-People-PHP-And-People-class
  5. */
  6. class People {
  7.    
  8.     function __construct() {
  9.         //doing nothing
  10.     }
  11.    
  12.     /**
  13.     * task-2-Create-Hiep-function
  14.     */
  15.     public function hiep() {
  16.         return "hello hiep";
  17.     }
  18.    
  19.     /**
  20.     * task-3-Create-Eric-function
  21.     */
  22.     public function eric() {
  23.         return "hello eric";
  24.     }
  25.    
  26.     /**
  27.     * task-4-Create-Eric-function
  28.     */
  29.     public function yusuf() {
  30.         return "hello yusuf";
  31.     }
  32.    
  33. }
Advertisement
Add Comment
Please, Sign In to add comment