How to get the data after the URL is passed into the secret decryption

Source: Internet
Author: User
URL to participate in the secret


Get qq=xxx&ww=qqqqq&m=15010101817&rf=qwqw&ip=192.168.1.1 after decryption
How do I get each value next?
The length of some values is not necessarily
Press = after & before words multiple =& how to differentiate
How do we get each value here?


Reply to discussion (solution)

Parse_str

$str = ' qq=xxx&ww=qqqqq&m=15010101817&rf=qwqw&ip=192.168.1.1 '; $arr = Explode (' & ', $str); foreach ($arr as $k = $v) {$res [$k] = explode (' = ', $v); $ret [] = $res [$k][1];} Print_r ($ret);

$s = ' qq=xxx&ww=qqqqq&m=15010101817&rf=qwqw&ip=192.168.1.1 ';p arse_str ($s, $a);p rint_r ($a);
Array (    [QQ] + xxx    [ww] = QQQQQ    [m] = = 15010101817    [RF] = QWQW    [IP] = 192.168.1.1)

There is a special function thank you for your advice
It's not a good point to look at.

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.