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 git.master, git.master_jit, rfc.property-hooks
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}

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
62.44 ms | 401 KiB | 8 Q