Answers for "setinterval in php"

7

jquery call function every second

setInterval(function(){ 
    //this code runs every second 
}, 1000);
Posted by: Guest on August-01-2019
1

setinterval php

setInterval(function(){
       echo "hi!\n";
}, 1000);
Posted by: Guest on October-16-2020
1

setinterval php

function setInterval($f, $milliseconds)
{
       $seconds=(int)$milliseconds/1000;
       while(true)
       {
           $f();
           sleep($seconds);
       }
}
Posted by: Guest on October-16-2020
15

js setinterval

function func(){
  console.log("Ran")
}
setInterval(func,1000)//Runs the "func" function every second
Posted by: Guest on March-07-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language