web-utils/modules/random/random_help.php
2021-08-08 19:23:49 +02:00

23 lines
430 B
PHP

<?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
}
];