我有一个数组:
array:2 [▼
0 => true
1 => "2015-08-26 08:42:51"
]
我可以访问$arr[1] = "2015-08-26 08:42:51"
- 但是,如果我这样做:strtotime($arr[1])
我得到:未定义的偏移:1
可能导致此问题的原因是什么?位置1的数组已设置..
编辑:
public static function in_date_range($needle, $date_from, $date_to)
{
$start_date = strtotime($needle[1]);
}
我叫它:
$date = $status['resource_completed'];
if(Helper::in_date_range($date,
strtotime($from_date"),
strtotime($to_dat)))
{
}
其中:
$date = array:2 [▼
0 => true
1 => "2015-08-26 08:42:51"
]