Log 2379
20/12/2023 2023-12-20 14:31// Placeholder values
$paymentNumber = #מספר תשלום:#;
// Array of possible values
$values = [
“חוזה”,
“שני”,
“שלישי”,
“רביעי”,
“חמישי”,
“שישי”,
“שביעי”,
“שמיני”,
“ארחון – מסירת דירה”
];
// Count occurrences of payment number value in array
$count = 0;
foreach ($values as $value) {
if ($paymentNumber === $value) {
$count++;
}
}
// Echo the count value
return $count;