Heim >Backend-Entwicklung >PHP-Tutorial >php得到所有未知变量名和值_PHP教程

php得到所有未知变量名和值_PHP教程

WBOY
WBOYOriginal
2016-07-13 17:25:49777Durchsuche

################# You can copy this code to test #################



if ($HTTP_GET_VARS)
echo "HTTP_GET_VARS=" . implode(" | ",$HTTP_GET_VARS) . "
";
if ($HTTP_POST_VARS) {
echo "HTTP_POST_VARS=" . implode(" | ",$HTTP_POST_VARS) . "
";
$array = $HTTP_POST_VARS;
echo $array[0];
}
?>


################# http://php4u.yes8.com #################

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/532014.htmlTechArticle################# You can copy this code to test ################# if ($HTTP_GET_VARS) echo "HTTP_GET_VARS=" . implode(" | ",$HTTP_GET_VARS) . " "; if ($HTTP_POST_VARS) { echo "HTT...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn