<?php function my_func($my_var){ ... } $a = 20; my_func($a); echo $a; //здесь должно быть выведено 30 According to this part of the code, you need to finish it so that the function increases the value of $ my_var by 10. It is prohibited to use return in the function.