Jump to content
Fórum Script Brasil
  • 0

Algoritmo em Background agendado


m3io

Question

Boas pessoal, eu não sou muito de pedir logo ajuda sem tentar resolver eu primeiro, e agora bati num problema que não sou capaz de resolver por nada muito menos o que posso usar, a situacao é a seguinte:

  • tenho uma tabela (mysql) com centenas de registos
  • e tenho uma hora noutra tabela
  • e gostava que o servidor executa-se todos os dias aquela hora um script
  • que por exemplo escolhe 90% dos registos

mas sem que fosse o cliente a lançar o evento ou seja mesmo sem visitantes, o servidor auto executar.

alguém tem alguma ideia para eu me poder guiar por favor?

já tenho um countdown no cliente a avisar que falta x minutos para o site ficar em manutencao

$tempo = date("F j, Y ") . $this->inicio_model->get_time($base);
        $time = str_replace('"', "", $tempo);
        $agora = strtotime(date("H:i:s"));
        $bdTime = strtotime($time);
        
        if ($agora > $bdTime) {
            $data['offline'] = true;
            $tomorrow = mktime(0, 0, 0, date("m"), date("d") + 1, date("Y"));
            $amanha = date("F j, Y ", strtotime(date("Y/m/d", $tomorrow)));
            $tempo = $amanha . $this->inicio_model->get_time($base);
        } else {
            $data['offline'] = false;
            $tempo = date("F j, Y ") . $this->inicio_model->get_time($base);
        }

tipo auto executar

if($data['offline']==true)
  $this->escolherMembros();

mas dai para a frente não consigo avancar mais.

obrigado desde já

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652.1k
×
×
  • Create New...