<?php function custom_function($value) { static $var = 0; $var += $value; echo "$var\n"; } custom_function(100); custom_function(200);
You have javascript disabled. You will not be able to edit any code.