Files
lpmj6/03/18.php
T
RobinNixon e311e3750d Folders renumbered
Folders renumbered
2020-12-10 13:35:00 +00:00

6 lines
159 B
PHP

<?php
static $int = 0; // Allowed
static $int = 1+2; // Disallowed (will produce a Parse error)
static $int = sqrt(144); // Disallowed
?>