Is there any way to automatically run PHP script on Hosting web server withour cron?

前端 未结 11 776
别跟我提以往
别跟我提以往 2021-01-13 14:48

I had a script which sends sms alerts everyday. I want it to send automatically send sms by fetching message from database. Can I do it without cron. Is there any other solu

11条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-13 15:42

    This isn't the best answer as it still requires cron somewhere, but you could always setup another machine that does have cron, like your home computer for instance, to hit a page on your site which triggers the action (using a library like curl or wget).

提交回复
热议问题