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