$_GET
名前を指定せずに最初のキーを取得することは可能ですか?
私はそのようなことをしたいのですが、このphpファイルを次のように呼び出します:index.php?foo=something
またはindex.php?bar=something
// $_GET[dynamic] stays for something to get the key.. that can be foo or bar in this example
switch($_GET[dynamic]){
case 'foo':
switch(@$_GET['foo']){
//cases depending on $_GET['foo'] value
}
break;
case 'bar':
switch(@$_GET['bar']){
//cases depending on $_GET['bar'] value
}
break;
}