mirror of
https://github.com/php/php-src.git
synced 2026-04-18 13:31:27 +02:00
7 lines
81 B
PHP
7 lines
81 B
PHP
<?php
|
|
const CNST = 'aaaa';
|
|
class A {
|
|
public static $a = CNST;
|
|
}
|
|
$a = \A::$a;
|