3v4l.org

run code in 300+ PHP versions simultaneously
<?php $crypt = crypt('rasmuslerdorf', '$2y$07$usesomesillystringforsalt$'); $password_hash = password_hash('rasmuslerdorf', PASSWORD_BLOWFISH); var_dump( $crypt, $password_hash, password_verify('rasmuslerdorf', $crypt), // ik gebruik password_hash() en crypt() door elkaar! $verify = crypt('rasmuslerdorf', $password_hash), $verify == $password_hash // nu doe ik het nog een keer! );
Output for 7.4.1
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash(): Unknown password hashing algorithm: PASSWORD_BLOWFISH in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$sKRrTxVo$BQY8thmpru4lrmh.lm7Sp0" bool(false)
Output for 7.4.0
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash(): Unknown password hashing algorithm: PASSWORD_BLOWFISH in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$XBBeM8iI$fVXrbWkumByQkdjqZm95n1" bool(false)
Output for 7.3.13
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be int, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$EMFtFpoD$sVtDWyzwdqxQpWf8HhQGl/" bool(false)
Output for 7.3.12
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be int, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$gG4TeM2Q$kh8ZRp5azhTUQdoV2bn9R1" bool(false)
Output for 7.3.11
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be int, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$VT7MCpP6$M1jXdg2dyX4Cn4tsn9N3g0" bool(false)
Output for 7.3.10
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be int, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$FVZIa.fF$1Tj.Z2r.F1uuQzXhJ89dG1" bool(false)
Output for 7.3.9
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be int, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$RJX6x4Oh$8peXt.gKeO5BqD.z0JT420" bool(false)
Output for 7.3.8
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be int, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$AjBXV2NT$ciSS7p/L4JYwlCuFX2dmN0" bool(false)
Output for 7.3.7
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be int, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$pqIVKXYg$bAdvsFHDmavXEiulSuKJC/" bool(false)
Output for 7.3.6
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be int, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$RS3.OEuE$FxlA5bPoh4qQs7pRQQd6i." bool(false)
Output for 7.3.5
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be int, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$aESQ8Pb8$BFZfqx6nBtppN9uD2DnG31" bool(false)
Output for 7.3.4
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be int, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$HXfS6M1P$WNSWFeZjs0TY44HgMu/9m/" bool(false)
Output for 7.3.3
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be int, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$/ycssVYx$ScGdH80h/MUVZezPub0Bg/" bool(false)
Output for 7.3.2
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be int, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$ENDUyyNB$g0PfKFQmIN7hqW1F/F5g/0" bool(false)
Output for 7.3.1
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be int, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$6.aBYANd$fDYZ5.mFeSfYRR1Hm6AKq0" bool(false)
Output for 7.3.0
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be int, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$ME1YEzEr$dUMLpHE9cEKN.urq.6soC." bool(false)
Output for 7.2.26
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$7PVk8IMq$RBcyuM343w3w8VHc1nKbx." bool(false)
Output for 7.2.25
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$X6je9I7d$tZPuc64V0xbVy4PQcY3z9/" bool(false)
Output for 7.2.24
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$FJEV6V3n$qXARZVI0OwAhIQaziBwl3." bool(false)
Output for 7.2.23
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$8lwU.I1g$UbukZMPA1WyH1V0CFJo2e." bool(false)
Output for 7.2.22
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$jiHSvRSn$VPPjHOY2qJg5OWlR.u35H1" bool(false)
Output for 7.2.21
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$kF7dvQoY$qahtfg2YpBzezifWqdjGB/" bool(false)
Output for 7.2.20
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$86cPNJOh$5m.AobkZvOSxlZk.tQBGI." bool(false)
Output for 7.2.19
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$quUk5Tz8$XqknDrkV9E2YmhsTN9hj71" bool(false)
Output for 7.2.18
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$elgxF/bw$YUtaSvbiB6qtVpt4TyA9N0" bool(false)
Output for 7.2.17
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$7/MqZoQ5$DKNDWDpMyJDwgdqQqp1W8/" bool(false)
Output for 7.2.16
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$OOmz48qs$RGOXVRWHAQZo2Y09Au6TV1" bool(false)
Output for 7.2.15
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$5y0PAh1K$4bOSJMh0u75SleaaW5Yy7." bool(false)
Output for 7.2.14
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$YeaZ7KI0$nqJK.tSrG6/.3uyQmq0LW1" bool(false)
Output for 7.2.13
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$YphWA9/l$1o07DZ/tsZJr/vKDJen8g." bool(false)
Output for 7.2.12
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$8UMcfqpg$9BN2f7J8zyuq3fznlp2KM1" bool(false)
Output for 7.2.11
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$MjNUMb8a$EJQxdObez1T.JUewIo0Ys." bool(false)
Output for 7.2.10
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$SpYrQIcr$0vfwjx5JUujh.m03rubwH1" bool(false)
Output for 7.2.9
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$YFA0ulCE$a3JeWPOfj3rQsA5KYYOQ0/" bool(false)
Output for 7.2.8
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$seLomhsq$lUbQ2l/hZrO03Q4H6B.Ky1" bool(false)
Output for 7.2.7
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$519iAL5S$MKMz2qzJT0omi8RO8Wxx71" bool(false)
Output for 7.2.6
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$G7e3suve$zvjJxsyD2E0dkI3P.OSGY." bool(false)
Output for 7.2.5
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$wYinK.Db$oIxW/.K1XvkREY9yBseer." bool(false)
Output for 7.2.4
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$kfsg0OL5$e.roQ2oBrlZJRsZpwp2Iy." bool(false)
Output for 7.2.3
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$DDVlxV6T$WX6f6RSA3Y2NcY96N9ZlL/" bool(false)
Output for 7.2.2
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$yO7IIlcl$xQK32Daae/hW7DYodCTRT1" bool(false)
Output for 7.2.1
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$9pnr6ePx$JFnnusno9WJBPwdZT0.ZG/" bool(false)
Output for 7.2.0
Warning: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' (this will throw an Error in a future version of PHP) in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$vJNRwzjk$f6ujoD2b6nnVMmQJg2MRe1" bool(false)
Output for 7.1.33
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$Oi.p7kKw$B3afqd817Bbdbn7IV/J0h/" bool(false)
Output for 7.1.32
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$cFg39nFF$bscoho6DZLziS8y85dFI61" bool(false)
Output for 7.1.31
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$wrXzUJnp$3hRUFbIpnprL5mk3L1Q.A1" bool(false)
Output for 7.1.30
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$FPnFpMSH$jNeaEHLWXuT99We5Ovz97." bool(false)
Output for 7.1.29
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$vyAEY7R2$yUKq6Bx9sTt1pO74fCwL7/" bool(false)
Output for 7.1.28
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$buHOr06i$ksaUa0DhdJD97E6wIf7i1/" bool(false)
Output for 7.1.27
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$XxRkdP5T$okKSqMHp/fAFzmJgZcn.f/" bool(false)
Output for 7.1.26
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$644Bs62M$XUPRoZEPagXh/vdTfZTK70" bool(false)
Output for 7.1.25
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$mmnvFH2P$1mdYqK.OljPmiu32FBB/e/" bool(false)
Output for 7.1.24
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$koSrh0.r$.t5i7YnGAgaTxvP3pyijI/" bool(false)
Output for 7.1.23
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$.yu4O4Jv$.9UUcWHLo.gL3MAufQpNc1" bool(false)
Output for 7.1.22
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$lGWZLQKz$2pgj949mlxhZ7KAHWayaE1" bool(false)
Output for 7.1.21
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$r/L12DMt$mAmBuls61PgftIZ0i0mgL1" bool(false)
Output for 7.1.20
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$yntMQOxb$Z01AYVY9FpcHnRLF4S47j1" bool(false)
Output for 7.1.19
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$el6Rh836$SFtjYdc0jaGTfLFtsY7GK1" bool(false)
Output for 7.1.18
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$4OKayb7t$4njWX57D13fcV84xQNghB/" bool(false)
Output for 7.1.17
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$DqKyuaz9$XXHntJhCvANpe.ATR6BrF/" bool(false)
Output for 7.1.16
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$Qo8bptUt$RHX6FdtFPxMvs0ra5lX.K1" bool(false)
Output for 7.1.15
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$eYGw8Q5T$iEA0Ch4Z43dHJb7m8V4UQ1" bool(false)
Output for 7.1.14
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$qkXfI8qe$qxYEw5WOiINvrKIyvBHBi." bool(false)
Output for 7.1.13
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$t9jnCyKL$GFtKXISXkuVSgHEkqhulR/" bool(false)
Output for 7.1.12
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$WhAkt1LD$zL4E.uTBmu2IYCtLi1C1K0" bool(false)
Output for 7.1.11
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$2/erxEL.$O6DwRUQcZOCVp.lRNsgjs/" bool(false)
Output for 7.1.10
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$FpnsayLQ$gGoO.KxFsfMnj01r4ZOJL." bool(false)
Output for 7.1.9
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$6YGahiZP$QdVBoQVLnsHLN3d5nYV9Z0" bool(false)
Output for 7.1.8
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$PjQwpVZN$ZgISEbLoHfehuDNVW.YBU/" bool(false)
Output for 7.1.7
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$8DJMDJcF$AU2c5Lw5b90xclw7jng710" bool(false)
Output for 7.1.6
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$6B/ZSXLL$FF2dMSzwLcBsZ53xinplY1" bool(false)
Output for 7.1.5
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$VI67b/Vl$35QvsDsfuo9JXOMKNVbSm1" bool(false)
Output for 7.1.4
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$FEOtXV7C$03ae2S3HAoMDES5d9eit//" bool(false)
Output for 7.1.3
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$1F.9PDTE$hYQEF/XduLKlP2qgc4OgA0" bool(false)
Output for 7.1.2
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$dth/9Uqn$f2kFm8dWYcTJkY5r1q3cz/" bool(false)
Output for 7.1.1
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$F8uV8nNI$t1xrnKL7Q0OwTQIPKIbub/" bool(false)
Output for 7.1.0
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$bQXa55au$Kim3aKqEv7O0DHMZkXD8S1" bool(false)
Output for 7.0.33
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$r/6nP3V0$sur4Pzc7djZwh.tZ2uuU5." bool(false)
Output for 7.0.32
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$s6xq8C1C$EhaX0q3YAvnMLKRcFa8Ce0" bool(false)
Output for 7.0.31
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$VTwXNQ9A$J/D.EQR9oSOwyJ3/7nmKb." bool(false)
Output for 7.0.30
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$OQjMYtDl$ZI3.gvDI1JB70QR4OcSR3." bool(false)
Output for 7.0.29
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$ToWLC6Qe$H9cPkaPMDlGbMBDxIDJ2y." bool(false)
Output for 7.0.28
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$UTDJbivs$OUnA8coxApNoNbiDwVx4K0" bool(false)
Output for 7.0.27
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$/LhqHX1D$0EnRFT0/I1YQD3HppcjZ00" bool(false)
Output for 7.0.26
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$nbHh/sVb$uhlO5Oh02eT8KKAt/FvJ0." bool(false)
Output for 7.0.25
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$wiIJw44Y$6MpDZ5VY9wrj/OmB9/UAj0" bool(false)
Output for 7.0.24
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$gr5nSHKr$/MrfOt8N0oczIwdE2luhG1" bool(false)
Output for 7.0.23
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$4jB/RWi.$4ze4VepuRcTwkevwdOOrz1" bool(false)
Output for 7.0.22
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$lxgiC5uW$KsspgqPfowN3ko9Lv8pDS." bool(false)
Output for 7.0.21
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$nXvI80vP$53lnuSaPaH.3SII3WKbDw0" bool(false)
Output for 7.0.20
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$NGpWByG4$WAaECQBbfzuWZyM5SlZy11" bool(false)
Output for 7.0.19
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$QzTJ4g8s$iElbnN8V8KCfVL2zauFr30" bool(false)
Output for 7.0.18
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$dE7t11Lb$SRBfxWY08KXJhLoGfwrpJ1" bool(false)
Output for 7.0.17
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$7z9KvDXF$VrmQs.MC29.TwV3y3.tvg/" bool(false)
Output for 7.0.16
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$HK.dfWli$F9TAJse5tPOVyo9RFjNaS1" bool(false)
Output for 7.0.15
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$PgMRFhGX$OoxgLD/DDzQoLXbsluHk0." bool(false)
Output for 7.0.14
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$7ESfStZH$8NC6q1BCGvC77Ta9URePE1" bool(false)
Output for 7.0.13
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$ma/xOJ/u$SDchIYZ00wAtxaud0Y2dD/" bool(false)
Output for 7.0.12
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$B7/jFCuH$4b09ar0ULP1m39WfVaBIO/" bool(false)
Output for 7.0.11
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$XshiWvGx$SbrX9HCzL8Ep1lgBCXxLK0" bool(false)
Output for 7.0.10
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$c5Gabuc5$/dQj6gMD1HVmPLUt1Px5M." bool(false)
Output for 7.0.9
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$XZypFK2o$y6FDTc3N6wxwDkolBkdgG/" bool(false)
Output for 7.0.8
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$WrC8TPFr$dGXbP/8/1/FNTXTi.3wER0" bool(false)
Output for 7.0.7
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$uaIZcap7$h69MKpOT9ySHU0lh1cMI51" bool(false)
Output for 7.0.6
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$MOOuroqe$g78nnuJSpnEsxd94Aoxmc/" bool(false)
Output for 7.0.5
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$zTF.M9GE$7xrXfLtqR4yUhrgvpWrJR1" bool(false)
Output for 7.0.4
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$kHARqt6.$DzDZSwvyUI5AhoEIts7zU1" bool(false)
Output for 7.0.3
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$/CQh4UW7$a3HHUN9miIjy4d7yZxVuv/" bool(false)
Output for 7.0.2
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$Nsso5WH1$TMaaziKD.I/ggg9zASs1A1" bool(false)
Output for 7.0.1
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$WzMI7jiC$ULwAgcZHpmmibZVQ199lo0" bool(false)
Output for 7.0.0
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be integer, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$MfO4pmeK$qHvVpFlvZy246t2YK8g6l/" bool(false)
Output for 5.6.40
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$V33xU7PJ$Btvk9OBjI/eRiJyofUP27." bool(false)
Output for 5.6.39
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$wj.ooUjR$eCmfV2MW/AUoWNVyH4byU." bool(false)
Output for 5.6.38
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$PYhtnnAB$8AN9LUz4DFDz5SjmMPJMy/" bool(false)
Output for 5.6.37
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$S8vR/F4L$og6NiQPgBY9PvhaiqZwX5." bool(false)
Output for 5.6.36
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$a3eHkYYt$drY4vM0jCYLqniO2fxNMv/" bool(false)
Output for 5.6.35
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$ffx6YRMy$MXlPKQEossA3H2nlD7OHn0" bool(false)
Output for 5.6.34
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$FNzs9LIC$pTJULgFKT5/y4k9svmloE0" bool(false)
Output for 5.6.11, 5.6.33
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$6LIuPgC8$q5u1V3zaF0pYpP.1dKIf/." bool(false)
Output for 5.6.32
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$Jh6Ryqqj$io1U5x4fOyUykpyjaQDEn0" bool(false)
Output for 5.6.31
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$Vlh6btkZ$eyOUUOsKEppmxh3Cj2yq5/" bool(false)
Output for 5.6.30
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$Fm8KlgMA$V1ot9qYNnW6JZxowm61CD0" bool(false)
Output for 5.6.29
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$e/18xAbx$x2iJiGOkn58oXXDKKEFMb." bool(false)
Output for 5.6.28
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$R8PG70re$OlY2LosrqRN6rarWOJrI.." bool(false)
Output for 5.6.27
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$ToIkN/VC$mz/VbgEn.nUZdWWZcPrvi1" bool(false)
Output for 5.6.26
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$8gv.suZo$pxZj.EpK7Hh1Xr/8CkWhO1" bool(false)
Output for 5.6.25
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$9FQHS0v6$QXIeyI2RCPxZtdxd73qXz/" bool(false)
Output for 5.5.16, 5.6.24
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$Je6.kJ..$Go.0snL1s4PkXf493kG/w1" bool(false)
Output for 5.6.23
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$riDBU9jn$WB6tAacfPOpqPFSFRc/jw/" bool(false)
Output for 5.6.22
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$AGon3LyS$wb.IWwXs3dKPiE.IiBE6W/" bool(false)
Output for 5.6.21
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$4jB/RWi.$4ze4VepuRcTwkevwdOOrz1" bool(false)
Output for 5.6.20
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$g8IY8BRe$NkIjJLZO2BVFZ8dB8NSQB0" bool(false)
Output for 5.6.19
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$5pt2Aipj$MmQFciCsrKqdP2.R.QA7X0" bool(false)
Output for 5.6.18
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$i9O6Cpis$3FEelmbfNebXWkycrE6js1" bool(false)
Output for 5.6.17
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$avAzh5Ms$kjEe17dFxEnC4u.aToJgI1" bool(false)
Output for 5.6.16
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$fXcdU/dw$v3xh3EGAtzB0qwiWSkBDi1" bool(false)
Output for 5.6.15
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$ztg1GBj0$WFlLi54/pDkCXlZlrcUOu1" bool(false)
Output for 5.6.14
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$a3FeoDaI$KM4CHhjcWu0j.1bjASwGP." bool(false)
Output for 5.6.13
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$NfNAWt9l$gBHvtJ/1misF8HET0WHGJ1" bool(false)
Output for 5.6.12
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$c6SqLtnD$GbVetKd9kro2Gtwi7qkb6." bool(false)
Output for 5.6.10
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$1jt9Zh6N$DKGLXfTLjY5zn6wE8pqLe1" bool(false)
Output for 5.6.9
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$sn/GB1nc$IdE.cBZ8Z5WOYnsMd/QQF0" bool(false)
Output for 5.6.8
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$1wTTK4yC$vSnSNnt/ZHHb9559aAcEA." bool(false)
Output for 5.6.7
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$MSd2T3UW$t/V/HRNDb5lBE4FPmHCmV1" bool(false)
Output for 5.6.6
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$Ig0sqRRi$BeXAcOucogNVmiBnNnx/J1" bool(false)
Output for 5.6.5
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$.f5Dns/y$gwngmuAMD5vy2hf1XiMsM0" bool(false)
Output for 5.6.4
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$9ho9g2of$P7DyE/2/oLNnsfb6HU0h8." bool(false)
Output for 5.6.3
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$rmiQR5L2$Po5CVpYOOe9caphK9G8F40" bool(false)
Output for 5.6.2
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$mZK1Ewaz$86DQVdxwvQjepU2spDN280" bool(false)
Output for 5.6.1
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$brw7xuzI$nHXzZd0Xsz6Y2GxYTOkg/." bool(false)
Output for 5.6.0
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$dKVmPrUp$1UeNceXbRLasQY0jFZBrL/" bool(false)
Output for 5.5.38
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$ZUVywGW4$df7j/wMkMGj747VQoxGW3." bool(false)
Output for 5.5.37
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$Wn0CrTAa$NmErEi0m3WTc3lErLDr7c." bool(false)
Output for 5.5.36
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$MyWNm9zc$qU.S0iiU99pYMbemDktF80" bool(false)
Output for 5.5.35
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$h.MvG2LG$uRallGykG4.hzipvWuKk41" bool(false)
Output for 5.5.34
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$Uuozs4MC$QVu1JHQ1GwycGGPJLsI5X0" bool(false)
Output for 5.5.33
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$NKaJDEJh$bt/SoTwEIhbgbcZtGmmrY." bool(false)
Output for 5.5.32
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$cgB3zBxy$2w3bM9zj71xTYipcqh76n0" bool(false)
Output for 5.5.31
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$rP6s2vOL$oaV8vZ5GUREqzj.PntRy2/" bool(false)
Output for 5.5.30
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$7flPQmxF$DMAVCHrtsGk5nhDqwvbGL0" bool(false)
Output for 5.5.29
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$Zo9FVa1U$84hNa46n3.IFJZQcoQHa./" bool(false)
Output for 5.5.28
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$wRy0mrJR$cxBurPYT8LLdW4qE.MBcx/" bool(false)
Output for 5.5.27
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$b.ouhHiN$WVKrVb86zB1oyF1mmesPT." bool(false)
Output for 5.5.26
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$TBrTcK5u$uLLEoRdjIS8RQUokzT9A81" bool(false)
Output for 5.5.25
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$RWn13mgF$8NMWp0ReC72JIwACE.Kvp0" bool(false)
Output for 5.5.24
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$t0vX/Jfe$9Pl27bJHJjyeT/HKZ6uQs0" bool(false)
Output for 5.5.23
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$GeZbw..B$AzhA5xouXMEwA9P0N7HSO/" bool(false)
Output for 5.5.22
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$ppLRmCOP$CiPmggV6ADQIisPJDJqbI." bool(false)
Output for 5.5.21
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$rPfUS4Ia$T4gUO0jI40YzySruit6L2." bool(false)
Output for 5.5.20
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$if8EK7eS$jmGUp9/lPbsxsl2jzid4d1" bool(false)
Output for 5.5.19
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$FIQ1T7Ge$9CvWJExl/XZTNcVgKgQV9/" bool(false)
Output for 5.5.18
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$6lJ7zYL9$hkPd8RTBsD16U8qXaiqo6/" bool(false)
Output for 5.5.17
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$OiAZrzAq$0xw4WtJFfdevB27BjrbWO/" bool(false)
Output for 5.5.15
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$bq2NrRGx$eHmYL4J4yrQsAgd75TPGf1" bool(false)
Output for 5.5.14
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$nbHh/sVb$uhlO5Oh02eT8KKAt/FvJ0." bool(false)
Output for 5.5.13
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$QnUscptg$mpc87PdOaIH9W7paDBkfD0" bool(false)
Output for 5.5.12
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$0H7x6Snf$1msLMD/TScVUgLv.7qYU4." bool(false)
Output for 5.5.11
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$TRVD9yrR$mi7y7yORuxFXVG6HsWPBs." bool(false)
Output for 5.5.10
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$mKyoFvOJ$XbzORjC249ddkNkDYSpRs0" bool(false)
Output for 5.5.9
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$PZpwijPy$0Xu.Ow/EBdKIbiHxJjdzT." bool(false)
Output for 5.5.8
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$Nacj02ep$q6R39fVenErCcfg7zluF81" bool(false)
Output for 5.5.7
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$wrMUnsox$th83sbzpNYZrLCaiPg7xV0" bool(false)
Output for 5.5.6
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$dsCyEpKG$EPcmhxlQdpYcNaIJZVqMl/" bool(false)
Output for 5.5.5
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$9LtJk5TZ$IageduJzhfO7qRzLE4OqB/" bool(false)
Output for 5.5.4
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$ieGfT1xw$ZVrghEkyIYM3k3IyQRfPA0" bool(false)
Output for 5.5.3
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$vxasDS1T$xZ9JmHOM/3lKQMDovd.NL1" bool(false)
Output for 5.5.2
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$TvUag7FX$n.VyQAR4gL3Dkuqn06pVK/" bool(false)
Output for 5.5.1
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$Ra/hqoiy$pAePVZ.afsdxLk7T/E7Qg." bool(false)
Output for 5.5.0
Notice: Use of undefined constant PASSWORD_BLOWFISH - assumed 'PASSWORD_BLOWFISH' in /in/Fh3TC on line 4 Warning: password_hash() expects parameter 2 to be long, string given in /in/Fh3TC on line 4 string(60) "$2y$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi" NULL bool(true) string(34) "$1$QkZwF7cg$8e83GWsLKaKdoxGRNOiNd1" bool(false)
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.45
Fatal error: Call to undefined function password_hash() in /in/Fh3TC on line 4
Process exited with code 255.
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17

Process exited with code 139.

preferences:
241.1 ms | 402 KiB | 325 Q