How do I parse URL GET data having the URL stored in a variable?

前端 未结 4 399
情书的邮戳
情书的邮戳 2021-01-27 09:19

I have an url stored in a variable such as:

$url = \'example.com?a=20&i=10\'

How do I get values stored in variable a and vari

4条回答
  •  灰色年华
    2021-01-27 09:36

    If you want to access those variables, check out the extract() function, it will create variables $a and $i from the parse_str() function above.

    However, it will overwrite any existing variable called $a so its to be used with caution.

    
    

提交回复
热议问题