3v4l.org

run code in 300+ PHP versions simultaneously
<?php include "../res/imemail.inc.php"; //"Nombre" => $_POST['imObjectForm_7_1'] = "Eduardo"; echo $_POST['imObjectForm_7_1']."<br>"; //"Mail" => $_POST['imObjectForm_7_2'] = "emerlor@gmail.com"; echo $_POST['imObjectForm_7_2']."<br>"; //"Comentarios" => $_POST['imObjectForm_7_3'] = "SOS YOUR MOTHER"; echo $_POST['imObjectForm_7_3']."<br>"; $settings['imEmailForm_14_7'] = array( "owner_email_from" => "Arriendo de Departamentos en San alfonso del Mar <emerlor@gmail.com>", "owner_email_to" => "Arriendo de Departamentos en San alfonso del Mar <emerlor@gmail.com>", "customer_email_from" => "Arriendo de Departamentos en San alfonso del Mar <emerlor@gmail.com>", "customer_email_to" => "Mail", "owner_message" => "Estimad@ Propietari@: Le informamos que ".$_POST['imObjectForm_7_1']." ha ingresado los siguientes comentarios en el sitio:", "customer_message" => "Estimad@ ".$_POST['imObjectForm_7_1'].": La informacion ingresada en el formulario del sitio ha sido satisfactoriamente enviada. Nos pondremos en contacto con usted a la brevedad. Atte, Arriendo SAM arriendosam@vacacionesensanalfonso.cl www.vacacionesensanalfonso.cl", "owner_subject" => "Solicitud de Contacto", "customer_subject" => "Solicitud de Contacto", "owner_csv" => True, "customer_csv" => False, "confirmation_page" => "http://www.google.cl" ); print_r($settings['imEmailForm_14_7']); echo "<br>"; $form_data = array( "Nombre" => $_POST['imObjectForm_7_1'], "Mail" => $_POST['imObjectForm_7_2'], "Comentarios" => $_POST['imObjectForm_7_3'] ); print_r($form_data); echo "<br>"; // EMAIL STYLE SETTINGS $imSettings['email'] = array( 'header' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">' . "\n" . '<html>' . "\n" . '<head>' . "\n" . '<meta http-equiv="content-type" content="text/html; charset=utf-8">' . "\n" . '<meta name="generator" content="Incomedia WebSite X5 v9 - www.websitex5.com">' . "\n" . '</head>' . "\n" . '<body background-image:url(http://vacacionesensanalfonso.cl/style/bg.JPG); bgcolor="#063A69" style="background-color: #063A69;">' . "\n\t" . '<table border="0" cellpadding="0" align="center" cellspacing="0" style="border-collapse: collapse; padding: 0; margin: 0 auto; width: 700px;">' . "\n\t" . '<tr><td id="imEmailHeader" style="text-align: center; width: 700px; padding-bottom: 10px; background-color: transparent; margin-bottom: 10px;" width="700px"><img src="http://www.vacacionesensanalfonso.cl/style/top.png" style="width: 301px; border: none;" width="301px"></td></tr>' . "\n\t" . '<tr><td id="imEmailContent" style="min-height: 300px; padding: 10px; font: normal normal normal 8.0pt Tahoma; color: #0030BF; background-color: #FFFFFF; text-align: left; text-decoration: none; width: 700px;border-width: 1px 1px 0px 1px;border-style: solid; border-color: #808080; background-color: #FFFFFF; opacity:0.7; filter:alpha(opacity=70);" width="700px">' . "\n\t\t", 'footer' => "\n\t" . '</td></tr>' . "\n\t" . '<tr><td id="imEmailFooter" style="font: normal normal normal 7.0pt Tahoma; color: #000000; background-color: transparent; text-align: center; text-decoration: none; width: 700px;border-width: 0px 1px 1px 1px; border-style: solid; border-color: #808080;padding: 10px; background-color: #FFFFFF; " width="700px">' . "\n\t\t" . 'Este e-mail incluye información exclusiva para el destinatario mencionado anteriormente.<br>Si lo ha recibido por error, notifíqueselo inmediatamente al remitente y destrúyalo sin copiarlo.' . "\n\t" . '</td></tr>' . "\n\t" . '</table>' . "\n" . '</body>' . "\n" . '</html>', 'body_background' => '#FFFFFF', 'body_background_even' => '#FFFFFF', 'body_background_odd' => '#F0F0F0', 'body_background_border' => '#CDCDCD', 'email_background' => '#063A69', 'email_content_style' => 'font: normal normal normal 8.0pt Tahoma; color: #0030BF; background-color: #FFFFFF; text-align: left; text-decoration: none; ' ); $txtData = ""; $htmData = ""; $csvHeader = ""; $csvData = ""; $keys = array_keys($form_data); foreach ($keys as $key) { if (is_array($form_data[$key])) { $txtData .= $key . ": " . implode(", ", $form_data[$key]) . "\r\n"; $htmData .= "<tr valign=\"top\"><td width=\"25%\"><b>" . $key . ":</b></td><td>" . implode(", ", $form_data[$key]) . "</td></tr>"; if ($settings['customer_csv'] || $settings['owner_csv']) { $csvHeader .= $key . ";"; $csvData .= implode(", ", $form_data[$key]) . ";"; } } else { $txtData .= $key . ": " . $form_data[$key] . "\r\n"; /* // Is it an email? if (preg_match('/^([a-z0-9])(([-a-z0-9._])*([a-z0-9]))*\@([a-z0-9])' . '(([a-z0-9-])*([a-z0-9]))+' . '(\.([a-z0-9])([-a-z0-9_-])?([a-z0-9])+)+$/i', $form_data[$key])) { $htmData .= "<tr valign=\"top\"><td width=\"25%\"><b>" . str_replace(array("\\'", '\\"'), array("'", '"'), $key) . ":</b></td><td><a href=\"mailto:" . $form_data[$key] . "\">". $form_data[$key] . "</a></td></tr>"; } else if (preg_match('/^http[s]?:\/\/[a-zA-Z0-9\.\-]{2,}\.[a-zA-Z]{2,}/', $form_data[$key])) { // Is it an URL? $htmData .= "<tr valign=\"top\"><td width=\"25%\"><b>" . str_replace(array("\\'", '\\"'), array("'", '"'), $key) . ":</b></td><td><a href=\"" . $form_data[$key] . "\">". $form_data[$key] . "</a></td></tr>"; } else { */ $htmData .= "<tr valign=\"top\"><td width=\"25%\"><b>" . str_replace(array("\\'", '\\"'), array("'", '"'), $key) . ":</b></td><td>" . str_replace(array("\\'", '\\"'), array("'", '"'), $form_data[$key]) . "</td></tr>"; //} if ($settings['customer_csv'] || $settings['owner_csv']) { $csvHeader .= str_replace(array("\\'", '\\"'), array("'", '"'), $key) . ";"; $csvData .= str_replace(array("\\'", '\\"'), array("'", '"'), $form_data[$key]) . ";"; } } } echo "text".$txtData."<br>"; echo "data".$htmData."<br>"; echo "cvs".$csvHeader."<br>"; echo "cvs2".$csvData."<br>"; // Template $htmHead = $imSettings['email']['header']; $htmFoot = $imSettings['email']['footer']; //Send email to owner /*if (!$user_only && isset($settings['owner_email_to']) && $settings['owner_email_to'] != "") { $txtMsg = $settings['owner_message']; $htmMsg = nl2br($settings['owner_message']); if (strpos($settings['owner_email_from'], "@") === FALSE) $settings['owner_email_from'] = $form_data[$settings['owner_email_from']]; if ($settings['owner_email_from'] == "") $settings['owner_email_from'] = $settings['owner_email_to']; */ /* copia del otro $oEmail = new imEMail($settings['owner_email_from'],$settings['owner_email_to'],$settings['owner_subject'],"utf-8"); $oEmail->setText($txtMsg . "\n\n" . $txtData); $oEmail->setHTML($htmHead . $htmMsg . "<br><br><table border=0 width=\"100%\" style=\"" . $imSettings['email']['email_content_style'] . "\">" . $htmData . "</table>" . $htmFoot); if ($settings['owner_csv']) $oEmail->attachFile("form_data.csv", $csvHeader . "\n" . $csvData,"text/csv"); if (count($files_data) > 0) { foreach ($files_data as $file) { if (file_exists($file['tmp_name'])) $oEmail->attachFile($file['name'], file_get_contents($file['tmp_name']), $file['type']); } } $oEmail->send(); */ print_r($settings['imEmailForm_14_7']); echo "<br>"; $txtMsg = $settings['imEmailForm_14_7']['owner_message']; $htmMsg = nl2br($settings['imEmailForm_14_7']['owner_message']); echo $txtMsg."<br>"; echo $htmMsg."<br>"; //$oEmail->setText($txtMsg . "\n\n" . $txtData); $message = $htmHead . $htmMsg . "<br><br><table border=0 width=\"100%\" style=\"" . $imSettings['email']['email_content_style'] . "\">" . $htmData . "</table>" . $htmFoot; /* if ($settings['owner_csv']) $oEmail->attachFile("form_data.csv", $csvHeader . "\n" . $csvData,"text/csv"); if (count($files_data) > 0) { foreach ($files_data as $file) { if (file_exists($file['tmp_name'])) $oEmail->attachFile($file['name'], file_get_contents($file['tmp_name']), $file['type']); } }*/ $headers = "MIME-Version: 1.0" . "\r\n"; $headers .= "Content-type:text/html;charset=iso-8859-1" . "\r\n"; $headers .= 'From: '.$settings['imEmailForm_14_7']['owner_email_from']. "\r\n"; ini_set("sendmail_from", $settings['imEmailForm_14_7']['owner_email_from']); echo $headers."<br>"; echo $settings['imEmailForm_14_7']['owner_email_from']."<br>"; echo $settings['imEmailForm_14_7']['owner_email_from']." ".$settings['imEmailForm_14_7']['owner_email_to']." ".$settings['imEmailForm_14_7']['owner_subject']." ".$headers; if(mail($settings['imEmailForm_14_7']['owner_email_to'], $settings['imEmailForm_14_7']['owner_subject'], $message, $headers)) echo "enviado 1 <br>"; //} //Send email to user /*if (isset($settings['customer_email_to']) && $settings['customer_email_to'] != "") { $txtMsg = $settings['customer_message']; $htmMsg = nl2br($settings['customer_message']); if ($settings['customer_email_from'] == "") $settings['customer_email_from'] = $settings['owner_email_to']; */ /* $oEmail = new imEMail($settings['customer_email_from'],$form_data[$settings['customer_email_to']],$settings['customer_subject'],"utf-8"); if ($settings['customer_csv']) { $oEmail->setHTML($htmHead . $htmMsg . "<br><br><table border=0 width=\"100%\" style=\"" . $imSettings['email']['email_content_style'] . "\">" . $htmData . "</table>" . $htmFoot); $oEmail->setText($txtMsg . "\n\n" . $txtData); } else { $oEmail->setText($txtMsg); $oEmail->setHTML($htmHead . $htmMsg . $htmFoot); } */ $txtMsg = $settings['imEmailForm_14_7']['customer_message']; $htmMsg = nl2br($settings['imEmailForm_14_7']['customer_message']); $message = $htmHead . $htmMsg . "<br><br><table border=0 width=\"100%\" style=\"" . $imSettings['email']['email_content_style'] . "\"></table>" . $htmFoot; echo "a ".$settings['imEmailForm_14_7']['customer_email_to']."<br>"; echo "b ".$form_data["Mail"]."<br>"; //ini_set("sendmail_from", $settings['imEmailForm_14_7']['customer_email_from']); echo "esto: ".$form_data["Mail"]." ".$settings['imEmailForm_14_7']['customer_subject']." ".$message." ".$headers; if(mail($form_data["Mail"], $settings['imEmailForm_14_7']['customer_subject'], $message, $headers)) echo "enviado 2 <br>"; @header('Location: ' .$settings['imEmailForm_14_7']['confirmation_page']); //} /* OLD ONE // Template $htmHead = "<table width=\"90%\" border=\"0\" bgcolor=\"#FFFFFF\" cellpadding=\"4\" style=\"font: bold 13px Tahoma; color: #0080FF; border: 1px solid #BBBBBB;\">"; $htmFoot = "</table>"; //Send email to owner $txtMsg = "Estimad@ Propietari@:\r\n\r\nLos siguientes comentarios se han ingresado en el sitio:"; $htmMsg = $htmHead . "<tr><td>Estimad@ Propietari@:<br><br>Los siguientes comentarios se han ingresado en el sitio:</td></tr>" . $htmFoot; $oEmail = new imEMail( "arriendosam@vacacionesensanalfonso.cl","arriendosam@vacacionesensanalfonso.cl","Solicitud de Contacto","iso-8859-1"); $oEmail->setText($txtMsg . "\r\n\r\n" . $form_data); $oEmail->setHTML("<html><body bgcolor=\"#063A69\"><center>" . $htmMsg . "<br>" . $htmHead . $form_data . $htmFoot . "<br>" . $htmHead. $htmFoot . "</center></body></html>"); $oEmail->send(); //Send email to user $txtMsg = "Estimado@ Arrendatari@:\r\n\r\nLa informacion ingresada en el formulario del sitio ha sido satisfactoriamente enviada. Nos pondremos en contacto con usted a la brevedad.\r\n\r\nAtte,\r\nArriendo SAM\r\narriendosam@gmail.com"; $htmMsg = $htmHead . "<tr><td>Estimado@ Arrendatari@:<br><br>La informacion ingresada en el formulario del sitio ha sido satisfactoriamente enviada. Nos pondremos en contacto con usted a la brevedad.<br><br>Atte,<br>Arriendo SAM<br>arriendosam@gmail.com</td></tr>" . $htmFoot; $oEmail = new imEMail("arriendosam@vacacionesensanalfonso.cl",$_POST['imObjectForm_7_2'],"Solicitud de Contacto","iso-8859-1"); $oEmail->setText($txtMsg); $oEmail->setHTML("<html><body bgcolor=\"#063A69\"><center>" . $htmMsg . "</center></body></html>"); $oEmail->send(); @header("Location: ../contacto.php"); */ ?>
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 77) Position 1 = 73, Position 2 = 153
Branch analysis from position: 73
2 jumps found. (Code = 78) Position 1 = 74, Position 2 = 153
Branch analysis from position: 74
2 jumps found. (Code = 43) Position 1 = 77, Position 2 = 111
Branch analysis from position: 77
2 jumps found. (Code = 47) Position 1 = 98, Position 2 = 100
Branch analysis from position: 98
2 jumps found. (Code = 43) Position 1 = 101, Position 2 = 110
Branch analysis from position: 101
1 jumps found. (Code = 42) Position 1 = 152
Branch analysis from position: 152
1 jumps found. (Code = 42) Position 1 = 73
Branch analysis from position: 73
Branch analysis from position: 110
Branch analysis from position: 100
Branch analysis from position: 111
2 jumps found. (Code = 47) Position 1 = 134, Position 2 = 136
Branch analysis from position: 134
2 jumps found. (Code = 43) Position 1 = 137, Position 2 = 152
Branch analysis from position: 137
1 jumps found. (Code = 42) Position 1 = 73
Branch analysis from position: 73
Branch analysis from position: 152
Branch analysis from position: 136
Branch analysis from position: 153
2 jumps found. (Code = 43) Position 1 = 243, Position 2 = 244
Branch analysis from position: 243
2 jumps found. (Code = 43) Position 1 = 291, Position 2 = 292
Branch analysis from position: 291
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 292
Branch analysis from position: 244
Branch analysis from position: 153
filename:       /in/1Z6lP
function name:  (null)
number of ops:  301
compiled vars:  !0 = $settings, !1 = $form_data, !2 = $imSettings, !3 = $txtData, !4 = $htmData, !5 = $csvHeader, !6 = $csvData, !7 = $keys, !8 = $key, !9 = $htmHead, !10 = $htmFoot, !11 = $txtMsg, !12 = $htmMsg, !13 = $message, !14 = $headers
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    3     0  E >   INCLUDE_OR_EVAL                                          '..%2Fres%2Fimemail.inc.php', INCLUDE
    6     1        FETCH_W                      global              $16     '_POST'
          2        ASSIGN_DIM                                               $16, 'imObjectForm_7_1'
          3        OP_DATA                                                  'Eduardo'
    7     4        FETCH_R                      global              ~18     '_POST'
          5        FETCH_DIM_R                                      ~19     ~18, 'imObjectForm_7_1'
          6        CONCAT                                           ~20     ~19, '%3Cbr%3E'
          7        ECHO                                                     ~20
   10     8        FETCH_W                      global              $21     '_POST'
          9        ASSIGN_DIM                                               $21, 'imObjectForm_7_2'
         10        OP_DATA                                                  'emerlor%40gmail.com'
   11    11        FETCH_R                      global              ~23     '_POST'
         12        FETCH_DIM_R                                      ~24     ~23, 'imObjectForm_7_2'
         13        CONCAT                                           ~25     ~24, '%3Cbr%3E'
         14        ECHO                                                     ~25
   14    15        FETCH_W                      global              $26     '_POST'
         16        ASSIGN_DIM                                               $26, 'imObjectForm_7_3'
         17        OP_DATA                                                  'SOS+YOUR+MOTHER'
   15    18        FETCH_R                      global              ~28     '_POST'
         19        FETCH_DIM_R                                      ~29     ~28, 'imObjectForm_7_3'
         20        CONCAT                                           ~30     ~29, '%3Cbr%3E'
         21        ECHO                                                     ~30
   18    22        INIT_ARRAY                                       ~32     'Arriendo+de+Departamentos+en+San+alfonso+del+Mar+%3Cemerlor%40gmail.com%3E', 'owner_email_from'
   19    23        ADD_ARRAY_ELEMENT                                ~32     'Arriendo+de+Departamentos+en+San+alfonso+del+Mar+%3Cemerlor%40gmail.com%3E', 'owner_email_to'
   20    24        ADD_ARRAY_ELEMENT                                ~32     'Arriendo+de+Departamentos+en+San+alfonso+del+Mar+%3Cemerlor%40gmail.com%3E', 'customer_email_from'
   21    25        ADD_ARRAY_ELEMENT                                ~32     'Mail', 'customer_email_to'
   24    26        FETCH_R                      global              ~33     '_POST'
         27        FETCH_DIM_R                                      ~34     ~33, 'imObjectForm_7_1'
         28        CONCAT                                           ~35     'Estimad%40+Propietari%40%3A%0A%09%09%0ALe+informamos+que+', ~34
         29        CONCAT                                           ~36     ~35, '+ha+ingresado+los+siguientes+comentarios+en+el+sitio%3A'
         30        ADD_ARRAY_ELEMENT                                ~32     ~36, 'owner_message'
   26    31        FETCH_R                      global              ~37     '_POST'
         32        FETCH_DIM_R                                      ~38     ~37, 'imObjectForm_7_1'
         33        CONCAT                                           ~39     'Estimad%40+', ~38
         34        CONCAT                                           ~40     ~39, '%3A%0A%0ALa+informacion+ingresada+en+el+formulario+del+sitio+ha+sido+satisfactoriamente+enviada.+Nos+pondremos+en+contacto+con+usted+a+la+brevedad.%0A%0AAtte%2C%0AArriendo+SAM%0Aarriendosam%40vacacionesensanalfonso.cl%0Awww.vacacionesensanalfonso.cl'
         35        ADD_ARRAY_ELEMENT                                ~32     ~40, 'customer_message'
   34    36        ADD_ARRAY_ELEMENT                                ~32     'Solicitud+de+Contacto', 'owner_subject'
   35    37        ADD_ARRAY_ELEMENT                                ~32     'Solicitud+de+Contacto', 'customer_subject'
   18    38        ADD_ARRAY_ELEMENT                                ~32     <true>, 'owner_csv'
         39        ADD_ARRAY_ELEMENT                                ~32     <false>, 'customer_csv'
   38    40        ADD_ARRAY_ELEMENT                                ~32     'http%3A%2F%2Fwww.google.cl', 'confirmation_page'
   17    41        ASSIGN_DIM                                               !0, 'imEmailForm_14_7'
   38    42        OP_DATA                                                  ~32
   41    43        INIT_FCALL                                               'print_r'
         44        FETCH_DIM_R                                      ~41     !0, 'imEmailForm_14_7'
         45        SEND_VAL                                                 ~41
         46        DO_ICALL                                                 
         47        ECHO                                                     '%3Cbr%3E'
   45    48        FETCH_R                      global              ~43     '_POST'
         49        FETCH_DIM_R                                      ~44     ~43, 'imObjectForm_7_1'
         50        INIT_ARRAY                                       ~45     ~44, 'Nombre'
   46    51        FETCH_R                      global              ~46     '_POST'
         52        FETCH_DIM_R                                      ~47     ~46, 'imObjectForm_7_2'
         53        ADD_ARRAY_ELEMENT                                ~45     ~47, 'Mail'
   47    54        FETCH_R                      global              ~48     '_POST'
         55        FETCH_DIM_R                                      ~49     ~48, 'imObjectForm_7_3'
         56        ADD_ARRAY_ELEMENT                                ~45     ~49, 'Comentarios'
   44    57        ASSIGN                                                   !1, ~45
   50    58        INIT_FCALL                                               'print_r'
         59        SEND_VAR                                                 !1
         60        DO_ICALL                                                 
         61        ECHO                                                     '%3Cbr%3E'
   54    62        ASSIGN_DIM                                               !2, 'email'
   55    63        OP_DATA                                                  <array>
   65    64        ASSIGN                                                   !3, ''
   66    65        ASSIGN                                                   !4, ''
   67    66        ASSIGN                                                   !5, ''
   68    67        ASSIGN                                                   !6, ''
   69    68        INIT_FCALL                                               'array_keys'
         69        SEND_VAR                                                 !1
         70        DO_ICALL                                         $57     
         71        ASSIGN                                                   !7, $57
   71    72      > FE_RESET_R                                       $59     !7, ->153
         73    > > FE_FETCH_R                                               $59, !8, ->153
   72    74    >   FETCH_DIM_R                                      ~60     !1, !8
         75        TYPE_CHECK                                  128          ~60
         76      > JMPZ                                                     ~61, ->111
   73    77    >   CONCAT                                           ~62     !8, '%3A+'
         78        INIT_FCALL                                               'implode'
         79        SEND_VAL                                                 '%2C+'
         80        FETCH_DIM_R                                      ~63     !1, !8
         81        SEND_VAL                                                 ~63
         82        DO_ICALL                                         $64     
         83        CONCAT                                           ~65     ~62, $64
         84        CONCAT                                           ~66     ~65, '%0D%0A'
         85        ASSIGN_OP                                     8          !3, ~66
   74    86        CONCAT                                           ~68     '%3Ctr+valign%3D%22top%22%3E%3Ctd+width%3D%2225%25%22%3E%3Cb%3E', !8
         87        CONCAT                                           ~69     ~68, '%3A%3C%2Fb%3E%3C%2Ftd%3E%3Ctd%3E'
         88        INIT_FCALL                                               'implode'
         89        SEND_VAL                                                 '%2C+'
         90        FETCH_DIM_R                                      ~70     !1, !8
         91        SEND_VAL                                                 ~70
         92        DO_ICALL                                         $71     
         93        CONCAT                                           ~72     ~69, $71
         94        CONCAT                                           ~73     ~72, '%3C%2Ftd%3E%3C%2Ftr%3E'
         95        ASSIGN_OP                                     8          !4, ~73
   75    96        FETCH_DIM_R                                      ~75     !0, 'customer_csv'
         97      > JMPNZ_EX                                         ~75     ~75, ->100
         98    >   FETCH_DIM_R                                      ~76     !0, 'owner_csv'
         99        BOOL                                             ~75     ~76
        100    > > JMPZ                                                     ~75, ->110
   76   101    >   CONCAT                                           ~77     !8, '%3B'
        102        ASSIGN_OP                                     8          !5, ~77
   77   103        INIT_FCALL                                               'implode'
        104        SEND_VAL                                                 '%2C+'
        105        FETCH_DIM_R                                      ~79     !1, !8
        106        SEND_VAL                                                 ~79
        107        DO_ICALL                                         $80     
        108        CONCAT                                           ~81     $80, '%3B'
        109        ASSIGN_OP                                     8          !6, ~81
        110    > > JMP                                                      ->152
   80   111    >   CONCAT                                           ~83     !8, '%3A+'
        112        FETCH_DIM_R                                      ~84     !1, !8
        113        CONCAT                                           ~85     ~83, ~84
        114        CONCAT                                           ~86     ~85, '%0D%0A'
        115        ASSIGN_OP                                     8          !3, ~86
   90   116        INIT_FCALL                                               'str_replace'
        117        SEND_VAL                                                 <array>
        118        SEND_VAL                                                 <array>
        119        SEND_VAR                                                 !8
        120        DO_ICALL                                         $88     
        121        CONCAT                                           ~89     '%3Ctr+valign%3D%22top%22%3E%3Ctd+width%3D%2225%25%22%3E%3Cb%3E', $88
        122        CONCAT                                           ~90     ~89, '%3A%3C%2Fb%3E%3C%2Ftd%3E%3Ctd%3E'
        123        INIT_FCALL                                               'str_replace'
        124        SEND_VAL                                                 <array>
        125        SEND_VAL                                                 <array>
        126        FETCH_DIM_R                                      ~91     !1, !8
        127        SEND_VAL                                                 ~91
        128        DO_ICALL                                         $92     
        129        CONCAT                                           ~93     ~90, $92
        130        CONCAT                                           ~94     ~93, '%3C%2Ftd%3E%3C%2Ftr%3E'
        131        ASSIGN_OP                                     8          !4, ~94
   92   132        FETCH_DIM_R                                      ~96     !0, 'customer_csv'
        133      > JMPNZ_EX                                         ~96     ~96, ->136
        134    >   FETCH_DIM_R                                      ~97     !0, 'owner_csv'
        135        BOOL                                             ~96     ~97
        136    > > JMPZ                                                     ~96, ->152
   93   137    >   INIT_FCALL                                               'str_replace'
        138        SEND_VAL                                                 <array>
        139        SEND_VAL                                                 <array>
        140        SEND_VAR                                                 !8
        141        DO_ICALL                                         $98     
        142        CONCAT                                           ~99     $98, '%3B'
        143        ASSIGN_OP                                     8          !5, ~99
   94   144        INIT_FCALL                                               'str_replace'
        145        SEND_VAL                                                 <array>
        146        SEND_VAL                                                 <array>
        147        FETCH_DIM_R                                      ~101    !1, !8
        148        SEND_VAL                                                 ~101
        149        DO_ICALL                                         $102    
        150        CONCAT                                           ~103    $102, '%3B'
        151        ASSIGN_OP                                     8          !6, ~103
   71   152    > > JMP                                                      ->73
        153    >   FE_FREE                                                  $59
   99   154        CONCAT                                           ~105    'text', !3
        155        CONCAT                                           ~106    ~105, '%3Cbr%3E'
        156        ECHO                                                     ~106
  100   157        CONCAT                                           ~107    'data', !4
        158        CONCAT                                           ~108    ~107, '%3Cbr%3E'
        159        ECHO                                                     ~108
  101   160        CONCAT                                           ~109    'cvs', !5
        161        CONCAT                                           ~110    ~109, '%3Cbr%3E'
        162        ECHO                                                     ~110
  102   163        CONCAT                                           ~111    'cvs2', !6
        164        CONCAT                                           ~112    ~111, '%3Cbr%3E'
        165        ECHO                                                     ~112
  106   166        FETCH_DIM_R                                      ~113    !2, 'email'
        167        FETCH_DIM_R                                      ~114    ~113, 'header'
        168        ASSIGN                                                   !9, ~114
  107   169        FETCH_DIM_R                                      ~116    !2, 'email'
        170        FETCH_DIM_R                                      ~117    ~116, 'footer'
        171        ASSIGN                                                   !10, ~117
  132   172        INIT_FCALL                                               'print_r'
        173        FETCH_DIM_R                                      ~119    !0, 'imEmailForm_14_7'
        174        SEND_VAL                                                 ~119
        175        DO_ICALL                                                 
        176        ECHO                                                     '%3Cbr%3E'
  134   177        FETCH_DIM_R                                      ~121    !0, 'imEmailForm_14_7'
        178        FETCH_DIM_R                                      ~122    ~121, 'owner_message'
        179        ASSIGN                                                   !11, ~122
  135   180        INIT_FCALL                                               'nl2br'
        181        FETCH_DIM_R                                      ~124    !0, 'imEmailForm_14_7'
        182        FETCH_DIM_R                                      ~125    ~124, 'owner_message'
        183        SEND_VAL                                                 ~125
        184        DO_ICALL                                         $126    
        185        ASSIGN                                                   !12, $126
  137   186        CONCAT                                           ~128    !11, '%3Cbr%3E'
        187        ECHO                                                     ~128
  138   188        CONCAT                                           ~129    !12, '%3Cbr%3E'
        189        ECHO                                                     ~129
  141   190        CONCAT                                           ~130    !9, !12
        191        CONCAT                                           ~131    ~130, '%3Cbr%3E%3Cbr%3E%3Ctable+border%3D0+width%3D%22100%25%22+style%3D%22'
        192        FETCH_DIM_R                                      ~132    !2, 'email'
        193        FETCH_DIM_R                                      ~133    ~132, 'email_content_style'
        194        CONCAT                                           ~134    ~131, ~133
        195        CONCAT                                           ~135    ~134, '%22%3E'
        196        CONCAT                                           ~136    ~135, !4
        197        CONCAT                                           ~137    ~136, '%3C%2Ftable%3E'
        198        CONCAT                                           ~138    ~137, !10
        199        ASSIGN                                                   !13, ~138
  153   200        ASSIGN                                                   !14, 'MIME-Version%3A+1.0%0D%0A'
  154   201        ASSIGN_OP                                     8          !14, 'Content-type%3Atext%2Fhtml%3Bcharset%3Diso-8859-1%0D%0A'
  155   202        FETCH_DIM_R                                      ~142    !0, 'imEmailForm_14_7'
        203        FETCH_DIM_R                                      ~143    ~142, 'owner_email_from'
        204        CONCAT                                           ~144    'From%3A++', ~143
        205        CONCAT                                           ~145    ~144, '%0D%0A'
        206        ASSIGN_OP                                     8          !14, ~145
  156   207        INIT_FCALL                                               'ini_set'
        208        SEND_VAL                                                 'sendmail_from'
        209        FETCH_DIM_R                                      ~147    !0, 'imEmailForm_14_7'
        210        FETCH_DIM_R                                      ~148    ~147, 'owner_email_from'
        211        SEND_VAL                                                 ~148
        212        DO_ICALL                                                 
  158   213        CONCAT                                           ~150    !14, '%3Cbr%3E'
        214        ECHO                                                     ~150
  159   215        FETCH_DIM_R                                      ~151    !0, 'imEmailForm_14_7'
        216        FETCH_DIM_R                                      ~152    ~151, 'owner_email_from'
        217        CONCAT                                           ~153    ~152, '%3Cbr%3E'
        218        ECHO                                                     ~153
  161   219        FETCH_DIM_R                                      ~154    !0, 'imEmailForm_14_7'
        220        FETCH_DIM_R                                      ~155    ~154, 'owner_email_from'
        221        CONCAT                                           ~156    ~155, '+'
        222        FETCH_DIM_R                                      ~157    !0, 'imEmailForm_14_7'
        223        FETCH_DIM_R                                      ~158    ~157, 'owner_email_to'
        224        CONCAT                                           ~159    ~156, ~158
        225        CONCAT                                           ~160    ~159, '+'
        226        FETCH_DIM_R                                      ~161    !0, 'imEmailForm_14_7'
        227        FETCH_DIM_R                                      ~162    ~161, 'owner_subject'
        228        CONCAT                                           ~163    ~160, ~162
        229        CONCAT                                           ~164    ~163, '+'
        230        CONCAT                                           ~165    ~164, !14
        231        ECHO                                                     ~165
  164   232        INIT_FCALL                                               'mail'
        233        FETCH_DIM_R                                      ~166    !0, 'imEmailForm_14_7'
        234        FETCH_DIM_R                                      ~167    ~166, 'owner_email_to'
        235        SEND_VAL                                                 ~167
        236        FETCH_DIM_R                                      ~168    !0, 'imEmailForm_14_7'
        237        FETCH_DIM_R                                      ~169    ~168, 'owner_subject'
        238        SEND_VAL                                                 ~169
        239        SEND_VAR                                                 !13
        240        SEND_VAR                                                 !14
        241        DO_ICALL                                         $170    
        242      > JMPZ                                                     $170, ->244
        243    >   ECHO                                                     'enviado+1+%3Cbr%3E'
  185   244    >   FETCH_DIM_R                                      ~171    !0, 'imEmailForm_14_7'
        245        FETCH_DIM_R                                      ~172    ~171, 'customer_message'
        246        ASSIGN                                                   !11, ~172
  186   247        INIT_FCALL                                               'nl2br'
        248        FETCH_DIM_R                                      ~174    !0, 'imEmailForm_14_7'
        249        FETCH_DIM_R                                      ~175    ~174, 'customer_message'
        250        SEND_VAL                                                 ~175
        251        DO_ICALL                                         $176    
        252        ASSIGN                                                   !12, $176
  188   253        CONCAT                                           ~178    !9, !12
        254        CONCAT                                           ~179    ~178, '%3Cbr%3E%3Cbr%3E%3Ctable+border%3D0+width%3D%22100%25%22+style%3D%22'
        255        FETCH_DIM_R                                      ~180    !2, 'email'
        256        FETCH_DIM_R                                      ~181    ~180, 'email_content_style'
        257        CONCAT                                           ~182    ~179, ~181
        258        CONCAT                                           ~183    ~182, '%22%3E%3C%2Ftable%3E'
        259        CONCAT                                           ~184    ~183, !10
        260        ASSIGN                                                   !13, ~184
  190   261        FETCH_DIM_R                                      ~186    !0, 'imEmailForm_14_7'
        262        FETCH_DIM_R                                      ~187    ~186, 'customer_email_to'
        263        CONCAT                                           ~188    'a+', ~187
        264        CONCAT                                           ~189    ~188, '%3Cbr%3E'
        265        ECHO                                                     ~189
  191   266        FETCH_DIM_R                                      ~190    !1, 'Mail'
        267        CONCAT                                           ~191    'b+', ~190
        268        CONCAT                                           ~192    ~191, '%3Cbr%3E'
        269        ECHO                                                     ~192
  195   270        FETCH_DIM_R                                      ~193    !1, 'Mail'
        271        CONCAT                                           ~194    'esto%3A+', ~193
        272        CONCAT                                           ~195    ~194, '+'
        273        FETCH_DIM_R                                      ~196    !0, 'imEmailForm_14_7'
        274        FETCH_DIM_R                                      ~197    ~196, 'customer_subject'
        275        CONCAT                                           ~198    ~195, ~197
        276        CONCAT                                           ~199    ~198, '+'
        277        CONCAT                                           ~200    ~199, !13
        278        CONCAT                                           ~201    ~200, '+'
        279        CONCAT                                           ~202    ~201, !14
        280        ECHO                                                     ~202
  197   281        INIT_FCALL                                               'mail'
        282        FETCH_DIM_R                                      ~203    !1, 'Mail'
        283        SEND_VAL                                                 ~203
        284        FETCH_DIM_R                                      ~204    !0, 'imEmailForm_14_7'
        285        FETCH_DIM_R                                      ~205    ~204, 'customer_subject'
        286        SEND_VAL                                                 ~205
        287        SEND_VAR                                                 !13
        288        SEND_VAR                                                 !14
        289        DO_ICALL                                         $206    
        290      > JMPZ                                                     $206, ->292
        291    >   ECHO                                                     'enviado+2+%3Cbr%3E'
  200   292    >   BEGIN_SILENCE                                    ~207    
        293        INIT_FCALL                                               'header'
        294        FETCH_DIM_R                                      ~208    !0, 'imEmailForm_14_7'
        295        FETCH_DIM_R                                      ~209    ~208, 'confirmation_page'
        296        CONCAT                                           ~210    'Location%3A+', ~209
        297        SEND_VAL                                                 ~210
        298        DO_ICALL                                                 
        299        END_SILENCE                                              ~207
  234   300      > RETURN                                                   1

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
151.56 ms | 1424 KiB | 29 Q