简体   繁体   中英

How can I run a php script 24/7?

I have a php script which generates random values for two different variables in a different interval. I need to have this script run 24/7 and in the background (page must be closed). Any help would be appreciated. Thanks in advance.

I would suggest you to configure a cron job to resolve your problem. Loop in php is not good enought for this, as practice shows, because if php loop script just end with error it will never start again without your help.

Write an infinite loop and run the PHP file on the server.

while(true){
  // generates random values for two different variables in a different interval
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM