we7/?

we7 调试工具

v0.1.5 2018-03-15 07:07 UTC

This package is auto-updated.

Last update: 2024-09-16 03:37:52 UTC


README

  1. composer require we7/devtool v0.1.5
  2. 在 bootstrap.inc.php 文件的第一行加入
    include IA_ROOT.'/vendor/autoload.php';
    
  3. 在 bootstrap.inc.php 文件的最后一行加入
    we7debugbar();
    
  4. 修改 db.class.php 文件
    $pdo = new $dbclass($dsn, $cfg['username'], $cfg['password'], $options);
    	if(DEVELOPMENT && class_exists('\We7\Dev\DebugBar\W7\W7TraceablePDO')) {
    		$pdo = new \We7\Dev\DebugBar\W7\W7TraceablePDO($pdo);
    	}