php列印pre,php 列印格式化顯示利器

2021-10-25 21:53:14 字數 661 閱讀 2110

當我們php除錯的時候,用var_dump 或 print_r列印json資料或array陣列時,html頁面沒有換行顯示,看到的內容一大堆,不好定位。

輸出前新增 

,便可以自動格式化換行顯示。
print_r("

");
比如列印陣列 : print_r($arr);

輸出:array ( [0] => array ( [volume] => id100343 [weight] => 4 ) [1] => array ( [volume] => id100212 [weight] => 1 ) [2] => array ( [volume] => id104104 [weight] => 10 ) )

新增

後,看起來就清晰很多
print_r("

");
print_r($arr);

輸出:array

[0] => array

[volume] => id100343

[weight] => 4

[1] => array

[volume] => id100212

[weight] => 1

[2] => array

[volume] => id104104

[weight] => 10

php程式 印表機,PHP自動列印到網路印表機

如何實現php的自動列印?不需彈出提示窗 php var hkey root,hkey path,hkey key hkey root hkey current user hkey path software microsoft internet explorer pagesetup 設定頁首頁尾為...

php列印語句

php 5 echo 和 print 語句 在 php 中有兩個基本的輸出方式 echo 和 print。本章節中我們會詳細討論兩個語句的用法,並在例項中演示如何使用 echo 和 print。echo 和 print 區別 echo 可以輸出乙個或多個字串 print 只允許輸出乙個字串,返回值總...

C 列印格式小記

d,lx,ld,lu,這幾個都是輸出32位的 hd,hx,hu,這幾個都是輸出16位資料的,hhd,hhx,hhu,這幾個都是輸出8位的,lld,ll,llu,llx,這幾個都是輸出64位的,printf llu llu 是64位無符號 llx才是64位16進製制數 dev c 下基本資料型別學習小...