PHP scheduling a task on webhosting without SSH/Console
问题 I have a php website that has a script that executes an update for my database with data from an external API. The script itself works perfectly fine but i need to time it so that it executes it every monday at 2:30 AM. I am using a webhosting where SSH is not available neither is any form of command execution such as exec() or passthru() . I've also looked at CRON jobs but i can't use that either because i have no access to a console. An other option i found was using threads with phthreads.