Display the drop-down list

Test of password_hash()

Example #1 : test not validated (platform dependant or random result etc.)
Example #2 : test not validated (platform dependant or random result etc.)
Example #3 : test not validated (platform dependant or random result etc.)
Example #1
$input = [
  
=> 'rasmuslerdorf',
  
=> 'PASSWORD_DEFAULT',
]
test not validated (platform dependant or random result etc.)
$test_output = [
  
'result' => [
    
'string' => '$2y$10$TIf/sf7/zjUCMjakFl2kXuZM0tsBeeYTwgHeE8U4Imk0w.CgrV1Zq',
  ],
  
'php_version' => '7.1.33 Linux x86_64',
]
Example #2
$input = [
  
=> 'rasmuslerdorf',
  
=> 'PASSWORD_BCRYPT',
  
=> [
    
'cost' => 12,
  ],
]
test not validated (platform dependant or random result etc.)
$test_output = [
  
'result' => [
    
'string' => '$2y$12$/VCTLCoTUlJqRFmC0r9bxOH9CMPjj3zGkYkucd75fFgVDsUhFqzKG',
  ],
  
'php_version' => '7.1.33 Linux x86_64',
]
Example #3
$input = [
  
=> 'test',
  
=> 'PASSWORD_BCRYPT',
  
=> [
    
'cost' => 8,
  ],
]
test not validated (platform dependant or random result etc.)
$test_output = [
  
'result' => [
    
'string' => '$2y$08$1lBdwDEIA5e.AE97JVixyOQbNvr2R7FeoNaTYKmXXs3R7Ah2PPB7.',
  ],
  
'php_version' => '7.1.33 Linux x86_64',
]