Php不支持的操作数类型
作者:互联网
我懂了:
$newcw = array_rand( range( 1, 52 ), 15 ) ;
shuffle($newcw);
$year = date("Y");
$time = mktime(0,0,0,1,1,$year) + ($newcw * 7 * 24 * 60 * 60);
$time = $time - ((date('N', $time) - 1) * 24 * 60 * 60);
$startWeek = date('D d-M-Y', $time);
$endWeek = date('D d-M-Y', $time + (6 * 24 * 60 * 60));
所以基本上我得到一个随机整数代表压延周.
我计算开始日(星期一)和结束日(星期日)
那个日历周.
但我得到以下错误:
Fatal error: Unsupported operand types in 88
第88行是这一行:
$time = mktime(0,0,0,1,1,$year) + ($newcw * 7 * 24 * 60 * 60);
编辑:
我想要一个随机整数,它不会重复,这就是我尝试这种方法的原因.
解决方法:
如果您只想要一个值,请使用常规的rand函数:
//$newcw = array_rand( range( 1, 52 ), 15 ) ;
//shuffle($newcw);
$newcw = rand(1,52);
http://php.net/manual/en/function.rand.php
但是,如果您实际上需要在脚本中稍后的某处使用其他14个值,则只需在此计算的已填充数组中选择第一个元素:
$newcw = array_rand( range( 1, 52 ), 15 ) ;
shuffle($newcw);
$year = date("Y");
$time = mktime(0,0,0,1,1,$year) + ($newcw[0] * 7 * 24 * 60 * 60); //<-- note [0]
然后根据需要使用其他值,每次都增加键,例如:
some_func($newcw[1]);
$val = $newcs[2] + 100;
//....
another_func($newcw[14];
标签:operand,php,date,time 来源: https://codeday.me/bug/20190829/1762772.html