/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/random/tests/01_functions/random_bytes_error.phpt
22 строки
393 B
Go Kudo
Implement Random Extension
19 июл 2022, 12:27
Не верифицирован
19 июл 2022, 12:27
4d8dd8d
Код
Авторство
О чём код?
--TEST-- Test error operation of random_bytes() --FILE-- <?php //-=-=-=- try { $bytes = random_bytes(); } catch (TypeError $e) { echo $e->getMessage().PHP_EOL; } try { $bytes = random_bytes(0); } catch (Error $e) { echo $e->getMessage().PHP_EOL; } ?> --EXPECT-- random_bytes() expects exactly 1 argument, 0 given random_bytes(): Argument #1 ($length) must be greater than 0