如何在 PHP 中创建表格的纯文本表示形式?

发布于 2024-10-08 05:16:36 字数 162 浏览 7 评论 0原文

我将介绍一些背景。我正在开发按点击付费引擎,并且在生成包含用户列表和带有费率/总计列的点击次数的报告(每日、每周、每月)时遇到问题。出于兼容性原因,我想以纯文本格式表示此信息,同时也因为我讨厌 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

萌辣 2024-10-15 05:16:36

如果您不想重新发明轮子,可以使用 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.

冷情妓 2024-10-15 05:16:36

您可以循环遍历数据列表并使用 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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文