Advertisement
Yousuf1791

Construct-function

May 14th, 2023
517
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. <?php
  2.  
  3. class Country{
  4.  
  5.     public $name;
  6.    
  7.     function __construct($n = "No name"){
  8.         $this->name = $n;
  9.     }
  10.    
  11.     function show_name(){
  12.         echo $this->name;
  13.     }
  14. }
  15.  
  16. $obj = new Country("Bangladesh");
  17.  
  18. echo $obj->show_name();
  19.  
  20. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement