Advertisement
Guest User

x3

a guest
Mar 24th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.15 KB | None | 0 0
  1. <?php
  2. class c{
  3.     public $a;
  4.     function __construct ($a){
  5.         $this->a = $a;
  6.     }
  7. }
  8. function $aa($b){
  9.     return $b;
  10. }
  11. $c = new c($aa);
  12. echo $c->a('b');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement