调试方法改进

时间:2013-10-08 18:49:17

标签: php optimization laravel laravel-4 static-libraries

做自定义调试方法,我认为使用/创建一个库但是私有函数(如果同意我:控制器是类,对吗?)是一个很容易访问/使用的。

<?php
class CartController extends BaseController {
  // is well decalared?
  protected $var;

  public function index() {
    // https://github.com/Crinsane/LaravelShoppingcart#example
    Cart::instance('shopping')->add('192ao12', 'Product 1', 1, 9.99);
    Cart::instance('shopping')->add('1239ad0', 'Product 2', 2, 5.95, array('size' => 'large'));
    // want to use $cart
    $cart = Cart::content();
    // comment to continue
    $this->_debug($cart);

    /* code */
  }

  private function _debug($var) {
    $this->var = $var;
    // 'echo' is a little hero, a view? if i can't avoid it i'll do
    echo '<pre>';
    var_dump($this->var);
    echo '</pre>';
    die();
  }
}

$var充满了对象和事物,如何管理它而不使用几十个if

1 个答案:

答案 0 :(得分:1)

您必须在每个控制器中执行此操作。你应该为它创建一个辅助函数。别忘了在composer.json

上加载它
"autoload": {
    "files": ["app/lib/helpers/debug.php"]
}