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
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 ?

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

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

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  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.

×
×
  • 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.