📜  php 代码示例中的 $_get 和 $_post

📅  最后修改于: 2022-03-11 14:54:10.936000             🧑  作者: Mango

代码示例1
# $_ Variables are referred to as Superglobals

$GLOBALS  # Global Variables, think _G in lua
$_SERVER  # Miscellanous information, such as argv and argc!
$_GET     # Get URL Parameters
$_POST    # Variables passed via the POST method
$_FILES   # Files uploaded to the script
$_COOKIE  # HTTP Cookies
$_SESSION # Session Variables
$_REQUEST # Contains request info like $_GET, $_POST and $_COOKIE 
$_ENV     # Environment variables, just as youd expect