9adc532349
They should load as a V not a C.
20 linhas
266 B
PHP
20 linhas
266 B
PHP
<?php
|
|
|
|
class C {
|
|
public static $blar;
|
|
public static $blor;
|
|
|
|
public static function buh(&$thinger = null) {
|
|
self::$blar = &$thinger;
|
|
self::$blor = &self::$blar;
|
|
}
|
|
}
|
|
|
|
function main() {
|
|
C::buh();
|
|
var_dump(C::$blar);
|
|
var_dump(C::$blor);
|
|
}
|
|
|
|
main();
|