関数呼び出し:
lib パブリック関数ライブラリは common.php
App/common/common.php
グループモジュール下のパブリック関数ライブラリは function.php
App/Modules/Admin/common/ と呼ばれますfunction.php
クラスライブラリ呼び出し:
class IndexAction extends Action{
public functionindex(){
// 「拡張基本クラスライブラリ」を呼び出します ThinkPHP/Extend/Library/ORG/Util/Test.class.php
import ('ORG.Util.Test');
$test = new Test();
// 「拡張基本クラス ライブラリ」を呼び出します ThinkPHP/Extend/Library/Com/Util/Test.class.php
import('Com. Util.Test' );
$test = new Test();
// 「コア基本クラス ライブラリ」を呼び出します ThinkPHP/Lib/Core/Test.class.php
import('Think.Core.Test');
$ test = new Test ();
$this->display();
}
}
以上がthinkPHP は単に関数とクラス ライブラリを呼び出すだけですの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。