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.
URL から送信されるすべてのクエリ文字列を読み取りたいのですが、使用する変数の名前がわかりません$_REQUEST['variable1']。それで、私は何をしなければなりませんか?
$_REQUEST['variable1']
これを行うことができます var_dump($_REQUEST); それはあなたのためにすべてを画面にダンプします
$_SERVER['QUERY_STRING']必要なすべてのクエリ文字列が含まれています。
$_SERVER['QUERY_STRING']
foreach ($_REQUEST as $var_name => $value) { //your stuff }