网站地图    收藏   

主页 > 后端 > thinkphp教程 >

TP config.php改变之后 - Thinkphp

来源:自学PHP网    时间:2014-11-28 23:17 作者: 阅读:

[导读] 如果改变了conf config php文件中的配置信息,那么需要删掉runtime ~runtime php,否则:会出现系统信息错误 比如我在配置完数据库信息后:?ph...

TP config.php改变之后

如果改变了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" } } 

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论