<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.spl.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'ja',
  ),
  'this' => 
  array (
    0 => 'function.spl-autoload-functions.php',
    1 => 'spl_autoload_functions',
    2 => 'すべての登録済み __autoload() 関数を返す',
  ),
  'up' => 
  array (
    0 => 'ref.spl.php',
    1 => 'SPL 関数',
  ),
  'prev' => 
  array (
    0 => 'function.spl-autoload-extensions.php',
    1 => 'spl_autoload_extensions',
  ),
  'next' => 
  array (
    0 => 'function.spl-autoload-register.php',
    1 => 'spl_autoload_register',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'ja',
    'path' => 'reference/spl/functions/spl-autoload-functions.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.spl-autoload-functions" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">spl_autoload_functions</h1>
  <p class="verinfo">(PHP 5 &gt;= 5.1.0, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">spl_autoload_functions</span> &mdash; <span class="dc-title">すべての登録済み __autoload() 関数を返す</span></p>

 </div>
 <div class="refsect1 description" id="refsect1-function.spl-autoload-functions-description">
  <h3 class="title">説明</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>spl_autoload_functions</strong></span>(): <span class="type"><a href="language.types.array.php" class="type array">array</a></span></div>

  <p class="para rdfs-comment">
   すべての登録済み __autoload() 関数を取得します。
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.spl-autoload-functions-parameters">
  <h3 class="title">パラメータ</h3>
  <p class="para">この関数にはパラメータはありません。</p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.spl-autoload-functions-returnvalues">
  <h3 class="title">戻り値</h3>
  <p class="para">
   関数が何も登録されていなかったり、
   autoload キューが有効になっていない場合は、
   空の配列が返されます。
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-function.spl-autoload-functions-changelog">
  <h3 class="title">変更履歴</h3>
  <table class="doctable informaltable">
   
    <thead>
     <tr>
      <th>バージョン</th>
      <th>説明</th>
     </tr>

    </thead>

    <tbody class="tbody">
     <tr>
      <td>8.0.0</td>
      <td>
       戻り値は常に配列になりました。
       これより前のバージョンでは、
       autoload キューが有効になっていない場合に <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> を返していました。
      </td>
     </tr>

    </tbody>
   
  </table>

 </div>


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