gpt4 book ai didi

php proc_open 如何检测命令是否完成/proc_open() 至少需要 3 个参数

转载 作者:行者123 更新时间:2023-12-04 23:27:53 26 4
gpt4 key购买 nike

这是我的代码

$descriptorspec = array( 0 => array("pipe", "r") );
$call_mp4 = "ffmpeg command ...... ";
$openMp4 = proc_open($call_mp4, $descriptorspec , $pipe);
$isMp4stillcompressing = proc_get_status( $openMp4 );
while ( $isMp4stillcompressing['running'] ) {
echo '• ';
}

我的“错误”是它没有尽头;(

这是为什么 ?

我的主要目标是在转换时输出一个点或其他信息

谢谢

最佳答案

按此顺序,变量 $isMp4stillcompressing将在 while 循环外设置一次,并在循环内永远保持为真。每次循环运行时都需要检查:

$isMp4stillcompressing  = proc_get_status( $openMp4 );

while ( $isMp4stillcompressing['running'] ) {
echo '• ';
$isMp4stillcompressing = proc_get_status( $openMp4 );
}

关于php proc_open 如何检测命令是否完成/proc_open() 至少需要 3 个参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36525661/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com