Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
function test($a, $b, $bool) { $bool = true; if ($bool) { $hi = "$a*$b"; } return "$a/$b";} test(3, 3, true);
чтоб при true было деление иначе умножение
test(5, 6, false)
function test ($a, $b, $bool = false){ $result = 0; if($bool){ $result = $a / $b; } else { $result = $a * $b; } return $result; } var_dump(test(5, 6, true)); var_dump(test(5, 6));
function test($a, $b, $bool) { if ($bool) { return "$a*$b"; } return "$a/$b"; } echo test(3, 3, true);
function test($a, $b, $bool){ if ($bool) { $hi = $a*$b; } else { $hi = $a/$b; } return $hi; } print_r(test(3, 3, true));