0

以下代码不会在 Windows 上的 WAMP 中生成输出。

在 MAMP 上运行良好。

猜测它是缺少模块或其他东西。

$reportHash = str_replace(
        array('+','/','='),
        array('-','_',''),
        base64_encode(file_get_contents('/dev/urandom', null, null, -1, 16)));
4

1 回答 1

1

Windows上没有/dev/urandom

用于uniqid()便携式随机字符串发生器或mt_rand()便携式随机数发生器。

于 2012-04-23T17:00:11.840 回答