<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.intlcalendar.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'it',
  ),
  'this' => 
  array (
    0 => 'intlcalendar.getavailablelocales.php',
    1 => 'IntlCalendar::getAvailableLocales',
    2 => 'Get array of locales for which there is data',
  ),
  'up' => 
  array (
    0 => 'class.intlcalendar.php',
    1 => 'IntlCalendar',
  ),
  'prev' => 
  array (
    0 => 'intlcalendar.getactualminimum.php',
    1 => 'IntlCalendar::getActualMinimum',
  ),
  'next' => 
  array (
    0 => 'intlcalendar.getdayofweektype.php',
    1 => 'IntlCalendar::getDayOfWeekType',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/intl/intlcalendar/getavailablelocales.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="intlcalendar.getavailablelocales" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">IntlCalendar::getAvailableLocales</h1>
  <p class="verinfo">(PHP 5 &gt;= 5.5.0, PHP 7, PHP 8, PECL &gt;= 3.0.0a1)</p><p class="refpurpose"><span class="refname">IntlCalendar::getAvailableLocales</span> &mdash; <span class="dc-title">Get array of locales for which there is data</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-intlcalendar.getavailablelocales-description">
  <h3 class="title">Descrizione</h3>
  <p class="para">
   Stile orientato agli oggetti
  </p>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="modifier">static</span> <span class="methodname"><strong>IntlCalendar::getAvailableLocales</strong></span>(): <span class="type"><a href="language.types.array.php" class="type array">array</a></span></div>

  <p class="para rdfs-comment">
   Stile procedurale
  </p>
  <div class="methodsynopsis dc-description"><span class="methodname"><strong>intlcal_get_available_locales</strong></span>(): <span class="type"><a href="language.types.array.php" class="type array">array</a></span></div>

  <p class="para rdfs-comment">
   Gives the list of locales for which calendars are installed. As of ICU 51,
   this is the list of all installed ICU locales.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-intlcalendar.getavailablelocales-parameters">
  <h3 class="title">Elenco dei parametri</h3>
  <p class="para">Questa funzione non contiene parametri.</p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-intlcalendar.getavailablelocales-returnvalues">
  <h3 class="title">Valori restituiti</h3>
  <p class="para">
   An <span class="type"><a href="language.types.array.php" class="type array">array</a></span> of <span class="type"><a href="language.types.string.php" class="type string">string</a></span>s, one for which locale. 
  </p>
 </div>



 <div class="refsect1 examples" id="refsect1-intlcalendar.getavailablelocales-examples">
  <h3 class="title">Esempi</h3>
  <p class="para">
   <div class="example" id="example-1">
   <p><strong>Example #1 <span class="function"><strong>IntlCalendar::getAvailableLocales()</strong></span></strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />print_r</span><span style="color: #007700">(</span><span style="color: #0000BB">IntlCalendar</span><span style="color: #007700">::</span><span style="color: #0000BB">getAvailableLocales</span><span style="color: #007700">());</span></span></code></div>
    </div>

    <div class="example-contents"><p>Il precedente esempio visualizzerà:</p></div>
    <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">Array
(
    [0] =&gt; af
    [1] =&gt; af_NA
    [2] =&gt; af_ZA
    [3] =&gt; agq
    [4] =&gt; agq_CM
    [5] =&gt; ak
    [6] =&gt; ak_GH
    [7] =&gt; am
    [8] =&gt; am_ET
    [9] =&gt; ar
    [10] =&gt; ar_001
    [11] =&gt; ar_AE
    [12] =&gt; ar_BH
    [13] =&gt; ar_DJ
    … output abbreviated …
    [595] =&gt; zh_Hant_HK
    [596] =&gt; zh_Hant_MO
    [597] =&gt; zh_Hant_TW
    [598] =&gt; zu
    [599] =&gt; zu_ZA
)</pre>
</div>
    </div>
   </div>
  </p>
 </div>



</div><?php manual_footer($setup); ?>