Guest User

Untitled

a guest
Jul 23rd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. $type = 'cc';
  2. $obj = new $type; // outputs "hi!"
  3.  
  4. class cc {
  5. function __construct() {
  6. echo 'hi!';
  7. }
  8. }
Add Comment
Please, Sign In to add comment