I have an array:
$r = array(1,2,42,55);
and I want to call encrypt(); function of hashids
which takes input like this:
encrpyt(1,2,42,55);
I tried extract($r) but it does not work.
I have an array:
$r = array(1,2,42,55);
and I want to call encrypt(); function of hashids
which takes input like this:
encrpyt(1,2,42,55);
I tried extract($r) but it does not work.