PHP 8.5.0 Beta 1 available for testing

Voting

: min(eight, eight)?
(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