mirror of
https://github.com/php/php-src.git
synced 2026-03-25 16:52:18 +01:00
13 lines
160 B
PHP
13 lines
160 B
PHP
<?php
|
|
|
|
class autoTest {
|
|
public static $bob = "bob";
|
|
|
|
public function __get($name) {
|
|
echo "attempt to access $name\n";
|
|
return "foo";
|
|
}
|
|
|
|
}
|
|
|
|
?>
|