Request.php
900 Bytes
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
<?php
namespace Nextend\Framework\Request;
use Nextend\Framework\PageFlow;
class Request {
/**
* @var Storage
*/
public static $REQUEST;
/**
* @var Storage
*/
public static $GET;
/**
* @var Storage
*/
public static $POST;
private static $requestUri;
public static $isAjax = false;
public function __construct() {
self::$REQUEST = new Storage($_REQUEST);
self::$GET = new Storage($_GET);
self::$POST = new Storage($_POST);
}
/**
* @param array|string $url
* @param integer $statusCode
* @param bool $terminate
*/
public static function redirect($url, $statusCode = 302, $terminate = true) {
header('Location: ' . $url, true, $statusCode);
if ($terminate) {
PageFlow::exitApplication();
}
}
}
new Request();