Heim > Artikel > Backend-Entwicklung > thinkPHP ruft einfach Funktionen und Klassenbibliotheken auf
Funktionsaufruf:
lib öffentliche Funktionsbibliothek heißt common.php
App/common/common.php
Die öffentliche Funktionsbibliothek unter dem Gruppenmodul wird aufgerufen function.php
App/Modules/Admin/common/function.php
Aufruf der Klassenbibliothek:
class IndexAction erweitert Action{
public function index(){
// „Extended Base Class Library“ aufrufen ThinkPHP/Extend/Library/ORG/Util/Test.class.php
import('ORG.Util.Test');
$test = new Test( );
// „Extended Base Class Library“ aufrufen ThinkPHP/Extend/Library/Com/Util/Test.class.php
import('Com.Util.Test');
$test = new Test() ;
// „Core Base Class Library“ aufrufen ThinkPHP/Lib/Core/Test.class.php
import('Think.Core.Test');
$test = new Test( );
$this->display();
}
}
Das obige ist der detaillierte Inhalt vonthinkPHP ruft einfach Funktionen und Klassenbibliotheken auf. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!