sprintf jest twoim przyjacielem, jeśli musisz mieć wyjście inne niż HTML o stałej szerokości.
ETA:
//id: integer, max width 10
//code: string max width 2
$divider=sprintf("+%-10s+%-13s+",'-','-');
$lines[]=$divider;
$lines[]=sprintf("|%10s|%13s|",'id','countryCode'); //header
$lines[]=$divider;
while($line=$records->fetch_assoc()) {
//store the formatted output
$lines[]=sprintf("| %10u | %2.2s |", $line['id'],$line['code']);
}
$table=implode("\n",$lines);
echo $table;
Jeśli chcesz wydrukować natychmiast, zamiast przechowywać wyniki, użyj printf
zamiast tego ta sama składnia. Istnieje rozsądny samouczek PHP (s)printf tutaj .