如何使用CRON作业或其他人在Linux中安排PHP作业?

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.

$ 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.