blob: 77e28488ac1d0ea36b6e8056cc2e8c3de3a8cb30 [file] [log] [blame]
Derek Allard2067d1a2008-11-13 22:59:24 +00001<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
3<head>
4
5<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6<title>Input Class : CodeIgniter User Guide</title>
7
8<style type='text/css' media='all'>@import url('../userguide.css');</style>
9<link rel='stylesheet' type='text/css' media='all' href='../userguide.css' />
10
11<script type="text/javascript" src="../nav/nav.js"></script>
12<script type="text/javascript" src="../nav/prototype.lite.js"></script>
13<script type="text/javascript" src="../nav/moo.fx.js"></script>
14<script type="text/javascript" src="../nav/user_guide_menu.js"></script>
15
16<meta http-equiv='expires' content='-1' />
17<meta http-equiv= 'pragma' content='no-cache' />
18<meta name='robots' content='all' />
19<meta name='author' content='ExpressionEngine Dev Team' />
20<meta name='description' content='CodeIgniter User Guide' />
21
22</head>
23<body>
24
25<!-- START NAVIGATION -->
26<div id="nav"><div id="nav_inner"><script type="text/javascript">create_menu('../');</script></div></div>
27<div id="nav2"><a name="top"></a><a href="javascript:void(0);" onclick="myHeight.toggle();"><img src="../images/nav_toggle_darker.jpg" width="154" height="43" border="0" title="Toggle Table of Contents" alt="Toggle Table of Contents" /></a></div>
28<div id="masthead">
29<table cellpadding="0" cellspacing="0" border="0" style="width:100%">
30<tr>
Derek Jonesb8c038a2011-08-20 08:57:14 -050031<td><h1>CodeIgniter User Guide Version 2.0.3</h1></td>
Derek Allard2067d1a2008-11-13 22:59:24 +000032<td id="breadcrumb_right"><a href="../toc.html">Table of Contents Page</a></td>
33</tr>
34</table>
35</div>
36<!-- END NAVIGATION -->
37
38
39<!-- START BREADCRUMB -->
40<table cellpadding="0" cellspacing="0" border="0" style="width:100%">
41<tr>
42<td id="breadcrumb">
43<a href="http://codeigniter.com/">CodeIgniter Home</a> &nbsp;&#8250;&nbsp;
44<a href="../index.html">User Guide Home</a> &nbsp;&#8250;&nbsp;
Derek Jones9898b892010-03-10 14:04:17 -060045Input Class
Derek Allard2067d1a2008-11-13 22:59:24 +000046</td>
47<td id="searchbox"><form method="get" action="http://www.google.com/search"><input type="hidden" name="as_sitesearch" id="as_sitesearch" value="codeigniter.com/user_guide/" />Search User Guide&nbsp; <input type="text" class="input" style="width:200px;" name="q" id="q" size="31" maxlength="255" value="" />&nbsp;<input type="submit" class="submit" name="sa" value="Go" /></form></td>
48</tr>
49</table>
50<!-- END BREADCRUMB -->
51
52<br clear="all" />
53
54
55<!-- START CONTENT -->
56<div id="content">
57
58
59<h1>Input Class</h1>
60
61<p>The Input Class serves two purposes:</p>
62
63<ol>
64<li>It pre-processes global input data for security.</li>
65<li>It provides some helper functions for fetching input data and pre-processing it.</li>
66</ol>
67
68<p class="important"><strong>Note:</strong> This class is initialized automatically by the system so there is no need to do it manually.</p>
69
70
71<h2>Security Filtering</h2>
72
Derek Jones4b9c6292011-07-01 17:40:48 -050073<p>The security filtering function is called automatically when a new <a href="../general/controllers.html">controller</a> is invoked. It does the following:</p>
Derek Allard2067d1a2008-11-13 22:59:24 +000074
75<ul>
Ben Edmunds212fb072011-08-20 14:02:33 -050076<li>If $config['allow_get_array'] is FALSE(default is TRUE), destroys the global GET array.</li>
Derek Allard2067d1a2008-11-13 22:59:24 +000077<li>Destroys all global variables in the event register_globals is turned on.</li>
Ben Edmunds212fb072011-08-20 14:02:33 -050078<li>Filters the GET/POST/COOKIE array keys, permitting only alpha-numeric (and a few other) characters.</li>
Derek Jones4b9c6292011-07-01 17:40:48 -050079<li>Provides XSS (Cross-site Scripting Hacks) filtering. This can be enabled globally, or upon request.</li>
Ben Edmunds212fb072011-08-20 14:02:33 -050080<li>Standardizes newline characters to \n(In Windows \r\n)</li>
Derek Allard2067d1a2008-11-13 22:59:24 +000081</ul>
82
83
84<h2>XSS Filtering</h2>
85
Derek Jones4b9c6292011-07-01 17:40:48 -050086<p>The Input class has the ability to filter input automatically to prevent cross-site scripting attacks. If you want the filter to run automatically every time it encounters POST or COOKIE data you can enable it by opening your
Derek Allard2067d1a2008-11-13 22:59:24 +000087<kbd>application/config/config.php</kbd> file and setting this:</p>
88
89<code>$config['global_xss_filtering'] = TRUE;</code>
90
Derek Jones9898b892010-03-10 14:04:17 -060091<p>Please refer to the <a href="security.html">Security class</a> documentation for information on using XSS Filtering in your application.</p>
Derek Allard2067d1a2008-11-13 22:59:24 +000092
93
94<h2>Using POST, COOKIE, or SERVER Data</h2>
95
Derek Jones4b9c6292011-07-01 17:40:48 -050096<p>CodeIgniter comes with three helper functions that let you fetch POST, COOKIE or SERVER items. The main advantage of using the provided
Derek Allard2067d1a2008-11-13 22:59:24 +000097functions rather than fetching an item directly ($_POST['something']) is that the functions will check to see if the item is set and
Derek Jones4b9c6292011-07-01 17:40:48 -050098return false (boolean) if not. This lets you conveniently use data without having to test whether an item exists first.
Derek Allard2067d1a2008-11-13 22:59:24 +000099In other words, normally you might do something like this:</p>
100
101<code>
102if ( ! isset($_POST['something']))<br />
103{<br />
104&nbsp;&nbsp;&nbsp;&nbsp;$something = FALSE;<br />
105}<br />
106else<br />
107{<br />
108&nbsp;&nbsp;&nbsp;&nbsp;$something = $_POST['something'];<br />
109}</code>
110
111<p>With CodeIgniter's built in functions you can simply do this:</p>
112
113<code>$something = $this->input->post('something');</code>
114
115<p>The three functions are:</p>
116
117<ul>
118<li>$this->input->post()</li>
119<li>$this->input->cookie()</li>
120<li>$this->input->server()</li>
121</ul>
122
123<h2>$this->input->post()</h2>
124
125<p>The first parameter will contain the name of the POST item you are looking for:</p>
126
127<code>$this->input->post('some_data');</code>
128
129<p>The function returns FALSE (boolean) if the item you are attempting to retrieve does not exist.</p>
130
Derek Jones4b9c6292011-07-01 17:40:48 -0500131<p>The second optional parameter lets you run the data through the XSS filter. It's enabled by setting the second parameter to boolean TRUE;</p>
Derek Allard2067d1a2008-11-13 22:59:24 +0000132
133<code>$this->input->post('some_data', TRUE);</code>
134
vascopjff1cfa12011-02-13 21:30:19 +0000135<p>To return an array of all POST items call without any parameters.</p>
Ben Edmunds212fb072011-08-20 14:02:33 -0500136<p>To return all POST items and pass them through the XSS filter set the first parameter NULL while setting the second parameter to boolean;</p>
vascopjff1cfa12011-02-13 21:30:19 +0000137<p>The function returns FALSE (boolean) if there are no items in the POST.</p>
138
139<code>
Ben Edmunds212fb072011-08-20 14:02:33 -0500140 $this->input->post(NULL, TRUE); // returns all POST items with XSS filter
vascopjff1cfa12011-02-13 21:30:19 +0000141 <br />
Ben Edmunds212fb072011-08-20 14:02:33 -0500142 $this->input->post(); // returns all POST items without XSS filter
vascopjff1cfa12011-02-13 21:30:19 +0000143</code>
144
Derek Allard2067d1a2008-11-13 22:59:24 +0000145<h2>$this->input->get()</h2>
146
147<p>This function is identical to the post function, only it fetches get data:</p>
148
149<code>$this->input->get('some_data', TRUE);</code>
150
vascopjff1cfa12011-02-13 21:30:19 +0000151<p>To return an array of all GET items call without any parameters.</p>
Ben Edmunds212fb072011-08-20 14:02:33 -0500152<p>To return all GET items and pass them through the XSS filter set the first parameter NULL while setting the second parameter to boolean;</p>
vascopjff1cfa12011-02-13 21:30:19 +0000153<p>The function returns FALSE (boolean) if there are no items in the GET.</p>
154
155<code>
Ben Edmunds212fb072011-08-20 14:02:33 -0500156 $this->input->get(NULL, TRUE); // returns all GET items with XSS filter
vascopjff1cfa12011-02-13 21:30:19 +0000157 <br />
Ben Edmunds212fb072011-08-20 14:02:33 -0500158 $this->input->get(); // returns all GET items without XSS filtering
vascopjff1cfa12011-02-13 21:30:19 +0000159</code>
160
Derek Allard2067d1a2008-11-13 22:59:24 +0000161<h2>$this->input->get_post()</h2>
162
163<p>This function will search through both the post and get streams for data, looking first in post, and then in get:</p>
164
165<code>$this->input->get_post('some_data', TRUE);</code>
166
167<h2>$this->input->cookie()</h2>
168
169<p>This function is identical to the post function, only it fetches cookie data:</p>
170
171<code>$this->input->cookie('some_data', TRUE);</code>
172
173<h2>$this->input->server()</h2>
174
175<p>This function is identical to the above functions, only it fetches server data:</p>
176
177<code>$this->input->server('some_data');</code>
178
179
Derek Jones9898b892010-03-10 14:04:17 -0600180<h2>$this->input->set_cookie()</h2>
181
Derek Jones4b9c6292011-07-01 17:40:48 -0500182<p>Sets a cookie containing the values you specify. There are two ways to pass information to this function so that a cookie can be set:
Derek Jones9898b892010-03-10 14:04:17 -0600183Array Method, and Discrete Parameters:</p>
184
185<h4>Array Method</h4>
186
187<p>Using this method, an associative array is passed to the first parameter:</p>
188
189<code>$cookie = array(<br />
Phil Sturgeond8d1e242011-02-16 17:23:16 +0000190&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;=> 'The Cookie Name',<br />
191&nbsp;&nbsp;&nbsp;&nbsp;'value'&nbsp;&nbsp;=> 'The Value',<br />
192&nbsp;&nbsp;&nbsp;&nbsp;'expire' => '86500',<br />
193&nbsp;&nbsp;&nbsp;&nbsp;'domain' => '.some-domain.com',<br />
194&nbsp;&nbsp;&nbsp;&nbsp;'path'&nbsp;&nbsp;&nbsp;=> '/',<br />
195&nbsp;&nbsp;&nbsp;&nbsp;'prefix' => 'myprefix_',<br />
196&nbsp;&nbsp;&nbsp;&nbsp;'secure' => TRUE<br />
197);<br />
Derek Jones9898b892010-03-10 14:04:17 -0600198<br />
199$this->input->set_cookie($cookie);
200</code>
201
202<p><strong>Notes:</strong></p>
203
204<p>Only the name and value are required. To delete a cookie set it with the expiration blank.</p>
205
Derek Jones4b9c6292011-07-01 17:40:48 -0500206<p>The expiration is set in <strong>seconds</strong>, which will be added to the current time. Do not include the time, but rather only the
207number of seconds from <em>now</em> that you wish the cookie to be valid. If the expiration is set to
Derek Jones9898b892010-03-10 14:04:17 -0600208zero the cookie will only last as long as the browser is open.</p>
Derek Jones4b9c6292011-07-01 17:40:48 -0500209<p>For site-wide cookies regardless of how your site is requested, add your URL to the <strong>domain</strong> starting with a period, like this: .your-domain.com</p>
Derek Jones9898b892010-03-10 14:04:17 -0600210<p>The path is usually not needed since the function sets a root path.</p>
211<p>The prefix is only needed if you need to avoid name collisions with other identically named cookies for your server.</p>
Phil Sturgeond8d1e242011-02-16 17:23:16 +0000212<p>The secure boolean is only needed if you want to make it a secure cookie by setting it to TRUE.</p>
Derek Jones9898b892010-03-10 14:04:17 -0600213
214<h4>Discrete Parameters</h4>
215
216<p>If you prefer, you can set the cookie by passing data using individual parameters:</p>
217
Phil Sturgeond8d1e242011-02-16 17:23:16 +0000218<code>$this->input->set_cookie($name, $value, $expire, $domain, $path, $prefix, $secure);</code>
Derek Jones9898b892010-03-10 14:04:17 -0600219
Phil Sturgeona36f6372011-04-01 11:40:09 +0100220<h2>$this->input->cookie()</h2>
Derek Jones9898b892010-03-10 14:04:17 -0600221
Derek Jones4b9c6292011-07-01 17:40:48 -0500222<p>Lets you fetch a cookie. The first parameter will contain the name of the cookie you are looking for (including any prefixes):</p>
Derek Jones9898b892010-03-10 14:04:17 -0600223
Phil Sturgeona36f6372011-04-01 11:40:09 +0100224<code>cookie('some_cookie');</code>
Derek Jones9898b892010-03-10 14:04:17 -0600225
226<p>The function returns FALSE (boolean) if the item you are attempting to retrieve does not exist.</p>
227
Derek Jones4b9c6292011-07-01 17:40:48 -0500228<p>The second optional parameter lets you run the data through the XSS filter. It's enabled by setting the second parameter to boolean TRUE;</p>
Derek Jones9898b892010-03-10 14:04:17 -0600229
Phil Sturgeona36f6372011-04-01 11:40:09 +0100230<p><code>cookie('some_cookie', TRUE);</code></p>
Derek Allard2067d1a2008-11-13 22:59:24 +0000231
232
233<h2>$this->input->ip_address()</h2>
Derek Jones4b9c6292011-07-01 17:40:48 -0500234<p>Returns the IP address for the current user. If the IP address is not valid, the function will return an IP of: 0.0.0.0</p>
Derek Allard2067d1a2008-11-13 22:59:24 +0000235<code>echo $this->input->ip_address();</code>
236
237
238<h2>$this->input->valid_ip(<var>$ip</var>)</h2>
239
Derek Jones4b9c6292011-07-01 17:40:48 -0500240<p>Takes an IP address as input and returns TRUE or FALSE (boolean) if it is valid or not. Note: The $this->input->ip_address() function above
Derek Allard2067d1a2008-11-13 22:59:24 +0000241validates the IP automatically.</p>
242
243<code>if ( ! $this-&gt;input-&gt;valid_ip($ip))<br />
244{<br />
245&nbsp;&nbsp;&nbsp;&nbsp; echo 'Not Valid';<br />
246}<br />
247else<br />
248{<br />
249&nbsp;&nbsp;&nbsp;&nbsp; echo 'Valid';<br />
250}</code>
251
252
253<h2>$this->input->user_agent()</h2>
254<p>Returns the user agent (web browser) being used by the current user. Returns FALSE if it's not available.</p>
255<code>echo $this->input->user_agent();</code>
katzgrau58f5f0f2011-02-24 09:31:28 -0500256<p>See the <a href="user_agent.html">User Agent Class</a> for methods which extract information from the user agent string.</p>
Derek Allard2067d1a2008-11-13 22:59:24 +0000257
Greg Akerec2f5712010-11-15 16:22:12 -0600258<h2>$this->input->request_headers()</h2>
Derek Jones4b9c6292011-07-01 17:40:48 -0500259<p>Useful if running in a non-Apache environment where <a href="http://php.net/apache_request_headers">apache_request_headers()</a> will not be supported. Returns an array of headers.</p>
Derek Allard2067d1a2008-11-13 22:59:24 +0000260
Greg Akerec2f5712010-11-15 16:22:12 -0600261<code>$headers = $this->input->request_headers();</code>
262
263<h2>$this->input->get_request_header();</h2>
Greg Aker081ac9d2010-11-22 14:42:53 -0600264<p>Returns a single member of the request headers array.</p>
Greg Akerec2f5712010-11-15 16:22:12 -0600265
266<code>$this->input->get_request_header('some-header', TRUE);</code>
Derek Allard2067d1a2008-11-13 22:59:24 +0000267
Greg Aker081ac9d2010-11-22 14:42:53 -0600268
269<h2>$this->input->is_ajax_request()</h2>
270<p>Checks to see if the <var>HTTP_X_REQUESTED_WITH</var> server header has been set, and returns a boolean response.</p>
271
Phil Sturgeon9d0e6172011-04-02 12:43:55 +0100272
273<h2>$this->input->is_cli_request()</h2>
274<p>Checks to see if the <var>STDIN</var> constant is set, which is a failsafe way to see if PHP is being run on the command line.</p>
275
276<code>$this->input->is_cli_request()</code>
Greg Aker081ac9d2010-11-22 14:42:53 -0600277
278
Derek Allard2067d1a2008-11-13 22:59:24 +0000279</div>
280<!-- END CONTENT -->
281
282
283<div id="footer">
284<p>
285Previous Topic:&nbsp;&nbsp;<a href="image_lib.html">Image Manipulation Class</a>
286&nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp;
287<a href="#top">Top of Page</a>&nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp;
288<a href="../index.html">User Guide Home</a>&nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp;
289Next Topic:&nbsp;&nbsp;<a href="loader.html">Loader Class</a>
290</p>
Derek Jones700205a2011-01-28 07:44:28 -0600291<p><a href="http://codeigniter.com">CodeIgniter</a> &nbsp;&middot;&nbsp; Copyright &#169; 2006 - 2011 &nbsp;&middot;&nbsp; <a href="http://ellislab.com/">EllisLab, Inc.</a></p>
Derek Allard2067d1a2008-11-13 22:59:24 +0000292</div>
293
294</body>
adminb0dd10f2006-08-25 17:25:49 +0000295</html>