欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2024-02-11 15:53:04
...
################# 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...