PHP头条
热点:

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


################# 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.phpzy.comtrue/phprm/38227.htmlTechArticlephp得到所有未知变量名和值 ################# 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...

相关文章

    暂无相关文章

PHP之友评论

今天推荐