-3

私は MVC n00b で、オンライン チュートリアルで Kohana を学習しています。

というファイルを見ていますindex.php

次の行の.EXTfor (どういう意味ですか?) は何ですか?

// Bootstrap the application
require APPPATH.'bootstrap'.EXT;
4

1 に答える 1

3

index.phpでわかるように、これはデフォルトの拡張子(.php) です。

/**
 * The default extension of resource files. If you change this, all resources
 * must be renamed to use the new extension.
 *
 * @link http://kohanaframework.org/guide/about.install#ext
 */
define('EXT', '.php');

他の値に変更できます。たとえば.kohana.php、ブートストラップに名前を付ける必要がありますbootstrap.kohana.php

于 2013-05-05T16:30:27.810 に答える