作者:琦玉老师 | 来源:互联网 | 2014-06-12 18:37
如果改变了conf/config.php文件中的配置信息,那么需要删掉runtime/~runtime.php,否则:会出现系统信息错误.比如我在配置完数据库信息后:<?ph...
如果改变了conf/config.php文件中的配置信息,那么需要删掉runtime/~runtime.php,否则:会出现系统信息错误.
比如我在配置完数据库信息后:
- if (!defined(&#39;THINK_PATH&#39;)) exit();
- return array(
- &#39;DB_TYPE&#39;=>&#39;mysql&#39;,
- &#39;DB_HOST&#39;=>&#39;localhost&#39;,
- &#39;DB_NAME&#39;=>&#39;myapp&#39;,
- &#39;DB_USER&#39;=>&#39;root&#39;,
- &#39;DB_PWD&#39;=>&#39;yzw&#39;,
- &#39;DB_PORT&#39;=>&#39;3306&#39;,
- &#39;DB_PREFIX&#39;=>&#39;think_&#39;,
- );
- ?>
信息一直刷不出来,直到我删除了~runtime.php之后就好了:
- public function index() {
-
-
- $Form = D("Form");
- $result = $Form->findAll();
- dump($result);
- }
然后输出的信息为:
- array(1) { [0] => array(7) { ["id"] => string(1) "1" ["title"] => string(18) "这是测试数据" ["content"] => string(4) "dfdf" ["create_time"] => string(10) "1212724876" ["update_time"] => string(1) "0" ["status"] => string(1) "1" ["email"] => string(12) "dddd@ddd.com" } }