Показать выпадающий список

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$RWJZTw98ekMjKfnYyOg03ugqmWhloXb.5h.vDDsYnTRRq.Fd9ZeVO',
  ],
  
'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$i94FFXTAA/nIIdkBzhsfe.P1JOGXYP7vuQe5VBg2VhK7c4D8WgSr2',
  ],
  
'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$Mzw3xENMdD3PccvUc3S4o./YFMzPJcOuQBBOIiNs36OLnMIBNo66G',
  ],
  
'php_version' => '7.1.33 Linux x86_64',
]