This returns an array of all scheduled WP cron events. For each cron event, it gives the hook name, the recurrence schedule, and the time interval in seconds.
_get_cron_array()
Example Usage
echo '<pre>'; print_r( _get_cron_array() ); echo '</pre>';
To print the list of scheduled events to the error log:
error_log( print_r( _get_cron_array(), true ) );
Questions and Comments are Welcome