在列中显示php-cli输出

前端之家收集整理的这篇文章主要介绍了在列中显示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

如何?

:) 谢谢

您可以使用 pad $name来确保标准字符数.只需确保字符数(20)等于或大于最长名称的长度:
echo str_pad( $name,20 ) . $work . "\n";
原文链接:https://www.f2er.com/php/134915.html

猜你在找的PHP相关文章