Sophie

Sophie

distrib > Mageia > 4 > i586 > by-pkgid > f800694edefe91adea2624f711a41a2d > files > 9021

php-manual-en-5.5.7-1.mga4.noarch.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  <title>Tries to find out best available locale based on HTTP &quot;Accept-Language&quot; header</title>

 </head>
 <body><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="class.locale.html">Locale</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="locale.canonicalize.html">Locale::canonicalize</a></div>
 <div class="up"><a href="class.locale.html">Locale</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div><hr /><div id="locale.acceptfromhttp" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">Locale::acceptFromHttp</h1>
  <h1 class="refname">locale_accept_from_http</h1>
  <p class="verinfo">(PHP 5 &gt;= 5.3.0, PECL intl &gt;= 1.0.0)</p><p class="refpurpose"><span class="refname">Locale::acceptFromHttp</span> -- <span class="refname">locale_accept_from_http</span> &mdash; <span class="dc-title">Tries to find out best available locale based on HTTP &quot;Accept-Language&quot; header</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-locale.acceptfromhttp-description">
  <h3 class="title">Description</h3>
  <p class="para">
   Object oriented style
  </p>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span>
   <span class="modifier">static</span>
   <span class="type">string</span>
    <span class="methodname"><strong>Locale::acceptFromHttp</strong></span>
    ( <span class="methodparam"><span class="type">string</span> <code class="parameter">$header</code></span>
   )</div>

  <p class="para rdfs-comment">
   Procedural style
  </p>
  <div class="methodsynopsis dc-description">
   <span class="type">string</span>
    <span class="methodname"><strong>locale_accept_from_http</strong></span>
    ( <span class="methodparam"><span class="type">string</span> <code class="parameter">$header</code></span>
   )</div>

  <p class="para rdfs-comment">
   Tries to find locale that can satisfy the language list that is requested by the
   HTTP &quot;Accept-Language&quot; header.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-locale.acceptfromhttp-parameters">
  <h3 class="title">Parameters</h3>
  <p class="para">
   <dl>

    <dt>

     <span class="term"><em><code class="parameter">header</code></em></span>
     <dd>

      <p class="para">
       The string containing the &quot;Accept-Language&quot; header according to format in RFC 2616.
      </p>
     </dd>

    </dt>

   </dl>

  </p>
 </div>



 <div class="refsect1 returnvalues" id="refsect1-locale.acceptfromhttp-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="para">
   The corresponding locale identifier.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-locale.acceptfromhttp-examples">
  <h3 class="title">Examples</h3>
  <div class="example" id="example-2533">
   <p><strong>Example #1  <span class="function"><strong>locale_accept_from_http()</strong></span> example</strong></p>
   <div class="example-contents">
    <div class="phpcode"><code><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br />$locale&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">locale_accept_from_http</span><span style="color: #007700">(</span><span style="color: #0000BB">$_SERVER</span><span style="color: #007700">[</span><span style="color: #DD0000">'HTTP_ACCEPT_LANGUAGE'</span><span style="color: #007700">]);<br />echo&nbsp;</span><span style="color: #0000BB">$locale</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">?&gt;</span>
</span>
</code></div>
   </div>

  </div>
  <div class="example" id="example-2534">
   <p><strong>Example #2 OO example</strong></p>
   <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br />$locale&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">Locale</span><span style="color: #007700">::</span><span style="color: #0000BB">acceptFromHttp</span><span style="color: #007700">(</span><span style="color: #0000BB">$_SERVER</span><span style="color: #007700">[</span><span style="color: #DD0000">'HTTP_ACCEPT_LANGUAGE'</span><span style="color: #007700">]);<br />echo&nbsp;</span><span style="color: #0000BB">$locale</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">?&gt;</span>
</span>
</code></div>
   </div>

  </div>
  <p class="para">The above example will output:</p>
  <div class="example-contents screen">
<div class="cdata"><pre>
en_US
</pre></div>
  </div>
 </div>


 <div class="refsect1 seealso" id="refsect1-locale.acceptfromhttp-seealso">
  <h3 class="title">See Also</h3>
  <p class="para">
   <ul class="simplelist">
    <li class="member"> <span class="function"><a href="locale.lookup.html" class="function" rel="rdfs-seeAlso">locale_lookup()</a> - Searches the language tag list for the best match to the language</span></li>
   </ul>
  </p>
 </div>

</div><hr /><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="class.locale.html">Locale</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="locale.canonicalize.html">Locale::canonicalize</a></div>
 <div class="up"><a href="class.locale.html">Locale</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div></body></html>