Execute a colorized command from a php script(从 php 脚本执行彩色命令)
问题描述
我有一个命令,例如git diff",当我从终端运行它时会输出彩色结果.
I have a command, for example 'git diff' that output a colorized result when I run it from the terminal.
现在,我想从 CLI php 脚本调用该命令并在控制台中显示彩色结果.我尝试使用 exec()、system()、passthru(),但在所有情况下,输出都已转换为纯黑白文本.
Now, I want to call that command from a CLI php script and display in the console the colorized result. I have try with exec(), system(), passthru() but in all case the output has been converted to plain black and white text.
有没有办法保留标准结果的颜色?如果没有,有人知道为什么这些信息会丢失吗?
Is there a way to preserve the color of the standard result? If not, does someone know why this information get lost?
推荐答案
您正在运行的命令很可能正在检查输出是否到终端,如果不是,则不对其进行着色.通常有一种方法可以强制它,但这将特定于命令本身;git diff
的情况下,可以指定--color=always
.
In all likelihood the command you are running is checking to see if output is to a terminal and not colorizing it if it isn't. There is usually a way to force it, but that's going to be specific to the command itself; in the case of git diff
, you can specify --color=always
.
这篇关于从 php 脚本执行彩色命令的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从 php 脚本执行彩色命令
- PHP Count 布尔数组中真值的数量 2021-01-01
- 带有通配符的 Laravel 验证器 2021-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01
- SoapClient 设置自定义 HTTP Header 2021-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- Laravel 仓库 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01