如何在 PHP 中创建表格的纯文本表示形式?
我将介绍一些背景。我正在开发按点击付费引擎,并且在生成包含用户列表和带有费率/总计列的点击次数的报告(每日、每周、每月)时遇到问题。出于兼容性原因,我想以纯文本格式表示此信息,同时也因为我讨厌 HTML 邮件。
我应该尝试这样做吗?或者只是向他们发送通知,告知他们的发票/摘要在应用程序中可用?
I will give a little background. I'm working on a pay-per-click engine, and I am running into a problem generating reports (daily, weekly, monthly) that contain a user's listings and clicks with a rate / total column. I want to represent this information in plain-text format for compatibility reasons, and also because I hate HTML mail.
Should I try to do this? Or just send them a notification that their invoice / summary is available in the application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您不想重新发明轮子,可以使用 pear console_table 或我的一个微小但有效的函数http://stereofrog.com/blok/on/070116。
in case you prefer not to reinvent the wheel, there's pear console_table or a tiny but working function of mine http://stereofrog.com/blok/on/070116.
您可以循环遍历数据列表并使用 sprintf 函数 (http://php.net/manual/en/function.sprintf.php) 显示每一行,同时保持一致的间距。
您可以使用 str_pad 函数类似地完成保持一致的间距(http://us3.php.net/manual/en/function.str-pad.php)
You can loop through the lists of data and use the sprintf function (http://php.net/manual/en/function.sprintf.php) to display each line while maintaining consistent spacing.
You can similarly accomplish maintaining constitent spacing with the str_pad function (http://us3.php.net/manual/en/function.str-pad.php)