A classe Swoole\Table

(PECL swoole >= 1.9.0)

Introdução

Resumo da classe

class Swoole\Table implements Iterator, Countable {
/* Constantes */
const int TYPE_INT = 1;
const int TYPE_STRING = 7;
const int TYPE_FLOAT = 6;
/* Métodos */
public function column(string $name, string $type, int $size = ?): bool
public function count(): int
public function create(): bool
public function current(): array
public function decr(string $key, string $column, int $decrby = ?): int
public function del(string $key): bool
public function destroy(): bool
public function exist(string $key): bool
public function get(string $key, string $field = ?): mixed
public function incr(string $key, string $column, int $incrby = ?): int
public function key(): mixed
public function next(): void
public function rewind(): void
public function set(string $key, array $value): bool
public function valid(): bool
}

Índice

adicionar nota

Notas de Usuários

Não há notas de usuários para esta página.
To Top