AutoTest.inc 157 B

12345678910111213
  1. <?php
  2. class autoTest {
  3. public static $bob = "bob";
  4. public function __get($name) {
  5. echo "attempt to access $name\n";
  6. return "foo";
  7. }
  8. }
  9. ?>