1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
package php;
class SuperGlobal {
/**
@see http://php.net/manual/en/reserved.variables.globals.php
**/
public static var GLOBALS (get,never):NativeAssocArray<Dynamic>;
static inline function get_GLOBALS() return untyped __php__("$GLOBALS");
/**
@see http://php.net/manual/en/reserved.variables.server.php
**/
public static var _SERVER (get,never):NativeAssocArray<Dynamic>;
static inline function get__SERVER() return untyped __php__("$_SERVER");
/**
@see http://php.net/manual/en/reserved.variables.get.php
**/
public static var _GET (get,never):NativeAssocArray<Dynamic>;
static inline function get__GET() return untyped __php__("$_GET");
/**
@see http://php.net/manual/en/reserved.variables.post.php
**/
public static var _POST (get,never):NativeAssocArray<Dynamic>;
static inline function get__POST() return untyped __php__("$_POST");
/**
@see http://php.net/manual/en/reserved.variables.files.php
**/
public static var _FILES (get,never):NativeAssocArray<Dynamic>;
static inline function get__FILES() return untyped __php__("$_FILES");
/**
@see http://php.net/manual/en/reserved.variables.cookie.php
**/
public static var _COOKIE (get,never):NativeAssocArray<Dynamic>;
static inline function get__COOKIE() return untyped __php__("$_COOKIE");
/**
@see http://php.net/manual/en/reserved.variables.session.php
**/
public static var _SESSION (get,never):NativeAssocArray<Dynamic>;
static inline function get__SESSION() return untyped __php__("$_SESSION");
/**
@see http://php.net/manual/en/reserved.variables.request.php
**/
public static var _REQUEST (get,never):NativeAssocArray<Dynamic>;
static inline function get__REQUEST() return untyped __php__("$_REQUEST");
/**
@see http://php.net/manual/en/reserved.variables.env.php
**/
public static var _ENV (get,never):NativeAssocArray<Dynamic>;
static inline function get__ENV() return untyped __php__("$_ENV");
}
|