The Swoole\Table class

(PECL swoole >= 1.9.0)

简介

类摘要

class Swoole\Table implements Iterator, Countable {
/* 常量 */
const int TYPE_INT = 1;
const int TYPE_STRING = 7;
const int TYPE_FLOAT = 6;
/* 方法 */
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
}

目录

添加备注

用户贡献的备注

此页面尚无用户贡献的备注。
To Top