Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
从技术上讲,我需要使用正则表达式来实现 parse_str() 。虽然我只会从查询中提取一个参数值。我有一个字符串 a=val1&b=val2&c=val3
a=val1&b=val2&c=val3
是否可以仅b使用 preg_match 获得 say 的值,还假设 b 可以是最后一个查询(意味着字符串也可以是a=val1&b=val2)?
b
a=val1&b=val2
看起来很简单:
/(?:^|&)b=([^&]*)/
您想要的值将在第一个捕获组中。