Tagged Questions
0
votes
3answers
329 views
Invert function: base 38 conversion
Can you tell me how the invert function for the following PHP function is?
<?php
function id2secure($old_number) {
$alphabet_en = '1357902468acegikmoqsuwybdfhjlnprtvxz-_';
$new_number = '';
...