<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.info.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'tr',
  ),
  'this' => 
  array (
    0 => 'function.get-loaded-extensions.php',
    1 => 'get_loaded_extensions',
    2 => 'Derlenmiş ve y&uuml;klenmiş t&uuml;m mod&uuml;llerin isimlerini i&ccedil;eren bir dizi
  d&ouml;nd&uuml;r&uuml;r',
  ),
  'up' => 
  array (
    0 => 'ref.info.php',
    1 => 'PHP Se&ccedil;enek/Bilgi İşlevleri',
  ),
  'prev' => 
  array (
    0 => 'function.get-included-files.php',
    1 => 'get_included_files',
  ),
  'next' => 
  array (
    0 => 'function.get-magic-quotes-gpc.php',
    1 => 'get_magic_quotes_gpc',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'tr',
    'path' => 'reference/info/functions/get-loaded-extensions.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.get-loaded-extensions" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">get_loaded_extensions</h1>
  <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">get_loaded_extensions</span> &mdash; <span class="dc-title">Derlenmiş ve yüklenmiş tüm modüllerin isimlerini içeren bir dizi
  döndürür</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.get-loaded-extensions-description">
  <h3 class="title">Açıklama</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>get_loaded_extensions</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span> <code class="parameter">$zend_eklentileri</code><span class="initializer"> = <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong></span></span>): <span class="type"><a href="language.types.array.php" class="type array">array</a></span></div>

  <p class="para rdfs-comment">
   PHP yorumlayıcı içinde derlenmiş ve yüklenmiş tüm modüllerin isimlerini
   içeren bir dizi döndürür.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.get-loaded-extensions-parameters">
  <h3 class="title">Bağımsız Değişkenler</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">zend_eklentileri</code></dt>
     <dd>
      <p class="para">
       Öntanımlı değeri <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> olup, bu durumda Zend eklentilerini
       listelemez, mysqli gibi normal eklentileri listeler.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.get-loaded-extensions-returnvalues">
  <h3 class="title">Dönen Değerler</h3>
  <p class="para">
   Tüm modül isimlerini içeren indisli bir dizi ile döner.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.get-loaded-extensions-examples">
  <h3 class="title">Örnekler</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Örnek 1 - <span class="function"><strong>get_loaded_extensions()</strong></span> örneği</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">get_loaded_extensions</span><span style="color: #007700">());<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

    <div class="example-contents"><p>
Yukarıdaki örnek şuna benzer bir çıktı üretir:</p></div>
    <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">Array
(
    [0] =&gt; Core
    [1] =&gt; date
    [2] =&gt; libxml
    [3] =&gt; pcre
    [4] =&gt; sqlite3
    [5] =&gt; zlib
    [6] =&gt; ctype
    [7] =&gt; dom
    [8] =&gt; fileinfo
    [9] =&gt; filter
    [10] =&gt; hash
    [11] =&gt; json
// Kısaltıldı
    [31] =&gt; Zend OPcache
)</pre>
</div>
    </div>
   </div>
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.get-loaded-extensions-seealso">
  <h3 class="title">Ayrıca Bakınız</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.get-extension-funcs.php" class="function" rel="rdfs-seeAlso">get_extension_funcs()</a> - Bir eklentinin t&uuml;m işlevlerinin isimlerini i&ccedil;eren bir dizi d&ouml;nd&uuml;r&uuml;r</span></li>
    <li><span class="function"><a href="function.extension-loaded.php" class="function" rel="rdfs-seeAlso">extension_loaded()</a> - Belirtilen eklenti y&uuml;kl&uuml; m&uuml; diye bakar</span></li>
    <li><span class="function"><a href="function.dl.php" class="function" rel="rdfs-seeAlso">dl()</a> - Belirtilen PHP eklentisini &ccedil;alışma anında y&uuml;kler</span></li>
    <li><span class="function"><a href="function.phpinfo.php" class="function" rel="rdfs-seeAlso">phpinfo()</a> - PHP yapılandırması hakkında bilgi &ccedil;ıktılar</span></li>
   </ul>
  </p>
 </div>


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