3v4l.org

run code in 300+ PHP versions simultaneously
<?php $options = [ 'cost' => 7, 'salt' => 'BCryptRequires22Chrcts', ]; $hash['hash'][] = password_hash("rasmuslerdorf", PASSWORD_BCRYPT, $options); $hash['hash'][] = password_hash("rasmuslerdorf", PASSWORD_DEFAULT); $hash['info'][] = password_get_info($hash['hash'][0]); $hash['info'][] = password_get_info($hash['hash'][1]); $hash['rehash'][] = password_needs_rehash($hash['hash'][0],PASSWORD_BCRYPT,$options); $hash['rehash'][] = password_needs_rehash($hash['hash'][0],PASSWORD_DEFAULT); $hash['rehash'][] = password_needs_rehash($hash['hash'][1],PASSWORD_DEFAULT); $hash['pas_verify'][] = password_verify('rasmuslerdorf', $hash['hash'][0]); $hash['pas_verify'][] = password_verify('rasmuslerdorf', $hash['hash'][1]); var_dump($hash);
Output for 7.2.6
Deprecated: password_hash(): Use of the 'salt' option to password_hash is deprecated in /in/f2jkE on line 7 array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$/ZkGvGhVbaJOeBA1gOSqJeazJPBH9IXU9gZA3VmfZf6tte6LGnHBO" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 7.2.0
Deprecated: password_hash(): Use of the 'salt' option to password_hash is deprecated in /in/f2jkE on line 7 array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$rEDhUiFEQNFPNro9un0QS.fM.M.76PGQvBojWrnLu6.PKM5YkU9Xi" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 7.1.20
Deprecated: password_hash(): Use of the 'salt' option to password_hash is deprecated in /in/f2jkE on line 7 array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$b0Pk4XVEpvcgvRz9KV4bfuYyoEtI2qxv6W.MZ0uFd5vOetELSRMsi" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 7.1.10
Deprecated: password_hash(): Use of the 'salt' option to password_hash is deprecated in /in/f2jkE on line 7 array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$SxwhVK22aft1MgiJfTTA9eQQjtCztQZ95aLSnAW0PrCBkLhc8rs/e" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 7.1.7
Deprecated: password_hash(): Use of the 'salt' option to password_hash is deprecated in /in/f2jkE on line 7 array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$cFHOy6UFAg7Lxwh40Cul1.BHdwcwzb8J/5aztl5cYvZbAWEZ4y7bu" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 7.1.6
Deprecated: password_hash(): Use of the 'salt' option to password_hash is deprecated in /in/f2jkE on line 7 array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$YDvKeQzUaOzR9Nl3BqSUkufH94Lt1uizOZqW7NG2nYahJEcc9IBP2" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 7.1.5
Deprecated: password_hash(): Use of the 'salt' option to password_hash is deprecated in /in/f2jkE on line 7 array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$7xvJUMq.etn7sTbGwnomE.7JQK0yCc9byY2Xwvqdz8C07jrmk4NPS" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 7.1.0
Deprecated: password_hash(): Use of the 'salt' option to password_hash is deprecated in /in/f2jkE on line 7 array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$YEYquwj9bsQqTpwh6p9NdeDm8iBIp/sfX1GiH34g5fCwhYssYlvue" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 7.0.20
Deprecated: password_hash(): Use of the 'salt' option to password_hash is deprecated in /in/f2jkE on line 7 array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$/UaqFTYufwCMObd4jazDqOYIJlsvxyCY7hg148ROKnL/vpUjwiJFa" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 7.0.14
Deprecated: password_hash(): Use of the 'salt' option to password_hash is deprecated in /in/f2jkE on line 7 array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$an5msht72.a8mMy/HhtM4e1PnO25oFbrxceN8hOhuSJDoxzan4I6u" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 7.0.6
Deprecated: password_hash(): Use of the 'salt' option to password_hash is deprecated in /in/f2jkE on line 7 array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$/EAwAP.P1twuiy25LgMNtOnkz/lLXY.NPaekiptWNEu4ti3bKsEUu" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 7.0.5
Deprecated: password_hash(): Use of the 'salt' option to password_hash is deprecated in /in/f2jkE on line 7 array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$emj7PWSJ4WwPje2QRBL3eO7YruG6oRC1R80YjXFu0eiB5x0Ndvkfa" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 7.0.4
Deprecated: password_hash(): Use of the 'salt' option to password_hash is deprecated in /in/f2jkE on line 7 array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$EXPjElRjNOiKF0vQgMQQkeCaaV2zDkBlypGkSZCVyHxzxyqTZGW9m" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 7.0.3
Deprecated: password_hash(): Use of the 'salt' option to password_hash is deprecated in /in/f2jkE on line 7 array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$.YGqncrDFuMKxON5WMCyFOg/hsPStNKKs.8wC83VOGp93RdHB77vq" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 7.0.2
Deprecated: password_hash(): Use of the 'salt' option to password_hash is deprecated in /in/f2jkE on line 7 array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$gqpeQeoO0CVIsd15z1hi2eNqI05zdrwS.YgRtQ.1CaehfLj/uTi/K" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 7.0.1
Deprecated: password_hash(): Use of the 'salt' option to password_hash is deprecated in /in/f2jkE on line 7 array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$tCireM/x275k2eY7Aw/Qhe7RXlRCICDC47IXlaTN3Ls/zmyhXphQG" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 7.0.0
Deprecated: password_hash(): Use of the 'salt' option to password_hash is deprecated in /in/f2jkE on line 7 array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$I5/8cvt2hOk/sKd4tijgxeHUZmvOR5381i1fh4skkqjlBNbo5kSLa" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.6.28
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$cMRlx/V1IOT1CS0wdYdjluwNsLqpmWY0J7QZx51HFKgQqCGmv9SF6" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.6.21
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$SDG0ljIiwnoLrVAefu2Tge2dfu6Pp/nu8y8vleW5M0JTSFkAp9mgW" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.6.20
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$CrWJY83nd1Fo3fo5S6UOiu33Y3nh6alJ.wAYi.Yg7xq40zdmy2Rfu" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.6.19
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$gWjEWsPvSUPLtOhw51DRdenkpqm02GRRGpctRWqhSr.MbZ2Cm.vLq" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.6.18
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$vC.dqHHm3v4lTqNeIMNFi.5kyFD2RxNkt/Xj0JNUyC9BtIJBQIDOm" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.6.17
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$qXqQTWncyCPlFHpb64/eRuIxw0lEFWlJFDswYAcR5G3eCtbkKxPMG" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.6.16
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$SEEV5ZG0mMtKISvHMKprx.rOCxvtepimIMqFKSjhWzwelRR3wfE4a" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.6.15
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$DhBRx20zv3M1I.k5WykrJunrUNygpLq/c9PUeR11DEhvVUxf4/Sva" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.6.14
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$VvJn4a1OZnk4hyuEwADBEO0.TvgOXzX5n1ZqljHcHxeFHRks3XYFq" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.6.13
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$EY2kCKVmfONkGF/a9nf3EefQsf0hE.0ISfeA/gAl2.E4ZKt8IwMiu" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.6.12
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$mVG0GXmRmcoNT82ygXuRJ.q5v2AijYeMLoS82FePfcK8CDFS1FCEO" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.6.11
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$5uPBJQdLcGRuWeIm6XOgz.9y1oh4Dj57eUn/bDLIg0qfWU8U3o8Bu" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.6.10
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$PhDNrAmnrSlDRlbH6Rspe.pMZD/OaUgpSBopvnyYavhgColhd.8tG" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.6.9
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$zeREF3xJ5ttdE94QRUF.5eYH3hSPc/oTLM.wz3X5chiyOOgomvbRi" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.6.8
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$WHI3vrN2KnDHL00yL/3G.OmgKau.3tmW1o2d8R/FfhoKOM5y3CEQy" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.6.7
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$sTYlDaWDspLabDnxv8SX1uL5g/dwwQ.DVtUUT3BSc.J37CnZev03G" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.6.6
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$Vzyqy0oOYDhCz5qHlRXsLOXUHbDFuO7YwiNWNOs7WeZR78a1Jo4Sy" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.6.5
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$o5RKVVC.cdYFtO895QXHGO.b61gEzs0Ntd9wiomPX4ruHwhzYvNF2" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.6.4
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$JjECOo1RokDzXV6Qu0LxYedDp2KyU1Vyjx.I6Gq.FEbpYaCsABY0O" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.6.3
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$g02q0evq1DeKv.fkT/x.6.0Ei31dNaO09lXb.FTy2kGApoHyQa2Ci" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.6.2
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$KmeBoBNAv6AdalVlKFpK8.VUNbi1vgbi1nBMgjaQfaQM.hAmvoWZC" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.6.1
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$5AFqJHa2.6LGPYTy1UMIXu2g1Qem/Hf7SHXdFdAM5/Mcvk3jMSf4q" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.6.0
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$mrFvrUekCLj.dQx3km6TauWX/717hJJOT95DHcfRhoaqu7Z6nT4R6" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.35
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$C5sAiKXKgMkMdLsoEbkafu/ws7eYpGkgxBxIXxOvlhC249kSfqqWe" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.34
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$zrR3rD6nsBa7LDpYqkOa7OzzNILf5O9WdoOleE0.X1tT16h4wf0xy" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.33
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$TjnCcd.TNPl/ZFnRJbFOFeNsJfobh48gMYZUmTmIwrHVaS46XGiLW" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.32
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$2Dt39.bX3pd6jL2VGi.oouAATRAaEXPxlgk1a8/IQnQqUETbmB/IS" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.31
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$w5VbvUBxVkDAlPjAyeMeXeyE2EXklhNzVuc86UClfLFZCS8appQKS" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.30
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$EV/dfNd3PsliiVjCiQoMhuscWG4xoBvw3OldJD0asBcDYSUz0.dla" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.29
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$FYMGliAOP.V/gfukcn6xt.b8XsYwqvCsIcBD1xG0VKpmJSjjnEStG" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.28
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$AJkF1hk/rbEtZe85djgLr.0xbGnnOkzUfxZZf61hHjo1mejz3FiiC" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.27
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$mZbMjRp9VxDkAZArbwRWAeQkm.JIUokhgVMwFoAUnKtYZ49BtMhiC" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.26
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$P6tuBVI8wKNcaoQQeiRmq.Gm7d3tcjdz3RIlqPMiS71f4r7KJUwiK" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.25
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$XQ79eW//LH47pFaN4Sh9a.HiD41i5oEz2eVwF8omkGnHrzboNbtwK" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.24
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$01LwvoRPjYUcAOafyVPo1uRfwkiJ0aerwD27ZhTf2dJG3CFyXJm/6" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.23
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$KY0flIzoGnwbsZP0mp091uuRYbS8kz2EUHaqLb0fVr.QkOpsyoQqW" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.22
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$U9KLsKg.seZNiI686R5aG.7WrXdZweVebefcy4X3xndWwgeyo3qAK" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.21
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$dNA5EG2ox12OVW1lPQ4q9es2Ab5dE1xa1fYpQ.y5nCFjDs3l33062" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.20
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$26H3pMtl4ab4Wj0BBKn9GOi471Ib6TcdNbMNhiAB223DzOdLB1gau" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.19
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$wSabUDvEgc3aWlGa5WiOW.MO0Lp.ZwXXXk3gZoBKKW9vpBBul5Rim" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.18
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$OfxKivNDflEXaVgTiu/qGunmap2uo9ibKnAPacwjxtRipJ8rbT3Wu" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.16
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$1a9F0svshkBfhegRECsiNOiVJUZ.3eW0l5RenBNc3WW5BfVNI0iRu" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.15
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$HM1UVLoj9ab8Tx2kWiKKku47VW5tuTilwvEeUQYvPShOhWOhgtipC" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.14
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$gm6erUbJfn/9jGLR1IgTUOI4Jg4ECju8DGuirldoyum.gPz.FGrua" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.13
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$OKyfO0sr1jOMzuOebIpsS.SVUmDsuzjUz/o58SrZsC79THZA8T6z6" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.12
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$yE2DTxybSH8.WxBA16QUQ.d9PC.NyPgxbMyeX68F1Z3mxSqRw/Yji" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.11
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$HDasOhK6trKrFjcLGBML5O782GZF48ggJ8yXX6a2jLuV7Q5H9G8wy" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.10
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$T.IsXmTyqolMaks6CaZPk.0VDblKjMiBp/FviWtblVAevXrJ7uGju" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.9
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$oesA.r3Pe4DEYU6GBbJV2.bne8K8Z30mQ9o821BSGN3vdCcHvuvP6" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.8
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$/eXyg4pp9JxIpK1MBA9ay.ojUEZrxYg/FGlnwmEdHz53EtxuUtfgq" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.7
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$l2RknBBLKK9m5lc6LvmTM.v3QH4ebKuhUwRD3mO06zTsg1RAB6PJW" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.6
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$dZUnnWm94hmdV6EB.Rpzp.4RJYd1F/97JZdnmX0adsADJuFO3MdPS" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.5
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$vXG5R/VuzjExLX3.uw5XWO1zsipmKkdGsTI7obZXQxwFmdD/6sDma" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.4
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$WGWmZ4HBJaYnLReHpvHJA.dtrdKXK9ya1caBjsKordmAoapf2xLC." } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.3
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$VQ5bpkD8UwoQVRODXqOgbe6tDkTjOWhtgEuEhIJBmd4fPiVvDBHwG" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.2
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$SXgb0or6quxCojdOe3rqOuIIELWq35P1GFAQfgP9xyM5DpQErYfTK" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.1
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$V77qiIoDrvDN0GN5MatDSepLzx0rBleeuGsK5I0zA2etcgazvQTTK" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.5.0
array(4) { ["hash"]=> array(2) { [0]=> string(60) "$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq" [1]=> string(60) "$2y$10$SCWiB4RWSQUEi7jxOhcDfelNHyjNFSG5q.BA2JLH5kMVSGJkpvBhq" } ["info"]=> array(2) { [0]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(7) } } [1]=> array(3) { ["algo"]=> int(1) ["algoName"]=> string(6) "bcrypt" ["options"]=> array(1) { ["cost"]=> int(10) } } } ["rehash"]=> array(3) { [0]=> bool(false) [1]=> bool(true) [2]=> bool(false) } ["pas_verify"]=> array(2) { [0]=> bool(true) [1]=> bool(true) } }
Output for 5.4.0 - 5.4.45
Fatal error: Call to undefined function password_hash() in /in/f2jkE on line 7
Process exited with code 255.
Output for 5.2.3 - 5.2.17, 5.3.0 - 5.3.29
Parse error: syntax error, unexpected '[' in /in/f2jkE on line 3
Process exited with code 255.
Output for 4.4.2 - 4.4.9, 5.1.0 - 5.1.6, 5.2.0 - 5.2.2
<br /> <b>Parse error</b>: syntax error, unexpected '[' in <b>/in/f2jkE</b> on line <b>3</b><br />
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1, 5.0.0 - 5.0.5
<br /> <b>Parse error</b>: parse error, unexpected '[' in <b>/in/f2jkE</b> on line <b>3</b><br />
Process exited with code 255.
Output for 4.3.2 - 4.3.4
<br /> <b>Parse error</b>: parse error in <b>/in/f2jkE</b> on line <b>3</b><br />
Process exited with code 255.

preferences:
156.54 ms | 401 KiB | 208 Q