ホームページ >バックエンド開発 >PHPチュートリアル >専門家がこれらのコードの意味を説明してもらえますか?
これらのコードの意味を誰か説明してもらえませんか?
$fanwe = &FanweService::instance();
$fanwe->cache_list[] = 'forums';
$fanwe->initialize ();
require fimport('module/index');
IndexModule::index();
ありがとうございます
------解決策解決策----------------------
$fanwe = &FanweService::instance();
// クラス内の静的関数 (インスタンス化に使用します)。
$fanwe->cache_list[] = 'forums';
// クラスのcache_listパラメータに配列値を追加します。
$fanwe->initialize();
//初期化関数を実行します
require fimport('module/index');
//ファイルを含めます
IndexModule::index( ) ;
// 同じ