那如果我的QUERY_STRING是不定的呢?好像要用到parse_str()
忘记怎么用的了
嗯
parse_str()就是把query string放到variable里面,以下示例是从php documentation里面拿的
---------------------
Description
void parse_str ( string str [, array arr])
Parses str as if it were the query string passed via an URL and sets variables in the current scope. If the second parameter arr is present, variables are stored in this variable as array elements instead.
Example 1. Using parse_str()
<?php
$str = "first=value&arr[]=foo+bar&arr[]=baz";
parse_str($str);
echo $first; // value
echo $arr[0]; // foo bar
echo $arr[1]; // baz
parse_str($str, $output);
echo $output['first']; // value
echo $output['arr'][0]; // foo bar
echo $output['arr'][1]; // baz
?>
--------------------------
从上面看应该还是需要知道那些variable的名字的,其实跟用$_GET是一回事了。
不太清楚你为什么让query string不定,如果不方便用名字来address $_GET, 可以改用数字index啊。
---------------------
Description
void parse_str ( string str [, array arr])
Parses str as if it were the query string passed via an URL and sets variables in the current scope. If the second parameter arr is present, variables are stored in this variable as array elements instead.
Example 1. Using parse_str()
<?php
$str = "first=value&arr[]=foo+bar&arr[]=baz";
parse_str($str);
echo $first; // value
echo $arr[0]; // foo bar
echo $arr[1]; // baz
parse_str($str, $output);
echo $output['first']; // value
echo $output['arr'][0]; // foo bar
echo $output['arr'][1]; // baz
?>
--------------------------
从上面看应该还是需要知道那些variable的名字的,其实跟用$_GET是一回事了。
不太清楚你为什么让query string不定,如果不方便用名字来address $_GET, 可以改用数字index啊。