我正在测试 PHP5.5 的新password_hash
技术,出于调试目的,我希望每次for
循环完成时都有 PHP 回显,而不是等待页面完成加载(或让 apache 剪切它)。我正在使用 wamp 服务器进行调试,并且已启用implicit_flush
和禁用output_buffering
。
我的代码是:
<?php
ob_start();
$wordtohash = "rasmuslerdorf";
//require ircmaxell's PHP5 backward compat lib (https://github.com/ircmaxell/password_compat)
require 'lib/pw.php';
echo "Beginning hashing: <br /><br /><hr /><br />";
ob_flush();
$options = [
'cost' => 15
];
for ($i=0; $i < 10; $i++) {
if (isset($hashed)) {
$wordtohash = $hashed;
}
//start counting
$mtime = microtime();
$mtime = explode(" ", $mtime);
$mtime = $mtime[1] + $mtime[0];
$start = $mtime;
//hash
$hashed = "Attempt {$i}: ".password_hash($wordtohash, PASSWORD_BCRYPT, $options);
//end counting
$mtime = microtime();
$mtime = explode(" ",$mtime);
$mtime = $mtime[1] + $mtime[0];
$end = $mtime;
$totaltime = ($end - $start);
echo $hashed." (total time: ".$totaltime." seconds)<br /><br />";
ob_flush();
}
?>
这样做是对测试词“rasmuslerdorf”进行散列处理,并收集散列值,然后将其发送回进行散列处理(循环指定的次数)。
我为每个人设置了一个计时器,但希望每个人在完成测试时都显示在页面上。
我已经尝试在需要的地方使用ob_start()
后跟ob_flush()
命令,但这没有用(implicit_flush
应该使它在echo
or上刷新print
,所以我很茫然)而且我也尝试过flush()
.
有没有人碰巧有任何额外的想法?非常感激。