Commit a33907f6 by djagya

Using VarDumper::dumpAsString() instead var_export() in the Request panel

parent 90af6453
...@@ -4,6 +4,7 @@ Yii Framework 2 debug extension Change Log ...@@ -4,6 +4,7 @@ Yii Framework 2 debug extension Change Log
2.0.0 beta under development 2.0.0 beta under development
---------------------------- ----------------------------
- Bug #1783: Using VarDumper::dumpAsString() instead var_export(), because var_export() does not handle circular references. (djagya)
- Bug #1504: Debug toolbar isn't loaded successfully in some environments when xdebug is enabled (qiangxue) - Bug #1504: Debug toolbar isn't loaded successfully in some environments when xdebug is enabled (qiangxue)
- Bug #1747: Fixed problems with displaying toolbar on small screens (cebe) - Bug #1747: Fixed problems with displaying toolbar on small screens (cebe)
- Bug #1827: Debugger toolbar is loaded twice if an action is calling `run()` to execute another action (qiangxue) - Bug #1827: Debugger toolbar is loaded twice if an action is calling `run()` to execute another action (qiangxue)
......
<?php <?php
use yii\helpers\Html; use yii\helpers\Html;
use yii\helpers\VarDumper;
/** /**
* @var string $caption * @var string $caption
...@@ -25,7 +26,7 @@ use yii\helpers\Html; ...@@ -25,7 +26,7 @@ use yii\helpers\Html;
<?php foreach($values as $name => $value): ?> <?php foreach($values as $name => $value): ?>
<tr> <tr>
<th style="width: 200px;"><?= Html::encode($name) ?></th> <th style="width: 200px;"><?= Html::encode($name) ?></th>
<td><?= htmlspecialchars(var_export($value, true), ENT_QUOTES|ENT_SUBSTITUTE, \Yii::$app->charset, true) ?></td> <td><?= htmlspecialchars(VarDumper::dumpAsString($value), ENT_QUOTES|ENT_SUBSTITUTE, \Yii::$app->charset, true) ?></td>
</tr> </tr>
<?php endforeach; ?> <?php endforeach; ?>
</tbody> </tbody>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment