Всё не так.
function calculate($operandOne, $operandTwo, $operator)
{
if (!is_numeric($operandOne) || !is_numeric($operandTwo)) {
return null;
}
switch ($operator) {
case '+':
return $operandOne + $operandTwo;
case '-':
return $operandOne - $operandTwo;
case '/':
if ($operandTwo <= 0) {
return null;
}
return $operandOne / $operandTwo;
case '*':
return $operandOne * $operandTwo;
default:
echo 'Допускаются только операторы + - / *';
return null;
}
}
$operandOne = 6;
$operandTwo = 4;
echo calculate($operandOne, $operandTwo, '+');
Вот рабочий код.
Вы, похоже, не понимаете что такое
функции.