web-utils/modules/random/random_help.php

24 lines
430 B
PHP
Raw Normal View History

2021-08-08 17:23:49 +00:00
<?php
return [
'actions' => [
[
'name' => 'Generate alphanumerics',
'path' => '/?contains=digit,lower,upper'
],
[
'name' => 'More complex',
'path' => '/?contains=digit,lower,upper,special'
],
[
'name' => 'Change length',
'path' => '/?length=20'
]
],
'append' => function () {
?>
Of course, you can combine many parameters into one query.
<?php
}
];