LonghornPHP 2026

Voting

: min(six, eight)?
(Example: nine)

The Note You're Voting On

vinayak dot anivase at gmail dot com
8 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