-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 回答