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

2021-05-13 00:27

阅读:501

标签: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("

"); // 格式化输出数组
var_dump($sites);
print("
");
 1,普通输出 

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

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

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

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


评论


亲,登录后才可以留言!