3v4l.org

run code in 500+ PHP versions simultaneously
<?php $text = " 4535903705830785|Expirymonth|Expiryyear|CVV|DOB|SSN|FirstName|LastName|Address|ZipCode|City|State|NumPhone|Email| 4535903705830785|Expirymonth|Expiryyear|CVV|DOB|SSN|FirstName|LastName|Address|ZipCode|City|State|NumPhone|Email| "; foreach ( explode("\n", $text) as $line ) { $line = trim($line); if ( empty($line) ) { continue; } [ $bin, $exp_month, $exp_year, $cvv, $dob, $ssn, $firstname, $lastname, $address, $zip_code, $city, $state, $phone, $email ] = explode('|', $line); $short_bin = substr($bin,0,6); var_dump( $bin, $exp_month, $exp_year, $cvv, $dob, $ssn, $firstname, $lastname, $address, $zip_code, $city, $state, $phone, $email, $short_bin ); }
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 77) Position 1 = 6, Position 2 = 66
Branch analysis from position: 6
2 jumps found. (Code = 78) Position 1 = 7, Position 2 = 66
Branch analysis from position: 7
2 jumps found. (Code = 43) Position 1 = 11, Position 2 = 12
Branch analysis from position: 11
1 jumps found. (Code = 42) Position 1 = 6
Branch analysis from position: 6
Branch analysis from position: 12
1 jumps found. (Code = 42) Position 1 = 6
Branch analysis from position: 6
Branch analysis from position: 66
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 66
filename:       /in/ZImPd
function name:  (null)
number of ops:  68
compiled vars:  !0 = $text, !1 = $line, !2 = $bin, !3 = $exp_month, !4 = $exp_year, !5 = $cvv, !6 = $dob, !7 = $ssn, !8 = $firstname, !9 = $lastname, !10 = $address, !11 = $zip_code, !12 = $city, !13 = $state, !14 = $phone, !15 = $email, !16 = $short_bin
line      #* E I O op                               fetch          ext  return  operands
-----------------------------------------------------------------------------------------
    3     0  E >   ASSIGN                                                       !0, '%0A4535903705830785%7CExpirymonth%7CExpiryyear%7CCVV%7CDOB%7CSSN%7CFirstName%7CLastName%7CAddress%7CZipCode%7CCity%7CState%7CNumPhone%7CEmail%7C+++++%0A4535903705830785%7CExpirymonth%7CExpiryyear%7CCVV%7CDOB%7CSSN%7CFirstName%7CLastName%7CAddress%7CZipCode%7CCity%7CState%7CNumPhone%7CEmail%7C%0A'
    8     1        INIT_FCALL                                                   'explode'
          2        SEND_VAL                                                     '%0A'
          3        SEND_VAR                                                     !0
          4        DO_ICALL                                             $18     
          5      > FE_RESET_R                                           $19     $18, ->66
          6    > > FE_FETCH_R                                                   $19, !1, ->66
    9     7    >   FRAMELESS_ICALL_1                trim                ~20     !1
          8        ASSIGN                                                       !1, ~20
   10     9        ISSET_ISEMPTY_CV                                             !1
         10      > JMPZ                                                         ~22, ->12
   11    11    > > JMP                                                          ->6
   19    12    >   INIT_FCALL                                                   'explode'
         13        SEND_VAL                                                     '%7C'
         14        SEND_VAR                                                     !1
         15        DO_ICALL                                             $23     
         16        FETCH_LIST_R                                         $24     $23, 0
   15    17        ASSIGN                                                       !2, $24
         18        FETCH_LIST_R                                         $26     $23, 1
         19        ASSIGN                                                       !3, $26
         20        FETCH_LIST_R                                         $28     $23, 2
         21        ASSIGN                                                       !4, $28
         22        FETCH_LIST_R                                         $30     $23, 3
         23        ASSIGN                                                       !5, $30
         24        FETCH_LIST_R                                         $32     $23, 4
   16    25        ASSIGN                                                       !6, $32
         26        FETCH_LIST_R                                         $34     $23, 5
         27        ASSIGN                                                       !7, $34
         28        FETCH_LIST_R                                         $36     $23, 6
         29        ASSIGN                                                       !8, $36
         30        FETCH_LIST_R                                         $38     $23, 7
         31        ASSIGN                                                       !9, $38
         32        FETCH_LIST_R                                         $40     $23, 8
   17    33        ASSIGN                                                       !10, $40
         34        FETCH_LIST_R                                         $42     $23, 9
         35        ASSIGN                                                       !11, $42
         36        FETCH_LIST_R                                         $44     $23, 10
         37        ASSIGN                                                       !12, $44
         38        FETCH_LIST_R                                         $46     $23, 11
         39        ASSIGN                                                       !13, $46
         40        FETCH_LIST_R                                         $48     $23, 12
   18    41        ASSIGN                                                       !14, $48
         42        FETCH_LIST_R                                         $50     $23, 13
         43        ASSIGN                                                       !15, $50
         44        FREE                                                         $23
   20    45        FRAMELESS_ICALL_3                substr              ~52     !2, 0
         46        OP_DATA                                                      6
         47        ASSIGN                                                       !16, ~52
   22    48        INIT_FCALL                                                   'var_dump'
   23    49        SEND_VAR                                                     !2
         50        SEND_VAR                                                     !3
         51        SEND_VAR                                                     !4
         52        SEND_VAR                                                     !5
   24    53        SEND_VAR                                                     !6
         54        SEND_VAR                                                     !7
         55        SEND_VAR                                                     !8
         56        SEND_VAR                                                     !9
   25    57        SEND_VAR                                                     !10
         58        SEND_VAR                                                     !11
         59        SEND_VAR                                                     !12
         60        SEND_VAR                                                     !13
   26    61        SEND_VAR                                                     !14
         62        SEND_VAR                                                     !15
         63        SEND_VAR                                                     !16
   22    64        DO_ICALL                                                     
    8    65      > JMP                                                          ->6
         66    >   FE_FREE                                                      $19
   28    67      > RETURN                                                       1

Generated using Vulcan Logic Dumper, using php 8.5.0


preferences:
206.33 ms | 1995 KiB | 15 Q