1<?php declare(strict_types=1);
42 $this->columns[
$index] = $value;
59 foreach ($values as $value) {
71 if (is_string($idx) && !array_key_exists($idx, $this->columns)) {
72 throw new DomainException(
'Invalid index given: ' . $idx);
76 ($idx < 0 || $idx >= count($this->columns))) {
77 throw new DomainException(
"Index too small or too large: " . $idx);
80 return $this->columns[$idx];
Row Class for XMLResultSet.
setValues(array $values)
Set values from array.
setValue($index, string $value)
set column value
getValue($idx)
Return value for column with specified index.