php – 将URL解码为数组而不是字符串

前端之家收集整理的这篇文章主要介绍了php – 将URL解码为数组而不是字符串前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我目前正在使用PayPals API,并希望将其响应之一从名称 – 值对转换为数组.

到目前为止,我已经使用urldecode()来解码对以下内容的响应:

RECEIVERBUSINESS=foo@bar.com&RECEIVEREMAIL=another@email.com&MOREINFO=lots more info`

我想要的是拥有以下内容

RECEIVERBUSINESS => 'foo@bar.com'
RECEIVEREMAIL => 'another@email.com'
MOREINFO => 'lots more info'

我只是不太确定如何到达那里!

parse_str正是您要找的:
parse_str('RECEIVERBUSINESS=foo@bar.com&RECEIVEREMAIL=another@email.com&MOREINFO=lots more info',$arr);
/*
print_r($arr);
Array
(
    [RECEIVERBUSINESS] => foo@bar.com
    [RECEIVEREMAIL] => another@email.com
    [MOREINFO] => lots more info
)
*/
原文链接:https://www.f2er.com/php/135828.html

猜你在找的PHP相关文章