Searched refs:rid (Results 1 – 4 of 4) sorted by relevance
69 public function changeRow(int $rid, string $value): void argument73 if ($rid > count($this->data)) {74 $this->data = array_pad($this->data, $rid, '');76 $this->data[$rid] = $value;81 public function retrieveRow(int $rid): string argument83 return $this->data[$rid] ?? '';90 foreach ($rids as $rid) {91 if (isset($this->data[$rid])) $result[$rid] = $this->data[$rid];
139 * @param int $rid the line number, count starting at 0142 abstract public function changeRow(int $rid, string $value); argument149 * @param int $rid the line number152 abstract public function retrieveRow(int $rid): string; argument
27 public function changeRow(int $rid, string $value): void argument48 fwrite($fh, (++$ln == $rid) ? $value : $curline);53 if ($rid > $ln) {54 while ($rid > ++$ln) {68 public function retrieveRow(int $rid): string argument79 if (++$ln == $rid) {
273 foreach ($pageIndex as $rid => $value) {274 if ($value === $oldpage) $oldId = $rid;275 if ($value === $newpage) $newId = $rid;