我想为api使用最好的伪随机生成器,我尝试获取一个,但是最后我找到了Zend Rand类。
composer require zendframework/zend-math
它下载了一个“供应商”文件夹和几个子文件夹。与我要使用的位置相比,它在父文件夹中。
(我尝试使用rand类,但Rand.php类是一个抽象类,过一会儿我才发现。)
我也不知道如何使用“使用”。在示例(https://docs.zendframework.com/zend-math/rand/)中,我看到了以下几行:
use Zend\Math\Rand;
$bytes = Rand::getBytes(32);
它不起作用。
我试过了
use Zend\Math\Rand;
$string = Rand::getString(32, 'abcdefghijklmnopqrstuvwxyz');
在常规的php文件中。
文件夹是(带有示例名称)
public_html
main_site
api (where I want to use it)
vendor (installed with composer)
zendframework
zend-math
src (where Rand.php is)
我希望得到一个随机字符串。我希望有人能告诉你怎么做。