fork download
  1. <?php
  2.  
  3. $str = ('RESULT=0&RESPMSG=Approved&SECURETOKEN[25]=Fj+1AFUWft0+I0CUFOKh5WA== &SECURETOKENID=9a9ea8208de1413abc3d60c86cb1f4c5');
  4. parse_str($str, $keys);
  5.  
  6. print_r($keys);
Success #stdin #stdout 0s 82560KB
stdin
Standard input is empty
stdout
Array
(
    [RESULT] => 0
    [RESPMSG] => Approved
    [SECURETOKEN] => Array
        (
            [25] => Fj 1AFUWft0 I0CUFOKh5WA== 
        )

    [SECURETOKENID] => 9a9ea8208de1413abc3d60c86cb1f4c5
)