stdout和stderr_如何在PHP中将行打印到STDERR和STDOUT?

stdout和stderr

In PHP, how to print a string as a line to STDOUT? That is, the string and the newline character, nicely?

PHP中,如何打印字符串作为一行到标准输出 ? 也就是说,字符串和换行符很好吗?

And similarly, how to print the line to STDERR?

同样,如何将行打印到STDERR?

In PHP, you may print a line to STDOUT using echo by appending the PHP_EOL to the string:

PHP中 ,您可以通过将PHP_EOL附加到字符串中,使用echo将行打印到STDOUT:

echo $your_msg . PHP_EOL;

For example,

例如,

$ php -a
Interactiveshell

php > echo "hello world!" . PHP_EOL;
hello world!
php > 

To print to STDERR, you may use fwrite like

要打印到STDERR,可以使用fwrite

fwrite(STDERR, "hello, world!" . PHP_EOL);

One example is as follows.

一个例子如下。

$ cat php-stderr.php 
<?php
fwrite(STDERR, "hello, world!" . PHP_EOL);

$ php php-stderr.php 2>/tmp/stderr
$ cat /tmp/stderr 
hello, world!
Answered by dtivl.
dtivl回答。

翻译自: https://www.systutorials.com/how-to-print-a-line-to-stderr-and-stdout-in-php/

stdout和stderr

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值