Created
January 10, 2017 03:18
-
-
Save EITANINOMIYA/10a7576db5bbc78e61ea84ffd4bcc782 to your computer and use it in GitHub Desktop.
【wordpress】定義済みのcronの確認
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*################################################# | |
# cronの確認 | |
#################################################*/ | |
<?php | |
$cron_s = get_option('cron'); | |
foreach($cron_s as $cron) { | |
foreach($cron as $cron_name => $args) { | |
foreach($args as $val) { | |
echo '登録名:'.$cron_name . " スケジュール:".$val['schedule']."<br>\n"; | |
break 2; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment