码迷,mamicode.com
首页 > Web开发 > 详细

php7格式化输出和普通输出区别

时间:2019-12-07 22:51:46      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:int   区别   href   格式化输出   com   ref   googl   run   搜索   

有时候我们需要格式化输出,平常我们都是普通输出,下面比较一下两者之间得区别

 1,格式化输出 pre

 $sites = array

(
"runoob"=>array
(
"php教程",
"http://www.dc3688.com"
),
"google"=>array
(
"Google 搜索",
"http://www.96net.com.cn"
),
"taobao"=>array
(
"淘宝",
"http://www.huthon.com"
)
);
print("<pre>"); // 格式化输出数组
var_dump($sites);
print("</pre>");

 1,普通输出 

 var_dump($sites);或者 print_r(($sites)

php7格式化输出和普通输出区别

标签:int   区别   href   格式化输出   com   ref   googl   run   搜索   

原文地址:https://blog.51cto.com/13959155/2456806

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