使用该exec()
功能时出现以下错误:
string(25) "/etc/init.d/mast list-log"
array(1) { [0]=> string(44) "tput: No value for $TERM and no -T specified" }
tput: No value for $TERM and no -T specified
我的命令/etc/init.d/mast list-log
在重新启动之前一直在工作。我看不出有什么区别。
源代码
public static function execute($_ = null, $debug=true) {
$_ = $debug ? $_." 2>&1" : $_;
exec("$_ | aha --word-wrap --no-header", $output, $exitCode);
return $output;
}
问题
你对如何解决这个问题有什么建议吗?