함수 호출:
lib 공용 함수 라이브러리는 common.php
App/common/common.php
그룹 모듈 아래의 공용 함수 라이브러리는 function.php
App/Modules/Admin/common/입니다. function.php
클래스 라이브러리 호출:
class IndexAction 확장 Action{
public function index(){
// "확장 기본 클래스 라이브러리" 호출 ThinkPHP/Extend/Library/ORG/Util/Test.class.php
가져오기 ('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 중국어 웹사이트의 기타 관련 기사를 참조하세요!