我如何在php

时间:2016-12-21 07:34:31

标签: php wordpress

我想在每个迭代之前在这个for循环中睡觉。我尝试了sleep()这是行不通的。在每个通知之前我必须做一个时间延迟。

for($i = 0; $i <= 1; ++$i) {


echo '<script>

$(document).ready(function(e) 
{

 var title_txt = "' .$output[$i] .'";
 var body_txt = "' . $output1[$i] .'";
 var Img_url = "' . $output2[$i] .'";


    window.desktop_notify;

    desktop_notify= function(title_data,body_data,myImg)
    {
       var options =
       {
            title: title_data,
            options: 
            {
                body: body_data,
                icon: myImg,
                lang: "en-US",
                onClick: nav_topage
            }
        };
        jQuery("#easyNotify").easyNotify(options);
    };
    desktop_notify(title_txt,body_txt,Img_url);
  })

  </script>';
 }

0 个答案:

没有答案