1
0
mirror of https://github.com/php/php-src.git synced 2026-04-26 09:28:21 +02:00
Files
2020-02-03 22:52:20 +01:00

7 lines
81 B
PHP

<?php
const CNST = 'aaaa';
class A {
public static $a = CNST;
}
$a = \A::$a;