Of course, you can use at or cron and pass the -R flag to PHP to execute the command line:
# Run phpinfo() at 12:30... echo php -R 'phpinfo();' | at 12:30
Or it might be better to invoke a file that may contain several commands
echo 'php /path/to/yourfile.php' | at 12:30
source share