3v4l.org

run code in 300+ PHP versions simultaneously
<?php include_once("popup.php"); if(!xml2php("workorder")) { $smarty->assign('error_msg',"Error in language file"); } $login_id = $_SESSION['login_id']; $smarty->assign('login_id', $login_id); $wo_id = $VAR['wo_id']; $smarty->assign('wo_id', $wo_id); $company = $VAR['company']; $smarty->assign('company', $company); $customer_id = $VAR['customer_id']; $smarty->assign('customer_id', $customer_id); $rep_date=date('D, d M Y - h:i A'); /* Get Work Order and customer Info*/ $q = "SELECT ".PRFX."TABLE_WORK_ORDER.*, ".PRFX."TABLE_CUSTOMER.* FROM ".PRFX."TABLE_WORK_ORDER LEFT JOIN ".PRFX."TABLE_CUSTOMER ON ".PRFX."TABLE_WORK_ORDER.CUSTOMER_ID = ".PRFX."TABLE_CUSTOMER.CUSTOMER_ID WHERE WORK_ORDER_ID=".$db->qstr($wo_id); if(!$rs = $db->execute($q)){ force_page('core', 'error&error_msg=MySQL Error: '.$db->ErrorMsg().'&menu=1&type=database'); exit; } else { $email_info = $rs->GetArray(); } $smarty->assign('email_info', $email_info); /* Get Company Email Address*/ $q = "SELECT COMPANY_EMAIL FROM ".PRFX."TABLE_COMPANY"; if(!$rs = $db->execute($q)) { force_page('core', 'error&error_msg=MySQL Error: '.$db->ErrorMsg().'&menu=1&type=database'); exit; } $company_email = $rs->fields['COMPANY_EMAIL']; $smarty->assign('company_email', $company_email); /*Update The Work order*/ if(isset($_POST['Submit'])) { //Remove Extra Slashes caused by Magic Quotes $description_string = $VAR['description']; $description_string = preg_replace("</p>", "br /", $description_string); $description_string2=("<br/><hr><u>Replied On $rep_date by $login </u><br/>$description_string"); $q = "UPDATE ".PRFX."TABLE_WORK_ORDER SET WORK_ORDER_DESCRIPTION = CONCAT('$description_string2',WORK_ORDER_DESCRIPTION), LAST_ACTIVE =".$db->qstr( time() )." WHERE WORK_ORDER_ID=".$db->qstr( $wo_id); if(!$rs = $db->execute($q)) { force_page('core', 'error&error_msg=MySQL Error: '.$db->ErrorMsg().'&menu=1&type=database'); exit; } /*Get Full Description to send to Email*/ $q = mysql_query("SELECT * FROM ".PRFX."TABLE_WORK_ORDER WHERE WORK_ORDER_ID='$wo_id' LIMIT 1"); $q=mysql_fetch_array($q); $wo_description=$q['WORK_ORDER_DESCRIPTION']; /*Strip Tags*/ $wo_description=str_replace("Â","",$wo_description); /*Send the email*/ require_once('../../include/phpmailer/class.phpmailer.php') or die("error class"); /* OLD CODE $emailto=$VAR["email_to"]; $email_from=$VAR["email_from"]; $email_subject=$VAR["email_subject"]; $html="<br/></section>--reply above this line to respond--<br><br/>$wo_description</section><br/>--end email content--"; $email_priority=$VAR["email_priority"]; $email_cc=$VAR["email_cc"]; $subject = "$email_subject"; $mailer = "$email_from"; $headers = "From: $mailer \r\n"; $headers .= "Reply-To: $mailer\r\n"; $headers .= "MIME-Version: 1.0\r\n"; $headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n"; $headers .= "Importance: $email_priority\r\n"; $message = '<html><body style="background:#ffffff">'; $message .= $html; $message .= "</body></html>"; $headers .= "Cc: $email_cc \r\n"; mail($emailto, $subject, $message, $headers); OLD CODE */ $email = new PHPMailer(); $email->From = $email_from; $email->FromName = $mailer; $email->addReplyTo($email_from); $email->addCC($email_cc); $email->Subject = $subject; $email->Body = $message; $email->AddAddress( $emailto ); $email->isHTML(true); if($email_priority=="Medium") $email->Priority = 3; if($email_priority=="High") $email->Priority = 1; if($email_priority=="Low") $email->Priority = 5; $email->AddCustomHeader("X-MSMail-Priority: $email_priority"); $email->AddCustomHeader("Importance: $email_priority"); if(count($VAR['add_attachments'])>0){ //select all attachments $q = "SELECT ".PRFX."TABLE_WORK_ORDER.WORK_ORDER_ID, ".PRFX."TABLE_WORK_ORDER_ATTACHMENTS.*, ".PRFX."TABLE_EMPLOYEE.EMPLOYEE_ID, ".PRFX."TABLE_EMPLOYEE.EMPLOYEE_DISPLAY_NAME FROM ".PRFX."TABLE_WORK_ORDER INNER JOIN ".PRFX."TABLE_WORK_ORDER_ATTACHMENTS ON ".PRFX."TABLE_WORK_ORDER.WORK_ORDER_ID=".PRFX."TABLE_WORK_ORDER_ATTACHMENTS.WO_ID LEFT JOIN ".PRFX."TABLE_EMPLOYEE ON ".PRFX."TABLE_WORK_ORDER_ATTACHMENTS.ATTACHMENT_UPLOADED_BY=".PRFX."TABLE_EMPLOYEE.EMPLOYEE_ID WHERE WORK_ORDER_ID=".$db->qstr($wo_id)." ORDER BY ATTACHMENT_ID DESC"; if(!$rs = $db->execute($q)) { force_page('core', 'error&error_msg=MySQL Error: '.$db->ErrorMsg().'&menu=1&type=database'); exit; } $attachments = $rs->GetArray(); echo "debug\n\n"; print_r($attachments); die(); $email->addAttachment('/tmp/image.jpg', 'new.jpg'); } if(!$email->send()) { force_page('core', 'error&error_msg=Mail error: '.$email->ErrorInfo.'&menu=1'); exit(); } else { force_page('workorder', 'view&wo_id='.$wo_id.'&customer_id='.$customer_id.'&company_id='.$company_id.'&page_title=Ticket# '.$wo_id.''); exit(); } } $smarty->display('workorder'.SEP.'send_email.tpl'); ?>

Here you find the average performance (time & memory) of each version. A grayed out version indicates it didn't complete successfully (based on exit-code).

VersionSystem time (s)User time (s)Memory (MiB)
8.2.70.0130.00418.50
8.2.60.0120.00618.69
8.2.50.0040.01318.61
8.2.40.0110.00618.62
8.2.30.0140.00318.93
8.2.20.0080.00818.81
8.2.10.0140.00318.86
8.2.00.0110.00418.89
8.1.200.0110.00518.56
8.1.190.0120.00418.31
8.1.180.0110.00618.47
8.1.170.0130.00418.73
8.1.160.0110.00518.50
8.1.150.0100.00618.51
8.1.140.0090.00618.55
8.1.130.0040.01318.63
8.1.120.0120.00418.45
8.1.110.0100.00618.73
8.1.100.0160.00018.61
8.1.90.0150.00019.64
8.1.80.0100.00618.52
8.1.70.0130.00318.32
8.1.60.0090.00918.92
8.1.50.0150.00218.72
8.1.40.0090.00918.71
8.1.30.0030.00620.53
8.1.20.0120.00418.90
8.1.10.0030.00720.40
8.1.00.0000.00920.48
8.0.290.0050.00918.25
8.0.280.0100.00019.82
8.0.270.0070.00718.25
8.0.260.0040.00419.89
8.0.250.0030.01018.29
8.0.240.0040.00420.07
8.0.230.0000.00819.94
8.0.220.0100.00318.25
8.0.210.0060.00319.96
8.0.200.0040.00419.89
8.0.190.0120.00218.25
8.0.180.0030.00719.91
8.0.170.0090.00618.25
8.0.160.0060.00319.96
8.0.150.0050.00918.25
8.0.140.0030.00619.96
8.0.130.0030.00619.95
8.0.120.0110.00418.25
8.0.110.0000.00919.86
8.0.100.0090.00518.25
8.0.90.0100.00018.25
8.0.80.0060.00319.87
8.0.70.0070.00718.25
8.0.60.0060.00319.61
8.0.50.0090.00518.25
8.0.30.0100.00019.64
8.0.20.0000.00819.71
8.0.10.0050.01018.25
8.0.00.0130.00418.25
7.4.330.0110.00318.25
7.4.320.0080.00818.25
7.4.300.0140.00318.25
7.4.290.0160.00018.25
7.4.280.0120.00418.25
7.4.270.0140.00318.25
7.4.260.0120.00418.25
7.4.250.0170.00018.25
7.4.240.0110.00518.25
7.4.230.0080.00818.25
7.4.220.0080.00818.25
7.4.210.0070.00718.25
7.4.200.0000.01418.25
7.4.190.0080.00818.25
7.4.180.0100.00518.25
7.4.160.0090.00618.25
7.4.150.0050.01018.25
7.4.140.0050.01018.25
7.4.130.0090.00618.25
7.4.120.0050.01118.25
7.4.110.0120.00418.25
7.4.100.0130.00318.25
7.4.90.0100.00518.25
7.4.80.0100.00718.25
7.4.70.0120.00418.25
7.4.60.0110.00518.25
7.4.50.0080.00818.25
7.4.40.0130.00418.25
7.4.30.0110.00318.25
7.4.20.0120.00318.25
7.4.10.0110.00518.25
7.4.00.0050.01018.25
7.3.330.0110.00418.25
7.3.320.0090.00618.25
7.3.310.0160.00018.25
7.3.300.0050.01018.25
7.3.290.0110.00518.25
7.3.280.0150.00018.25
7.3.270.0130.00318.25
7.3.260.0120.00318.25
7.3.250.0110.00418.25
7.3.240.0100.00518.25
7.3.230.0150.00018.25
7.3.220.0100.00618.25
7.3.210.0120.00418.25
7.3.200.0100.00718.25
7.3.190.0090.00618.25
7.3.180.0120.00418.25
7.3.170.0090.00618.25
7.3.160.0120.00418.25
7.3.150.0120.00418.25
7.3.140.0070.01018.25
7.3.130.0080.00818.25
7.3.120.0110.00418.25
7.3.110.0160.00018.25
7.3.100.0110.00418.25
7.3.90.0150.00018.25
7.3.80.0100.00518.25
7.3.70.0140.00018.25
7.3.60.0120.00318.25
7.3.50.0150.00018.25
7.3.40.0120.00418.25
7.3.30.0090.00618.25
7.3.20.0130.00318.84
7.3.10.0070.00718.99
7.3.00.0100.00518.96
7.2.340.0070.00718.25
7.2.330.0070.00718.25
7.2.320.0000.01518.25
7.2.310.0150.00018.25
7.2.300.0110.00418.25
7.2.290.0080.00818.25
7.2.280.0120.00318.25
7.2.270.0000.01518.25
7.2.260.0060.00918.25
7.2.250.0120.00318.25
7.2.240.0100.00518.25
7.2.230.0100.00518.25
7.2.220.0160.00018.25
7.2.210.0160.00018.25
7.2.200.0100.00518.25
7.2.190.0110.00418.25
7.2.180.0130.00318.25
7.2.170.0050.01018.25
7.2.160.0110.00418.25
7.2.150.0050.01019.09
7.2.140.0100.00519.14
7.2.130.0100.00719.27
7.2.120.0070.00719.09
7.2.110.0110.00419.23
7.2.100.0150.00019.20
7.2.90.0120.00419.13
7.2.80.0080.00819.26
7.2.70.0060.00919.43
7.2.60.0080.00819.29
7.2.50.0070.00718.98
7.2.40.0160.00019.29
7.2.30.0100.00419.21
7.2.20.0050.01019.13
7.2.10.0100.00519.20
7.2.00.0110.00418.92
7.1.330.0000.01418.25
7.1.320.0080.00618.25
7.1.310.0110.00318.25
7.1.300.0070.00718.25
7.1.290.0090.00618.25
7.1.280.0110.00418.26
7.1.270.0110.00418.25
7.1.260.0090.00618.25
7.1.250.0090.00618.25
7.1.240.0130.00018.25
7.1.230.0140.00018.25
7.1.220.0070.00718.25
7.1.210.0070.00718.25
7.1.200.0120.00418.25
7.1.190.0120.00418.25
7.1.180.0120.00418.25
7.1.170.0140.00018.25
7.1.160.0090.00618.25
7.1.150.0070.00718.25
7.1.140.0090.00818.25
7.1.130.0150.00318.25
7.1.120.0090.00418.25
7.1.110.0080.00818.25
7.1.100.0160.00018.25
7.1.90.0120.00318.25
7.1.80.0110.00518.25
7.1.70.0110.00418.25
7.1.60.0110.00518.25
7.1.50.0090.00618.25
7.1.40.0130.00418.25
7.1.30.0110.00618.25
7.1.20.0110.00418.25
7.1.10.0120.00418.29
7.1.00.0120.00418.25
7.0.330.0140.00318.25
7.0.320.0140.00318.25
7.0.310.0160.00018.25
7.0.300.0070.00718.25
7.0.290.0130.00218.25
7.0.280.0150.00018.25
7.0.270.0110.00418.25
7.0.260.0110.00418.25
7.0.250.0170.00018.25
7.0.240.0140.00018.25
7.0.230.0150.00018.25
7.0.220.0120.00318.25
7.0.210.0100.00518.25
7.0.200.0090.00418.25
7.0.190.0080.00818.25
7.0.180.0110.00418.25
7.0.170.0090.00418.25
7.0.160.0060.00918.25
7.0.150.0050.00918.25
7.0.140.0110.00418.25
7.0.130.0070.00918.25
7.0.120.0160.00018.25
7.0.110.0070.00718.25
7.0.100.0110.00418.25
7.0.90.0100.00518.25
7.0.80.0130.00018.25
7.0.70.0080.00818.25
7.0.60.0110.00518.25
7.0.50.0110.00618.25
7.0.40.0100.00318.25
7.0.30.0130.00318.25
7.0.20.0070.00718.25
7.0.10.0110.00518.25
7.0.00.0110.00318.25
5.6.400.0160.00018.25
5.6.390.0030.01218.25
5.6.380.0110.00418.25
5.6.370.0090.00518.25
5.6.360.0110.00418.25
5.6.350.0030.01018.25
5.6.340.0150.00018.25
5.6.330.0050.01018.25
5.6.320.0110.00318.25
5.6.310.0160.00018.25
5.6.300.0110.00318.25
5.6.290.0050.01018.25
5.6.280.0130.00018.25
5.6.270.0090.00618.25
5.6.260.0030.00918.25
5.6.250.0150.00018.25
5.6.240.0160.00018.25
5.6.230.0060.00618.25
5.6.220.0120.00318.25
5.6.210.0100.00518.25
5.6.200.0120.00218.25
5.6.190.0040.00918.25
5.6.180.0100.00518.25
5.6.170.0070.01018.25
5.6.160.0080.00818.25
5.6.150.0070.00718.25
5.6.140.0100.00318.25
5.6.130.0090.00418.25
5.6.120.0040.00918.25
5.6.110.0070.00718.25
5.6.100.0130.00218.25
5.6.90.0080.00518.25
5.6.80.0070.00518.25
5.6.70.0090.00318.25
5.6.60.0090.00418.25
5.6.50.0090.00318.25
5.6.40.0090.00318.25
5.6.30.0030.00918.25
5.6.20.0080.00418.25
5.6.10.0100.00318.25
5.6.00.0100.00318.25
5.5.380.0110.00418.25
5.5.370.0070.00718.25
5.5.360.0090.00418.25
5.5.350.0150.00018.25
5.5.340.0090.00618.25
5.5.330.0100.00318.25
5.5.320.0100.00318.25
5.5.310.0100.00318.25
5.5.300.0140.00018.25
5.5.290.0090.00518.25
5.5.280.0080.00518.25
5.5.270.0140.00018.25
5.5.260.0040.00918.25
5.5.250.0090.00418.25
5.5.240.0130.00018.25
5.5.230.0100.00218.25
5.5.220.0110.00318.25
5.5.210.0060.00618.25
5.5.200.0040.00818.25
5.5.190.0110.00218.25
5.5.180.0060.00618.25
5.5.170.0080.00518.25
5.5.160.0130.00018.25
5.5.150.0100.00318.25
5.5.140.0090.00418.25
5.5.130.0130.00018.25
5.5.120.0120.00018.25
5.5.110.0040.00818.25
5.5.100.0080.00418.25
5.5.90.0080.00418.25
5.5.80.0090.00418.25
5.5.70.0090.00418.25
5.5.60.0080.00418.25
5.5.50.0060.00618.25
5.5.40.0050.00718.25
5.5.30.0120.00018.25
5.5.20.0100.00318.25
5.5.10.0030.00918.25
5.5.00.0040.00818.25
5.4.450.0070.00418.25
5.4.440.0060.00618.25
5.4.430.0030.00718.25
5.4.420.0030.00718.25
5.4.410.0030.00718.25
5.4.400.0110.00018.25
5.4.390.0080.00318.25
5.4.380.0000.01218.25
5.4.370.0050.00518.25
5.4.360.0070.00418.25
5.4.350.0000.01118.25
5.4.340.0100.00018.25
5.4.330.0040.00718.25
5.4.320.0030.00718.25
5.4.310.0070.00418.25
5.4.300.0040.00818.25
5.4.290.0040.00718.25
5.4.280.0000.01018.25
5.4.270.0070.00318.25
5.4.260.0060.00518.25
5.4.250.0110.00018.25
5.4.240.0110.00018.25
5.4.230.0110.00018.25
5.4.220.0070.00318.25
5.4.210.0110.00018.25
5.4.200.0070.00418.25
5.4.190.0050.00518.25
5.4.180.0080.00318.25
5.4.170.0050.00518.25
5.4.160.0070.00418.25
5.4.150.0050.00518.25
5.4.140.0070.00418.25
5.4.130.0030.00718.25
5.4.120.0040.00818.25
5.4.110.0100.00018.25
5.4.100.0070.00318.25
5.4.90.0040.00718.25
5.4.80.0000.01118.25
5.4.70.0030.00718.25
5.4.60.0070.00318.25
5.4.50.0100.00018.25
5.4.40.0100.00018.25
5.4.30.0070.00318.25
5.4.20.0110.00018.25
5.4.10.0120.00018.25
5.4.00.0050.00518.25
5.3.290.0070.00418.25
5.3.280.0030.00718.25
5.3.270.0100.00218.25
5.3.260.0050.00518.25
5.3.250.0110.00018.25
5.3.240.0090.00318.25
5.3.230.0070.00318.25
5.3.220.0080.00418.25
5.3.210.0000.01118.25
5.3.200.0110.00018.25
5.3.190.0120.00018.25
5.3.180.0030.00718.25
5.3.170.0070.00418.25
5.3.160.0100.00018.25
5.3.150.0080.00318.25
5.3.140.0050.00518.25
5.3.130.0080.00318.25
5.3.120.0070.00318.25
5.3.110.0120.00018.25
5.3.100.0040.00718.25
5.3.90.0090.00018.25
5.3.80.0050.00518.25
5.3.70.0070.00318.25
5.3.60.0100.00018.25
5.3.50.0080.00218.25
5.3.40.0090.00218.25
5.3.30.0050.00518.25
5.3.20.0100.00018.25
5.3.10.0050.00518.25
5.3.00.0090.00018.25
5.2.170.0080.00018.25
5.2.160.0040.00418.25
5.2.150.0050.00318.25
5.2.140.0040.00418.25
5.2.130.0060.00218.25
5.2.120.0040.00418.25
5.2.110.0090.00018.25
5.2.100.0090.00018.25
5.2.90.0030.00618.25
5.2.80.0040.00518.25
5.2.70.0070.00218.25
5.2.60.0040.00418.25
5.2.50.0000.00818.25
5.2.40.0080.00018.25
5.2.30.0080.00018.25
5.2.20.0040.00418.25
5.2.10.0090.00018.25
5.2.00.0080.00018.25
5.1.60.0080.00018.25
5.1.50.0080.00018.25
5.1.40.0070.00018.25
5.1.30.0000.00718.25
5.1.20.0000.00818.25
5.1.10.0090.00018.25
5.1.00.0050.00318.25
5.0.50.0020.00518.25
5.0.40.0030.00318.25
5.0.30.0060.00018.25
5.0.20.0000.00618.25
5.0.10.0060.00018.25
5.0.00.0060.00018.25
4.4.90.0000.00418.25
4.4.80.0040.00018.25
4.4.70.0030.00018.25
4.4.60.0000.00418.25
4.4.50.0040.00018.25
4.4.40.0000.00418.25
4.4.30.0040.00018.25
4.4.20.0040.00018.25
4.4.10.0020.00218.25
4.4.00.0000.00418.25
4.3.110.0050.00018.25
4.3.100.0030.00018.25
4.3.90.0040.00018.25
4.3.80.0040.00018.25
4.3.70.0000.00418.25
4.3.60.0020.00218.25
4.3.50.0040.00018.25
4.3.40.0000.00418.25
4.3.30.0010.00118.25
4.3.20.0030.00018.25
4.3.10.0030.00018.25
4.3.00.0030.00018.25

preferences:
39.17 ms | 401 KiB | 5 Q