3v4l.org

run code in 300+ PHP versions simultaneously
<?php /* ======== This file is being used to simulate an E-commerce sale in Google Analytics based on the users' original cookies. This URL needs to be loaded by the Affiliate Netwerk. Be careful while testing: deleting E-Commerce sales from Google Analytics can only be achieved by adding the same transaction with negative values (see http://support.google.com/googleanalytics/bin/answer.py?hl=en-GB&answer=72290). ========= */ $username="fashion_test"; $password="0509143335"; $database="fashion_test"; // Settings //$var_utmhn='fashion-experts.com'; //enter your domain //$utmac = 'UA-44436624-1'; // Analytics account $var_utmhn='best-fashion-deals.com'; //enter your domain $utmac = 'UA-55018676-1'; // Analytics account $testing = "0"; // 1 = test-mode on (nothing will be send to Google Analytics) $email = "gdalia.erez@gmail.com"; // To send an email while testing //mysql_connect(localhost,$username,$password); //@mysql_select_db($database) or die( "Unable to select database"); // Get required variables from the URL $subid = "3833313162366334343065623666373131393539383331373963326163323161"; $orderid = "9"; // Order ID - unique ID for the transaction $total = "9"; //Total and unit price - affiliate fee for the sale $sku = "9"; // product code if ($sku == "") {$sku = "1";} // in case you didn't provide any product code It'll just take "1".. // Get some optional variables from the URL $storename = $_GET["storename"]; // Affiliation or store name - name of the business your promoting (e.g. "WP4FB") $tax = $_GET["tax"]; $shipping = $_GET["shipping"]; $city = $_GET["city"]; $region = $_GET["region"]; $country = $_GET["country"]; $orderid = $_GET["orderid"]; $productname = $_GET["productname"]; $category = $_GET["category"]; $utmipc = $sku; // Product code / SKU $utmipn = $productname; // Product name $utmipr = $total; // Unit price $utmiqt = '1'; // Unit quantity if ($tax != "") {$utmttx = $tax;} else {$utmttx = '0.0';} // Tax if ($shipping != "") {$utmtsp = $shipping;} else {$utmtsp = '0.0';} // Shipping cost if ($city != "") {$utmtci = $city;} else {$utmtci = 'na';} // Billing city if ($region != "") {$utmtrg = $region;} else {$utmtrg = 'na';} // Billing region if ($country != "") {$utmtco = $country;} else {$utmtco = 'na';} // Billing country if ($tax != "") {$utmttx = $tax;} else {$utmttx = '0.0';} $utmp = 'leadtracking.php'; //Page request of the current page (required, no need to change this) $utmiva = ''; $var_utmn=rand(1000000000,9999999999);//random request number to prevent caching $var_utmn2=rand(1000000000,9999999999);//random request number to prevent caching $var_utmn3=rand(1000000000,9999999999);//random request number to prevent caching $utmhid=rand(1000000000,9999999999);//random request number to prevent caching // Looks up the original cookie in the DB //$query= "SELECT * FROM clicks WHERE subid='$subid'"; //$result=mysql_query($query); /*if (mysql_numrows($result) == 1) { $utma=mysql_result($result,$i,"utma"); $utmz=mysql_result($result,$i,"utmz"); $utmv=mysql_result($result,$i,"utmv"); $utmx=mysql_result($result,$i,"utmx"); } else { echo "Subid not found in database."; exit(); }*/ $utma="91177353.571070991.1413196407.1413209241.1413213333.3"; $utmz="91177353.1413196407.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)"; $utmv=""; $utmx=""; $utmipn = str_replace(" ","%20",$utmipn); $utma = str_replace(" ","%20",$utma); $utma = str_replace("|","%7C",$utma); $utmz = str_replace(" ","%20",$utmz); $utmz = str_replace("|","%7C",$utmz); $utmv = str_replace(" ","%20",$utmv); $utmv = str_replace("|","%7C",$utmv); $utmx = str_replace(" ","%20",$utmx); $utmx = str_replace("|","%7C",$utmx); // Simulates E-Commerce Sale $transactionUrl ='http://www.google-analytics.com/__utm.gif?utmwv=4.6.5&utmn='.$var_utmn.'&utmhn='.$var_utmhn.'&utmt=tran&utmtid='.$orderid.'&utmtst='.$storename.'&utmtto='.$utmipr.'&utmttx='.$utmttx.'&utmtsp='.$utmtsp.'&utmtci='.$utmtci.'&utmtrg='.$utmtrg.'&utmtco='.$utmtco.'&utmac='.$utmac.'&utmcc=__utma%3D'.$utma.'%3B%2B__utmz%3D'.$utmz.'%3B%2B__utmv%3D'.$utmv.'%3B%2B__utmk%3D'.$utmk.'%3B'; $itemUrl = 'http://www.google-analytics.com/__utm.gif?utmwv=4.6.5&utmn='.$var_utmn2.'&utmhn='.$var_utmhn.'&utmt=item&utmtid='.$orderid.'&utmipc='.$utmipc.'&utmipn='.$utmipn.'&utmiva='.$utmiva.'&utmipr='.$utmipr.'&utmiqt='.$utmiqt.'&utmac='.$utmac.'&utmcc=__utma%3D'.$utma.'%3B%2B__utmz%3D'.$utmz.'%3B%2B__utmv%3D'.$utmv.'%3B%2B__utmk%3D'.$utmk.'%3B'; $urchinUrl ='http://www.google-analytics.com/__utm.gif?utmwv=4.6.5&utmn='.$var_utmn3.'&utmhn='.$var_utmhn.'&utmp='.$utmp.'&utmac='.$utmac.'&utmcc=__utma%3D'.$utma.'%3B%2B__utmz%3D'.$utmz.'%3B%2B__utmv%3D'.$utmv.'%3B%2B__utmk%3D'.$utmk.'%3B'; // Send E-commerce sale to Google Analytics $testing = "0"; if ($testing == "0") { $handle = fopen ($transactionUrl, "r"); $test = fgets($handle); $handle2 = fopen ($itemUrl, "r"); $test2 = fgets($handle2); $handle3 = fopen ($urchinUrl, "r"); $test3 = fgets($handle3); fclose($handle); fclose($handle2); fclose($handle3); } else { // Show's Google Analytics URL's for testing purposes echo $transactionUrl." ".$itemUrl." ".$urchinUrl." "; // Send email $message = $transactionUrl."\n".$itemUrl."\n".$urchinUrl."\n\n Thanks for using Affiliate2Analytics.com!"; mail($email, 'Affiliate 2 Analytics test', $message); } //mysql_close();
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 43) Position 1 = 13, Position 2 = 14
Branch analysis from position: 13
2 jumps found. (Code = 43) Position 1 = 47, Position 2 = 49
Branch analysis from position: 47
1 jumps found. (Code = 42) Position 1 = 50
Branch analysis from position: 50
2 jumps found. (Code = 43) Position 1 = 52, Position 2 = 54
Branch analysis from position: 52
1 jumps found. (Code = 42) Position 1 = 55
Branch analysis from position: 55
2 jumps found. (Code = 43) Position 1 = 57, Position 2 = 59
Branch analysis from position: 57
1 jumps found. (Code = 42) Position 1 = 60
Branch analysis from position: 60
2 jumps found. (Code = 43) Position 1 = 62, Position 2 = 64
Branch analysis from position: 62
1 jumps found. (Code = 42) Position 1 = 65
Branch analysis from position: 65
2 jumps found. (Code = 43) Position 1 = 67, Position 2 = 69
Branch analysis from position: 67
1 jumps found. (Code = 42) Position 1 = 70
Branch analysis from position: 70
2 jumps found. (Code = 43) Position 1 = 72, Position 2 = 74
Branch analysis from position: 72
1 jumps found. (Code = 42) Position 1 = 75
Branch analysis from position: 75
2 jumps found. (Code = 43) Position 1 = 233, Position 2 = 270
Branch analysis from position: 233
1 jumps found. (Code = 42) Position 1 = 287
Branch analysis from position: 287
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 270
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 74
2 jumps found. (Code = 43) Position 1 = 233, Position 2 = 270
Branch analysis from position: 233
Branch analysis from position: 270
Branch analysis from position: 69
2 jumps found. (Code = 43) Position 1 = 72, Position 2 = 74
Branch analysis from position: 72
Branch analysis from position: 74
Branch analysis from position: 64
2 jumps found. (Code = 43) Position 1 = 67, Position 2 = 69
Branch analysis from position: 67
Branch analysis from position: 69
Branch analysis from position: 59
2 jumps found. (Code = 43) Position 1 = 62, Position 2 = 64
Branch analysis from position: 62
Branch analysis from position: 64
Branch analysis from position: 54
2 jumps found. (Code = 43) Position 1 = 57, Position 2 = 59
Branch analysis from position: 57
Branch analysis from position: 59
Branch analysis from position: 49
2 jumps found. (Code = 43) Position 1 = 52, Position 2 = 54
Branch analysis from position: 52
Branch analysis from position: 54
Branch analysis from position: 14
filename:       /in/GSo6S
function name:  (null)
number of ops:  288
compiled vars:  !0 = $username, !1 = $password, !2 = $database, !3 = $var_utmhn, !4 = $utmac, !5 = $testing, !6 = $email, !7 = $subid, !8 = $orderid, !9 = $total, !10 = $sku, !11 = $storename, !12 = $tax, !13 = $shipping, !14 = $city, !15 = $region, !16 = $country, !17 = $productname, !18 = $category, !19 = $utmipc, !20 = $utmipn, !21 = $utmipr, !22 = $utmiqt, !23 = $utmttx, !24 = $utmtsp, !25 = $utmtci, !26 = $utmtrg, !27 = $utmtco, !28 = $utmp, !29 = $utmiva, !30 = $var_utmn, !31 = $var_utmn2, !32 = $var_utmn3, !33 = $utmhid, !34 = $utma, !35 = $utmz, !36 = $utmv, !37 = $utmx, !38 = $transactionUrl, !39 = $utmk, !40 = $itemUrl, !41 = $urchinUrl, !42 = $handle, !43 = $test, !44 = $handle2, !45 = $test2, !46 = $handle3, !47 = $test3, !48 = $message
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   10     0  E >   ASSIGN                                                   !0, 'fashion_test'
   11     1        ASSIGN                                                   !1, '0509143335'
   12     2        ASSIGN                                                   !2, 'fashion_test'
   16     3        ASSIGN                                                   !3, 'best-fashion-deals.com'
   17     4        ASSIGN                                                   !4, 'UA-55018676-1'
   20     5        ASSIGN                                                   !5, '0'
   21     6        ASSIGN                                                   !6, 'gdalia.erez%40gmail.com'
   27     7        ASSIGN                                                   !7, '3833313162366334343065623666373131393539383331373963326163323161'
   28     8        ASSIGN                                                   !8, '9'
   29     9        ASSIGN                                                   !9, '9'
   30    10        ASSIGN                                                   !10, '9'
   31    11        IS_EQUAL                                                 !10, ''
         12      > JMPZ                                                     ~60, ->14
         13    >   ASSIGN                                                   !10, '1'
   34    14    >   FETCH_R                      global              ~62     '_GET'
         15        FETCH_DIM_R                                      ~63     ~62, 'storename'
         16        ASSIGN                                                   !11, ~63
   35    17        FETCH_R                      global              ~65     '_GET'
         18        FETCH_DIM_R                                      ~66     ~65, 'tax'
         19        ASSIGN                                                   !12, ~66
   36    20        FETCH_R                      global              ~68     '_GET'
         21        FETCH_DIM_R                                      ~69     ~68, 'shipping'
         22        ASSIGN                                                   !13, ~69
   37    23        FETCH_R                      global              ~71     '_GET'
         24        FETCH_DIM_R                                      ~72     ~71, 'city'
         25        ASSIGN                                                   !14, ~72
   38    26        FETCH_R                      global              ~74     '_GET'
         27        FETCH_DIM_R                                      ~75     ~74, 'region'
         28        ASSIGN                                                   !15, ~75
   39    29        FETCH_R                      global              ~77     '_GET'
         30        FETCH_DIM_R                                      ~78     ~77, 'country'
         31        ASSIGN                                                   !16, ~78
   40    32        FETCH_R                      global              ~80     '_GET'
         33        FETCH_DIM_R                                      ~81     ~80, 'orderid'
         34        ASSIGN                                                   !8, ~81
   41    35        FETCH_R                      global              ~83     '_GET'
         36        FETCH_DIM_R                                      ~84     ~83, 'productname'
         37        ASSIGN                                                   !17, ~84
   42    38        FETCH_R                      global              ~86     '_GET'
         39        FETCH_DIM_R                                      ~87     ~86, 'category'
         40        ASSIGN                                                   !18, ~87
   44    41        ASSIGN                                                   !19, !10
   45    42        ASSIGN                                                   !20, !17
   46    43        ASSIGN                                                   !21, !9
   47    44        ASSIGN                                                   !22, '1'
   48    45        IS_NOT_EQUAL                                             !12, ''
         46      > JMPZ                                                     ~93, ->49
         47    >   ASSIGN                                                   !23, !12
         48      > JMP                                                      ->50
         49    >   ASSIGN                                                   !23, '0.0'
   49    50    >   IS_NOT_EQUAL                                             !13, ''
         51      > JMPZ                                                     ~96, ->54
         52    >   ASSIGN                                                   !24, !13
         53      > JMP                                                      ->55
         54    >   ASSIGN                                                   !24, '0.0'
   50    55    >   IS_NOT_EQUAL                                             !14, ''
         56      > JMPZ                                                     ~99, ->59
         57    >   ASSIGN                                                   !25, !14
         58      > JMP                                                      ->60
         59    >   ASSIGN                                                   !25, 'na'
   51    60    >   IS_NOT_EQUAL                                             !15, ''
         61      > JMPZ                                                     ~102, ->64
         62    >   ASSIGN                                                   !26, !15
         63      > JMP                                                      ->65
         64    >   ASSIGN                                                   !26, 'na'
   52    65    >   IS_NOT_EQUAL                                             !16, ''
         66      > JMPZ                                                     ~105, ->69
         67    >   ASSIGN                                                   !27, !16
         68      > JMP                                                      ->70
         69    >   ASSIGN                                                   !27, 'na'
   53    70    >   IS_NOT_EQUAL                                             !12, ''
         71      > JMPZ                                                     ~108, ->74
         72    >   ASSIGN                                                   !23, !12
         73      > JMP                                                      ->75
         74    >   ASSIGN                                                   !23, '0.0'
   54    75    >   ASSIGN                                                   !28, 'leadtracking.php'
   55    76        ASSIGN                                                   !29, ''
   56    77        INIT_FCALL                                               'rand'
         78        SEND_VAL                                                 1000000000
         79        SEND_VAL                                                 9999999999
         80        DO_ICALL                                         $113    
         81        ASSIGN                                                   !30, $113
   57    82        INIT_FCALL                                               'rand'
         83        SEND_VAL                                                 1000000000
         84        SEND_VAL                                                 9999999999
         85        DO_ICALL                                         $115    
         86        ASSIGN                                                   !31, $115
   58    87        INIT_FCALL                                               'rand'
         88        SEND_VAL                                                 1000000000
         89        SEND_VAL                                                 9999999999
         90        DO_ICALL                                         $117    
         91        ASSIGN                                                   !32, $117
   59    92        INIT_FCALL                                               'rand'
         93        SEND_VAL                                                 1000000000
         94        SEND_VAL                                                 9999999999
         95        DO_ICALL                                         $119    
         96        ASSIGN                                                   !33, $119
   73    97        ASSIGN                                                   !34, '91177353.571070991.1413196407.1413209241.1413213333.3'
   74    98        ASSIGN                                                   !35, '91177353.1413196407.1.1.utmcsr%3D%28direct%29%7Cutmccn%3D%28direct%29%7Cutmcmd%3D%28none%29'
   75    99        ASSIGN                                                   !36, ''
   76   100        ASSIGN                                                   !37, ''
   79   101        INIT_FCALL                                               'str_replace'
        102        SEND_VAL                                                 '+'
        103        SEND_VAL                                                 '%2520'
        104        SEND_VAR                                                 !20
        105        DO_ICALL                                         $125    
        106        ASSIGN                                                   !20, $125
   81   107        INIT_FCALL                                               'str_replace'
        108        SEND_VAL                                                 '+'
        109        SEND_VAL                                                 '%2520'
        110        SEND_VAR                                                 !34
        111        DO_ICALL                                         $127    
        112        ASSIGN                                                   !34, $127
   82   113        INIT_FCALL                                               'str_replace'
        114        SEND_VAL                                                 '%7C'
        115        SEND_VAL                                                 '%257C'
        116        SEND_VAR                                                 !34
        117        DO_ICALL                                         $129    
        118        ASSIGN                                                   !34, $129
   84   119        INIT_FCALL                                               'str_replace'
        120        SEND_VAL                                                 '+'
        121        SEND_VAL                                                 '%2520'
        122        SEND_VAR                                                 !35
        123        DO_ICALL                                         $131    
        124        ASSIGN                                                   !35, $131
   85   125        INIT_FCALL                                               'str_replace'
        126        SEND_VAL                                                 '%7C'
        127        SEND_VAL                                                 '%257C'
        128        SEND_VAR                                                 !35
        129        DO_ICALL                                         $133    
        130        ASSIGN                                                   !35, $133
   87   131        INIT_FCALL                                               'str_replace'
        132        SEND_VAL                                                 '+'
        133        SEND_VAL                                                 '%2520'
        134        SEND_VAR                                                 !36
        135        DO_ICALL                                         $135    
        136        ASSIGN                                                   !36, $135
   88   137        INIT_FCALL                                               'str_replace'
        138        SEND_VAL                                                 '%7C'
        139        SEND_VAL                                                 '%257C'
        140        SEND_VAR                                                 !36
        141        DO_ICALL                                         $137    
        142        ASSIGN                                                   !36, $137
   90   143        INIT_FCALL                                               'str_replace'
        144        SEND_VAL                                                 '+'
        145        SEND_VAL                                                 '%2520'
        146        SEND_VAR                                                 !37
        147        DO_ICALL                                         $139    
        148        ASSIGN                                                   !37, $139
   91   149        INIT_FCALL                                               'str_replace'
        150        SEND_VAL                                                 '%7C'
        151        SEND_VAL                                                 '%257C'
        152        SEND_VAR                                                 !37
        153        DO_ICALL                                         $141    
        154        ASSIGN                                                   !37, $141
   94   155        CONCAT                                           ~143    'http%3A%2F%2Fwww.google-analytics.com%2F__utm.gif%3Futmwv%3D4.6.5%26utmn%3D', !30
        156        CONCAT                                           ~144    ~143, '%26utmhn%3D'
        157        CONCAT                                           ~145    ~144, !3
        158        CONCAT                                           ~146    ~145, '%26utmt%3Dtran%26utmtid%3D'
        159        CONCAT                                           ~147    ~146, !8
        160        CONCAT                                           ~148    ~147, '%26utmtst%3D'
        161        CONCAT                                           ~149    ~148, !11
        162        CONCAT                                           ~150    ~149, '%26utmtto%3D'
        163        CONCAT                                           ~151    ~150, !21
        164        CONCAT                                           ~152    ~151, '%26utmttx%3D'
        165        CONCAT                                           ~153    ~152, !23
        166        CONCAT                                           ~154    ~153, '%26utmtsp%3D'
        167        CONCAT                                           ~155    ~154, !24
        168        CONCAT                                           ~156    ~155, '%26utmtci%3D'
        169        CONCAT                                           ~157    ~156, !25
        170        CONCAT                                           ~158    ~157, '%26utmtrg%3D'
        171        CONCAT                                           ~159    ~158, !26
        172        CONCAT                                           ~160    ~159, '%26utmtco%3D'
        173        CONCAT                                           ~161    ~160, !27
        174        CONCAT                                           ~162    ~161, '%26utmac%3D'
        175        CONCAT                                           ~163    ~162, !4
        176        CONCAT                                           ~164    ~163, '%26utmcc%3D__utma%253D'
        177        CONCAT                                           ~165    ~164, !34
        178        CONCAT                                           ~166    ~165, '%253B%252B__utmz%253D'
        179        CONCAT                                           ~167    ~166, !35
        180        CONCAT                                           ~168    ~167, '%253B%252B__utmv%253D'
        181        CONCAT                                           ~169    ~168, !36
        182        CONCAT                                           ~170    ~169, '%253B%252B__utmk%253D'
        183        CONCAT                                           ~171    ~170, !39
        184        CONCAT                                           ~172    ~171, '%253B'
        185        ASSIGN                                                   !38, ~172
   96   186        CONCAT                                           ~174    'http%3A%2F%2Fwww.google-analytics.com%2F__utm.gif%3Futmwv%3D4.6.5%26utmn%3D', !31
        187        CONCAT                                           ~175    ~174, '%26utmhn%3D'
        188        CONCAT                                           ~176    ~175, !3
        189        CONCAT                                           ~177    ~176, '%26utmt%3Ditem%26utmtid%3D'
        190        CONCAT                                           ~178    ~177, !8
        191        CONCAT                                           ~179    ~178, '%26utmipc%3D'
        192        CONCAT                                           ~180    ~179, !19
        193        CONCAT                                           ~181    ~180, '%26utmipn%3D'
        194        CONCAT                                           ~182    ~181, !20
        195        CONCAT                                           ~183    ~182, '%26utmiva%3D'
        196        CONCAT                                           ~184    ~183, !29
        197        CONCAT                                           ~185    ~184, '%26utmipr%3D'
        198        CONCAT                                           ~186    ~185, !21
        199        CONCAT                                           ~187    ~186, '%26utmiqt%3D'
        200        CONCAT                                           ~188    ~187, !22
        201        CONCAT                                           ~189    ~188, '%26utmac%3D'
        202        CONCAT                                           ~190    ~189, !4
        203        CONCAT                                           ~191    ~190, '%26utmcc%3D__utma%253D'
        204        CONCAT                                           ~192    ~191, !34
        205        CONCAT                                           ~193    ~192, '%253B%252B__utmz%253D'
        206        CONCAT                                           ~194    ~193, !35
        207        CONCAT                                           ~195    ~194, '%253B%252B__utmv%253D'
        208        CONCAT                                           ~196    ~195, !36
        209        CONCAT                                           ~197    ~196, '%253B%252B__utmk%253D'
        210        CONCAT                                           ~198    ~197, !39
        211        CONCAT                                           ~199    ~198, '%253B'
        212        ASSIGN                                                   !40, ~199
   98   213        CONCAT                                           ~201    'http%3A%2F%2Fwww.google-analytics.com%2F__utm.gif%3Futmwv%3D4.6.5%26utmn%3D', !32
        214        CONCAT                                           ~202    ~201, '%26utmhn%3D'
        215        CONCAT                                           ~203    ~202, !3
        216        CONCAT                                           ~204    ~203, '%26utmp%3D'
        217        CONCAT                                           ~205    ~204, !28
        218        CONCAT                                           ~206    ~205, '%26utmac%3D'
        219        CONCAT                                           ~207    ~206, !4
        220        CONCAT                                           ~208    ~207, '%26utmcc%3D__utma%253D'
        221        CONCAT                                           ~209    ~208, !34
        222        CONCAT                                           ~210    ~209, '%253B%252B__utmz%253D'
        223        CONCAT                                           ~211    ~210, !35
        224        CONCAT                                           ~212    ~211, '%253B%252B__utmv%253D'
        225        CONCAT                                           ~213    ~212, !36
        226        CONCAT                                           ~214    ~213, '%253B%252B__utmk%253D'
        227        CONCAT                                           ~215    ~214, !39
        228        CONCAT                                           ~216    ~215, '%253B'
        229        ASSIGN                                                   !41, ~216
  101   230        ASSIGN                                                   !5, '0'
  102   231        IS_EQUAL                                                 !5, '0'
        232      > JMPZ                                                     ~219, ->270
  104   233    >   INIT_FCALL                                               'fopen'
        234        SEND_VAR                                                 !38
        235        SEND_VAL                                                 'r'
        236        DO_ICALL                                         $220    
        237        ASSIGN                                                   !42, $220
  105   238        INIT_FCALL                                               'fgets'
        239        SEND_VAR                                                 !42
        240        DO_ICALL                                         $222    
        241        ASSIGN                                                   !43, $222
  107   242        INIT_FCALL                                               'fopen'
        243        SEND_VAR                                                 !40
        244        SEND_VAL                                                 'r'
        245        DO_ICALL                                         $224    
        246        ASSIGN                                                   !44, $224
  108   247        INIT_FCALL                                               'fgets'
        248        SEND_VAR                                                 !44
        249        DO_ICALL                                         $226    
        250        ASSIGN                                                   !45, $226
  110   251        INIT_FCALL                                               'fopen'
        252        SEND_VAR                                                 !41
        253        SEND_VAL                                                 'r'
        254        DO_ICALL                                         $228    
        255        ASSIGN                                                   !46, $228
  111   256        INIT_FCALL                                               'fgets'
        257        SEND_VAR                                                 !46
        258        DO_ICALL                                         $230    
        259        ASSIGN                                                   !47, $230
  113   260        INIT_FCALL                                               'fclose'
        261        SEND_VAR                                                 !42
        262        DO_ICALL                                                 
  114   263        INIT_FCALL                                               'fclose'
        264        SEND_VAR                                                 !44
        265        DO_ICALL                                                 
  115   266        INIT_FCALL                                               'fclose'
        267        SEND_VAR                                                 !46
        268        DO_ICALL                                                 
        269      > JMP                                                      ->287
  119   270    >   CONCAT                                           ~235    !38, '%0A'
  120   271        CONCAT                                           ~236    ~235, !40
        272        CONCAT                                           ~237    ~236, '%0A'
  121   273        CONCAT                                           ~238    ~237, !41
        274        CONCAT                                           ~239    ~238, '%0A%0A'
        275        ECHO                                                     ~239
  126   276        CONCAT                                           ~240    !38, '%0A'
        277        CONCAT                                           ~241    ~240, !40
        278        CONCAT                                           ~242    ~241, '%0A'
        279        CONCAT                                           ~243    ~242, !41
        280        CONCAT                                           ~244    ~243, '%0A%0A+Thanks+for+using+Affiliate2Analytics.com%21'
        281        ASSIGN                                                   !48, ~244
  127   282        INIT_FCALL                                               'mail'
        283        SEND_VAR                                                 !6
        284        SEND_VAL                                                 'Affiliate+2+Analytics+test'
        285        SEND_VAR                                                 !48
        286        DO_ICALL                                                 
  131   287    > > RETURN                                                   1

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
148.88 ms | 1424 KiB | 25 Q