我有一个 PHP 应用程序,有时必须处理 URL 中多个参数具有相同名称的 URL。有没有一种简单的方法可以检索给定键的所有值?PHP $_GET 只返回最后一个值。
具体来说,我的应用程序是一个 OpenURL 解析器,并且可能会获取如下 URL 参数:
ctx_ver=Z39.88-2004
&rft_id=info:oclcnum/1903126
&rft_id=http://www.biodiversitylibrary.org/bibliography/4323
&rft_val_fmt=info:ofi/fmt:kev:mtx:book
&rft.genre=book
&rft.btitle=At last: a Christmas in the West Indies.
&rft.place=London,
&rft.pub=Macmillan and co.,
&rft.aufirst=Charles
&rft.aulast=Kingsley
&rft.au=Kingsley, Charles,
&rft.pages=1-352
&rft.tpages=352
&rft.date=1871
(是的,我知道这很丑,欢迎来到我的世界)。请注意,键“rft_id”出现了两次:
rft_id=info:oclcnum/1903126
rft_id=http://www.biodiversitylibrary.org/bibliography/4323
$_GET
将返回 just http://www.biodiversitylibrary.org/bibliography/4323
,较早的值 ( info:oclcnum/1903126
) 已被覆盖。
我想访问这两个值。这在PHP中可能吗?如果没有,关于如何处理这个问题的任何想法?