码迷,mamicode.com
首页 > 编程语言 > 详细

php 打印数组格式化显示

时间:2019-12-01 15:23:41      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:bsp   volume   vol   自动   换行   pre   格式   添加   print   

输出前添加 <pre>,便可以自动格式化换行显示。

print_r("<pre>");

 

比如打印数组 : print_r($arr);

输出:

Array ( [0] => Array ( [volume] => id100343 [weight] => 4 ) [1] => Array ( [volume] => id100212 [weight] => 1 ) [2] => Array ( [volume] => id104104 [weight] => 10 ) )

 

添加<pre> 后,看起来就清晰很多

print_r("<pre>");

print_r($arr);

输出:

Array
(
[0] => Array
(
[volume] => id100343
[weight] => 4
)

[1] => Array
(
[volume] => id100212
[weight] => 1
)

[2] => Array
(
[volume] => id104104
[weight] => 10
)

)
————————————————

 

php 打印数组格式化显示

标签:bsp   volume   vol   自动   换行   pre   格式   添加   print   

原文地址:https://www.cnblogs.com/lazb/p/11966102.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!