0

我正在测试 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应该使它在echoor上刷新print,所以我很茫然)而且我也尝试过flush().

有没有人碰巧有任何额外的想法?非常感激。

4

1 回答 1

1

我会尝试使用 PHP 的 error_log() 函数:

$string = $hashed . " (total time: " . $totaltime . " seconds)" ;
error_log(print_r($string, true);

这会将您的调试消息实时打印到 PHP 错误日志中,而无需依赖应用程序的视图层或中断代码的执行。在 UNIX / Linux 系统或 OS X 上,您可以跟踪日志。如果您安装了 Cygwin 或其他 BASH 仿真器,您也可以在 Windows 中执行此操作:

tail -f /path/to/your/error.log 

您可以使用 phpinfo() 来确定 PHP 错误日志的位置。如果您没有在 php.ini 中为日志指定自定义设置,PHP 可能会默认将错误输出到 Apache 日志。

于 2013-10-20T22:32:09.370 回答