当前位置:首页 > CMS教程 > Thinkphp > 列表

TP config.php改变之后

发布:smiling 来源: PHP粉丝网  添加日期:2014-04-19 14:18:46 浏览: 评论:0 

如果改变了conf/config.php文件中的配置信息,那么需要删掉runtime/~runtime.php,否则:会出现系统信息错误.

比如我在配置完数据库信息后:

  1. <?php 
  2. if (!defined('THINK_PATH')) exit(); 
  3. return array
  4. 'DB_TYPE'=>'mysql'// 使用的数据库是mysql 
  5. 'DB_HOST'=>'localhost'
  6. 'DB_NAME'=>'myapp',// 数据库名 
  7. 'DB_USER'=>'root'
  8. 'DB_PWD'=>'yzw',// 填写你连接数据库的密码 
  9. 'DB_PORT'=>'3306'
  10. 'DB_PREFIX'=>'think_'// 数据表表名的前缀 请参看http://thinkphp.cn/Article/10 
  11. ); 
  12. ?> 

信息一直刷不出来,直到我删除了~runtime.php之后就好了:

  1. public function index() { 
  2.     //$this->assign('str',"hello "); 
  3.      //$this->display(); 
  4.       $Form = D("Form"); 
  5.       $result  = $Form->findAll(); 
  6.       dump($result); 
  7.   } 

然后输出的信息为:

  1. 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" } } 

Tags: TP config php

分享到: