Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Yiiでプロジェクトを開発しています。
プレーンな .php ファイルを要求する必要があります (コンポーネントではなく、クラスではなく、通常の一連の PHP 関数定義だけです)。Yii フレームワークでこれを行う正しい方法は何ですか? 普通のrequire_once()を使うべきですか?
require_once(Yii::app()->basePath . '/extensions/my-php-file.php');
右?
それは正解です。
例:
require_once Yii::app()->basePath . '/extensions/PearMail/Mail-1.2.0/Mail.php';