Files
lpmj6/3/example3-18.php
T
2020-09-02 14:21:10 +01: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
?>