php exec获取的输出不完整
Exec 获取到的输出不完整:
$process = exec('ps -ef |grep vt4e-ywew-cdd1-taqm-69v1| grep -v grep', $output, $rtn);
可以增加 -ww参数:增加输出宽度
$process = exec('ps -efww |grep vt4e-ywew-cdd1-taqm-69v1| grep -v grep', $output, $rtn);
Exec 获取到的输出不完整:
$process = exec('ps -ef |grep vt4e-ywew-cdd1-taqm-69v1| grep -v grep', $output, $rtn);
可以增加 -ww参数:增加输出宽度
$process = exec('ps -efww |grep vt4e-ywew-cdd1-taqm-69v1| grep -v grep', $output, $rtn);