mirror of
https://github.com/LeCoupa/awesome-cheatsheets.git
synced 2025-11-09 06:21:35 +00:00
Spelling
This commit is contained in:
@@ -55,14 +55,14 @@ switch($arr) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Global variable
|
* Global variables
|
||||||
* http://php.net/manual/en/language.variables.superglobals.php
|
* http://php.net/manual/en/language.variables.superglobals.php
|
||||||
*/
|
*/
|
||||||
$_SERVER; // SERVER variables
|
$_SERVER; // SERVER variables
|
||||||
$_GET; // Query params
|
$_GET; // Query params
|
||||||
$_POST; // Post fields
|
$_POST; // Post fields
|
||||||
$_REQUEST; // GET and POST together
|
$_REQUEST; // GET and POST together
|
||||||
$GLOBALS; // Collection of global variables
|
$GLOBALS; // Array of global variables
|
||||||
$_SESSION; // Browser session
|
$_SESSION; // Browser session
|
||||||
$_FILES; // Array of files that are sent in request
|
$_FILES; // Array of files that are sent in request
|
||||||
$_COOKIE; // Array of cookies sent in request
|
$_COOKIE; // Array of cookies sent in request
|
||||||
|
|||||||
Reference in New Issue
Block a user