Changeset 21496


Ignore:
Timestamp:
2012/02/13 16:31:54 (12 years ago)
Author:
Seasoft
Message:

#1637 (クラスのオートローディング)

  • コメントを補足
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/app_initial.php

    r21490 r21496  
    4646$objInit->init(); 
    4747 
     48 
    4849/** 
    4950 * クラスのオートローディングを定義する 
    5051 * 
    51  * LC_* には対応していない。 
     52 * 関数なので、このように囲う必要はないが、メインの処理フローを分かりやすくするため定義した。 
     53 * @return void 
    5254 */ 
    5355function setClassAutoloader() { 
     56    /** 
     57     * クラスのオートローディング本体 
     58     * 
     59     * LC_* には対応していない。 
     60     * @return void 
     61     */ 
    5462    function __autoload($class) { 
    5563        $arrClassNamePart = explode('_', $class); 
Note: See TracChangeset for help on using the changeset viewer.