summaryrefslogtreecommitdiffstats
path: root/inc/request.inc.php
blob: bb212dfd5d376f670b534686d97f47605e771839 (plain) (blame)
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
<?php

/**
 * Wrapper for getting fields from the request (GET, POST, ...)
 */
class Request
{
	
	/**
	 * 
	 * @param string $key Key of field to get from $_GET
	 * @param string $default Value to return if $_GET does not contain $key
	 * @return mixed Field from $_GET, or $default if not set
	 */
	public static function get($key, $default = false)
	{
		if (!isset($_GET[$key])) return $default;
		return $_GET[$key];
	}
	
	/**
	 * 
	 * @param string $key Key of field to get from $_POST
	 * @param string $default Value to return if $_POST does not contain $key
	 * @return mixed Field from $_POST, or $default if not set
	 */
	public static function post($key, $default = false)
	{
		if (!isset($_POST[$key])) return $default;
		return $_POST[$key];
	}
	
	/**
	 * 
	 * @param string $key Key of field to get from $_REQUEST
	 * @param string $default Value to return if $_REQUEST does not contain $key
	 * @return mixed Field from $_REQUEST, or $default if not set
	 */
	public static function any($key, $default = false)
	{
		if (!isset($_REQUEST[$key])) return $default;
		return $_REQUEST[$key];
	}
	
}