从 php 将新行输出到 shell 的最佳方法是什么?
我喜欢在 PHP 脚本运行时向 shell 输出大量详细信息。
我有很多这样的行:
echo "\n\n" . __method__ . " - PDF file does not exist.";
我的代码中到处都有这么多 \n
,这让我很烦恼。有更好的方法吗?也许我缺少一些简单的东西?
在一些主要的 php 库中执行此操作的首选方法是什么?
I like to output a lot of detail to the shell when my PHP scripts are running.
I have a lot of lines like this:
echo "\n\n" . __method__ . " - PDF file does not exist.";
It bugs the hell out of me that there are so many \n
s everywhere in my code. Is there a better way to do this? Is there something simple that I'm missing, perhaps?
What are some preferred ways to do this in some major php libraries?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
PHP 中没有标准方法。
但你可以编写一个函数来做到这一点......
No standard way in PHP.
But you could write a function to do that....
我已经测试了这个方法和其他方法,但没有一个有效。
它的工作方式生锈是像
我想在我的代码上有一个漂亮的缩进样式,所以我创建了一个小函数来解决它。
这样我就只需要写
简单的东西。
希望它对任何人都有帮助!
I'v tested this and other ways of doing it, but none worked.
The rusty way it works is having something like
I wanna have a nice indent style on my code, so I created a small function to solve it.
This way I will only have to write
Easy stuff.
Hope it helps anyone!