1

最近我正在研究symfony。我创建了一个简单的表单,并希望提交该表单并将响应作为电子邮件发送给用户。

index我写如下:

    $product=new Product();
    $product->setName('rohit');
    $product->setPass('rohit');

    $form=$this->createFormBuilder($product)
    ->add('name','text')
    ->add('pass','password')
    ->getForm();

    $name='rohit';
        return $this->render('EnsNewBundle:Email:ind.html.twig',
    array('form'=>$form->createView(),'name'=>$name));

当我提交此表格时,应执行以下操作:

i) 它应该打印hello和 ii) 电子邮件进程应该在后台运行。

我试图写如下:

$client = new \Predis\Client();

      $client->lpush('emailid','ucerturohit@gmail.com');

      $u=$client->lrange('emailid',0,10);
  //notification_on_signup($u);

     var_dump($u);

    return $this->render('EnsNewBundle:Email:header.html.twig');

我应该纠正什么才能有效运行

4

1 回答 1

0

创建一个单独的 PHP 脚本来执行后台工作,并在您的主脚本中调用此脚本。关键是 & 符号!

<?php
$command = "/usr/bin/php5 -f /var/www/my/php/file.php";

exec( "$command > /dev/null &", $arrOutput );
?>
于 2012-08-22T12:34:01.630 回答