В моем контроллере, как показано ниже, я вызываю функцию generate
, которая находится в моем model
.
Когда функция запускается, выдается сообщение об ошибке
Обнаружено нечисловое значение.
Эта ошибка, кажется, находится в функции $chromosomes[] = is_numeric($gene['code']);
Так что я использовал is_numeric
для преобразования в числовое значение.
Почему это все еще происходит? Спасибо
Контроллер
$timeTable = $timeTable->generate($condition['class']);
Модель
public function generate($class)
{
$this->is_general = $class;
if (!$this->slotsAreEnough()) {
abort(500, 'The number of units exceed the available spaces.');
}
$this->makeChromosomes();
$this->createInitialGeneration();
$this->startSelection();
return $this->timeTable;
}
private function makeChromosomes()
{
$chromosomes = array();
foreach ($this->gene as $gene) {
for ($x = 0; $x < $gene['units']; $x++) {
$chromosomes[] = is_numeric($gene['code']);
}
}
$this->chromosomes = $chromosomes;
return $this;
}
private function startSelection()
{
$totalSlot = $this->daysOfWeek * $this->sizeOfDay;
$size = count($this->chromosomes);
for ($x = 0; $x < $size; $x++) {
$seed = rand(1, $totalSlot);
for ($y = 0; $y < $this->daysOfWeek; $y++) {
for ($z = 0; $z < $this->sizeOfDay; $z++) {
if ($this->hasAssigned($seed)) continue;
if ($this->isBreakTimeZone($seed)) continue;
$row = (int) ($seed / $this->sizeOfDay);
$col = $seed % $this->sizeOfDay;
if ($this->hasLevelWideCourses() && $this->levelWideCourses[$row][$col] != '-') {
$this->timeTable[$row][$col] = $this->levelWideCourses[$row][$col];
} else {
$this->timeTable[$row][$col] = $this->chromosomes[$x];
}
if (isset($this->chromosomes[$x + 1])){
if ($this->chromosomes[$x + 1] === $this->chromosomes[$x] && !$this->hasUsedDoublePeriods($this->chromosomes[$x])) {
$this->timeTable[$row][$col + 1] = $this->chromosomes[$x];
$this->hasDoublePeriod[] = $this->chromosomes[$x];
}
}
$this->usedSlots[] = $seed;
$this->selectVenue($this->chromosomes[$x], $row, $col);
}
}
}
return $this;
}