Sophie

Sophie

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

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>Gets the variants for the input locale</title>

 </head>
 <body><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="locale.filtermatches.html">Locale::filterMatches</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="locale.getdefault.html">Locale::getDefault</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.getallvariants" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">Locale::getAllVariants</h1>
  <h1 class="refname">locale_get_all_variants</h1>
  <p class="verinfo">(PHP 5 &gt;= 5.3.0, PECL intl &gt;= 1.0.0)</p><p class="refpurpose"><span class="refname">Locale::getAllVariants</span> -- <span class="refname">locale_get_all_variants</span> &mdash; <span class="dc-title">Gets the variants for the input locale</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-locale.getallvariants-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">array</span>
    <span class="methodname"><strong>Locale::getAllVariants</strong></span>
    ( <span class="methodparam"><span class="type">string</span> <code class="parameter">$locale</code></span>
   )</div>

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

  <p class="para rdfs-comment">
   Gets the variants for the input locale
  </p>
 </div>


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

    <dt>

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

      <p class="para">
       The locale to extract the variants from
      </p>
     </dd>

    </dt>

   </dl>

  </p>
 </div>



 <div class="refsect1 returnvalues" id="refsect1-locale.getallvariants-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="para">
   The <span class="type"><a href="language.types.array.html" class="type array">array</a></span> containing the list of all variants subtag for the locale 
   or <strong><code>NULL</code></strong> if not present
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-locale.getallvariants-examples">
  <h3 class="title">Examples</h3>
  <div class="example" id="example-2539">
   <p><strong>Example #1  <span class="function"><strong>locale_get_all_variants()</strong></span> example</strong></p>
   <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br />$arr&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">locale_get_all_variants</span><span style="color: #007700">(</span><span style="color: #DD0000">'sl_IT_NEDIS_ROJAZ_1901'</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">var_export</span><span style="color: #007700">(&nbsp;</span><span style="color: #0000BB">$arr&nbsp;</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?&gt;</span>
</span>
</code></div>
   </div>

  </div>
  <div class="example" id="example-2540">
   <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 />&nbsp;$arr&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">Locale</span><span style="color: #007700">::</span><span style="color: #0000BB">getAllVariants</span><span style="color: #007700">(</span><span style="color: #DD0000">'sl_IT_NEDIS_ROJAZ_1901'</span><span style="color: #007700">);<br />&nbsp;</span><span style="color: #0000BB">var_export</span><span style="color: #007700">(&nbsp;</span><span style="color: #0000BB">$arr&nbsp;</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>
array (
    0 =&gt; &#039;NEDIS&#039;,
    1 =&gt; &#039;ROJAZ&#039;,
    2 =&gt; &#039;1901&#039;,
)
</pre></div>
  </div>
 </div>


 <div class="refsect1 seealso" id="refsect1-locale.getallvariants-seealso">
  <h3 class="title">See Also</h3>
  <p class="para">
   <ul class="simplelist">
    <li class="member"> <span class="function"><a href="locale.getprimarylanguage.html" class="function" rel="rdfs-seeAlso">locale_get_primary_language()</a> - Gets the primary language for the input locale</span></li>
    <li class="member"> <span class="function"><a href="locale.getscript.html" class="function" rel="rdfs-seeAlso">locale_get_script()</a> - Gets the script for the input locale</span></li>
    <li class="member"> <span class="function"><a href="locale.getregion.html" class="function" rel="rdfs-seeAlso">locale_get_region()</a> - Gets the region for the input locale</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="locale.filtermatches.html">Locale::filterMatches</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="locale.getdefault.html">Locale::getDefault</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>