我想與可變長度的輸出數據在列在一個PHP-CLI腳本顯示PHP-CLI輸出
實施例:
$pepole = Array(
'Mirco Dellarovere' => 'Artista',
'Nino Pepe' => 'Attore',
'Zoe Yan' => 'Futurista',
'Mino' => 'Elettricista'
);
foreach($pepole as $name => $work)
{
echo "$name\t$work\n";
}
的輸出將是
Mirco Dellarovere Artista
Nino Pepe Attore
Zoe Yan Futurista
Mino Elettricista
但我想要這樣
Mirco Dellarovere Artista
Nino Pepe Attore
Zoe Yan Futurista
Mino Elettricista
ho w到?
:)謝謝
你需要使用足夠的製表符,以考慮每列儘可能多的文本。如果沒有其他,請嘗試輸出'\ t \ t \ t'而不是'\ t'。 –