<?php function fn(){ static $a, $b = 0; $x = $y = 1; echo 'static(', var_export($a, true), ',', var_export($b, true), ')', PHP_EOL; echo 'non_static(', var_export($x, true), ',', var_export($y, true), ')'; } fn();
You have javascript disabled. You will not be able to edit any code.