gpt4 book ai didi

wordpress - 如何按预定的时间间隔自动运行函数?

转载 作者:行者123 更新时间:2023-12-03 06:59:26 29 4
gpt4 key购买 nike

我正在为 WordPress 网站开发一个插件,我想在每个月的第一天生成一份报告并将其发送给用户/管理员。

在服务器中创建 Cron 作业将是一个完美的解决方案,但以编程方式创建 Cron 作业几乎没有障碍,因为服务器之间的过程有所不同(我猜)。因此,我正在考虑使用 WordPress 功能,而不是在执行此作业的服务器中创建 Cron 作业。

如果你们对此有任何想法,请告诉我。

最佳答案

如果间隔时间已过,它们只会在 WordPress 加载时运行

add_filter( 'cron_schedules', 'isa_add_every_three_minutes' );
function isa_add_every_three_minutes( $schedules ) {
$schedules['every_three_minutes'] = array(
'interval' => 60,
'display' => __( 'Every 1 Minutes', 'textdomain' )
);
return $schedules;
}

// Schedule an action if it's not already scheduled
if ( ! wp_next_scheduled( 'isa_add_every_three_minutes' ) ) {
wp_schedule_event( time(), 'every_three_minutes', 'isa_add_every_three_minutes' );
}

// Hook into that action that'll fire every three minutes
add_action( 'isa_add_every_three_minutes', 'every_three_minutes_event_func' );
function every_three_minutes_event_func() {
$content = "some text here";
$fp = fopen($_SERVER['DOCUMENT_ROOT'] . "/wordpressrootfolder/".time()."-myText.txt","wb");
fwrite($fp,$content);
fclose($fp);
}

关于wordpress - 如何按预定的时间间隔自动运行函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60333447/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com