Php, wait 5 seconds before executing an action

前端 未结 7 489
执笔经年
执笔经年 2021-02-05 00:42

I have a .php script that I use for creating the list of my products. I am on shared hosting, so I can\'t do a lot of queries otherwise I get a blank page.

This

相关标签:
7条回答
  • 2021-02-05 01:09

    use:

    sleep(NUMBER_OF_SECONDS);
    
    0 讨论(0)
  • 2021-02-05 01:12

    In https://www.php.net/manual/es/function.usleep.php

    <?php
    // Wait 2 seconds
    usleep(2000000);
    
    // if you need 5 seconds
    usleep(5000000);
    ?>
    
    0 讨论(0)
  • 2021-02-05 01:13

    In Jan2018 the only solution worked for me:

    <?php
    
    if (ob_get_level() == 0) ob_start();
    for ($i = 0; $i<10; $i++){
    
        echo "<br> Line to show.";
        echo str_pad('',4096)."\n";    
    
        ob_flush();
        flush();
        sleep(2);
    }
    
    echo "Done.";
    
    ob_end_flush();
    

    ?>

    0 讨论(0)
  • 2021-02-05 01:16

    before starting your actions, use

     sleep(5);
    
    0 讨论(0)
  • 2021-02-05 01:21

    i use this

        $i = 1;
        $last_time = $_SERVER['REQUEST_TIME'];
        while($i > 0){
            $total = $_SERVER['REQUEST_TIME'] - $last_time;
            if($total >= 2){
                // Code Here
                $i = -1;
            }
        }
    

    you can use

    function WaitForSec($sec){
        $i = 1;
        $last_time = $_SERVER['REQUEST_TIME'];
        while($i > 0){
            $total = $_SERVER['REQUEST_TIME'] - $last_time;
            if($total >= 2){
                return 1;
                $i = -1;
            }
        }
    }
    

    and run code =>

    WaitForSec(your_sec);
    

    Example :

    WaitForSec(5);
    

    OR you can use sleep

    Example :

    sleep(5);
    
    0 讨论(0)
  • 2021-02-05 01:25

    I am on shared hosting, so I can't do a lot of queries otherwise I get a blank page.

    That sounds very peculiar. I've got the cheapest PHP hosting package I could find for my last project - and it does not behave like this. I would not pay for a service which did. Indeed, I'm stumped to even know how I could configure a server to replicate this behaviour.

    Regardless of why it behaves this way, adding a sleep in the middle of the script cannot resolve the problem.

    Since, presumably, you control your product catalog, new products should be relatively infrequent (or are you trying to get stock reports?). If you control when you change the data, why run the scripts automatically? Or do you mean that you already have these URLs and you get the expected files when you run them one at a time?

    0 讨论(0)
提交回复
热议问题