ru_php/ext/zend_test/tests/observer_preload.inc

13 lines
173 B
PHP

<?php
class Foo {
public static function test() {
return "foo::test";
}
}
if (true) {
function foo() {
return 'I should be observable';
}
}