I have these urlencode from Postmant:
rq_uuid=e53473de-0483-44f5-91f0-2be74e58c277&rq_datetime
=2022-03-09 16:33:16&sender_id=TESS&receiver_id=SGRQWES
How can I convert this URLENCODE in an array in PHP so i will have an array like this :
array(
'rq_uuid' => 'e53473de-0483-44f5-91f0-2be74e58c277',
'rq_datetime' => '2022-03-09 16:33:16',
'sender_id' => 'TESS',
'receiver_id' => 'SGRQWES',
etc..
)
http_query_encodeandhttp_query_decode, orhttp_parse_queryfor the "decoder" part, but instead we havehttp_build_queryandparse_strfor its counterpart (that for some reason must be used by reference), that's a question for the geniouses.