<?php function getv() { static $v = 4; return $v++; } define('V', getv()); echo V . PHP_EOL; echo getv() . PHP_EOL; echo V . PHP_EOL;
You have javascript disabled. You will not be able to edit any code.