php cronjobs code example
Example: schedule cron for 12lakh members in php
public function exec()
{
$argument_count = func_num_args();
try
{
if ( ! $argument_count) throw new Exception("There is nothing to execute, no arguments specified.");
}
catch
{
}
}