示例:
00:00 22-03-2017, John Wilson
08:00 22-03-2017, Gemma Arterton
16:00 22-03-2017, Arnold Plank
00:00 22-03-2017, Timmy Brouwer
08:00 22-03-2017, John Wilson <- names repeating
16:00 22-03-2017, Gemma Arterton
我正在建立一个轮班系统,生成接下来30天的时间和日期。我试图获得不同的相关名称,以获得回应,但是到目前为止还没有运气。 这些名称是互动的,意味着只有25个(可以这么说)。
这是我目前对功能代码的调用:
$month = $shift->date_range(date("Y-m-d"), date('Y-m-d', strtotime("+30 days")), "+" . $shift_facility['facility_shift_duration'] . " hours", "Y/m/d H:i:s", $user_per_facility);
这是我的功能本身:
public function date_range($first, $last, $step = '+1 day', $output_format = 'd/m/Y', $users)
{
$dates = array();
$current = strtotime($first);
$last = strtotime($last);
while ($current <= $last) {
// Add date and time to array $dates
$dates[] = date($output_format, $current) . ';' . $users[0]["user_id"];
//check if we are still in range between the two dates
$current = strtotime($step, $current);
}
return $dates;
}
$users
包含所有用户数据,例如:
array(2) {
[0]=>
array(5) {
["user_id"]=>
string(1) "3"
["user_alias"]=>
string(7) "ND12345"
["user_facility"]=>
string(2) "29"
["user_phone"]=>
string(5) "12345"
["user_name"]=>
string(9) "Jan steen"
}
[1]=>
array(5) {
["user_id"]=>
string(1) "7"
["user_alias"]=>
string(7) "ND68596"
["user_facility"]=>
string(2) "29"
["user_phone"]=>
string(11) "31115648597"
["user_name"]=>
string(8) "John Doe"
}
}
$users[0]["user_id"];
只输出名字,但我需要它们来交替(看第一个例子)。
有没有人有任何想法可以指出我正确的方向或帮助我一点?
提前致谢^^
编辑:更多详情
我的函数调用是在foreach中:
foreach ($facility->getfacilities() as $shift_facility) {
$user_per_facility = $user->getusersbyFacilityId($shift_facility['facility_id']);
if (isset($user_per_facility[0]["user_id"])) {
//if shift count > dan db results generate new day
$month = $shift->date_range(date("Y-m-d"), date('Y-m-d', strtotime("+30 days")),
"+" . $shift_facility['facility_shift_duration'] . " hours", "Y/m/d H:i:s", $user_per_facility);
}
}
答案 0 :(得分:1)
您正在向$users
方法发送整个date_range()
数组,您应该只向该方法发送该数组的一个实体(例如,单个用户)。
您正在该方法中调用$users[0]
,该方法将始终引用该数组中的第一个(第0个)元素,而不是您正在寻找的特定元素。
问题从这个块开始:
if (isset($user_per_facility[0]["user_id"])) {
//if shift count > dan db results generate new day
$month = $shift->date_range(date("Y-m-d"), date('Y-m-d', strtotime("+30 days")),
"+" . $shift_facility['facility_shift_duration'] . " hours", "Y/m/d H:i:s", $user_per_facility);
}
仅检查是否在第一个数组元素中设置了user_id
。您还需要遍历users数组:
foreach ($facility->getfacilities() as $shift_facility) {
$user_per_facility = $user->getusersbyFacilityId($shift_facility['facility_id']);
// Make sure $users_per_facility can be iterated over
if (count($users_per_facility) > 0 && is_array($users_per_facility))
foreach ($users_per_facility as $u) {
if (isset($u["user_id"])) {
//if shift count > dan db results generate new day
$month = $shift->date_range(date("Y-m-d"), date('Y-m-d', strtotime("+30 days")),
"+" . $shift_facility['facility_shift_duration'] . " hours", "Y/m/d H:i:s", $u);
}
}
}
}
然后修改date_range()
方法只采用单个用户元素,而不是整个数组。为了澄清,我将$users
更改为$user
,因为只有一个“用户”被发送到该方法:
public function date_range($first, $last, $step = '+1 day', $output_format = 'd/m/Y', $user) {
$dates = array();
$current = strtotime($first);
$last = strtotime($last);
while ($current <= $last) {
// Add date and time to array $dates
$dates[] = date($output_format, $current) . ';' . $user["user_id"];
//check if we are still in range between the two dates
$current = strtotime($step, $current);
}
return $dates;
}
我还建议您重新排序date_range
方法的参数列表。我建议先放$user
:
public function date_range($user, $first, $last, $step = '+1 day', $output_format = 'd/m/Y')
此外,为你的方法(函数)命名一个动词是很好的惯例,因为它们“做”了一些东西。在这种情况下,make_date_range
。由于我可以看到这是一个类(具有public
关键字),因此将方法名称camelCase
设置为一个好习惯,例如makeDateRange()
,同时使用下划线保留变量。不需要任何方式,但这是一种很好的做法。
希望这有帮助。
答案 1 :(得分:0)
如果人们偶然发现同一问题:
我通过创建变量$i
解决了这个问题,如果它超过var $users
的大小,则将其设置回值0。
(以及计算每个成功的行)
$i = 0;
if ($i > count($users)-1) {
$i = 0;
}
// Add date and time to array $dates
$dates[] = date($output_format, $current) . ';' . $users[$i]["user_id"];
//check if we are still in range between the two dates
$current = strtotime($step, $current);
$i++;