|
The Swoole\Table classはじめに
クラス概要Swoole\Table
class Swoole\Table
implements
Iterator, Countable {
/* 定数 */
const
int
Swoole\Table::TYPE_INT = 1;
const
int
Swoole\Table::TYPE_STRING = 7;
const
int
Swoole\Table::TYPE_FLOAT = 6;
/* メソッド */
public bool column(string
$name, string $type, int $size = ?)public int count()
public bool create()
public array current()
public int decr(string
$key, string $column, int $decrby = ?)public bool del(string
$key)public bool destroy()
public bool exist(string
$key)public mixed get(string
$key, string $field = ?)public int incr(string
$key, string $column, int $incrby = ?)public mixed key()
public void next()
public void rewind()
public bool set(string
$key, array $value)public bool valid()
}定義済み定数
|