I want to convert cron values to human readable format.I have cron values that have 6 positions.these are the examples..
00 01 05 * * ?
0 0/5 * * * ?
I refer this http://mtdowling.com/blog/2012/06/03/cron-expressions-in-php/
but there are errors for 6 position cron values.
$cron = Cron\CronExpression::factory('0 0 0 ? 1/2 FRI#2 *');
echo $cron->getNextRunDate()->format('Y-m-d H:i:s');
error > **Invalid CRON field value 0 at position 2**
but 5 position cron values are work properly.
How can I solve this?thanks.