php exec returns less results than entering into command line directly(php exec 返回的结果比直接进入命令行少)
问题描述
我有一个 exec 命令,它的行为与通过 Penguinet 提供给 linux 的相同命令不同.
I have an exec command that is behaving differently than the same command given to linux through Penguinet.
$res = exec('cd /mnt/mydirectory/; zcat log_file.gz');
echo $res
将命令直接放入命令行时,我在日志文件中看到大约 100 个条目.但是,当我访问具有 exec()
命令的 PHP 页面时,我只看到 1 个.并且它的格式正确.为什么 PHP 只显示一个结果?如何让它显示文件的全部内容?
When putting the commands directly into the command line, I see about 100 entries in the log file. However when I access the PHP page that has the exec()
command, I see only 1. And it is formatted correctly. Why does PHP show me only one result? How can I make it show the entire contents of the file?
似乎只返回最后一行.我该如何改变?
Seems this is only returning only the last line. How can I change that?
推荐答案
试试这个:
exec('cd /mnt/mydirectory/; zcat log_file.gz', $res);
print_r($res);
这篇关于php exec 返回的结果比直接进入命令行少的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:php exec 返回的结果比直接进入命令行少
基础教程推荐
- HTTP 与 FTP 上传 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 使用 PDO 转义列名 2021-01-01