<?php array_fill(int $start_index, int $count, mixed $value): array
<?php $this->boundValues = array_fill(0, count($this->columnNames), null); $refs = []; foreach ($this->boundValues as &$value) {
<?php } $this->types = str_repeat('s', $paramCount); $this->_bindedValues = array_fill(1, $paramCount, null); }
<?php private function appendTypedParameter(array $values, $type): void { $this->convertedSQL[] = implode(', ', array_fill(0, count($values), '?')); $index = count($this->convertedParameteres);