脚本在命令行后不会继续

cla*_*rkk 8 php pdf command-line poppler

我有一个带命令行的脚本的问题.. PHP脚本永远不会继续..

试图通过putty直接调用命令行,它输出很多错误但是立即返回/完成.为什么不返回PHP呢?

它适用于其他PDF文件,但不适用于此

PDF格式

http://docdro.id/b0M5vfw

$Cmd = new Command;
if($err = $Cmd->exec('/var/bin/poppler-0.51.0/utils/pdfimages -list /var/test.pdf')){
    echo "ERR: $err\n";
}
echo "continue\n";
Run Code Online (Sandbox Code Playgroud)

class Command {
    private $descriptorspec;

    private $output = '';

    private $process;
    private $pipes = [];

    public function __construct(){
        $this->descriptorspec = [
            0 => ['pipe', 'r'], // stdin
            1 => ['pipe', 'w'], // stdout
            2 => ['pipe', 'w']  // stderr
        ];
    }

    public function output(): string{
        return $this->output;
    }

    public function close(){
        foreach($this->pipes as $pipe){
            if(is_resource($pipe)){
                fclose($pipe);
            }
        }

        proc_close($this->process);
    }

    public function exec(string $syntax){
        $this->process = proc_open($syntax, $this->descriptorspec, $this->pipes);
        fclose($this->pipes[0]);

        $this->output = stream_get_contents($this->pipes[1]);

        $stderr = stream_get_contents($this->pipes[2]);

        $this->close();

        return $stderr;
    }
}
Run Code Online (Sandbox Code Playgroud)

错误

# /var/bin/poppler-0.51.0/utils/pdfimages -list /var/test.pdf
page   num  type   width height color comp bpc  enc interp  object ID x-ppi y-ppi size ratio
--------------------------------------------------------------------------------------------
   1     0 image    2154   303  rgb     3   8  jpeg   yes  [inline]     289   292    -    -
Syntax Error (50560): Illegal character '>'
Syntax Error (50560): Unknown operator '<10><07><82>;w<ad><a2><b4>2r<1f><10><07><8f>~j<c4>Hq<cf>Z<86>'
Syntax Error (50568): Unknown operator '<0f><b5>X<8f><ae><d0>:<d7>DU<91><cb>'v'
Syntax Error (50568): Illegal character ')'

........

Syntax Error (66698): Illegal character <04> in hex string
Syntax Error (66699): Illegal character <ff> in hex string
Syntax Error (66699): Illegal character <c1> in hex string
Syntax Error (66705): Unknown operator '<9b>'
Syntax Error (66714): Illegal character ')'
Syntax Error (66714): Unknown operator '<bc>q<ff>'
Syntax Error (66720): Unknown operator '<05>6<f8><c2><fa><d7><c3>?<f8>'
Syntax Error (66741): Unknown operator '<df><ec><99><e1>-'
Syntax Error (66743): Unknown operator ']'
Syntax Error (66762): Unknown operator '<cc>'
Syntax Error: Unterminated string
Syntax Error: End of file inside array
Syntax Error: End of file inside array
Syntax Error: Leftover args in content stream
Run Code Online (Sandbox Code Playgroud)

Bra*_*ley 7

PDF存在问题 - @dwarring已经在评论中提到了这一点(此处引用此信息称赞评论者)

@dwarring说"很快,我很确定这个PDF正在濒临死亡,因为内容流包含一个内联图像,并且'BI'后跟随机数据,然后以'EI'结束.Adobe工程师正在关闭当他们设计这些操作符的那一天,问题是二进制数据随机包含'EI'并使PDF不可解决的情况出现.一些工具可以更好地处理这个问题,但理想情况下,这个图像的制作者应该避免使用内联图像. "

但是,从PHP方面来说,使用try/catch块而不是if语句,你应该保留对脚本的控制.

$Cmd = new Command;

try {
    $err = $Cmd->exec('/var/bin/poppler-0.51.0/utils/pdfimages - list/var/test.pdf')){
} catch (Exception $e) {
    var_log($e);
}

echo "continue\n";
Run Code Online (Sandbox Code Playgroud)