我不知道为什么这不起作用,请帮忙。也许我使用了错误的功能?
// Haal nog te update feeds op en activeer ze
$update_activate_id = $wpdb->get_results(
"
SELECT id FROM wp_pmxi_imports WHERE last_activity <= now() + INTERVAL 1 DAY
AND triggered = '0'
"
);
foreach ( $update_activate_id as $update_activate_id )
{
shell_exec("php /home/*****/domains/*******.nl/public_html/wp-cron.php?
import_key=6Ela&import_id=".$update_activate_id->id."&action=trigger");
echo $update_activate_id->id.' In de wachtrij gezet!<br />';
}
exit();
答案 0 :(得分:0)
可能是这段代码 -
$update_activate_id = $wpdb->get_results(
"
SELECT id FROM wp_pmxi_imports WHERE last_activity <= now() + INTERVAL 1 DAY
AND triggered = '0'
"
);
没有按预期工作,这意味着可能是get_results()函数没有返回结果数组,它可能正在返回数组的对象!可能你需要解码相同的。只有在看到get_results()函数的实现后才能确认。