Jump to content

How can i put a cron timer to a script ?


Nuv

Recommended Posts

Hey,

 

When my backup.php is executed, i need my interrupt.php to start too and should run at an interval of 15mins, and before completion of my backup.php my interrupt.php should stop. Something like

 

<?php
//Start interrupt.php again and again at an interval of 15 mins

// Rest of my code here

//Stop interrupt.php

?>

 

Though i have no clue how to do that :shrug:. Any leads ? Is there any function for that ?

 

Thankyou. 

Link to comment
https://forums.phpfreaks.com/topic/263913-how-can-i-put-a-cron-timer-to-a-script/
Share on other sites

At(1) is new. Thankyou for that. Does it only work for Linux or Php running on windows too ?

 

Secondly, I was thinking of using http://us2.php.net/language.operators.execution. Add `interrupt.php`; in the code of backup.php.

 

And in interrupt.php ill use

 

<?php
while(1) {
//main interrupt code here
sleep(54000); // 54000 = 15 mins
}

 

Can something like that work ?

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.