Symfony2 - process launching a symfony2 command

后端 未结 2 1102
鱼传尺愫
鱼传尺愫 2021-01-22 10:43

My goal is to launch some time consuming functions in the background to avoid user to wait before the server response is rendered.

I have a Symfony project where I am la

2条回答
  •  余生分开走
    2021-01-22 10:52

    I found a workaround to this problem using exec instaed of creating a new Process object.

    exec('/usr/bin/php '.$this->get('kernel')->getRootDir().'/console scopusftpupload ' . escapeshellcmd($params) . ' > /dev/null 2>&1 &');
    

提交回复
热议问题