6 lines
159 B
PHP
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
|
|
?>
|