Files
RobinNixon 53063593e3 Final
Final
2020-12-10 13:51:13 +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
?>