503f75d08b
These names don't make sense now that we run both suites the same way.
20 linhas
250 B
PHP
20 linhas
250 B
PHP
<?php
|
|
|
|
class NewClass {
|
|
static public $a;
|
|
}
|
|
|
|
function main() {
|
|
print "Test begin\n";
|
|
|
|
NewClass::$a = array(1,2,3);
|
|
while (($b = array_pop(NewClass::$a))) {
|
|
echo $b . "\n";
|
|
var_dump(NewClass::$a);
|
|
}
|
|
|
|
print "Test end\n";
|
|
}
|
|
|
|
main();
|