diff options
-rw-r--r-- | examples/broker/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/broker/index.php b/examples/broker/index.php index 2a5f12d..07ae5f5 100644 --- a/examples/broker/index.php +++ b/examples/broker/index.php @@ -29,7 +29,7 @@ if (!$user) { <dl class="dl-horizontal"> <?php foreach ($user as $key => $value) : ?> - <dt><?= $key ?></dt><dd><?= $value ?></dd> + <dt><?= $key ?></dt><dd><?= is_scalar($value) ? $value : var_dump($value) ?></dd> <?php endforeach; ?> </dl> |