Guest User

Untitled

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