我收到错误:
rand()期望参数1为long,给定字符串
PHP代码:
// Set global last updated time
$ab_options['lastupdate'] = time();
ab_saveOptions();
$this->ab_logMsg('Setting last update time to '.date("g:i a", $ab_options['lastupdate']), AB_LOG_INFO + AB_LOG_ONLY, 'debug');
set_transient('Auto_LastRun', time(), 3600);
set_transient('Auto_Interval', rand($ab_options['mintime'], $ab_options['maxtime']), 86400);
答案 0 :(得分:0)
$ab_options['mintime']
必须是整数或数字字符串。尝试运行var_dump($ab_options['mintime']);
以查看值。这同样适用于第二个论点。