Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2014
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. 1 <?php
  2. 2 class foobar {
  3. 3 public function __get($name){
  4. 4 echo "Requesting NAME: $name";
  5. 5 return 0;
  6. 6 }
  7. 7 }
  8. 8
  9. 9 $f = new foobar;
  10. 10 $f['th'];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement