Log 2481
03/01/2024 2024-01-03 7:39$input = #סכום#; // Replace with actual value
$total = 0;
$group = array($input);
while (!empty($group)) {
$current = array_shift($group);
if (is_numeric($current)) {
$total += $current;
} elseif (preg_match(‘/^d{2}/d{2}/d{4}$/’, $current)) {
continue; // Ignore dates
} else {
preg_match_all(‘/#([^#]+)#/’, $current, $matches);
foreach ($matches[1] as $placeholder) {
if ($placeholder !== ‘סכום’) {
$group[] = str_replace(“#$placeholder#”, ”, $input);
}
}
}
}
return “Total: ” . number_format($total, 2); // Echo the total amount