php 客户端和浏览器的不同输出

发布于 2024-11-03 19:17:58 字数 372 浏览 4 评论 0原文

也许我的问题很简单,但我无法回答。

我有这个小 php 代码:

<?php

$line="echo 'hello' | lpr -Pmyprinter";
$out=system($line,$output);
?>

当我使用命令行执行此代码时(我使用 linux 和 php 5.3.6 和 apache 2.2.17),它会在 myprinter 中打印“hello”。

如果我使用浏览器执行此代码,看起来管道会被忽略!

我尝试过 exec()、passthru() 等,结果是相同的。

感谢您的帮助。

PS:我之前用 PHP 5.1 运行过这段代码。?????

Maybe my question is simple, but I'm not able to answer it.

I have this little php code:

<?php

$line="echo 'hello' | lpr -Pmyprinter";
$out=system($line,$output);
?>

When I execute this code using my command line (I use linux with php 5.3.6 and apache 2.2.17) it's printed 'hello' in myprinter.

If I execute this code using my browser it looks like the pipe is ignored!

I have tried with exec(), passthru(), etc. and results are the same.

Thanks for your help.

P.S: I ran previously this code with PHP 5.1.¿¿??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

傲鸠 2024-11-10 19:17:58

尝试使用以下方法:

echo `echo hello | lpr -Pmyprinter`

Try using the following:

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