3v4l.org

run code in 300+ PHP versions simultaneously
<?php $options = [ 'cost' => 10, 'salt' => "$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$", ]; $save_passwd = password_hash('abcdefg', PASSWORD_BCRYPT, $options); echo $save_passwd.'\n'; $encrypt = crypt('abcdefg' , $save_passwd); echo $encrypt.'\n'; if($encrypt == $save_passwd) echo "잘되었으면좋겠네요시발~"; if(password_verify('abcdefg', $save_passwd)){ echo "5.5버전이상"; }else{ echo "거지셈"; } ?>
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 43) Position 1 = 18, Position 2 = 19
Branch analysis from position: 18
2 jumps found. (Code = 43) Position 1 = 24, Position 2 = 26
Branch analysis from position: 24
1 jumps found. (Code = 42) Position 1 = 27
Branch analysis from position: 27
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 26
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 19
filename:       /in/Ekc5B
function name:  (null)
number of ops:  28
compiled vars:  !0 = $options, !1 = $save_passwd, !2 = $encrypt
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    2     0  E >   ASSIGN                                                   !0, <array>
    6     1        INIT_FCALL                                               'password_hash'
          2        SEND_VAL                                                 'abcdefg'
          3        SEND_VAL                                                 '2y'
          4        SEND_VAR                                                 !0
          5        DO_ICALL                                         $4      
          6        ASSIGN                                                   !1, $4
    7     7        CONCAT                                           ~6      !1, '%5Cn'
          8        ECHO                                                     ~6
    8     9        INIT_FCALL                                               'crypt'
         10        SEND_VAL                                                 'abcdefg'
         11        SEND_VAR                                                 !1
         12        DO_ICALL                                         $7      
         13        ASSIGN                                                   !2, $7
    9    14        CONCAT                                           ~9      !2, '%5Cn'
         15        ECHO                                                     ~9
   10    16        IS_EQUAL                                                 !2, !1
         17      > JMPZ                                                     ~10, ->19
         18    >   ECHO                                                     '%EC%9E%98%EB%90%98%EC%97%88%EC%9C%BC%EB%A9%B4%EC%A2%8B%EA%B2%A0%EB%84%A4%EC%9A%94%EC%8B%9C%EB%B0%9C%7E'
   11    19    >   INIT_FCALL                                               'password_verify'
         20        SEND_VAL                                                 'abcdefg'
         21        SEND_VAR                                                 !1
         22        DO_ICALL                                         $11     
         23      > JMPZ                                                     $11, ->26
   12    24    >   ECHO                                                     '5.5%EB%B2%84%EC%A0%84%EC%9D%B4%EC%83%81'
         25      > JMP                                                      ->27
   14    26    >   ECHO                                                     '%EA%B1%B0%EC%A7%80%EC%85%88'
   17    27    > > RETURN                                                   1

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
151.5 ms | 1396 KiB | 19 Q