Untitled
Anonymous
php
09/25/2024 6:24 AM
384 B
25
Indexable
<?php
function calculate() {
echo 'CALCULATE' . PHP_EOL;
}
$f1 = 'calculate';
$f1();
function sum($a, $b) {
return $a + $b;
}
function multiply($n, $m) {
return $n * $m;
}
$f2 = 'sum';
echo 'SUM ' . $f2(10, 20) . PHP_EOL;
$f3 = 'multiply';
echo 'MUL ' . $f3(3, 4) . PHP_EOL;Editor is loading...
Leave a Comment