<?php $a = 20; function my_function($b) { $a = 30; global $a, $c; return $c = ($b + $a); } print my_function(40) + $c;
You have javascript disabled. You will not be able to edit any code.