$value = #מספר טלפון#; $firstDigit = substr($value, 0, 1); if ($firstDigit === “0”) { $newValue = “972” . substr($value, 1); } else { $newValue = $value; } return $newValue;