3v4l.org

run code in 300+ PHP versions simultaneously
<?php $email = $_POST['email']; @$tarif = $_POST['tarif']; $pattern_phone = '/\+?\d{1,3}(?:\s*\(\d+\)\s*)?(?:(?:\-\d{1,3})+\d|[\d\-]{4,}|(?:\s\d{1,3})+\d)'; if ($email && ((filter_var($email, FILTER_VALIDATE_EMAIL))||(preg_match($pattern_phone, $email)))) { if (isset($tarif) || $tarif != "") { switch ($tarif) { case 1: $name_tarif = "Базовый"; break; case 2: $name_tarif = "Плюс"; break; case 3: $name_tarif = "Премиум"; break; default: $name_tarif = "Неизвестно, необходимо связаться с клиентом для уточнения"; break; } mail("Altairk91@yandex.ru", "Новый клиент", "E-mail/Телефон клиента: ".$email."\nВыбран тариф: ".$name_tarif, 'From: noreply@realtyprofy.ru'); } else { mail("Altairk91@yandex.ru", "Новый клиент", "E-mail/Телефон клиента: ".$email, 'From: noreply@realtyprofy.ru'); } }else { header('HTTP/1.1 500 Email/Phone Error'); header('Content-Type: application/json; charset=UTF-8'); die(json_encode(array('message' => 'ERROR', 'code' => 1337))); } //support@gazsystems.com ?>
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Warning: Undefined array key "email" in /in/KX0qm on line 3 Warning: Cannot modify header information - headers already sent by (output started at /in/KX0qm:3) in /in/KX0qm on line 33 Warning: Cannot modify header information - headers already sent by (output started at /in/KX0qm:3) in /in/KX0qm on line 34 {"message":"ERROR","code":1337}
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.12 - 7.3.31, 7.4.0 - 7.4.33
Notice: Undefined index: email in /in/KX0qm on line 3 Warning: Cannot modify header information - headers already sent by (output started at /in/KX0qm:3) in /in/KX0qm on line 33 Warning: Cannot modify header information - headers already sent by (output started at /in/KX0qm:3) in /in/KX0qm on line 34 {"message":"ERROR","code":1337}
Output for 7.3.32 - 7.3.33
{"message":"ERROR","code":1337}
Output for 5.2.3 - 5.2.17
Notice: Undefined index: email in /in/KX0qm on line 3 Warning: Cannot modify header information - headers already sent by (output started at /in/KX0qm:3) in /in/KX0qm on line 33 Warning: Cannot modify header information - headers already sent by (output started at /in/KX0qm:3) in /in/KX0qm on line 34 {"message":"ERROR","code":1337}
Output for 5.2.0 - 5.2.2
Notice: Undefined index: email in /in/KX0qm on line 3 {"message":"ERROR","code":1337}
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6
Notice: Undefined index: email in /in/KX0qm on line 3 Fatal error: Call to undefined function json_encode() in /in/KX0qm on line 35
Process exited with code 255.
Output for 4.4.5 - 4.4.9
Notice: Undefined index: email in /in/KX0qm on line 3 Fatal error: Call to undefined function: json_encode() in /in/KX0qm on line 35
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.4
Notice: Undefined index: email in /in/KX0qm on line 3 Fatal error: Call to undefined function: json_encode() in /in/KX0qm on line 35
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Notice: Undefined index: email in /in/KX0qm on line 3 Fatal error: Call to undefined function: json_encode() in /in/KX0qm on line 35

preferences:
269.64 ms | 401 KiB | 354 Q