- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在准备面试,我是 cakephp 的新手,在网上搜索时遇到了这个问题......
“当您使用 cakephp 运行应用程序时,第一个加载的文件是什么?”
回答:
面试官:当你使用cakephp运行应用程序时,第一个加载的文件是什么,
候选人:你能改变那个文件吗?面试官:是的
bootstrap.php,是的,它可以通过 index.php 或通过 htaccess
进行更改如果特定文件不可更改,则首先加载哪个文件。
我试图找出答案,但找不到。
有人可以帮我解决这个问题吗?
最佳答案
加载的第一个文件是 webroot 文件夹中的 index.php
(根据 .htaccess
重写规则),它将在包含路径中添加 CakePHP 的核心
CakePHP 1.3
if (!defined('CORE_PATH')) {
if (function_exists('ini_set') && ini_set('include_path', CAKE_CORE_INCLUDE_PATH . PATH_SEPARATOR . ROOT . DS . APP_DIR . DS . PATH_SEPARATOR . ini_get('include_path'))) {
define('APP_PATH', null);
define('CORE_PATH', null);
} else {
define('APP_PATH', ROOT . DS . APP_DIR . DS);
define('CORE_PATH', CAKE_CORE_INCLUDE_PATH . DS);
}
}
if (!include(CORE_PATH . 'cake' . DS . 'bootstrap.php')) {
trigger_error("CakePHP core could not be found. Check the value of CAKE_CORE_INCLUDE_PATH in APP/webroot/index.php. It should point to the directory containing your " . DS . "cake core directory and your " . DS . "vendors root directory.", E_USER_ERROR);
}
CakePHP 2.1
if (!defined('CAKE_CORE_INCLUDE_PATH')) {
if (function_exists('ini_set')) {
ini_set('include_path', ROOT . DS . 'lib' . PATH_SEPARATOR . ini_get('include_path'));
}
if (!include('Cake' . DS . 'bootstrap.php')) {
$failed = true;
}
} else {
if (!include(CAKE_CORE_INCLUDE_PATH . DS . 'Cake' . DS . 'bootstrap.php')) {
$failed = true;
}
}
然后在这两种情况下都包含 bootstrap.php
。
所以答案是:index.php
并且您不得修改它(除非您在某些 particular cases 中),然后 app/Config/bootstrap.php
和你 may modify it .
关于cakephp - 在 cakephp 中加载的第一个文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10611135/
我正在开发一个需要能够平均三个数字的 Facebook 应用程序。但是,它总是返回 0 作为答案。这是我的代码: $y = 100; $n = 250; $m = 300; $number = ($y
我只是无法弄清楚这一点,也找不到任何对我来说有意义的类似问题。我的问题:我从数据库中提取记录,并在我的网页上以每个面板 12 条的倍数显示它们。因此,我需要知道有多少个面板可以使用 JavaScrip
我是一名优秀的程序员,十分优秀!