Advertisement
Guest User

Untitled

a guest
Jul 24th, 2014
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. class Building
  2. {
  3. public $name;
  4.  
  5. function __construct($name)
  6. {
  7. $this->$name = $name;
  8. }
  9. }
  10.  
  11. $bd = new Building("Name");
  12. echo $bd->$name;
  13.  
  14. Notice: Undefined variable: name in (...)
  15. Fatal error: Cannot access empty property in (...)
  16.  
  17. Name
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement