web-utils/modules/baseconverter/baseconverter_help.php

21 lines
437 B
PHP
Raw Normal View History

2021-10-03 08:39:21 +00:00
<?php
return [
'title' => 'Base Converter',
'description' => 'Convert from base to base easily',
'actions' => [
[
'name' => 'Convert from base64 to string',
'path' => '/?from=base64&data=dGhhdCdzIGNvb2wgaHVoPwo='
],
[
'name' => 'Convert decimal to hex',
'path' => '/?from=hex&data=2a'
],
[
'name' => 'Convert string to decimal',
'path' => '/?to=dec&data=hello'
]
]
];