Log 2701
01/02/2024 2024-02-01 7:18$תעודת_זהות = #תעודת זהות#;
// Remove leading zeros from the ID number
$מספר_הזהות = ltrim($תעודת_זהות, ‘0’);
// Add a hyphen before the check digit
$מספר_הזהות = substr_replace($מספר_הזהות, ‘-‘, -1, 0);
return $מספר_הזהות;