From 378a8ec4ea470784de556ff0b1798f6e47a27946 Mon Sep 17 00:00:00 2001 From: zhanglei5 Date: Thu, 4 Dec 2014 23:18:04 +0800 Subject: [PATCH] table --- doc/13.swoole_table.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/doc/13.swoole_table.md b/doc/13.swoole_table.md index d0b67cb..9614204 100644 --- a/doc/13.swoole_table.md +++ b/doc/13.swoole_table.md @@ -15,3 +15,20 @@ swoole_table 目前只支持以下3种类型,个人感觉有点儿类似于表 ## 函数列表 - [__construct](#swoole_table__construct) +**功能描述**:内存表构造函数,创建内存表对象对象。 +**函数原型**: +```php +swoole_table->__construct(int $size) +``` +**返回**:一个swoole_table对象。 +**参数说明**: +| 参数 | 说明 | +| -------- | -------- | +| string host | 监听的IP地址 | +| int port | 监听的端口号 | +| int mode | 运行模式 | +| int sock_type | 指定的socket类型 | +使用示例: +```php +$table = new swoole_table(1024); +```