PHP 8.5.0 Alpha 4 available for testing

Voting

: eight plus zero?
(Example: nine)

The Note You're Voting On

vinayak dot anivase at gmail dot com
7 years ago
This is also possible:

class Foo {
public static $bar = 'a static property';
}

$baz = (new Foo)::$bar;
echo $baz;

<< Back to user notes page

To Top