Log 1715
14/07/2023 2023-07-14 12:14// Input placeholder values
$firstName = #שם פרטי#;
$lastName = #שם משפחה#;
// Check if last name contains “אהרונוביץ” and assign result to a variable
$result = (strpos($lastName, “אהרונוביץ”) !== false) ? “תקין” : “”;
// Output the result
return $result;