Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. class Config {
  2.  
  3.     # Config array
  4.    //public $config = array();
  5.  
  6.     public function __contruct($config) {
  7.         $this->config = $config;
  8.     }
  9. }
  10.  
  11. $c = new Config(array('a' => 'b'));
  12.  
  13. var_dump($c);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement