Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
while(1){
check time here
if (its time) {
do your thing
}
else {
sleep(n);
next;
}
}
use FB::ParseCron;
sub checkCron
{
my ($function,$client) = @_;
my %hash = %{$function};
my $value = $hash{CRON}[0];
my $c;
if ($value)
{
$c = FB::ParseCron->new($value);
}
if ($c->now)
{
return 0;
}
return 1;
}