我正在使用 PDF2SWF 转换 PDF 并使用 XPDF 进行索引 .. 与 exec .. 仅这需要执行时间非常长。

是否可以将其作为后台进程运行,然后在完成转换后启动脚本?

最佳答案

一般来说,php 不实现线程。

但是有一个 ZF 级可能适合您:

http://framework.zend.com/manual/en/zendx.console.process.unix.overview.html



合适的例子:

class MyProcess extends ZendX_Console_Process_Unix
{
    protected function _run()
    {
        // doing pdf and flash stuff
    }
}

$process1 = new MyProcess();
$process1->start();

while ($process1->isRunning()) {

    sleep(1);

}

echo 'Process completed';

.

关于后台进程完成后的PHP启动脚本?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2414498/

10-10 13:32