From 69684835b3cd3e06eaa06c7a196a5ace98dd50dc Mon Sep 17 00:00:00 2001 From: kobus Date: Fri, 20 Apr 2018 09:59:53 +0200 Subject: [PATCH] Spelling --- languages/php.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/languages/php.php b/languages/php.php index 2b49f1a..78a565f 100644 --- a/languages/php.php +++ b/languages/php.php @@ -55,14 +55,14 @@ switch($arr) { } /** - * Global variable + * Global variables * http://php.net/manual/en/language.variables.superglobals.php */ $_SERVER; // SERVER variables $_GET; // Query params $_POST; // Post fields $_REQUEST; // GET and POST together -$GLOBALS; // Collection of global variables +$GLOBALS; // Array of global variables $_SESSION; // Browser session $_FILES; // Array of files that are sent in request $_COOKIE; // Array of cookies sent in request