Source of: /manual/en/function.mb-http-input.php
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.mbstring.inc";
$setup = array (
'home' =>
array (
0 => 'index.php',
1 => 'PHP Manual',
),
'head' =>
array (
0 => 'UTF-8',
1 => 'en',
),
'this' =>
array (
0 => 'function.mb-http-input.php',
1 => 'mb_http_input',
),
'up' =>
array (
0 => 'ref.mbstring.php',
1 => 'Multibyte String Functions',
),
'prev' =>
array (
0 => 'function.mb-get-info.php',
1 => 'mb_get_info',
),
'next' =>
array (
0 => 'function.mb-http-output.php',
1 => 'mb_http_output',
),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);
manual_header();
?>
<div id="function.mb-http-input" class="refentry">
<div class="refnamediv">
<h1 class="refname">mb_http_input</h1>
<p class="verinfo">(PHP 4 >= 4.0.6, PHP 5)</p><p class="refpurpose"><span class="refname">mb_http_input</span> — <span class="dc-title">Detect HTTP input character encoding</span></p>
</div>
<a name="function.mb-http-input.description"></a><div class="refsect1 description">
<h3 class="title">Description</h3>
<div class="methodsynopsis dc-description">
<span class="type"><a href="language.pseudo-types.php#language.types.mixed" class="type mixed">mixed</a></span> <span class="methodname"><b>mb_http_input</b></span>
([ <span class="methodparam"><span class="type">string</span> <tt class="parameter">$type</tt><span class="initializer"> = ""</span></span>
] )</div>
<p class="simpara">
Detects the HTTP input character encoding.
</p>
</div>
<a name="function.mb-http-input.parameters"></a><div class="refsect1 parameters">
<h3 class="title">Parameters</h3>
<p class="para">
</p><dl>
<dt class="varlistentry">
<span class="term"><i><tt class="parameter">type</tt></i>
</span>
</dt><dd class="listitem">
<p class="para">
Input string specifies the input type.
"G" for GET, "P" for POST, "C" for COOKIE, "S" for string, "L" for list, and
"I" for the whole list (will return <a href="language.types.array.php" class="type array">array</a>).
If type is omitted, it returns the last input type processed.
</p>
</dd>
</dl>
<p>
</p>
</div>
<a name="function.mb-http-input.returnvalues"></a><div class="refsect1 returnvalues">
<h3 class="title">Return Values</h3>
<p class="para">
The character encoding name, as per the <i><tt class="parameter">type</tt></i>
.
If <b>mb_http_input()</b> does not process specified
HTTP input, it returns <b><tt class="constant">FALSE</tt></b>.
</p>
</div>
<a name="function.mb-http-input.seealso"></a><div class="refsect1 seealso">
<h3 class="title">See Also</h3>
<p class="para">
</p><ul class="simplelist">
<li class="member"><a href="function.mb-internal-encoding.php" class="function" rel="rdfs-seeAlso">mb_internal_encoding()</a> - Set/Get internal character encoding</li>
<li class="member"><a href="function.mb-http-output.php" class="function" rel="rdfs-seeAlso">mb_http_output()</a> - Set/Get HTTP output character encoding</li>
<li class="member"><a href="function.mb-detect-order.php" class="function" rel="rdfs-seeAlso">mb_detect_order()</a> - Set/Get character encoding detection order</li>
</ul><p>
</p>
</div>
</div><?php manual_footer(); ?>