芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/vendor/barryvdh/laravel-debugbar/src/Twig/Extension/Debug.php
bound('debugbar')) { $this->debugbar = $app['debugbar']; } else { $this->debugbar = null; } } /** * {@inheritDoc} */ public function getName() { return 'Laravel_Debugbar_Debug'; } /** * {@inheritDoc} */ public function getFunctions() { return [ new Twig_SimpleFunction( 'debug', [$this, 'debug'], ['needs_context' => true, 'needs_environment' => true] ), ]; } /** * Based on Twig_Extension_Debug / twig_var_dump * (c) 2011 Fabien Potencier * * @param Twig_Environment $env * @param $context */ public function debug(Twig_Environment $env, $context) { if (!$env->isDebug() || !$this->debugbar) { return; } $count = func_num_args(); if (2 === $count) { $data = []; foreach ($context as $key => $value) { if (is_object($value)) { if (method_exists($value, 'toArray')) { $data[$key] = $value->toArray(); } else { $data[$key] = "Object (" . get_class($value) . ")"; } } else { $data[$key] = $value; } } $this->debugbar->addMessage($data); } else { for ($i = 2; $i < $count; $i++) { $this->debugbar->addMessage(func_get_arg($i)); } } return; } }