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

有时候咱们须要格式化输出,日常咱们都是普通输出,下面比较一下二者之间得区别php

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)
相关文章
相关标签/搜索