0

I'm trying to schedule the jobs in PHP but I didn't find any way to do that. I tried to use PHPJobScheduler but I couldn't do that. Plase help me do that.

vishgarg
  • 445
  • 1
  • 9
  • 24

1 Answers1

0
$ crontab -e

Then edit your cronjobs. For example, you add new job like this:

* * * * * /usr/bin/php /path/do/script.php

then your php jobs be work.

Deep
  • 2,472
  • 2
  • 15
  • 25