エントリーファイル、公開下のindex.phpファイルは、手動で作成したものに直接貼り付けることができます。
- header("Content-Type: text/html; charset=UTF-8");
- error_reporting(E_ALL|E_STRICT);
- date_default_timezone_set('Asia/Shanghai');
- // 定義アプリケーションディレクトリへのパス
- define('APPLICATION_PATH')
- ||define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../application'));
- // アプリケーション環境を定義します
- define('APPLICATION_ENV' )
- ||define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'production'));
- // library/ が include_path 上にあることを確認します
- set_include_path(implode(PATH_SEPARATOR, array(
- realpath(APPLICATION_PATH . '/../library'),
- get_include_path(),
- )));
- /**Zend_Application*/
- require_once 'Zend/Application.php';
- // アプリケーションを作成する、ブートストラップ、および run
- $application = new Zend_Application(
- APPLICATION_ENV,
- APPLICATION_PATH . '/configs/application.ini'
- );
- $application->bootstrap()
- ->run();
Copyコード
|