我有以下字符串:
address=test&address2=test2&email=a@a.com
如何提取密钥(地址,地址2 ,电子邮件)和值(“测试”) ,“ test2 ”,“ a@a.com ”)
谢谢!
答案 0 :(得分:5)
使用parse_str()
http://pl.php.net/manual/en/function.parse-str.php
答案 1 :(得分:0)
因为这只是一个字符串,我会使用explode()将分隔符作为'&'然后'=',不是一个好主意,但工作