Log 2335
13/12/2023 2023-12-13 23:30$phone = #טלפון#;
$product = #מוצר#;
$company = #מאיזה חברה תרצה לנייד#;
$price = #מחיר#;
$countPhoneNumbers = strlen($phone);
$isProductAvailable = isset($product) && !empty($product);
$isCompanySelected = isset($company) && !empty($company);
if ($countPhoneNumbers > 0) {
return “The number of phone numbers is: ” . $countPhoneNumbers;
}
if ($isProductAvailable && $isCompanySelected) {
switch ($company) {
case ‘Apple’:
return “The price of the Apple product is: $” . $price;
break;
case ‘Samsung’:
return “The price of the Samsung product is: $” . $price;
break;
default:
return “Please select a valid company.”;
}
} else {
return “”;
}