diff --git a/assets/index.js b/assets/index.js index 49a19a6a..2a702164 100644 --- a/assets/index.js +++ b/assets/index.js @@ -1,28 +1,22 @@ // 显示列表 showList = (text, index, listnum) => { window.info = []; - Object.keys(index).filter(path => { - let description = index[path]; - let p = path.split('.html#') - if (p.length == 2) { - var type = `
${p[0]}
`; - var name = p[1]; - } else { - var type = ''; - name = p[0].replace('.html', ''); - } + Object.keys(index).filter(key => { + let v = index[key]; + let name = v.name; + let desc = v.desc let reg = new RegExp(text, "i"); let match1 = reg.exec(name); - let match2 = reg.exec(description) + let match2 = reg.exec(desc) if (match1 || match2) { - let index = name.slice(0, 1).toUpperCase(); + let initial = name.slice(0, 1).toUpperCase(); if (match1) name = highlightList(name, match1[0]); - if (match2) description = highlightList(description, match2[0]); - window.info.push(`
-
${index}
- ${type} + if (match2) desc = highlightList(desc, match2[0]); + window.info.push(`
+
${initial}
+
${v.type}
${name}
-
${description}
+
${desc}
`); } }) @@ -45,7 +39,7 @@ showManual = path => { } else { var file = p[0] } - window.read(`${window.baseDir}/docs/${window.code}/${file}`, (err, data) => { + window.read(`${window.baseDir}/docs/${file}`, (err, data) => { if (!err) { $("#mainlist").fadeOut(); $("#content").fadeOut().promise().done(() => { @@ -104,7 +98,6 @@ utools.onPluginEnter(({ code, type, payload }) => { if (code == 'options') { showOptions(); } else { - window.code = code; $("#mainlist").fadeIn(); var allFts = getAllFeatures(); if (allFts[code].type == "default") { diff --git a/index/c.json b/index/c.json index 6129370a..c250cfd1 100644 --- a/index/c.json +++ b/index/c.json @@ -1 +1 @@ -{ "abs.html": "求整数x的绝对值", "acos.html": "求x(弧度表示)的反余弦值", "asin.html": "求x(弧度表示)的反正弦值", "atan.html": "求x(弧度表示)的反正切值", "atan2.html": "求y/x(弧度表示)的反正切值", "bcmp.html": "比较字符串s1和s2的前n个字节是否相等", "bcopy.html": "将字符串src的前n个字节复制到dest中", "bell.html": "响铃", "block.html": "在屏幕上画一矩形并填充", "bzero.html": "置字节字符串s的前n个字节为零", "calloc.html": "为具有num_elems个长度为elem_size元素的数组分配内存", "ceil.html": "求不小于x的最小整数", "clrscr.html": "清屏", "ClearScreen.html": "清屏", "cos.html": "求x(弧度表示)的余弦值", "cosh.html": "求x的双曲余弦值", "cursor.html": "设定光标形态", "delay.html": "短暂延时", "DispBCD.html": "显示七段数码管数字", "exit.html": "结束程序", "exp.html": "求e的x次幂", "fabs.html": "求浮点数x的绝对值", "floor.html": "求不大于x的最达整数", "fmod.html": "计算x/y的余数", "free.html": "释放指针p所指向的的内存空间", "frexp.html": "把浮点数x分解成尾数和指数", "getchar.html": "读键", "getkey.html": "读键", "getpixel.html": "返回屏幕上指定点的状态", "get_chi_font.html": "取春鹤值阏 ", "get_eng_font.html": "取英文字符的点阵", "gotoxy.html": "将光标移动到指定位置", "hypot.html": "对于给定的直角三角形的两个直角边,求其斜边的长度", "isalnum.html": "判断字符c是否为字母或数字", "isalpha.html": "判断字符c是否为英文字母", "isascii.html": "判断字符c是否为ascii码", "isblank.html": "判断字符c是否为TAB或空格", "iscntrl.html": "判断字符c是否为控制字符", "isdigit.html": "判断字符c是否为数字", "isgraph.html": "判断字符c是否为除空格外的可打印字符", "islower.html": "判断字符c是否为小写英文字母", "isprint.html": "判断字符c是否为可打印字符(含空格)", "ispunct.html": "判断字符c是否为标点符号", "isspace.html": "判断字符c是否为空白符", "isupper.html": "判断字符c是否为大写英文字母", "isxdigit.html": "判断字符c是否为十六进制数字", "itoa.html": "把整数i转换成字符串", "kbhit.html": "检测按键", "ldexp.html": "装载浮点数", "line.html": "在屏幕上画直线", "log.html": "计算x的自然对数", "log10.html": "计算x的常用对数", "malloc.html": "分配长度为num_bytes字节的内存块", "memccpy.html": "由src所指内存区域复制不多于count个字节到dest所指内存区域,如果遇到字符ch则停止复制", "memchr.html": "从buf所指内存区域的前count个字节查找字符ch", "memcmp.html": "比较内存区域buf1和buf2的前count个字节", "memcpy.html": "由src所指内存区域复制count个字节到dest所指内存区域", "memicmp.html": "比较内存区域buf1和buf2的前count个字节但不区分字母的大小写", "memmove.html": "由src所指内存区域复制count个字节到dest所指内存区域", "memset.html": "把buffer所指内存区域的前count个字节设置成字符c", "modf.html": "将浮点数num分解成整数部分和小数部分", "move.html": "将光标移动到指定位置", "movmem.html": "由src所指内存区域复制count个字节到dest所指内存区域", "noidle.html": "调用系统例程", "outtextxy.html": "在屏幕上指定位置输出字符串", "pow.html": "计算x的y次幂", "pow10.html": "计算10的x次幂", "printf.html": "格式化字符串输出", "putchar.html": "在屏幕上显示字符c", "putpixel.html": "在屏幕的指定位置上画点", "pyfc.html": "给定一个汉字str,查询对应的拼音", "realloc.html": "改变mem_address所指内存区域的大小为newsize长度", "rectangle.html": "在屏幕上画一矩形", "setmem.html": "把buf所指内存区域前count个字节设置成字符ch", "SetScrollBar.html": "显示滚动条", "sin.html": "计算x(弧度表示)的正弦值", "sinh.html": "计算x(弧度表示)的双曲正弦值", "sleep.html": "短暂延时", "sqrt.html": "计算x的平方根", "stpcpy.html": "把src所指由NULL结束的字符串复制到dest所指的数组中", "strcat.html": "把src所指字符串添加到dest结尾处(覆盖dest结尾处的'\\0')并添加'\\0'", "strchr.html": "查找字符串s中首次出现字符c的位置", "strcmp.html": "比较字符串s1和s2", "stricmp.html": "比较字符串s1和s2,但不区分字母的大小写", "strcpy.html": "把src所指由NULL结束的字符串复制到dest所指的数组中", "strcspn.html": "在字符串s1中搜寻s2中所出现的字符", "strdup.html": "复制字符串s", "strcmpi.html": "比较字符串s1和s2,但不区分字母的大小写", "strlen.html": "计算字符串s的长度", "strlwr.html": "将字符串s转换为小写形式", "strncat.html": "把src所指字符串的前n个字符添加到dest结尾处(覆盖dest结尾处的'\\0')并添加'\\0'", "strncmp.html": "比较字符串s1和s2的前n个字符", "strnicmp.html": "比较字符串s1和s2的前n个字符但不区分大小写", "strncpy.html": "把src所指由NULL结束的字符串的前n个字节复制到dest所指的数组中", "strncmpi.html": "比较字符串s1和s2的前n个字符但不区分大小写", "strpbrk.html": "在字符串s1中寻找字符串s2中任何一个字符相匹配的第一个字符的位置,空字符NULL不包括在内", "strrev.html": "把字符串s的所有字符的顺序颠倒过来(不包括空字符NULL)", "strset.html": "把字符串s中的所有字符都设置成字符c", "strstr.html": "从字符串haystack中寻找needle第一次出现的位置(不比较结束符NULL)", "strtok.html": "分解字符串为一组标记串s为要分解的字符串,delim为分隔符字符串", "strupr.html": "将字符串s转换为大写形式", "tan.html": "计算x(弧度表示)的正切值", "tanh.html": "求x的双曲正切值", "textmode.html": "设定屏幕模式", "TextOut.html": "在屏幕上指定位置输出字符串", "time.html": "取得系统时间", "toascii.html": "将字符c转换为ascii码", "tolower.html": "将字符c转换为小写英文字母", "toupper.html": "将字符c转换为大写英文字母", "UpdateLCD.html": "以指定模式刷新屏幕", "write_chi_font.html": "写汉字点阵", "write_eng_font.html": "写英文字符的点阵" } \ No newline at end of file +{ "abs": { "name": "abs", "type": "数学函数", "path": "c/abs.html", "desc": "求整数x的绝对值

" }, "acos": { "name": "acos", "type": "数学函数", "path": "c/acos.html", "desc": "求x(弧度表示)的反余弦值

" }, "asin": { "name": "asin", "type": "数学函数", "path": "c/asin.html", "desc": "求x(弧度表示)的反正弦值

" }, "atan": { "name": "atan", "type": "数学函数", "path": "c/atan.html", "desc": "求x(弧度表示)的反正切值

" }, "atan2": { "name": "atan2", "type": "数学函数", "path": "c/atan2.html", "desc": "求y/x(弧度表示)的反正切值

" }, "bcmp": { "name": "bcmp", "type": "字符串函数", "path": "c/bcmp.html", "desc": "比较字符串s1和s2的前n个字节是否相等

" }, "bcopy": { "name": "bcopy", "type": "字符串函数", "path": "c/bcopy.html", "desc": "将字符串src的前n个字节复制到dest中

" }, "bell": { "name": "bell", "type": "标准库函数", "path": "c/bell.html", "desc": "响铃

" }, "block": { "name": "block", "type": "标准库函数", "path": "c/block.html", "desc": "在屏幕上画一矩形并填充。

" }, "bzero": { "name": "bzero", "type": "字符串函数", "path": "c/bzero.html", "desc": "置字节字符串s的前n个字节为零。

" }, "calloc": { "name": "calloc", "type": "动态内存", "path": "c/calloc.html", "desc": "为具有num_elems个长度为elem_size元素的数组分配内存

" }, "ceil": { "name": "ceil", "type": "数学函数", "path": "c/ceil.html", "desc": "求不小于x的最小整数

" }, "ClearScreen": { "name": "ClearScreen", "type": "标准库函数", "path": "c/ClearScreen.html", "desc": "清屏

" }, "clrscr": { "name": "clrscr", "type": "标准库函数", "path": "c/clrscr.html", "desc": "清屏

" }, "cos": { "name": "cos", "type": "数学函数", "path": "c/cos.html", "desc": "求x(弧度表示)的余弦值

" }, "cosh": { "name": "cosh", "type": "数学函数", "path": "c/cosh.html", "desc": "求x的双曲余弦值

" }, "cursor": { "name": "cursor", "type": "标准库函数", "path": "c/cursor.html", "desc": "设定光标形态" }, "delay": { "name": "delay", "type": "标准库函数", "path": "c/delay.html", "desc": "短暂延时

" }, "DispBCD": { "name": "DispBCD", "type": "标准库函数", "path": "c/DispBCD.html", "desc": "显示七段数码管数字

" }, "exit": { "name": "exit", "type": "标准库函数", "path": "c/exit.html", "desc": "结束程序

" }, "exp": { "name": "exp", "type": "数学函数", "path": "c/exp.html", "desc": "求e的x次幂

" }, "fabs": { "name": "fabs", "type": "数学函数", "path": "c/fabs.html", "desc": "求浮点数x的绝对值

" }, "floor": { "name": "floor", "type": "数学函数", "path": "c/floor.html", "desc": "求不大于x的最达整数

" }, "fmod": { "name": "fmod", "type": "数学函数", "path": "c/fmod.html", "desc": "计算x/y的余数

" }, "free": { "name": "free", "type": "动态内存", "path": "c/free.html", "desc": "释放指针p所指向的的内存空间。

" }, "frexp": { "name": "frexp", "type": "数学函数", "path": "c/frexp.html", "desc": "把浮点数x分解成尾数和指数。

" }, "getchar": { "name": "getchar", "type": "输入输出", "path": "c/getchar.html", "desc": "读键

" }, "getkey": { "name": "getkey", "type": "标准库函数", "path": "c/getkey.html", "desc": "读键

" }, "getpixel": { "name": "getpixel", "type": "标准库函数", "path": "c/getpixel.html", "desc": "返回屏幕上指定点的状态

" }, "get_chi_font": { "name": "get_chi_font", "type": "标准库函数", "path": "c/get_chi_font.html", "desc": "取春鹤值阏

" }, "get_eng_font": { "name": "get_eng_font", "type": "标准库函数", "path": "c/get_eng_font.html", "desc": "取英文字符的点阵

" }, "gotoxy": { "name": "gotoxy", "type": "标准库函数", "path": "c/gotoxy.html", "desc": "将光标移动到指定位置

" }, "hypot": { "name": "hypot", "type": "数学函数", "path": "c/hypot.html", "desc": "对于给定的直角三角形的两个直角边,求其斜边的长度。

" }, "isalnum": { "name": "isalnum", "type": "字符函数", "path": "c/isalnum.html", "desc": "判断字符c是否为字母或数字

" }, "isalpha": { "name": "isalpha", "type": "字符函数", "path": "c/isalpha.html", "desc": "判断字符c是否为英文字母

" }, "isascii": { "name": "isascii", "type": "字符函数", "path": "c/isascii.html", "desc": "判断字符c是否为ascii码

" }, "isblank": { "name": "isblank", "type": "字符函数", "path": "c/isblank.html", "desc": "判断字符c是否为TAB或空格

" }, "iscntrl": { "name": "iscntrl", "type": "字符函数", "path": "c/iscntrl.html", "desc": "判断字符c是否为控制字符

" }, "isdigit": { "name": "isdigit", "type": "字符函数", "path": "c/isdigit.html", "desc": "判断字符c是否为数字

" }, "isgraph": { "name": "isgraph", "type": "字符函数", "path": "c/isgraph.html", "desc": "判断字符c是否为除空格外的可打印字符

" }, "islower": { "name": "islower", "type": "字符函数", "path": "c/islower.html", "desc": "判断字符c是否为小写英文字母

" }, "isprint": { "name": "isprint", "type": "字符函数", "path": "c/isprint.html", "desc": "判断字符c是否为可打印字符(含空格)

" }, "ispunct": { "name": "ispunct", "type": "字符函数", "path": "c/ispunct.html", "desc": "判断字符c是否为标点符号

" }, "isspace": { "name": "isspace", "type": "字符函数", "path": "c/isspace.html", "desc": "判断字符c是否为空白符

" }, "isupper": { "name": "isupper", "type": "字符函数", "path": "c/isupper.html", "desc": "判断字符c是否为大写英文字母

" }, "isxdigit": { "name": "isxdigit", "type": "字符函数", "path": "c/isxdigit.html", "desc": "判断字符c是否为十六进制数字

" }, "itoa": { "name": "itoa", "type": "标准库函数", "path": "c/itoa.html", "desc": "把整数i转换成字符串

" }, "kbhit": { "name": "kbhit", "type": "输入输出", "path": "c/kbhit.html", "desc": "检测按键

" }, "ldexp": { "name": "ldexp", "type": "数学函数", "path": "c/ldexp.html", "desc": "装载浮点数。

" }, "line": { "name": "line", "type": "标准库函数", "path": "c/line.html", "desc": "在屏幕上画直线

" }, "log": { "name": "log", "type": "数学函数", "path": "c/log.html", "desc": "计算x的自然对数。

" }, "log10": { "name": "log10", "type": "数学函数", "path": "c/log10.html", "desc": "计算x的常用对数。

" }, "malloc": { "name": "malloc", "type": "动态内存", "path": "c/malloc.html", "desc": "分配长度为num_bytes字节的内存块

" }, "memccpy": { "name": "memccpy", "type": "字符串函数", "path": "c/memccpy.html", "desc": "由src所指内存区域复制不多于count个字节到dest所指内存区域,如果遇到字符ch则停止复制。

" }, "memchr": { "name": "memchr", "type": "字符串函数", "path": "c/memchr.html", "desc": "从buf所指内存区域的前count个字节查找字符ch。

" }, "memcmp": { "name": "memcmp", "type": "字符串函数", "path": "c/memcmp.html", "desc": "比较内存区域buf1和buf2的前count个字节。

" }, "memcpy": { "name": "memcpy", "type": "字符串函数", "path": "c/memcpy.html", "desc": "由src所指内存区域复制count个字节到dest所指内存区域。

" }, "memicmp": { "name": "memicmp", "type": "字符串函数", "path": "c/memicmp.html", "desc": "比较内存区域buf1和buf2的前count个字节但不区分字母的大小写。

" }, "memmove": { "name": "memmove", "type": "字符串函数", "path": "c/memmove.html", "desc": "由src所指内存区域复制count个字节到dest所指内存区域。

" }, "memset": { "name": "memset", "type": "字符串函数", "path": "c/memset.html", "desc": "把buffer所指内存区域的前count个字节设置成字符c。

" }, "modf": { "name": "modf", "type": "数学函数", "path": "c/modf.html", "desc": "将浮点数num分解成整数部分和小数部分。

" }, "move": { "name": "move", "type": "标准库函数", "path": "c/move.html", "desc": "将光标移动到指定位置

" }, "movmem": { "name": "movmem", "type": "字符串函数", "path": "c/movmem.html", "desc": "由src所指内存区域复制count个字节到dest所指内存区域。

" }, "noidle": { "name": "noidle", "type": "标准库函数", "path": "c/noidle.html", "desc": "调用系统例程

" }, "outtextxy": { "name": "outtextxy", "type": "标准库函数", "path": "c/outtextxy.html", "desc": "在屏幕上指定位置输出字符串

" }, "pow": { "name": "pow", "type": "数学函数", "path": "c/pow.html", "desc": "计算x的y次幂。

" }, "pow10": { "name": "pow10", "type": "数学函数", "path": "c/pow10.html", "desc": "计算10的x次幂。

" }, "printf": { "name": "printf", "type": "输入输出", "path": "c/printf.html", "desc": "格式化字符串输出

" }, "putchar": { "name": "putchar", "type": "输入输出", "path": "c/putchar.html", "desc": "在屏幕上显示字符c

" }, "putpixel": { "name": "putpixel", "type": "标准库函数", "path": "c/putpixel.html", "desc": "在屏幕的指定位置上画点

" }, "pyfc": { "name": "pyfc", "type": "标准库函数", "path": "c/pyfc.html", "desc": "给定一个汉字str,查询对应的拼音。

" }, "realloc": { "name": "realloc", "type": "动态内存", "path": "c/realloc.html", "desc": "改变mem_address所指内存区域的大小为newsize长度。

" }, "rectangle": { "name": "rectangle", "type": "标准库函数", "path": "c/rectangle.html", "desc": "在屏幕上画一矩形。

" }, "setmem": { "name": "setmem", "type": "字符串函数", "path": "c/setmem.html", "desc": "把buf所指内存区域前count个字节设置成字符ch。

" }, "SetScrollBar": { "name": "SetScrollBar", "type": "标准库函数", "path": "c/SetScrollBar.html", "desc": "显示滚动条

" }, "sin": { "name": "sin", "type": "数学函数", "path": "c/sin.html", "desc": "计算x(弧度表示)的正弦值。

" }, "sinh": { "name": "sinh", "type": "数学函数", "path": "c/sinh.html", "desc": "计算x(弧度表示)的双曲正弦值。

" }, "sleep": { "name": "sleep", "type": "标准库函数", "path": "c/sleep.html", "desc": "短暂延时

" }, "sqrt": { "name": "sqrt", "type": "数学函数", "path": "c/sqrt.html", "desc": "计算x的平方根。

" }, "stpcpy": { "name": "stpcpy", "type": "字符串函数", "path": "c/stpcpy.html", "desc": "把src所指由NULL结束的字符串复制到dest所指的数组中。

" }, "strcat": { "name": "strcat", "type": "字符串函数", "path": "c/strcat.html", "desc": "把src所指字符串添加到dest结尾处(覆盖dest结尾处的'\\0')并添加'\\0'。

" }, "strchr": { "name": "strchr", "type": "字符串函数", "path": "c/strchr.html", "desc": "查找字符串s中首次出现字符c的位置

" }, "strcmp": { "name": "strcmp", "type": "字符串函数", "path": "c/strcmp.html", "desc": "比较字符串s1和s2。

" }, "strcmpi": { "name": "strcmpi", "type": "字符串函数", "path": "c/strcmpi.html", "desc": "比较字符串s1和s2,但不区分字母的大小写。

" }, "strcpy": { "name": "strcpy", "type": "字符串函数", "path": "c/strcpy.html", "desc": "把src所指由NULL结束的字符串复制到dest所指的数组中。

" }, "strcspn": { "name": "strcspn", "type": "字符串函数", "path": "c/strcspn.html", "desc": "在字符串s1中搜寻s2中所出现的字符。

" }, "strdup": { "name": "strdup", "type": "字符串函数", "path": "c/strdup.html", "desc": "复制字符串s

" }, "stricmp": { "name": "stricmp", "type": "字符串函数", "path": "c/stricmp.html", "desc": "比较字符串s1和s2,但不区分字母的大小写。

" }, "strlen": { "name": "strlen", "type": "字符串函数", "path": "c/strlen.html", "desc": "计算字符串s的长度

" }, "strlwr": { "name": "strlwr", "type": "字符串函数", "path": "c/strlwr.html", "desc": "将字符串s转换为小写形式

" }, "strncat": { "name": "strncat", "type": "字符串函数", "path": "c/strncat.html", "desc": "把src所指字符串的前n个字符添加到dest结尾处(覆盖dest结尾处的'\\0')并添加'\\0'。

" }, "strncmp": { "name": "strncmp", "type": "字符串函数", "path": "c/strncmp.html", "desc": "比较字符串s1和s2的前n个字符。

" }, "strncmpi": { "name": "strncmpi", "type": "字符串函数", "path": "c/strncmpi.html", "desc": "比较字符串s1和s2的前n个字符但不区分大小写。

" }, "strncpy": { "name": "strncpy", "type": "字符串函数", "path": "c/strncpy.html", "desc": "把src所指由NULL结束的字符串的前n个字节复制到dest所指的数组中。

" }, "strnicmp": { "name": "strnicmp", "type": "字符串函数", "path": "c/strnicmp.html", "desc": "比较字符串s1和s2的前n个字符但不区分大小写。

" }, "strpbrk": { "name": "strpbrk", "type": "字符串函数", "path": "c/strpbrk.html", "desc": "在字符串s1中寻找字符串s2中任何一个字符相匹配的第一个字符的位置,空字符NULL不包括在内。

" }, "strrev": { "name": "strrev", "type": "字符串函数", "path": "c/strrev.html", "desc": "把字符串s的所有字符的顺序颠倒过来(不包括空字符NULL)。

" }, "strset": { "name": "strset", "type": "字符串函数", "path": "c/strset.html", "desc": "把字符串s中的所有字符都设置成字符c。

" }, "strstr": { "name": "strstr", "type": "字符串函数", "path": "c/strstr.html", "desc": "从字符串haystack中寻找needle第一次出现的位置(不比较结束符NULL)。

" }, "strtok": { "name": "strtok", "type": "字符串函数", "path": "c/strtok.html", "desc": "分解字符串为一组标记串。s为要分解的字符串,delim为分隔符字符串。

" }, "strupr": { "name": "strupr", "type": "字符串函数", "path": "c/strupr.html", "desc": "将字符串s转换为大写形式

" }, "tan": { "name": "tan", "type": "数学函数", "path": "c/tan.html", "desc": "计算x(弧度表示)的正切值。

" }, "tanh": { "name": "tanh", "type": "数学函数", "path": "c/tanh.html", "desc": "求x的双曲正切值

" }, "textmode": { "name": "textmode", "type": "标准库函数", "path": "c/textmode.html", "desc": "设定屏幕模式

" }, "TextOut": { "name": "TextOut", "type": "标准库函数", "path": "c/TextOut.html", "desc": "在屏幕上指定位置输出字符串

" }, "time": { "name": "time", "type": "标准库函数", "path": "c/time.html", "desc": "取得系统时间

" }, "toascii": { "name": "toascii", "type": "字符函数", "path": "c/toascii.html", "desc": "将字符c转换为ascii码

" }, "tolower": { "name": "tolower", "type": "字符函数", "path": "c/tolower.html", "desc": "将字符c转换为小写英文字母

" }, "toupper": { "name": "toupper", "type": "字符函数", "path": "c/toupper.html", "desc": "将字符c转换为大写英文字母

" }, "UpdateLCD": { "name": "UpdateLCD", "type": "标准库函数", "path": "c/UpdateLCD.html", "desc": "以指定模式刷新屏幕

" }, "write_chi_font": { "name": "write_chi_font", "type": "标准库函数", "path": "c/write_chi_font.html", "desc": "写汉字点阵

" }, "write_eng_font": { "name": "write_eng_font", "type": "标准库函数", "path": "c/write_eng_font.html", "desc": "写英文字符的点阵

" } } \ No newline at end of file diff --git a/index/docker.json b/index/docker.json index d48af7a1..f02e2985 100644 --- a/index/docker.json +++ b/index/docker.json @@ -1 +1 @@ -{ "docker attach.html":"docker attach :连接到正在运行中的容器。", "docker build.html":"docker build 命令用于使用 Dockerfile 创建镜像。", "docker commit.html":"docker commit :从容器创建一个新的镜像。", "docker cp.html":"docker cp :用于容器与主机之间的数据拷贝。", "docker create.html":"docker create :创建一个新的容器但不启动它", "docker diff.html":"docker diff : 检查容器里文件结构的更改。", "docker events.html":"docker events : 从服务器获取实时事件", "docker exec.html":"docker exec :在运行的容器中执行命令", "docker export.html":"docker export :将文件系统作为一个tar归档文件导出到STDOUT。", "docker history.html":"docker history : 查看指定镜像的创建历史。", "docker images.html":"docker images : 列出本地镜像。", "docker import.html":"docker import : 从归档文件中创建镜像。", "docker info.html":"docker info : 显示 Docker 系统信息,包括镜像和容器数。。", "docker inspect.html":"docker inspect : 获取容器/镜像的元数据。", "docker kill.html":"docker kill :杀掉一个运行中的容器。", "docker login.html":"docker login : 登陆到一个Docker镜像仓库,如果未指定镜像仓库地址,默认为官方仓库 Docker Hub", "docker logs.html":"docker logs : 获取容器的日志", "docker pause unpause.html":"docker pause :暂停容器中所有的进程。", "docker port.html":"docker port :列出指定的容器的端口映射,或者查找将PRIVATE_PORT NAT到面向公众的端口。", "docker ps.html":"docker ps : 列出容器", "docker pull.html":"docker pull : 从镜像仓库中拉取或者更新指定镜像", "docker push.html":"docker push : 将本地的镜像上传到镜像仓库,要先登陆到镜像仓库", "docker rm.html":"docker rm :删除一个或多少容器", "docker rmi.html":"docker rmi : 删除本地一个或多少镜像。", "docker run.html":"docker run :创建一个新的容器并运行一个命令", "docker save.html":"docker save : 将指定镜像保存成 tar 归档文件。", "docker search.html":"docker search : 从Docker Hub查找镜像", "docker start stop restart.html":"docker start :启动一个或多个已经被停止的容器", "docker tag.html":"docker tag : 标记本地镜像,将其归入某一仓库。", "docker top.html":"docker top :查看容器中运行的进程信息,支持 ps 命令参数。", "docker version.html":"docker version :显示 Docker 版本信息。", "docker wait.html":"docker wait : 阻塞运行直到容器停止,然后打印出它的退出代码。" } \ No newline at end of file +{ "docker attach": { "name": "docker attach", "type": "", "path": "docker/docker attach.html", "desc": "连接到正在运行中的容器" }, "docker build": { "name": "docker build", "type": "", "path": "docker/docker build.html", "desc": "命令用于使用 Dockerfile 创建镜像" }, "docker commit": { "name": "docker commit", "type": "", "path": "docker/docker commit.html", "desc": "从容器创建一个新的镜像" }, "docker cp": { "name": "docker cp", "type": "", "path": "docker/docker cp.html", "desc": "用于容器与主机之间的数据拷贝" }, "docker create": { "name": "docker create", "type": "", "path": "docker/docker create.html", "desc": "创建一个新的容器但不启动它" }, "docker diff": { "name": "docker diff", "type": "", "path": "docker/docker diff.html", "desc": " 检查容器里文件结构的更改" }, "docker events": { "name": "docker events", "type": "", "path": "docker/docker events.html", "desc": " 从服务器获取实时事件" }, "docker exec": { "name": "docker exec", "type": "", "path": "docker/docker exec.html", "desc": "在运行的容器中执行命令" }, "docker export": { "name": "docker export", "type": "", "path": "docker/docker export.html", "desc": "将文件系统作为一个tar归档文件导出到STDOUT" }, "docker history": { "name": "docker history", "type": "", "path": "docker/docker history.html", "desc": " 查看指定镜像的创建历史" }, "docker images": { "name": "docker images", "type": "", "path": "docker/docker images.html", "desc": " 列出本地镜像" }, "docker import": { "name": "docker import", "type": "", "path": "docker/docker import.html", "desc": " 从归档文件中创建镜像" }, "docker info": { "name": "docker info", "type": "", "path": "docker/docker info.html", "desc": " 显示 Docker 系统信息,包括镜像和容器数" }, "docker inspect": { "name": "docker inspect", "type": "", "path": "docker/docker inspect.html", "desc": " 获取容器/镜像的元数据" }, "docker kill": { "name": "docker kill", "type": "", "path": "docker/docker kill.html", "desc": "杀掉一个运行中的容器" }, "docker login": { "name": "docker login", "type": "", "path": "docker/docker login.html", "desc": " 登陆到一个Docker镜像仓库,如果未指定镜像仓库地址,默认为官方仓库 Docker Hub" }, "docker logs": { "name": "docker logs", "type": "", "path": "docker/docker logs.html", "desc": " 获取容器的日志" }, "docker pause unpause": { "name": "docker pause unpause", "type": "", "path": "docker/docker pause unpause.html", "desc": "暂停容器中所有的进程" }, "docker port": { "name": "docker port", "type": "", "path": "docker/docker port.html", "desc": "列出指定的容器的端口映射,或者查找将PRIVATE_PORT NAT到面向公众的端口" }, "docker ps": { "name": "docker ps", "type": "", "path": "docker/docker ps.html", "desc": " 列出容器" }, "docker pull": { "name": "docker pull", "type": "", "path": "docker/docker pull.html", "desc": " 从镜像仓库中拉取或者更新指定镜像" }, "docker push": { "name": "docker push", "type": "", "path": "docker/docker push.html", "desc": " 将本地的镜像上传到镜像仓库,要先登陆到镜像仓库" }, "docker rm": { "name": "docker rm", "type": "", "path": "docker/docker rm.html", "desc": "删除一个或多少容器" }, "docker rmi": { "name": "docker rmi", "type": "", "path": "docker/docker rmi.html", "desc": " 删除本地一个或多少镜像" }, "docker run": { "name": "docker run", "type": "", "path": "docker/docker run.html", "desc": "创建一个新的容器并运行一个命令" }, "docker save": { "name": "docker save", "type": "", "path": "docker/docker save.html", "desc": " 将指定镜像保存成 tar 归档文件" }, "docker search": { "name": "docker search", "type": "", "path": "docker/docker search.html", "desc": " 从Docker Hub查找镜像" }, "docker start stop restart": { "name": "docker start stop restart", "type": "", "path": "docker/docker start stop restart.html", "desc": "启动一个或多个已经被停止的容器" }, "docker tag": { "name": "docker tag", "type": "", "path": "docker/docker tag.html", "desc": " 标记本地镜像,将其归入某一仓库" }, "docker top": { "name": "docker top", "type": "", "path": "docker/docker top.html", "desc": "查看容器中运行的进程信息,支持 ps 命令参数" }, "docker version": { "name": "docker version", "type": "", "path": "docker/docker version.html", "desc": "显示 Docker 版本信息" }, "docker wait": { "name": "docker wait", "type": "", "path": "docker/docker wait.html", "desc": " 阻塞运行直到容器停止,然后打印出它的退出代码" } } \ No newline at end of file diff --git a/index/git.json b/index/git.json index 32ce9fb2..832b966c 100644 --- a/index/git.json +++ b/index/git.json @@ -1 +1 @@ -{ "git add.html":"将文件内容添加到索引", "git am.html":"从邮箱应用一系列修补程序", "git annotate.html":"用提交信息注释文件行", "git apply.html":"将补丁应用于文件和/或索引", "git archimport.html":"将 Arch 资料库导入 Git", "git archive.html":"从命名树创建文件的存档", "git bisect.html":"使用二进制搜索来查找引入错误的提交", "git blame.html":"显示修改和作者最后修改了文件的每一行", "git branch.html":"列出,创建或删除分支", "git bundle.html":"通过归档移动对象和引用", "git cat-file.html":"提供资源库对象的内容或类型和大小信息", "git check-attr.html":"显示 gitattributes 信息", "git check-ignore.html":"调试 gitignore /排除文件", "git check-mailmap.html":"显示联系人的规范名称和电子邮件地址", "git check-ref-format.html":"确保引用名称格式正确", "git checkout-index.html":"将索引中的文件复制到工作树上", "git checkout.html":"切换分支或恢复工作树文件", "git cherry-pick.html":"应用一些现有提交引入的更改", "git cherry.html":"查找尚未应用于上游的提交", "git citool.html":"commit 的图形替代", "git clean.html":"从工作树中删除未跟踪的文件", "git clone.html":"将存储库克隆到新目录中", "git column.html":"以列显示数据", "git commit-tree.html":"创建一个新的提交对象", "git commit.html":"记录对存储库的更改", "git config.html":"获取并设置存储库或全局选项", "git count-objects.html":"计算解包的对象数量及其磁盘消耗量", "git credential-cache.html":"Helper 临时将密码存储在内存中", "git credential-store.html":"帮助者将证书存储在磁盘上", "git credential.html":"检索并存储用户凭证", "git cvsexportcommit.html":"将一次提交导出到 CVS 签出", "git cvsimport.html":"将您的数据从另一个人们喜欢讨厌的 SCM 中拯救出来", "git cvsserver.html":"Git 的 CVS 服务器模拟器", "git daemon.html":"一个非常简单的Git仓库服务器", "git describe.html":"描述一个使用它可以访问的最近标签的提交", "git diff-files.html":"比较工作树和索引中的文件", "git diff-index.html":"比较树与工作树或索引", "git diff-tree.html":"比较通过两个树对象找到的 blob 的内容和模式", "git diff.html":"显示提交,提交和工作树等之间的变化", "git difftool.html":"使用常见差异工具显示更改", "git fast-export.html":"Git 数据导出器", "git fast-import.html":"用于快速Git数据导入器的后端", "git fetch-pack.html":"从另一个存储库接收缺少的对象", "git fetch.html":"从另一个存储库下载对象和引用", "git filter-branch.html":"重写分支", "git fmt-merge-msg.html":"产生一个合并提交信息", "git for-each-ref.html":"每个参考的输出信息", "git format-patch.html":"为电子邮件提交准备补丁", "git fsck.html":"验证数据库中对象的连通性和有效性", "git gc.html":"清理不必要的文件并优化本地存储库", "git get-tar-commit-id.html":"archive 创建的存档中提取提交ID", "git grep.html":"打印符合模式的行", "git gui.html":"Git 的便携式图形界面", "git hash-object.html":"计算对象ID并可选择从文件创建一个blob", "git help.html":"显示关于 Git 的帮助信息", "git http-backend.html":"Git 在HTTP的服务器端实现", "git http-fetch.html":"通过 HTTP 从远程 Git 存储库下载", "git http-push.html":"通过 HTTP / DAV 将对象推送到另一个存储库", "git imap-send.html":"从 stdin 发送一组补丁到一个 IMAP 文件夹", "git index-pack.html":"为现有打包归档文件生成包索引文件", "git init.html":"创建一个空的 Git 仓库或重新初始化一个现有仓库", "git instaweb.html":"立即在gitweb中浏览你的工作仓库", "git interpret-trailers.html":"帮助将结构化信息添加到提交消息中", "git log.html":"显示提交日志", "git ls-files.html":"显示有关索引和工作树中文件的信息", "git ls-remote.html":"在远程存储库中列出引用", "git ls-tree.html":"列出树对象的内容", "git mailinfo.html":"从单个电子邮件中提取补丁和作者身份", "git mailsplit.html":"简单的 UNIX mbox 分离器程序", "git merge-base.html":"为合并找到尽可能好的共同祖先", "git merge-file.html":"运行三路文件合并", "git merge-index.html":"为需要合并的文件运行合并", "git merge-one-file.html":"index 一起使用的标准帮助程序", "git merge-tree.html":"显示不触及索引的三路合并", "git merge.html":"Join two or more development histories together", "git mergetool.html":"运行合并冲突解决工具来解决合并冲突", "git mktag.html":"创建一个标签对象", "git mktree.html":"tree 格式的文本中构建树对象", "git mv.html":"移动或重命名文件,目录或符号链接", "git name-rev.html":"查找给定转速的符号名称", "git notes.html":"Add or inspect object notes", "git p4.html":"从 Perforce 存储库导入和提交", "git pack-objects.html":"创建一个打包的对象存档", "git pack-redundant.html":"查找多余的包文件", "git pack-refs.html":"打包标头和标签以便高效的存储库访问", "git parse-remote.html":"帮助解析远程存储库访问参数的例程", "git patch-id.html":"计算补丁的唯一 ID", "git prune-packed.html":"删除已经在包文件中的额外对象", "git prune.html":"从对象数据库中删除所有不可访问的对象", "git pull.html":"从另一个存储库或本地分支获取并与其集成", "git push.html":"更新远程引用以及关联的对象", "git quiltimport.html":"在当前分支上应用一个被套补丁集", "git read-tree.html":"将树信息读入索引", "git rebase.html":"重新申请提交另一个基本技巧", "git receive-pack.html":"接收推入存储库的内容", "git reflog.html":"管理reflog信息", "git remote-ext.html":"将智能传输桥接到外部命令。", "git remote-fd.html":"将智能传输流反射回调用者", "git remote-testgit.html":"helper", "git remote.html":"管理追踪存储库的集合", "git repack.html":"在存储库中打包解包的对象", "git replace.html":"创建,列出,删除引用来替换对象", "git request-pull.html":"生成未决更改的摘要", "git rerere.html":"重复使用冲突合并的记录分辨率", "git reset.html":"将当前 HEAD 重置为指定状态", "git rev-list.html":"按反向时间顺序列出提交对象", "git rev-parse.html":"Pick out and massage parameters", "git revert.html":"恢复一些现有的提交", "git rm.html":"从工作树和索引中删除文件", "git send-email.html":"以电子邮件的形式发送一组补丁", "git send-pack.html":"将对象通过 Git 协议推送到另一个存储库", "git sh-i18n.html":"Git 的 shell 脚本的i18n设置代码", "git sh-setup.html":"常用的 Git shell 脚本设置代码", "git shell.html":"SSH 访问的受限登录 shell", "git shortlog.html":"总结git log输出", "git show-branch.html":"显示分支及其提交", "git show-index.html":"显示打包归档索引", "git show-ref.html":"在本地存储库中列出引用", "git show.html":"显示各种类型的对象", "git stash.html":"将变化存储在脏的工作目录中", "git status.html":"显示工作树的状态", "git stripspace.html":"删除不必要的空格", "git submodule.html":"初始化,更新或检查子模块", "git svn.html":"Subversion版本库和Git之间的双向操作", "git symbolic-ref.html":"读取,修改和删除符号引用", "git tag.html":"创建,列出,删除或验证用 GPG 签名的标签对象", "git unpack-file.html":"用 blob 的内容创建一个临时文件", "git unpack-objects.html":"从打包的压缩文件中解压缩对象", "git update-index.html":"将工作树中的文件内容注册到索引", "git update-ref.html":"安全地更新存储在ref中的对象名称", "git update-server-info.html":"更新辅助信息文件来帮助愚蠢的服务器", "git upload-archive.html":"archive", "git upload-pack.html":"pack", "git var.html":"显示一个 Git 逻辑变量", "git verify-commit.html":"检查提交的 GPG 签名", "git verify-pack.html":"验证打包的Git存档文件", "git verify-tag.html":"检查标记的 GPG 签名", "git whatchanged.html":"每次提交引入不同的显示日志", "git worktree.html":"管理多个工作树", "git write-tree.html":"从当前索引创建一个树形对象", "Git.html":"迟钝的内容跟踪器", "gitattributes.html":"定义每个路径的属性", "gitcli.html":"Git 命令行界面和约定", "gitcore tutorial.html":"面向开发人员的Git核心教程", "gitcredentials.html":"为 Git 提供用户名和密码", "gitcvs migration.html":"Git for CVS users", "gitdiffcore.html":"Tweaking diff output", "giteveryday.html":"Everyday Git 的一组有用的最小命令", "gitglossary.html":"Git词汇表", "githooks.html":"Git 使用的挂钩", "gitignore.html":"指定忽略有意未被跟踪的文件", "gitk.html":"Git 存储库浏览器", "gitmodules.html":"名称", "gitnamespaces.html":"Git 命名空间", "gitremote helpers.html":"帮助程序与远程存储库进行交互", "gitrepository layout.html":"Git Repository Layout", "gitrevisions.html":"指定 Git 的修订和范围", "gitsubmodules.html":"在另一个仓库中安装一个仓库", "gittutorial 2.html":"Git 的教程介绍:第二部分", "gittutorial.html":"Git 的教程介绍", "gitweb.conf.html":"Gitweb( Git web 界面)配置文件", "gitweb.html":"Git web界面(Git仓库的前端)", "gitworkflows.html":"使用 Git 推荐的工作流程概述" } \ No newline at end of file +{ "git add": { "name": "git add", "type": "", "path": "git/git add.html", "desc": "将文件内容添加到索引" }, "git am": { "name": "git am", "type": "", "path": "git/git am.html", "desc": "从邮箱应用一系列修补程序" }, "git annotate": { "name": "git annotate", "type": "", "path": "git/git annotate.html", "desc": "用提交信息注释文件行" }, "git apply": { "name": "git apply", "type": "", "path": "git/git apply.html", "desc": "将补丁应用于文件和/或索引" }, "git archimport": { "name": "git archimport", "type": "", "path": "git/git archimport.html", "desc": "将 Arch 资料库导入 Git" }, "git archive": { "name": "git archive", "type": "", "path": "git/git archive.html", "desc": "从命名树创建文件的存档" }, "git bisect": { "name": "git bisect", "type": "", "path": "git/git bisect.html", "desc": "使用二进制搜索来查找引入错误的提交" }, "git blame": { "name": "git blame", "type": "", "path": "git/git blame.html", "desc": "显示修改和作者最后修改了文件的每一行" }, "git branch": { "name": "git branch", "type": "", "path": "git/git branch.html", "desc": "列出,创建或删除分支" }, "git bundle": { "name": "git bundle", "type": "", "path": "git/git bundle.html", "desc": "通过归档移动对象和引用" }, "git cat-file": { "name": "git cat-file", "type": "", "path": "git/git cat-file.html", "desc": "提供资源库对象的内容或类型和大小信息" }, "git check-attr": { "name": "git check-attr", "type": "", "path": "git/git check-attr.html", "desc": "显示 gitattributes 信息" }, "git check-ignore": { "name": "git check-ignore", "type": "", "path": "git/git check-ignore.html", "desc": "调试 gitignore /排除文件" }, "git check-mailmap": { "name": "git check-mailmap", "type": "", "path": "git/git check-mailmap.html", "desc": "显示联系人的规范名称和电子邮件地址" }, "git check-ref-format": { "name": "git check-ref-format", "type": "", "path": "git/git check-ref-format.html", "desc": "确保引用名称格式正确" }, "git checkout-index": { "name": "git checkout-index", "type": "", "path": "git/git checkout-index.html", "desc": "将索引中的文件复制到工作树上" }, "git checkout": { "name": "git checkout", "type": "", "path": "git/git checkout.html", "desc": "切换分支或恢复工作树文件" }, "git cherry-pick": { "name": "git cherry-pick", "type": "", "path": "git/git cherry-pick.html", "desc": "应用一些现有提交引入的更改" }, "git cherry": { "name": "git cherry", "type": "", "path": "git/git cherry.html", "desc": "查找尚未应用于上游的提交" }, "git citool": { "name": "git citool", "type": "", "path": "git/git citool.html", "desc": "commit 的图形替代" }, "git clean": { "name": "git clean", "type": "", "path": "git/git clean.html", "desc": "从工作树中删除未跟踪的文件" }, "git clone": { "name": "git clone", "type": "", "path": "git/git clone.html", "desc": "将存储库克隆到新目录中" }, "git column": { "name": "git column", "type": "", "path": "git/git column.html", "desc": "以列显示数据" }, "git commit-tree": { "name": "git commit-tree", "type": "", "path": "git/git commit-tree.html", "desc": "创建一个新的提交对象" }, "git commit": { "name": "git commit", "type": "", "path": "git/git commit.html", "desc": "记录对存储库的更改" }, "git config": { "name": "git config", "type": "", "path": "git/git config.html", "desc": "获取并设置存储库或全局选项" }, "git count-objects": { "name": "git count-objects", "type": "", "path": "git/git count-objects.html", "desc": "计算解包的对象数量及其磁盘消耗量" }, "git credential-cache": { "name": "git credential-cache", "type": "", "path": "git/git credential-cache.html", "desc": "Helper 临时将密码存储在内存中" }, "git credential-store": { "name": "git credential-store", "type": "", "path": "git/git credential-store.html", "desc": "帮助者将证书存储在磁盘上" }, "git credential": { "name": "git credential", "type": "", "path": "git/git credential.html", "desc": "检索并存储用户凭证" }, "git cvsexportcommit": { "name": "git cvsexportcommit", "type": "", "path": "git/git cvsexportcommit.html", "desc": "将一次提交导出到 CVS 签出" }, "git cvsimport": { "name": "git cvsimport", "type": "", "path": "git/git cvsimport.html", "desc": "将您的数据从另一个人们喜欢讨厌的 SCM 中拯救出来" }, "git cvsserver": { "name": "git cvsserver", "type": "", "path": "git/git cvsserver.html", "desc": "Git 的 CVS 服务器模拟器" }, "git daemon": { "name": "git daemon", "type": "", "path": "git/git daemon.html", "desc": "一个非常简单的Git仓库服务器" }, "git describe": { "name": "git describe", "type": "", "path": "git/git describe.html", "desc": "描述一个使用它可以访问的最近标签的提交" }, "git diff-files": { "name": "git diff-files", "type": "", "path": "git/git diff-files.html", "desc": "比较工作树和索引中的文件" }, "git diff-index": { "name": "git diff-index", "type": "", "path": "git/git diff-index.html", "desc": "比较树与工作树或索引" }, "git diff-tree": { "name": "git diff-tree", "type": "", "path": "git/git diff-tree.html", "desc": "比较通过两个树对象找到的 blob 的内容和模式" }, "git diff": { "name": "git diff", "type": "", "path": "git/git diff.html", "desc": "显示提交,提交和工作树等之间的变化" }, "git difftool": { "name": "git difftool", "type": "", "path": "git/git difftool.html", "desc": "使用常见差异工具显示更改" }, "git fast-export": { "name": "git fast-export", "type": "", "path": "git/git fast-export.html", "desc": "Git 数据导出器" }, "git fast-import": { "name": "git fast-import", "type": "", "path": "git/git fast-import.html", "desc": "用于快速Git数据导入器的后端" }, "git fetch-pack": { "name": "git fetch-pack", "type": "", "path": "git/git fetch-pack.html", "desc": "从另一个存储库接收缺少的对象" }, "git fetch": { "name": "git fetch", "type": "", "path": "git/git fetch.html", "desc": "从另一个存储库下载对象和引用" }, "git filter-branch": { "name": "git filter-branch", "type": "", "path": "git/git filter-branch.html", "desc": "重写分支" }, "git fmt-merge-msg": { "name": "git fmt-merge-msg", "type": "", "path": "git/git fmt-merge-msg.html", "desc": "产生一个合并提交信息" }, "git for-each-ref": { "name": "git for-each-ref", "type": "", "path": "git/git for-each-ref.html", "desc": "每个参考的输出信息" }, "git format-patch": { "name": "git format-patch", "type": "", "path": "git/git format-patch.html", "desc": "为电子邮件提交准备补丁" }, "git fsck": { "name": "git fsck", "type": "", "path": "git/git fsck.html", "desc": "验证数据库中对象的连通性和有效性" }, "git gc": { "name": "git gc", "type": "", "path": "git/git gc.html", "desc": "清理不必要的文件并优化本地存储库" }, "git get-tar-commit-id": { "name": "git get-tar-commit-id", "type": "", "path": "git/git get-tar-commit-id.html", "desc": "archive 创建的存档中提取提交ID" }, "git grep": { "name": "git grep", "type": "", "path": "git/git grep.html", "desc": "打印符合模式的行" }, "git gui": { "name": "git gui", "type": "", "path": "git/git gui.html", "desc": "Git 的便携式图形界面" }, "git hash-object": { "name": "git hash-object", "type": "", "path": "git/git hash-object.html", "desc": "计算对象ID并可选择从文件创建一个blob" }, "git help": { "name": "git help", "type": "", "path": "git/git help.html", "desc": "显示关于 Git 的帮助信息" }, "git http-backend": { "name": "git http-backend", "type": "", "path": "git/git http-backend.html", "desc": "Git 在HTTP的服务器端实现" }, "git http-fetch": { "name": "git http-fetch", "type": "", "path": "git/git http-fetch.html", "desc": "通过 HTTP 从远程 Git 存储库下载" }, "git http-push": { "name": "git http-push", "type": "", "path": "git/git http-push.html", "desc": "通过 HTTP / DAV 将对象推送到另一个存储库" }, "git imap-send": { "name": "git imap-send", "type": "", "path": "git/git imap-send.html", "desc": "从 stdin 发送一组补丁到一个 IMAP 文件夹" }, "git index-pack": { "name": "git index-pack", "type": "", "path": "git/git index-pack.html", "desc": "为现有打包归档文件生成包索引文件" }, "git init": { "name": "git init", "type": "", "path": "git/git init.html", "desc": "创建一个空的 Git 仓库或重新初始化一个现有仓库" }, "git instaweb": { "name": "git instaweb", "type": "", "path": "git/git instaweb.html", "desc": "立即在gitweb中浏览你的工作仓库" }, "git interpret-trailers": { "name": "git interpret-trailers", "type": "", "path": "git/git interpret-trailers.html", "desc": "帮助将结构化信息添加到提交消息中" }, "git log": { "name": "git log", "type": "", "path": "git/git log.html", "desc": "显示提交日志" }, "git ls-files": { "name": "git ls-files", "type": "", "path": "git/git ls-files.html", "desc": "显示有关索引和工作树中文件的信息" }, "git ls-remote": { "name": "git ls-remote", "type": "", "path": "git/git ls-remote.html", "desc": "在远程存储库中列出引用" }, "git ls-tree": { "name": "git ls-tree", "type": "", "path": "git/git ls-tree.html", "desc": "列出树对象的内容" }, "git mailinfo": { "name": "git mailinfo", "type": "", "path": "git/git mailinfo.html", "desc": "从单个电子邮件中提取补丁和作者身份" }, "git mailsplit": { "name": "git mailsplit", "type": "", "path": "git/git mailsplit.html", "desc": "简单的 UNIX mbox 分离器程序" }, "git merge-base": { "name": "git merge-base", "type": "", "path": "git/git merge-base.html", "desc": "为合并找到尽可能好的共同祖先" }, "git merge-file": { "name": "git merge-file", "type": "", "path": "git/git merge-file.html", "desc": "运行三路文件合并" }, "git merge-index": { "name": "git merge-index", "type": "", "path": "git/git merge-index.html", "desc": "为需要合并的文件运行合并" }, "git merge-one-file": { "name": "git merge-one-file", "type": "", "path": "git/git merge-one-file.html", "desc": "index 一起使用的标准帮助程序" }, "git merge-tree": { "name": "git merge-tree", "type": "", "path": "git/git merge-tree.html", "desc": "显示不触及索引的三路合并" }, "git merge": { "name": "git merge", "type": "", "path": "git/git merge.html", "desc": "Join two or more development histories together" }, "git mergetool": { "name": "git mergetool", "type": "", "path": "git/git mergetool.html", "desc": "运行合并冲突解决工具来解决合并冲突" }, "git mktag": { "name": "git mktag", "type": "", "path": "git/git mktag.html", "desc": "创建一个标签对象" }, "git mktree": { "name": "git mktree", "type": "", "path": "git/git mktree.html", "desc": "tree 格式的文本中构建树对象" }, "git mv": { "name": "git mv", "type": "", "path": "git/git mv.html", "desc": "移动或重命名文件,目录或符号链接" }, "git name-rev": { "name": "git name-rev", "type": "", "path": "git/git name-rev.html", "desc": "查找给定转速的符号名称" }, "git notes": { "name": "git notes", "type": "", "path": "git/git notes.html", "desc": "Add or inspect object notes" }, "git p4": { "name": "git p4", "type": "", "path": "git/git p4.html", "desc": "从 Perforce 存储库导入和提交" }, "git pack-objects": { "name": "git pack-objects", "type": "", "path": "git/git pack-objects.html", "desc": "创建一个打包的对象存档" }, "git pack-redundant": { "name": "git pack-redundant", "type": "", "path": "git/git pack-redundant.html", "desc": "查找多余的包文件" }, "git pack-refs": { "name": "git pack-refs", "type": "", "path": "git/git pack-refs.html", "desc": "打包标头和标签以便高效的存储库访问" }, "git parse-remote": { "name": "git parse-remote", "type": "", "path": "git/git parse-remote.html", "desc": "帮助解析远程存储库访问参数的例程" }, "git patch-id": { "name": "git patch-id", "type": "", "path": "git/git patch-id.html", "desc": "计算补丁的唯一 ID" }, "git prune-packed": { "name": "git prune-packed", "type": "", "path": "git/git prune-packed.html", "desc": "删除已经在包文件中的额外对象" }, "git prune": { "name": "git prune", "type": "", "path": "git/git prune.html", "desc": "从对象数据库中删除所有不可访问的对象" }, "git pull": { "name": "git pull", "type": "", "path": "git/git pull.html", "desc": "从另一个存储库或本地分支获取并与其集成" }, "git push": { "name": "git push", "type": "", "path": "git/git push.html", "desc": "更新远程引用以及关联的对象" }, "git quiltimport": { "name": "git quiltimport", "type": "", "path": "git/git quiltimport.html", "desc": "在当前分支上应用一个被套补丁集" }, "git read-tree": { "name": "git read-tree", "type": "", "path": "git/git read-tree.html", "desc": "将树信息读入索引" }, "git rebase": { "name": "git rebase", "type": "", "path": "git/git rebase.html", "desc": "重新申请提交另一个基本技巧" }, "git receive-pack": { "name": "git receive-pack", "type": "", "path": "git/git receive-pack.html", "desc": "接收推入存储库的内容" }, "git reflog": { "name": "git reflog", "type": "", "path": "git/git reflog.html", "desc": "管理reflog信息" }, "git remote-ext": { "name": "git remote-ext", "type": "", "path": "git/git remote-ext.html", "desc": "将智能传输桥接到外部命令。" }, "git remote-fd": { "name": "git remote-fd", "type": "", "path": "git/git remote-fd.html", "desc": "将智能传输流反射回调用者" }, "git remote-testgit": { "name": "git remote-testgit", "type": "", "path": "git/git remote-testgit.html", "desc": "helper" }, "git remote": { "name": "git remote", "type": "", "path": "git/git remote.html", "desc": "管理追踪存储库的集合" }, "git repack": { "name": "git repack", "type": "", "path": "git/git repack.html", "desc": "在存储库中打包解包的对象" }, "git replace": { "name": "git replace", "type": "", "path": "git/git replace.html", "desc": "创建,列出,删除引用来替换对象" }, "git request-pull": { "name": "git request-pull", "type": "", "path": "git/git request-pull.html", "desc": "生成未决更改的摘要" }, "git rerere": { "name": "git rerere", "type": "", "path": "git/git rerere.html", "desc": "重复使用冲突合并的记录分辨率" }, "git reset": { "name": "git reset", "type": "", "path": "git/git reset.html", "desc": "将当前 HEAD 重置为指定状态" }, "git rev-list": { "name": "git rev-list", "type": "", "path": "git/git rev-list.html", "desc": "按反向时间顺序列出提交对象" }, "git rev-parse": { "name": "git rev-parse", "type": "", "path": "git/git rev-parse.html", "desc": "Pick out and massage parameters" }, "git revert": { "name": "git revert", "type": "", "path": "git/git revert.html", "desc": "恢复一些现有的提交" }, "git rm": { "name": "git rm", "type": "", "path": "git/git rm.html", "desc": "从工作树和索引中删除文件" }, "git send-email": { "name": "git send-email", "type": "", "path": "git/git send-email.html", "desc": "以电子邮件的形式发送一组补丁" }, "git send-pack": { "name": "git send-pack", "type": "", "path": "git/git send-pack.html", "desc": "将对象通过 Git 协议推送到另一个存储库" }, "git sh-i18n": { "name": "git sh-i18n", "type": "", "path": "git/git sh-i18n.html", "desc": "Git 的 shell 脚本的i18n设置代码" }, "git sh-setup": { "name": "git sh-setup", "type": "", "path": "git/git sh-setup.html", "desc": "常用的 Git shell 脚本设置代码" }, "git shell": { "name": "git shell", "type": "", "path": "git/git shell.html", "desc": "SSH 访问的受限登录 shell" }, "git shortlog": { "name": "git shortlog", "type": "", "path": "git/git shortlog.html", "desc": "总结git log输出" }, "git show-branch": { "name": "git show-branch", "type": "", "path": "git/git show-branch.html", "desc": "显示分支及其提交" }, "git show-index": { "name": "git show-index", "type": "", "path": "git/git show-index.html", "desc": "显示打包归档索引" }, "git show-ref": { "name": "git show-ref", "type": "", "path": "git/git show-ref.html", "desc": "在本地存储库中列出引用" }, "git show": { "name": "git show", "type": "", "path": "git/git show.html", "desc": "显示各种类型的对象" }, "git stash": { "name": "git stash", "type": "", "path": "git/git stash.html", "desc": "将变化存储在脏的工作目录中" }, "git status": { "name": "git status", "type": "", "path": "git/git status.html", "desc": "显示工作树的状态" }, "git stripspace": { "name": "git stripspace", "type": "", "path": "git/git stripspace.html", "desc": "删除不必要的空格" }, "git submodule": { "name": "git submodule", "type": "", "path": "git/git submodule.html", "desc": "初始化,更新或检查子模块" }, "git svn": { "name": "git svn", "type": "", "path": "git/git svn.html", "desc": "Subversion版本库和Git之间的双向操作" }, "git symbolic-ref": { "name": "git symbolic-ref", "type": "", "path": "git/git symbolic-ref.html", "desc": "读取,修改和删除符号引用" }, "git tag": { "name": "git tag", "type": "", "path": "git/git tag.html", "desc": "创建,列出,删除或验证用 GPG 签名的标签对象" }, "git unpack-file": { "name": "git unpack-file", "type": "", "path": "git/git unpack-file.html", "desc": "用 blob 的内容创建一个临时文件" }, "git unpack-objects": { "name": "git unpack-objects", "type": "", "path": "git/git unpack-objects.html", "desc": "从打包的压缩文件中解压缩对象" }, "git update-index": { "name": "git update-index", "type": "", "path": "git/git update-index.html", "desc": "将工作树中的文件内容注册到索引" }, "git update-ref": { "name": "git update-ref", "type": "", "path": "git/git update-ref.html", "desc": "安全地更新存储在ref中的对象名称" }, "git update-server-info": { "name": "git update-server-info", "type": "", "path": "git/git update-server-info.html", "desc": "更新辅助信息文件来帮助愚蠢的服务器" }, "git upload-archive": { "name": "git upload-archive", "type": "", "path": "git/git upload-archive.html", "desc": "archive" }, "git upload-pack": { "name": "git upload-pack", "type": "", "path": "git/git upload-pack.html", "desc": "pack" }, "git var": { "name": "git var", "type": "", "path": "git/git var.html", "desc": "显示一个 Git 逻辑变量" }, "git verify-commit": { "name": "git verify-commit", "type": "", "path": "git/git verify-commit.html", "desc": "检查提交的 GPG 签名" }, "git verify-pack": { "name": "git verify-pack", "type": "", "path": "git/git verify-pack.html", "desc": "验证打包的Git存档文件" }, "git verify-tag": { "name": "git verify-tag", "type": "", "path": "git/git verify-tag.html", "desc": "检查标记的 GPG 签名" }, "git whatchanged": { "name": "git whatchanged", "type": "", "path": "git/git whatchanged.html", "desc": "每次提交引入不同的显示日志" }, "git worktree": { "name": "git worktree", "type": "", "path": "git/git worktree.html", "desc": "管理多个工作树" }, "git write-tree": { "name": "git write-tree", "type": "", "path": "git/git write-tree.html", "desc": "从当前索引创建一个树形对象" }, "Git": { "name": "Git", "type": "", "path": "git/Git.html", "desc": "迟钝的内容跟踪器" }, "gitattributes": { "name": "gitattributes", "type": "", "path": "git/gitattributes.html", "desc": "定义每个路径的属性" }, "gitcli": { "name": "gitcli", "type": "", "path": "git/gitcli.html", "desc": "Git 命令行界面和约定" }, "gitcore tutorial": { "name": "gitcore tutorial", "type": "", "path": "git/gitcore tutorial.html", "desc": "面向开发人员的Git核心教程" }, "gitcredentials": { "name": "gitcredentials", "type": "", "path": "git/gitcredentials.html", "desc": "为 Git 提供用户名和密码" }, "gitcvs migration": { "name": "gitcvs migration", "type": "", "path": "git/gitcvs migration.html", "desc": "Git for CVS users" }, "gitdiffcore": { "name": "gitdiffcore", "type": "", "path": "git/gitdiffcore.html", "desc": "Tweaking diff output" }, "giteveryday": { "name": "giteveryday", "type": "", "path": "git/giteveryday.html", "desc": "Everyday Git 的一组有用的最小命令" }, "gitglossary": { "name": "gitglossary", "type": "", "path": "git/gitglossary.html", "desc": "Git词汇表" }, "githooks": { "name": "githooks", "type": "", "path": "git/githooks.html", "desc": "Git 使用的挂钩" }, "gitignore": { "name": "gitignore", "type": "", "path": "git/gitignore.html", "desc": "指定忽略有意未被跟踪的文件" }, "gitk": { "name": "gitk", "type": "", "path": "git/gitk.html", "desc": "Git 存储库浏览器" }, "gitmodules": { "name": "gitmodules", "type": "", "path": "git/gitmodules.html", "desc": "名称" }, "gitnamespaces": { "name": "gitnamespaces", "type": "", "path": "git/gitnamespaces.html", "desc": "Git 命名空间" }, "gitremote helpers": { "name": "gitremote helpers", "type": "", "path": "git/gitremote helpers.html", "desc": "帮助程序与远程存储库进行交互" }, "gitrepository layout": { "name": "gitrepository layout", "type": "", "path": "git/gitrepository layout.html", "desc": "Git Repository Layout" }, "gitrevisions": { "name": "gitrevisions", "type": "", "path": "git/gitrevisions.html", "desc": "指定 Git 的修订和范围" }, "gitsubmodules": { "name": "gitsubmodules", "type": "", "path": "git/gitsubmodules.html", "desc": "在另一个仓库中安装一个仓库" }, "gittutorial 2": { "name": "gittutorial 2", "type": "", "path": "git/gittutorial 2.html", "desc": "Git 的教程介绍:第二部分" }, "gittutorial": { "name": "gittutorial", "type": "", "path": "git/gittutorial.html", "desc": "Git 的教程介绍" }, "gitweb.conf": { "name": "gitweb.conf", "type": "", "path": "git/gitweb.conf.html", "desc": "Gitweb( Git web 界面)配置文件" }, "gitweb": { "name": "gitweb", "type": "", "path": "git/gitweb.html", "desc": "Git web界面(Git仓库的前端)" }, "gitworkflows": { "name": "gitworkflows", "type": "", "path": "git/gitworkflows.html", "desc": "使用 Git 推荐的工作流程概述" } } \ No newline at end of file diff --git a/index/linux.json b/index/linux.json index 72daa428..4bd5d695 100644 --- a/index/linux.json +++ b/index/linux.json @@ -1 +1 @@ -{ "ab.html": "Apache服务器的性能测试工具", "accept.html": "指示打印系统接受发往指定目标打印机的打印任务", "ack.html": "比grep好用的文本搜索工具", "alias.html": "用来设置指令的别名", "apachectl.html": "Apache服务器前端控制工具", "apk.html": "Alpine Linux 下的包管理工具", "apropos.html": "在 whatis 数据库中查找字符串", "apt-get.html": "Debian Linux发行版中的APT软件包管理工具", "apt-key.html": "管理Debian Linux系统中的软件包密钥", "apt-sortpkgs.html": "Debian Linux下对软件包索引文件进行排序的工具", "aptitude.html": "Debian Linux系统中软件包管理工具", "ar.html": "建立或修改备存文件,或是从备存文件中抽取文件", "arch.html": "显示当前主机的硬件架构类型", "arj.html": "用于创建和管理.arj压缩包", "arp.html": "arp 命令用于显示和修改 IP 到 MAC 转换表。ARP 是 Address Resolution Protocol,地址解析协议,是通过解析网络层地址来找寻数据链路层地址的一个网络协议包中极其重要的网络传输协议。而该命令可以显示和修改 arp 协议解析表中的缓冲数据。", "arpd.html": "收集免费ARP信息", "arping.html": "通过发送ARP协议报文测试网络", "arptables.html": "管理ARP包过滤规则表", "arpwatch.html": "监听网络上ARP的记录", "as.html": "汇编语言编译器", "at.html": "在指定时间执行一个任务", "atop.html": "监控Linux系统资源与进程的工具", "atq.html": "列出当前用户的at任务列表", "atrm.html": "删除待执行任务队列中的指定任务", "awk.html": "文本和数据进行处理的编程语言", "axel.html": "多线程下载工具", "badblocks.html": "查找磁盘中损坏的区块", "basename.html": "打印目录或者文件的基本名称", "batch.html": "在系统不繁忙的时候执行定时任务", "bc.html": "算术操作精密运算工具", "bg.html": "用于将作业放到后台运行", "bind.html": "显示或设置键盘按键与其相关的功能", "blkid.html": "查看块设备的文件系统类型、LABEL、UUID等信息", "blockdev.html": "从命令行调用区块设备控制程序", "bmodinfo.html": "显示给定模块的详细信息", "builtin.html": "执行shell内部命令", "bunzip2.html": "创一个bz2文件压缩包", "bye.html": "命令用于中断FTP连线并结束程序。。", "bzcat.html": "解压缩指定的.bz2文件", "bzcmp.html": "比较两个压缩包中的文件", "bzdiff.html": "直接比较两个.bz2压缩包中文件的不同", "bzgrep.html": "使用正则表达式搜索.bz2压缩包中文件", "bzip2.html": "将文件压缩成bz2格式", "bzip2recover.html": "恢复被破坏的.bz2压缩包中的文件", "bzless.html": "增强.bz2压缩包查看器", "bzmore.html": "查看bzip2压缩过的文本文件的内容", "cal.html": "显示当前日历或指定日期的日历", "cancel.html": "取消已存在的打印任务", "cat.html": "连接文件并打印到标准输出设备上", "cd.html": "切换用户当前工作目录", "cdrecord.html": "Linux系统下光盘刻录功能命令", "chage.html": "修改帐号和密码的有效期限", "chattr.html": "用来改变文件属性", "chcon.html": "修改对象(文件)的安全上下文", "chfn.html": "用来改变finger命令显示的信息", "chgrp.html": "用来变更文件或目录的所属群组", "chkconfig.html": "检查或设置系统的各种服务", "chmod.html": "用来变更文件或目录的权限", "chown.html": "用来变更文件或目录的拥有者或所属群组", "chpasswd.html": "批量更新用户口令的工具", "chroot.html": "把根目录换成指定的目的目录", "chsh.html": "用来更换登录系统时使用的shell", "cksum.html": "检查文件的CRC是否正确", "clear.html": "清除当前屏幕终端上的任何信息", "clock.html": "用于调整 RTC 时间。", "clockdiff.html": "检测两台linux主机的时间差", "cmp.html": "比较两个文件是否有差异", "col.html": "过滤控制字符", "colrm.html": "删除文件中的指定列", "comm.html": "两个文件之间的比较", "command.html": "调用并执行指定的命令", "compress.html": "使用Lempress-Ziv编码压缩数据文件", "consoletype.html": "输出已连接的终端类型", "convertquota.html": "把老的配额文件转换为新的格式", "cp.html": "将源文件或目录复制到目标文件或目录中", "cpio.html": "用来建立、还原备份档的工具程序", "crontab.html": "提交和管理用户的需要周期性执行的任务", "csplit.html": "将一个大文件分割成小的碎片文件", "cu.html": "用于连接另一个系统主机。", "cupsdisable.html": "停止指定的打印机", "cupsenable.html": "启动指定的打印机", "curl.html": "利用URL规则在命令行下工作的文件传输工具", "cut.html": "连接文件并打印到标准输出设备上", "date.html": "显示或设置系统时间与日期", "dd.html": "复制文件并对原文件的内容进行转换和格式化处理", "declare.html": "声明或显示shell变量", "depmod.html": "分析可载入模块的相依性", "df.html": "显示磁盘的相关信息", "dhclient.html": "动态获取或释放IP地址", "dhcpd.html": "运行DHCP服务器。", "dhcrelay.html": "使用dhcrelay命令可以提供中继DHCP和BOOTP请求", "diff.html": "比较给定的两个文件的不同", "diff3.html": "比较3个文件不同的地方", "diffstat.html": "显示diff命令输出信息的柱状图", "dig.html": "域名查询工具", "dircolors.html": "置ls命令在显示目录或文件时所用的色彩", "dirname.html": "去除文件名中的非目录部分", "dirs.html": "显示目录记录", "dmesg.html": "显示Linux系统启动信息", "dmidecode.html": "在Linux系统下获取有关硬件方面的信息", "dnf.html": "新一代的RPM软件包管理器", "dnsdomainname.html": "定义DNS系统中FQDN名称的域名", "domainname.html": "显示和设置系统的NIS域名", "dos2unix.html": "将DOS格式文本文件转换成Unix格式", "dpkg-deb.html": "Debian Linux下的软件包管理工具", "dpkg-divert.html": "Debian Linux中创建并管理一个转向列表", "dpkg-preconfigure.html": "Debian Linux中软件包安装之前询问问题", "dpkg-query.html": "Debian Linux中软件包的查询工具", "dpkg-reconfigure.html": "Debian Linux中重新配制一个已经安装的软件包", "dpkg-split.html": "Debian Linux中将大软件包分割成小包", "dpkg-statoverride.html": "Debian Linux中覆盖文件的所有权和模式", "dpkg-trigger.html": "Debian Linux下的软件包触发器", "dpkg.html": "Debian Linux系统上安装、创建和管理软件包", "dris.html": "显示和清空目录堆栈中的内容", "dstat.html": "通用的系统资源统计工具", "du.html": "显示每个文件和目录的磁盘使用空间", "dump.html": "用于备份ext2或者ext3文件系统", "e2fsck.html": "用于检查第二扩展文件系统的完整性", "e2label.html": "设置第二扩展文件系统的卷标", "echo.html": "输出指定的字符串或者变量", "ed.html": "单行纯文本编辑器", "edquota.html": "用于编辑指定用户或工作组磁盘配额", "egrep.html": "在文件内查找指定的字符串", "eject.html": "用来退出抽取式设备", "elinks.html": "纯文本界面的WWW浏览器", "elm.html": "纯文本邮件客户端程序", "emacs.html": "功能强大的全屏文本编辑器", "enable.html": "启动或关闭shell内建命令", "env.html": "显示系统中已存在的环境变量", "ethtool.html": "显示或修改以太网卡的配置信息", "ex.html": "启动vim编辑器的ex编辑模式", "exec.html": "调用并执行指定的命令", "exit.html": "退出当前的shell", "expand.html": "将文件的制表符转换为空白字符", "export.html": "设置或显示系统环境变量", "exportfs.html": "管理NFS共享文件系统列表", "expr.html": "一款表达式计算工具", "fc.html": "修改历史命令并执行", "fdisk.html": "查看磁盘使用情况和磁盘分区", "fg.html": "将后台作业放到前台终端运行", "fgrep.html": "为文件搜索文字字符串", "file.html": "用来探测给定文件的类型。", "find.html": "在指定目录下查找文件", "findfs.html": "标签或UUID查找文件系统", "finger.html": "用于查找并显示用户信息", "firewall-cmd.html": "Linux上新用的防火墙软件,跟iptables差不多的工具。", "fishshell.html": "比 bash 更好用的 shell", "fmt.html": "读取文件后优化处理并输出", "fold.html": "控制文件内容输出时所占用的屏幕宽度", "free.html": "显示内存的使用情况", "fsck.html": "检查并且试图修复文件系统中的错误", "ftp.html": "用来设置文件系统相关功能", "ftpcount.html": "显示目前已FTP登入的用户人数", "ftpshut.html": "在指定的时间关闭FTP服务器", "ftptop.html": "proftpd服务器的连接状态", "ftpwho.html": "显示当前每个ftp会话信息", "fuser.html": "使用文件或文件结构识别进程", "gcc.html": "基于C/C++的编译器", "gcov.html": "测试程序的代码覆盖率的工具", "gdb.html": "功能强大的程序调试器", "get_module.html": "获取Linux内核模块的详细信息", "getenforce.html": "显示当前SELinux的应用模式,是强制、执行还是停用。", "getsebool.html": "查询SElinux策略内各项规则的布尔值", "git.html": "是目前世界上最先进的分布式版本控制系统", "gpasswd.html": "Linux下工作组文件的管理工具", "gpm.html": "提供文字模式下的滑鼠事件处理", "grep.html": "强大的文本搜索工具", "groupadd.html": "用于创建一个新的工作组", "groupdel.html": "用于删除指定的工作组", "groupmod.html": "更改群组识别码或名称", "groups.html": "用来打印指定用户所属的工作组", "grpck.html": "用于验证组文件的完整性", "grpconv.html": "用来开启群组的投影密码", "grpunconv.html": "用来关闭群组的投影密码", "grub.html": "多重引导程序grub的命令行shell工具", "gunzip.html": "用来解压缩文件", "gzexe.html": "用来压缩可执行文件", "gzip.html": "用来压缩文件", "halt.html": "关闭正在运行的Linux操作系统", "hdparm.html": "显示与设定硬盘的参数", "head.html": "在屏幕上显示指定文件的开头若干行", "help.html": "显示帮助信息", "hexdump.html": "显示文件十六进制格式", "history.html": "用于显示历史命令", "host.html": "常用的分析域名查询工具", "hostid.html": "用来打印当前主机的数字化标识", "hostname.html": "显示和设置系统的主机名", "hping3.html": "测试网络及主机的安全", "htdigest.html": "Apache服务器内置工具", "htop.html": "[非内部命令]一个互动的进程查看器,可以动态观察系统进程状况。", "htpasswd.html": "apache服务器创建密码认证文件", "hwclock.html": "显示与设定硬件时钟", "iconv.html": "转换文件的编码方式", "id.html": "显示用户的ID以及所属群组的ID", "ifcfg.html": "置Linux中的网络接口参数", "ifconfig.html": "配置和显示Linux系统网卡的网络参数", "ifdown.html": "禁用指定的网络接口", "ifstat.html": "统计网络接口流量状态", "iftop.html": "一款实时流量监控工具", "ifup.html": "激活指定的网络接口", "indent.html": "格式化C语言的源文件", "info.html": "Linux下info格式的帮助指令", "init.html": "init进程是所有Linux进程的父进程", "inotifywait.html": "异步文件系统监控机制", "insmod.html": "将给定的模块加载到内核中", "install.html": "安装或升级软件或备份数据", "iostat.html": "监视系统输入输出设备和CPU的使用情况", "iotop.html": "用来监视磁盘I/O使用状况的工具", "ip.html": "网络配置工具", "ip6tables-restore.html": "还原ip6tables表", "ip6tables-save.html": "保存ip6tables表配置", "ip6tables.html": "linux中防火墙软件", "ipcalc.html": "简单的IP地址计算器", "ipcrm.html": "删除消息队列、信号集、或者共享内存标识", "ipcs.html": "分析消息队列共享内存和信号量 ", "iperf.html": "网络性能测试工具", "iptables-restore.html": "还原iptables表的配置", "iptables-save.html": "备份iptables的表配置", "iptables.html": "Linux上常用的防火墙软件", "iptraf.html": "实时地监视网卡流量", "iptstate.html": "显示iptables的工作状态", "ispell.html": "检查文件中出现的拼写错误", "jed.html": "主要用于编辑代码的编辑器", "jobs.html": "显示Linux中的任务列表及任务状态", "joe.html": "强大的纯文本编辑器", "join.html": "两个文件中指定栏位内容相同的行连接起来", "jwhois.html": "whois 客户端服务", "kernelversion.html": "打印当前内核的主版本号", "kexec.html": "从当前正在运行的内核引导到一个新内核", "kill.html": "删除执行中的程序或工作", "killall.html": "使用进程的名称来杀死一组进程", "last.html": "列出目前与过去登入系统的用户相关信息", "lastb.html": "列出登入系统失败的用户相关信息", "lastlog.html": "显示系统中所有用户最近一次登录信息", "ld.html": "将目标文件连接为可执行程序", "ldconfig.html": "动态链接库管理命令", "ldd.html": "打印程序或者库文件所依赖的共享库列表", "less.html": "分屏上下翻页浏览文件内容", "let.html": "简单的计算器", "lftp.html": "优秀的文件客户端程序", "lftpget.html": "调用lftp指令下载指定的文件", "lha.html": "压缩或解压缩lzh格式文件", "lilo.html": "安装核心载入开机管理程序", "ln.html": "用来为文件创件连接", "lnstat.html": "显示Linux系统的网路状态", "locate.html": "比 find 好用的文件查找工具", "logger.html": "在系统日志中记录相应条目", "login.html": "登录系统或切换用户身份", "logname.html": "用来显示用户名称", "logout.html": "退出当前登录的Shell", "logrotate.html": "统日志进行轮转、压缩和删除", "logsave.html": "将命令的输出信息保存到指定的日志文件", "logwatch.html": "可定制和可插入式的日志监视系统", "look.html": "显示文件中以指定字符串开头的任意行", "losetup.html": "设定与控制循环(loop)设备", "lp.html": "打印文件或修改排队的打印任务", "lpadmin.html": "配置CUPS套件中的打印机和类", "lpc.html": "命令行方式打印机控制程序", "lpq.html": "显示打印队列中的打印任务的状态信息", "lpr.html": "将文件发送给指定打印机进行打印", "lprm.html": "删除打印队列中的打印任务", "lpstat.html": "显示CUPS中打印机的状态信息", "ls.html": "显示目录内容列表", "lsattr.html": "查看文件的第二扩展文件系统属性", "lsb_release.html": "显示发行版本信息", "lsblk.html": "列出块设备信息", "lscpu.html": "显示有关CPU架构的信息", "lsmod.html": "显示已载入系统的模块", "lsof.html": "显示Linux系统当前已打开的所有文件列表 `lsof -p pid`", "lspci.html": "显示当前主机的所有PCI总线信息", "lsusb.html": "显示本机的USB设备列表信息", "ltrace.html": "用来跟踪进程调用库函数的情况", "lvcreate.html": "用于创建LVM的逻辑卷", "lvdisplay.html": "显示逻辑卷属性", "lvextend.html": "扩展逻辑卷空间", "lvreduce.html": "收缩逻辑卷空间", "lvremove.html": "删除指定LVM逻辑卷", "lvresize.html": "调整逻辑卷空间大小", "lvscan.html": "扫描逻辑卷", "lynx.html": "纯文本模式的网页浏览器", "mail.html": "命令行下发送和接收电子邮件", "mailq.html": "显示待发送的邮件队列", "mailstat.html": "显示到达的邮件状态", "make.html": "GNU的工程化编译工具", "man.html": "查看Linux中的指令帮助", "md5sum.html": "计算和校验文件报文摘要的工具程序", "mesg.html": "设置当前终端的写权限", "mii-tool.html": "配置网络设备协商方式的工具", "mkbootdisk.html": "可建立目前系统的启动盘", "mkdir.html": "用来创建目录", "mke2fs.html": "创建磁盘分区上的“etc2/etc3”文件系统", "mkfs.html": "用于在设备上创建Linux文件系统", "mkinitrd.html": "建立要载入ramdisk的映像文件", "mkisofs.html": "建立ISO 9660映像文件", "mknod.html": "创建字符设备文件和块设备文件", "mkswap.html": "建立和设置SWAP交换分区", "mktemp.html": "创建临时文件供shell脚本使用", "modprobe.html": "自动处理可载入模块", "more.html": "显示文件内容,每次显示一屏", "mount.html": "用于挂载Linux系统外的文件。", "mpstat.html": "显示各个可用CPU的状态", "mtools.html": "显示mtools支持的指令", "mv.html": "用来对文件或目录重新命名", "mysql.html": "MySQL服务器客户端工具", "mysqladmin.html": "MySQL服务器管理客户端", "mysqldump.html": "MySQL数据库中备份工具", "mysqlimport.html": "为MySQL服务器用命令行方式导入数据", "mysqlshow.html": "显示MySQL中数据库相关信息", "named-checkzone.html": "使用named-checkzone命令可以进行区域文件有效性检查和转换,必须指定区域名称和区域文件名称。", "nano.html": "字符终端文本编辑器", "nc.html": "命令用于设置路由器。", "ncftp.html": "是增强的的FTP工具", "nethogs.html": "终端下的网络流量监控工具", "netstat.html": "查看Linux中网络系统状态信息", "newusers.html": "用于批处理的方式一次创建多个命令", "nfsstat.html": "列出NFS客户端和服务器的工作状态", "ngrep.html": "方便的数据包匹配和显示工具", "nice.html": "改变程序执行的优先权等级", "nisdomainname.html": "显示主机NIS的域名", "nl.html": "在Linux系统中计算文件内容行号", "nm.html": "显示二进制目标文件的符号表", "nmap.html": "网络探测和安全审核", "nmcli.html": "地址配置工具", "nohup.html": "将程序以忽略挂起信号的方式运行起来", "nologin.html": "拒绝用户登录系统", "nslookup.html": "查询域名DNS信息的工具", "ntpdate.html": "使用网络计时协议(NTP)设置日期和时间", "ntsysv.html": "集中管理系统的各种服务", "objdump.html": "显示二进制文件信息", "od.html": "输出文件的八进制、十六进制等格式编码的字节", "openssl.html": "强大的安全套接字层密码库", "parted.html": "磁盘分区和分区大小调整工具", "partprobe.html": "不重启的情况下重读分区", "passwd.html": "用于让用户可以更改自己的密码", "paste.html": "将多个文件按列队列合并", "patch.html": "为开放源代码软件安装补丁程序", "pathchk.html": "检查文件中不可移植的部分", "perl.html": "perl语言解释器", "pfctl.html": "PF防火墙的配置命令", "pgrep.html": "设置用户的认证信息,包括用户密码、密码过期时间等", "php.html": "PHP语言的命令行接口", "pico.html": "功能强大全屏幕的文本编辑器", "pidof.html": "查找指定名称的进程的进程号ID号", "pigz.html": "可以用来解压缩文件,gzip的并行实现升级版。", "ping.html": "测试主机之间网络的连通性", "pkill.html": "可以按照进程名杀死进程", "pmap.html": "报告进程的内存映射关系", "popd.html": "用于删除目录栈中的记录", "poweroff.html": "关闭Linux系统,关闭记录会被写入到/var/log/wtmp日志文件中。", "ppp-off.html": "关闭ppp连线", "pr.html": "将文本文件转换成适合打印的格式", "printf.html": "格式化并输出结果", "protoize.html": "GNU-C代码转换为ANSI-C代码", "ps.html": "报告当前系统的进程状态", "pssh.html": "批量管理执行", "pstack.html": "显示每个进程的栈跟踪", "pstree.html": "以树状图的方式展现进程之间的派生关系", "pushd.html": "将目录加入命令堆叠中", "pv.html": "显示当前在命令行执行的命令的进度信息,管道查看器。", "pvchange.html": "修改物理卷属性", "pvck.html": "检测物理卷的LVM元数据的一致性", "pvcreate.html": "将物理硬盘分区初始化为物理卷", "pvdisplay.html": "显示物理卷的属性", "pvremove.html": "删除一个存在的物理卷", "pvs.html": "输出物理卷信息报表", "pvscan.html": "扫描系统中所有硬盘的物理卷列表", "pwck.html": "用来验证系统认证文件内容和格式的完整性", "pwconv.html": "用来开启用户的投影密码", "pwd.html": "绝对路径方式显示用户当前工作目录", "pwunconv.html": "用来关闭用户的投影密码", "quota.html": "显示磁盘已使用的空间与限制", "quotacheck.html": "检查磁盘的使用空间与限制", "quotaoff.html": "关闭Linux内核中指定文件系统的磁盘配额功能", "quotaon.html": "激活Linux内核中指定文件系统的磁盘配额功能", "rcconf.html": "Debian Linux下的运行等级服务配置工具", "rcp.html": "使在两台Linux主机之间的文件复制操作更简单", "read.html": "从键盘读取变量值", "readelf.html": "用于显示elf格式文件的信息", "readonly.html": "定义只读shell变量或函数", "reboot.html": "重新启动正在运行的Linux操作系统", "reject.html": "指示打印系统拒绝发往指定目标打印机的打印任务", "rename.html": "用字符串替换的方式批量改变文件名", "renice.html": "修改正在运行的进程的调度优先级", "repquota.html": "报表的格式输出磁盘空间限制的状态", "resize.html": "命令设置终端机视窗的大小。", "restore.html": "所进行的操作和dump指令相反", "restorecon.html": "恢复文件的安全上下文", "rev.html": "将文件内容以字符为单位反序输出", "rexec.html": "运程执行Linux系统下命令 ", "rlogin.html": "从当前终端登录到远程Linux主机", "rm.html": "用于删除给定的文件和目录", "rmdir.html": "用来删除空目录", "rmmod.html": "从运行的内核中移除指定的内核模块", "route.html": "显示并设置Linux中静态路由表", "rpm.html": "RPM软件包的管理工具", "rpm2cpio.html": "将RPM软件包转换为cpio格式的文件", "rpmbuild.html": "创建RPM的二进制软件包和源码软件包", "rpmdb.html": "初始化和重建RPM数据库", "rpmquery.html": "从RPM数据库中查询软件包信息", "rpmsign.html": "使用RPM软件包的签名管理工具", "rpmverify.html": "验证已安装的RPM软件包的正确性", "rsh.html": "连接远程主机并执行命令", "rsync.html": "远程数据同步工具", "runlevel.html": "打印当前Linux系统的运行等级", "sar.html": "系统运行状态统计工具", "scp.html": "加密的方式在本地主机和远程主机之间复制文件", "screen.html": "用于命令行终端切换", "sed.html": "功能强大的流式文本编辑器", "seinfo.html": "查询SELinux的策略提供多少相关规则", "semanage.html": "默认目录的安全上下文查询与修改", "sendmail.html": "著名电子邮件服务器", "seq.html": "以指定增量从首数开始打印数字到尾数", "service.html": "控制系统服务的实用工具", "sesearch.html": "查询SELinux策略的规则详情", "set.html": "显示或设置shell特性及shell变量", "setfacl.html": "设置文件访问控制列表", "setpci.html": "查询和配置PCI设备的使用工具", "setsebool.html": "修改SElinux策略内各项规则的布尔值", "setsid.html": "在新的会话中运行程序。", "sftp-server.html": "sftp协议的服务器端程序", "sftp.html": "交互式的文件传输程序", "sh.html": "shell命令解释器", "shopt.html": "显示和设置shell操作选项", "showmount.html": "显示NFS服务器加载的信息", "shutdown.html": "用来执行系统关机的命令", "skill.html": "向选定的进程发送信号冻结进程", "slabtop.html": "实时显示内核slab内存缓存信息", "sleep.html": "将目前动作延迟一段时间", "slocate.html": "命令查找文件或目录", "smbclient.html": "交互方式访问samba服务器", "smbpasswd.html": "samba用户和密码管理工具", "sort.html": "将文件进行排序并输出", "source.html": "在当前Shell环境中从指定文件读取和执行命令,命令返回退出状态。", "speedtest-cli.html": "命令行下测试服务器外网速度", "spell.html": "对文件进行拼写检查", "split.html": "分割任意大小的文件", "squid.html": "squid服务器守护进程", "squidclient.html": "squid服务器的客户端管理工具", "ss.html": "比 netstat 好用的socket统计信息,iproute2 包附带的另一个工具,允许你查询 socket 的有关统计信息。", "ssh-add.html": "把专用密钥添加到ssh-agent的高速缓存中", "ssh-agent.html": "ssh密钥管理器", "ssh-copy-id.html": "把本地的ssh公钥文件安装到远程主机对应的账户下", "ssh-keygen.html": "为ssh生成、管理和转换认证密钥", "ssh-keyscan.html": "收集主机公钥的使用工具", "ssh.html": "openssh套件中的客户端连接工具", "sshd.html": "openssh软件套件中的服务器守护进程", "startx.html": "用来启动X Window", "stat.html": "用于显示文件的状态信息", "strace.html": "跟踪系统调用和信号", "strings.html": "在对象文件或二进制文件中查找可打印的字符串", "stty.html": "修改终端命令行的相关设置", "su.html": "用于切换当前用户身份到其他用户身份", "sudo.html": "以其他身份来执行命令", "sum.html": "计算文件的校验码和显示块数", "supervisord.html": "配置后台服务/常驻进程的进程管家工具", "swapoff.html": "关闭指定的交换空间", "swapon.html": "激活Linux系统中交换空间", "sync.html": "用于强制被改变的内容立刻写入磁盘", "sysctl.html": "时动态地修改内核的运行参数", "syslog.html": "系统默认的日志守护进程", "systemctl.html": "系统服务管理器指令", "systool.html": "显示基于总线、类和拓扑显示系统中设备的信息", "tac.html": "将文件以行为单位的反序输出", "tail.html": "在屏幕上显示指定文件的末尾若干行", "tailf.html": "在屏幕上显示指定文件的末尾若干行内容,通常用于日志文件的跟踪输出。", "talk.html": "让用户和其他用户聊天", "tar.html": "Linux下的归档使用工具,用来打包和备份。", "tcpdump.html": "一款sniffer工具,是Linux上的抓包工具,嗅探器。", "tcpreplay.html": "将PCAP包重新发送,用于性能或者功能测试", "tee.html": "把数据重定向到给定文件和屏幕上", "telint.html": "切换当前正在运行系统的运行等级", "telnet.html": "登录远程主机和管理(测试ip端口是否连通)", "tempfile.html": "shell中给临时文件命名", "test.html": "shell环境中测试条件表达式工具", "tftp.html": "在本机和tftp服务器之间使用TFTP协议传输文件", "time.html": "统计给定命令所花费的总时间", "tload.html": "显示系统负载状况", "tmux.html": "Tmux是一个优秀的终端复用软件,类似GNU Screen,但来自于OpenBSD,采用BSD授权。", "top.html": "显示或管理执行中的程序", "touch.html": "创建新的空文件", "tput.html": "通过terminfo数据库对终端会话进行初始化和操作", "tr.html": "将字符进行替换压缩和删除", "tracepath.html": "追踪目的主机经过的路由信息", "traceroute.html": "显示数据包到主机间的路径", "trap.html": "指定在接收到信号后将要采取的动作", "tree.html": "树状图列出目录的内容", "tty.html": "显示连接到当前标准输入的终端设备文件名。", "type.html": "显示指定命令的类型", "ulimit.html": "控制shell程序的资源", "umask.html": "用来设置限制新建文件权限的掩码", "umount.html": "用于卸载已经加载的文件系统", "unalias.html": "删除由alias设置的别名", "uname.html": "显示Linux系统信息", "unarj.html": "解压缩由arj命令创建的压缩包", "uncompress.html": "用来解压.Z文件", "unexpand.html": "将文件的空白字符转换为制表符", "uniq.html": "报告或忽略文件中的重复行", "unlink.html": "系统调用函数unlink去删除指定的文件", "unprotoize.html": "删除C语言源代码文件中的函数原型", "unset.html": "删除指定的shell变量或函数", "unzip.html": "用于解压缩由zip命令压缩的压缩包", "updatedb.html": "创建或更新slocate命令所必需的数据库文件", "uptime.html": "查看Linux系统负载信息", "useradd.html": "创建的新的系统用户", "userdel.html": "用于删除给定的用户以及与用户相关的文件", "usermod.html": "用于修改用户的基本信息", "usernetctl.html": "被允许时操作指定的网络接口", "users.html": "显示当前登录系统的所有用户", "uucico.html": "UUCP文件传输服务程序。", "uupick.html": "命令处理传送进来的文件。", "vdfuse.html": "VirtualBox软件挂载VDI分区文件工具", "vgchange.html": "修改卷组属性", "vgconvert.html": "转换卷组元数据格式", "vgcreate.html": "用于创建LVM卷组", "vgdisplay.html": "显示LVM卷组的信息", "vgextend.html": "向卷组中添加物理卷", "vgreduce.html": "从卷组中删除物理卷", "vgremove.html": "用于用户删除LVM卷组", "vgrename.html": "使用vgrename命令可以重命名卷组的名称。", "vgscan.html": "扫描并显示系统中的卷组", "vi.html": "功能强大的纯文本编辑器", "vmstat.html": "显示虚拟内存状态", "volname.html": "显示指定的ISO-9660格式的设备的卷名称", "w.html": "显示目前登入系统的用户信息", "wait.html": "等待进程执行完后返回", "wall.html": "向系统当前所有打开的终端上输出信息", "watch.html": "可以将命令的输出结果输出到标准输出设备,多用于周期性执行命令/定时执行命令", "wc.html": "统计文件的字节数、字数、行数", "wget.html": "Linux系统下载文件工具", "whatis.html": "查询一个命令执行什么功能", "whereis.html": "查找二进制程序、代码等相关文件路径", "which.html": "查找并显示给定命令的绝对路径", "who.html": "显示目前登录系统的用户信息", "whoami.html": "打印当前有效的用户名称", "write.html": "向指定登录用户终端上发送信息", "xargs.html": "给其他命令传递参数的一个过滤器", "xauth.html": "显示和编辑被用于连接X服务器的认证信息", "xclip.html": "管理 X 粘贴板", "xhost.html": "制哪些X客户端能够在X服务器上显示", "xinit.html": "是Linux下X-Window系统的初始化程序", "xlsatoms.html": "列出X服务器内部所有定义的原子成分", "xlsclients.html": "列出显示器中的客户端应用程序", "xlsfonts.html": "列出X Server使用的字体", "xset.html": "设置X-Window系统中的用户爱好的实用工具", "xz.html": "POSIX 平台开发具有高压缩率的工具。", "yes.html": "重复打印指定字符串", "ypdomainname.html": "显示主机的NIS的域名", "yum.html": "基于RPM的软件包管理器", "zcat.html": "显示压缩包中文件的内容", "zfore.html": "强制为gzip格式的压缩文件添加.gz后缀", "zip.html": "可以用来解压缩文件", "zipinfo.html": "用来列出压缩文件信息", "zipsplit.html": "将较大的zip压缩包分割成各个较小的压缩包", "znew.html": "将.Z压缩包重新转化为gzip命令压缩的.gz压缩包" } \ No newline at end of file +{ "ab":{"name":"ab","type":"","path":"linux/ab.html","desc":"Apache服务器的性能测试工具"}, "accept":{"name":"accept","type":"","path":"linux/accept.html","desc":"指示打印系统接受发往指定目标打印机的打印任务"}, "ack":{"name":"ack","type":"","path":"linux/ack.html","desc":"比grep好用的文本搜索工具"}, "alias":{"name":"alias","type":"","path":"linux/alias.html","desc":"用来设置指令的别名"}, "apachectl":{"name":"apachectl","type":"","path":"linux/apachectl.html","desc":"Apache服务器前端控制工具"}, "apk":{"name":"apk","type":"","path":"linux/apk.html","desc":"Alpine Linux 下的包管理工具"}, "apropos":{"name":"apropos","type":"","path":"linux/apropos.html","desc":"在 whatis 数据库中查找字符串"}, "apt-get":{"name":"apt-get","type":"","path":"linux/apt-get.html","desc":"Debian Linux发行版中的APT软件包管理工具"}, "apt-key":{"name":"apt-key","type":"","path":"linux/apt-key.html","desc":"管理Debian Linux系统中的软件包密钥"}, "apt-sortpkgs":{"name":"apt-sortpkgs","type":"","path":"linux/apt-sortpkgs.html","desc":"Debian Linux下对软件包索引文件进行排序的工具"}, "aptitude":{"name":"aptitude","type":"","path":"linux/aptitude.html","desc":"Debian Linux系统中软件包管理工具"}, "ar":{"name":"ar","type":"","path":"linux/ar.html","desc":"建立或修改备存文件,或是从备存文件中抽取文件"}, "arch":{"name":"arch","type":"","path":"linux/arch.html","desc":"显示当前主机的硬件架构类型"}, "arj":{"name":"arj","type":"","path":"linux/arj.html","desc":"用于创建和管理.arj压缩包"}, "arp":{"name":"arp","type":"","path":"linux/arp.html","desc":"arp 命令用于显示和修改 IP 到 MAC 转换表。ARP 是 Address Resolution Protocol,地址解析协议,是通过解析网络层地址来找寻数据链路层地址的一个网络协议包中极其重要的网络传输协议。而该命令可以显示和修改 arp 协议解析表中的缓冲数据。"}, "arpd":{"name":"arpd","type":"","path":"linux/arpd.html","desc":"收集免费ARP信息"}, "arping":{"name":"arping","type":"","path":"linux/arping.html","desc":"通过发送ARP协议报文测试网络"}, "arptables":{"name":"arptables","type":"","path":"linux/arptables.html","desc":"管理ARP包过滤规则表"}, "arpwatch":{"name":"arpwatch","type":"","path":"linux/arpwatch.html","desc":"监听网络上ARP的记录"}, "as":{"name":"as","type":"","path":"linux/as.html","desc":"汇编语言编译器"}, "at":{"name":"at","type":"","path":"linux/at.html","desc":"在指定时间执行一个任务"}, "atop":{"name":"atop","type":"","path":"linux/atop.html","desc":"监控Linux系统资源与进程的工具"}, "atq":{"name":"atq","type":"","path":"linux/atq.html","desc":"列出当前用户的at任务列表"}, "atrm":{"name":"atrm","type":"","path":"linux/atrm.html","desc":"删除待执行任务队列中的指定任务"}, "awk":{"name":"awk","type":"","path":"linux/awk.html","desc":"文本和数据进行处理的编程语言"}, "axel":{"name":"axel","type":"","path":"linux/axel.html","desc":"多线程下载工具"}, "badblocks":{"name":"badblocks","type":"","path":"linux/badblocks.html","desc":"查找磁盘中损坏的区块"}, "basename":{"name":"basename","type":"","path":"linux/basename.html","desc":"打印目录或者文件的基本名称"}, "batch":{"name":"batch","type":"","path":"linux/batch.html","desc":"在系统不繁忙的时候执行定时任务"}, "bc":{"name":"bc","type":"","path":"linux/bc.html","desc":"算术操作精密运算工具"}, "bg":{"name":"bg","type":"","path":"linux/bg.html","desc":"用于将作业放到后台运行"}, "bind":{"name":"bind","type":"","path":"linux/bind.html","desc":"显示或设置键盘按键与其相关的功能"}, "blkid":{"name":"blkid","type":"","path":"linux/blkid.html","desc":"查看块设备的文件系统类型、LABEL、UUID等信息"}, "blockdev":{"name":"blockdev","type":"","path":"linux/blockdev.html","desc":"从命令行调用区块设备控制程序"}, "bmodinfo":{"name":"bmodinfo","type":"","path":"linux/bmodinfo.html","desc":"显示给定模块的详细信息"}, "builtin":{"name":"builtin","type":"","path":"linux/builtin.html","desc":"执行shell内部命令"}, "bunzip2":{"name":"bunzip2","type":"","path":"linux/bunzip2.html","desc":"创一个bz2文件压缩包"}, "bye":{"name":"bye","type":"","path":"linux/bye.html","desc":"命令用于中断FTP连线并结束程序。。"}, "bzcat":{"name":"bzcat","type":"","path":"linux/bzcat.html","desc":"解压缩指定的.bz2文件"}, "bzcmp":{"name":"bzcmp","type":"","path":"linux/bzcmp.html","desc":"比较两个压缩包中的文件"}, "bzdiff":{"name":"bzdiff","type":"","path":"linux/bzdiff.html","desc":"直接比较两个.bz2压缩包中文件的不同"}, "bzgrep":{"name":"bzgrep","type":"","path":"linux/bzgrep.html","desc":"使用正则表达式搜索.bz2压缩包中文件"}, "bzip2":{"name":"bzip2","type":"","path":"linux/bzip2.html","desc":"将文件压缩成bz2格式"}, "bzip2recover":{"name":"bzip2recover","type":"","path":"linux/bzip2recover.html","desc":"恢复被破坏的.bz2压缩包中的文件"}, "bzless":{"name":"bzless","type":"","path":"linux/bzless.html","desc":"增强.bz2压缩包查看器"}, "bzmore":{"name":"bzmore","type":"","path":"linux/bzmore.html","desc":"查看bzip2压缩过的文本文件的内容"}, "cal":{"name":"cal","type":"","path":"linux/cal.html","desc":"显示当前日历或指定日期的日历"}, "cancel":{"name":"cancel","type":"","path":"linux/cancel.html","desc":"取消已存在的打印任务"}, "cat":{"name":"cat","type":"","path":"linux/cat.html","desc":"连接文件并打印到标准输出设备上"}, "cd":{"name":"cd","type":"","path":"linux/cd.html","desc":"切换用户当前工作目录"}, "cdrecord":{"name":"cdrecord","type":"","path":"linux/cdrecord.html","desc":"Linux系统下光盘刻录功能命令"}, "chage":{"name":"chage","type":"","path":"linux/chage.html","desc":"修改帐号和密码的有效期限"}, "chattr":{"name":"chattr","type":"","path":"linux/chattr.html","desc":"用来改变文件属性"}, "chcon":{"name":"chcon","type":"","path":"linux/chcon.html","desc":"修改对象(文件)的安全上下文"}, "chfn":{"name":"chfn","type":"","path":"linux/chfn.html","desc":"用来改变finger命令显示的信息"}, "chgrp":{"name":"chgrp","type":"","path":"linux/chgrp.html","desc":"用来变更文件或目录的所属群组"}, "chkconfig":{"name":"chkconfig","type":"","path":"linux/chkconfig.html","desc":"检查或设置系统的各种服务"}, "chmod":{"name":"chmod","type":"","path":"linux/chmod.html","desc":"用来变更文件或目录的权限"}, "chown":{"name":"chown","type":"","path":"linux/chown.html","desc":"用来变更文件或目录的拥有者或所属群组"}, "chpasswd":{"name":"chpasswd","type":"","path":"linux/chpasswd.html","desc":"批量更新用户口令的工具"}, "chroot":{"name":"chroot","type":"","path":"linux/chroot.html","desc":"把根目录换成指定的目的目录"}, "chsh":{"name":"chsh","type":"","path":"linux/chsh.html","desc":"用来更换登录系统时使用的shell"}, "cksum":{"name":"cksum","type":"","path":"linux/cksum.html","desc":"检查文件的CRC是否正确"}, "clear":{"name":"clear","type":"","path":"linux/clear.html","desc":"清除当前屏幕终端上的任何信息"}, "clock":{"name":"clock","type":"","path":"linux/clock.html","desc":"用于调整 RTC 时间。"}, "clockdiff":{"name":"clockdiff","type":"","path":"linux/clockdiff.html","desc":"检测两台linux主机的时间差"}, "cmp":{"name":"cmp","type":"","path":"linux/cmp.html","desc":"比较两个文件是否有差异"}, "col":{"name":"col","type":"","path":"linux/col.html","desc":"过滤控制字符"}, "colrm":{"name":"colrm","type":"","path":"linux/colrm.html","desc":"删除文件中的指定列"}, "comm":{"name":"comm","type":"","path":"linux/comm.html","desc":"两个文件之间的比较"}, "command":{"name":"command","type":"","path":"linux/command.html","desc":"调用并执行指定的命令"}, "compress":{"name":"compress","type":"","path":"linux/compress.html","desc":"使用Lempress-Ziv编码压缩数据文件"}, "consoletype":{"name":"consoletype","type":"","path":"linux/consoletype.html","desc":"输出已连接的终端类型"}, "convertquota":{"name":"convertquota","type":"","path":"linux/convertquota.html","desc":"把老的配额文件转换为新的格式"}, "cp":{"name":"cp","type":"","path":"linux/cp.html","desc":"将源文件或目录复制到目标文件或目录中"}, "cpio":{"name":"cpio","type":"","path":"linux/cpio.html","desc":"用来建立、还原备份档的工具程序"}, "crontab":{"name":"crontab","type":"","path":"linux/crontab.html","desc":"提交和管理用户的需要周期性执行的任务"}, "csplit":{"name":"csplit","type":"","path":"linux/csplit.html","desc":"将一个大文件分割成小的碎片文件"}, "cu":{"name":"cu","type":"","path":"linux/cu.html","desc":"用于连接另一个系统主机。"}, "cupsdisable":{"name":"cupsdisable","type":"","path":"linux/cupsdisable.html","desc":"停止指定的打印机"}, "cupsenable":{"name":"cupsenable","type":"","path":"linux/cupsenable.html","desc":"启动指定的打印机"}, "curl":{"name":"curl","type":"","path":"linux/curl.html","desc":"利用URL规则在命令行下工作的文件传输工具"}, "cut":{"name":"cut","type":"","path":"linux/cut.html","desc":"连接文件并打印到标准输出设备上"}, "date":{"name":"date","type":"","path":"linux/date.html","desc":"显示或设置系统时间与日期"}, "dd":{"name":"dd","type":"","path":"linux/dd.html","desc":"复制文件并对原文件的内容进行转换和格式化处理"}, "declare":{"name":"declare","type":"","path":"linux/declare.html","desc":"声明或显示shell变量"}, "depmod":{"name":"depmod","type":"","path":"linux/depmod.html","desc":"分析可载入模块的相依性"}, "df":{"name":"df","type":"","path":"linux/df.html","desc":"显示磁盘的相关信息"}, "dhclient":{"name":"dhclient","type":"","path":"linux/dhclient.html","desc":"动态获取或释放IP地址"}, "dhcpd":{"name":"dhcpd","type":"","path":"linux/dhcpd.html","desc":"运行DHCP服务器。"}, "dhcrelay":{"name":"dhcrelay","type":"","path":"linux/dhcrelay.html","desc":"使用dhcrelay命令可以提供中继DHCP和BOOTP请求"}, "diff":{"name":"diff","type":"","path":"linux/diff.html","desc":"比较给定的两个文件的不同"}, "diff3":{"name":"diff3","type":"","path":"linux/diff3.html","desc":"比较3个文件不同的地方"}, "diffstat":{"name":"diffstat","type":"","path":"linux/diffstat.html","desc":"显示diff命令输出信息的柱状图"}, "dig":{"name":"dig","type":"","path":"linux/dig.html","desc":"域名查询工具"}, "dircolors":{"name":"dircolors","type":"","path":"linux/dircolors.html","desc":"置ls命令在显示目录或文件时所用的色彩"}, "dirname":{"name":"dirname","type":"","path":"linux/dirname.html","desc":"去除文件名中的非目录部分"}, "dirs":{"name":"dirs","type":"","path":"linux/dirs.html","desc":"显示目录记录"}, "dmesg":{"name":"dmesg","type":"","path":"linux/dmesg.html","desc":"显示Linux系统启动信息"}, "dmidecode":{"name":"dmidecode","type":"","path":"linux/dmidecode.html","desc":"在Linux系统下获取有关硬件方面的信息"}, "dnf":{"name":"dnf","type":"","path":"linux/dnf.html","desc":"新一代的RPM软件包管理器"}, "dnsdomainname":{"name":"dnsdomainname","type":"","path":"linux/dnsdomainname.html","desc":"定义DNS系统中FQDN名称的域名"}, "domainname":{"name":"domainname","type":"","path":"linux/domainname.html","desc":"显示和设置系统的NIS域名"}, "dos2unix":{"name":"dos2unix","type":"","path":"linux/dos2unix.html","desc":"将DOS格式文本文件转换成Unix格式"}, "dpkg-deb":{"name":"dpkg-deb","type":"","path":"linux/dpkg-deb.html","desc":"Debian Linux下的软件包管理工具"}, "dpkg-divert":{"name":"dpkg-divert","type":"","path":"linux/dpkg-divert.html","desc":"Debian Linux中创建并管理一个转向列表"}, "dpkg-preconfigure":{"name":"dpkg-preconfigure","type":"","path":"linux/dpkg-preconfigure.html","desc":"Debian Linux中软件包安装之前询问问题"}, "dpkg-query":{"name":"dpkg-query","type":"","path":"linux/dpkg-query.html","desc":"Debian Linux中软件包的查询工具"}, "dpkg-reconfigure":{"name":"dpkg-reconfigure","type":"","path":"linux/dpkg-reconfigure.html","desc":"Debian Linux中重新配制一个已经安装的软件包"}, "dpkg-split":{"name":"dpkg-split","type":"","path":"linux/dpkg-split.html","desc":"Debian Linux中将大软件包分割成小包"}, "dpkg-statoverride":{"name":"dpkg-statoverride","type":"","path":"linux/dpkg-statoverride.html","desc":"Debian Linux中覆盖文件的所有权和模式"}, "dpkg-trigger":{"name":"dpkg-trigger","type":"","path":"linux/dpkg-trigger.html","desc":"Debian Linux下的软件包触发器"}, "dpkg":{"name":"dpkg","type":"","path":"linux/dpkg.html","desc":"Debian Linux系统上安装、创建和管理软件包"}, "dris":{"name":"dris","type":"","path":"linux/dris.html","desc":"显示和清空目录堆栈中的内容"}, "dstat":{"name":"dstat","type":"","path":"linux/dstat.html","desc":"通用的系统资源统计工具"}, "du":{"name":"du","type":"","path":"linux/du.html","desc":"显示每个文件和目录的磁盘使用空间"}, "dump":{"name":"dump","type":"","path":"linux/dump.html","desc":"用于备份ext2或者ext3文件系统"}, "e2fsck":{"name":"e2fsck","type":"","path":"linux/e2fsck.html","desc":"用于检查第二扩展文件系统的完整性"}, "e2label":{"name":"e2label","type":"","path":"linux/e2label.html","desc":"设置第二扩展文件系统的卷标"}, "echo":{"name":"echo","type":"","path":"linux/echo.html","desc":"输出指定的字符串或者变量"}, "ed":{"name":"ed","type":"","path":"linux/ed.html","desc":"单行纯文本编辑器"}, "edquota":{"name":"edquota","type":"","path":"linux/edquota.html","desc":"用于编辑指定用户或工作组磁盘配额"}, "egrep":{"name":"egrep","type":"","path":"linux/egrep.html","desc":"在文件内查找指定的字符串"}, "eject":{"name":"eject","type":"","path":"linux/eject.html","desc":"用来退出抽取式设备"}, "elinks":{"name":"elinks","type":"","path":"linux/elinks.html","desc":"纯文本界面的WWW浏览器"}, "elm":{"name":"elm","type":"","path":"linux/elm.html","desc":"纯文本邮件客户端程序"}, "emacs":{"name":"emacs","type":"","path":"linux/emacs.html","desc":"功能强大的全屏文本编辑器"}, "enable":{"name":"enable","type":"","path":"linux/enable.html","desc":"启动或关闭shell内建命令"}, "env":{"name":"env","type":"","path":"linux/env.html","desc":"显示系统中已存在的环境变量"}, "ethtool":{"name":"ethtool","type":"","path":"linux/ethtool.html","desc":"显示或修改以太网卡的配置信息"}, "ex":{"name":"ex","type":"","path":"linux/ex.html","desc":"启动vim编辑器的ex编辑模式"}, "exec":{"name":"exec","type":"","path":"linux/exec.html","desc":"调用并执行指定的命令"}, "exit":{"name":"exit","type":"","path":"linux/exit.html","desc":"退出当前的shell"}, "expand":{"name":"expand","type":"","path":"linux/expand.html","desc":"将文件的制表符转换为空白字符"}, "export":{"name":"export","type":"","path":"linux/export.html","desc":"设置或显示系统环境变量"}, "exportfs":{"name":"exportfs","type":"","path":"linux/exportfs.html","desc":"管理NFS共享文件系统列表"}, "expr":{"name":"expr","type":"","path":"linux/expr.html","desc":"一款表达式计算工具"}, "fc":{"name":"fc","type":"","path":"linux/fc.html","desc":"修改历史命令并执行"}, "fdisk":{"name":"fdisk","type":"","path":"linux/fdisk.html","desc":"查看磁盘使用情况和磁盘分区"}, "fg":{"name":"fg","type":"","path":"linux/fg.html","desc":"将后台作业放到前台终端运行"}, "fgrep":{"name":"fgrep","type":"","path":"linux/fgrep.html","desc":"为文件搜索文字字符串"}, "file":{"name":"file","type":"","path":"linux/file.html","desc":"用来探测给定文件的类型。"}, "find":{"name":"find","type":"","path":"linux/find.html","desc":"在指定目录下查找文件"}, "findfs":{"name":"findfs","type":"","path":"linux/findfs.html","desc":"标签或UUID查找文件系统"}, "finger":{"name":"finger","type":"","path":"linux/finger.html","desc":"用于查找并显示用户信息"}, "firewall-cmd":{"name":"firewall-cmd","type":"","path":"linux/firewall-cmd.html","desc":"Linux上新用的防火墙软件,跟iptables差不多的工具。"}, "fishshell":{"name":"fishshell","type":"","path":"linux/fishshell.html","desc":"比 bash 更好用的 shell"}, "fmt":{"name":"fmt","type":"","path":"linux/fmt.html","desc":"读取文件后优化处理并输出"}, "fold":{"name":"fold","type":"","path":"linux/fold.html","desc":"控制文件内容输出时所占用的屏幕宽度"}, "free":{"name":"free","type":"","path":"linux/free.html","desc":"显示内存的使用情况"}, "fsck":{"name":"fsck","type":"","path":"linux/fsck.html","desc":"检查并且试图修复文件系统中的错误"}, "ftp":{"name":"ftp","type":"","path":"linux/ftp.html","desc":"用来设置文件系统相关功能"}, "ftpcount":{"name":"ftpcount","type":"","path":"linux/ftpcount.html","desc":"显示目前已FTP登入的用户人数"}, "ftpshut":{"name":"ftpshut","type":"","path":"linux/ftpshut.html","desc":"在指定的时间关闭FTP服务器"}, "ftptop":{"name":"ftptop","type":"","path":"linux/ftptop.html","desc":"proftpd服务器的连接状态"}, "ftpwho":{"name":"ftpwho","type":"","path":"linux/ftpwho.html","desc":"显示当前每个ftp会话信息"}, "fuser":{"name":"fuser","type":"","path":"linux/fuser.html","desc":"使用文件或文件结构识别进程"}, "gcc":{"name":"gcc","type":"","path":"linux/gcc.html","desc":"基于C/C++的编译器"}, "gcov":{"name":"gcov","type":"","path":"linux/gcov.html","desc":"测试程序的代码覆盖率的工具"}, "gdb":{"name":"gdb","type":"","path":"linux/gdb.html","desc":"功能强大的程序调试器"}, "get_module":{"name":"get_module","type":"","path":"linux/get_module.html","desc":"获取Linux内核模块的详细信息"}, "getenforce":{"name":"getenforce","type":"","path":"linux/getenforce.html","desc":"显示当前SELinux的应用模式,是强制、执行还是停用。"}, "getsebool":{"name":"getsebool","type":"","path":"linux/getsebool.html","desc":"查询SElinux策略内各项规则的布尔值"}, "git":{"name":"git","type":"","path":"linux/git.html","desc":"是目前世界上最先进的分布式版本控制系统"}, "gpasswd":{"name":"gpasswd","type":"","path":"linux/gpasswd.html","desc":"Linux下工作组文件的管理工具"}, "gpm":{"name":"gpm","type":"","path":"linux/gpm.html","desc":"提供文字模式下的滑鼠事件处理"}, "grep":{"name":"grep","type":"","path":"linux/grep.html","desc":"强大的文本搜索工具"}, "groupadd":{"name":"groupadd","type":"","path":"linux/groupadd.html","desc":"用于创建一个新的工作组"}, "groupdel":{"name":"groupdel","type":"","path":"linux/groupdel.html","desc":"用于删除指定的工作组"}, "groupmod":{"name":"groupmod","type":"","path":"linux/groupmod.html","desc":"更改群组识别码或名称"}, "groups":{"name":"groups","type":"","path":"linux/groups.html","desc":"用来打印指定用户所属的工作组"}, "grpck":{"name":"grpck","type":"","path":"linux/grpck.html","desc":"用于验证组文件的完整性"}, "grpconv":{"name":"grpconv","type":"","path":"linux/grpconv.html","desc":"用来开启群组的投影密码"}, "grpunconv":{"name":"grpunconv","type":"","path":"linux/grpunconv.html","desc":"用来关闭群组的投影密码"}, "grub":{"name":"grub","type":"","path":"linux/grub.html","desc":"多重引导程序grub的命令行shell工具"}, "gunzip":{"name":"gunzip","type":"","path":"linux/gunzip.html","desc":"用来解压缩文件"}, "gzexe":{"name":"gzexe","type":"","path":"linux/gzexe.html","desc":"用来压缩可执行文件"}, "gzip":{"name":"gzip","type":"","path":"linux/gzip.html","desc":"用来压缩文件"}, "halt":{"name":"halt","type":"","path":"linux/halt.html","desc":"关闭正在运行的Linux操作系统"}, "hdparm":{"name":"hdparm","type":"","path":"linux/hdparm.html","desc":"显示与设定硬盘的参数"}, "head":{"name":"head","type":"","path":"linux/head.html","desc":"在屏幕上显示指定文件的开头若干行"}, "help":{"name":"help","type":"","path":"linux/help.html","desc":"显示帮助信息"}, "hexdump":{"name":"hexdump","type":"","path":"linux/hexdump.html","desc":"显示文件十六进制格式"}, "history":{"name":"history","type":"","path":"linux/history.html","desc":"用于显示历史命令"}, "host":{"name":"host","type":"","path":"linux/host.html","desc":"常用的分析域名查询工具"}, "hostid":{"name":"hostid","type":"","path":"linux/hostid.html","desc":"用来打印当前主机的数字化标识"}, "hostname":{"name":"hostname","type":"","path":"linux/hostname.html","desc":"显示和设置系统的主机名"}, "hping3":{"name":"hping3","type":"","path":"linux/hping3.html","desc":"测试网络及主机的安全"}, "htdigest":{"name":"htdigest","type":"","path":"linux/htdigest.html","desc":"Apache服务器内置工具"}, "htop":{"name":"htop","type":"","path":"linux/htop.html","desc":"[非内部命令]一个互动的进程查看器,可以动态观察系统进程状况。"}, "htpasswd":{"name":"htpasswd","type":"","path":"linux/htpasswd.html","desc":"apache服务器创建密码认证文件"}, "hwclock":{"name":"hwclock","type":"","path":"linux/hwclock.html","desc":"显示与设定硬件时钟"}, "iconv":{"name":"iconv","type":"","path":"linux/iconv.html","desc":"转换文件的编码方式"}, "id":{"name":"id","type":"","path":"linux/id.html","desc":"显示用户的ID以及所属群组的ID"}, "ifcfg":{"name":"ifcfg","type":"","path":"linux/ifcfg.html","desc":"置Linux中的网络接口参数"}, "ifconfig":{"name":"ifconfig","type":"","path":"linux/ifconfig.html","desc":"配置和显示Linux系统网卡的网络参数"}, "ifdown":{"name":"ifdown","type":"","path":"linux/ifdown.html","desc":"禁用指定的网络接口"}, "ifstat":{"name":"ifstat","type":"","path":"linux/ifstat.html","desc":"统计网络接口流量状态"}, "iftop":{"name":"iftop","type":"","path":"linux/iftop.html","desc":"一款实时流量监控工具"}, "ifup":{"name":"ifup","type":"","path":"linux/ifup.html","desc":"激活指定的网络接口"}, "indent":{"name":"indent","type":"","path":"linux/indent.html","desc":"格式化C语言的源文件"}, "info":{"name":"info","type":"","path":"linux/info.html","desc":"Linux下info格式的帮助指令"}, "init":{"name":"init","type":"","path":"linux/init.html","desc":"init进程是所有Linux进程的父进程"}, "inotifywait":{"name":"inotifywait","type":"","path":"linux/inotifywait.html","desc":"异步文件系统监控机制"}, "insmod":{"name":"insmod","type":"","path":"linux/insmod.html","desc":"将给定的模块加载到内核中"}, "install":{"name":"install","type":"","path":"linux/install.html","desc":"安装或升级软件或备份数据"}, "iostat":{"name":"iostat","type":"","path":"linux/iostat.html","desc":"监视系统输入输出设备和CPU的使用情况"}, "iotop":{"name":"iotop","type":"","path":"linux/iotop.html","desc":"用来监视磁盘I/O使用状况的工具"}, "ip":{"name":"ip","type":"","path":"linux/ip.html","desc":"网络配置工具"}, "ip6tables-restore":{"name":"ip6tables-restore","type":"","path":"linux/ip6tables-restore.html","desc":"还原ip6tables表"}, "ip6tables-save":{"name":"ip6tables-save","type":"","path":"linux/ip6tables-save.html","desc":"保存ip6tables表配置"}, "ip6tables":{"name":"ip6tables","type":"","path":"linux/ip6tables.html","desc":"linux中防火墙软件"}, "ipcalc":{"name":"ipcalc","type":"","path":"linux/ipcalc.html","desc":"简单的IP地址计算器"}, "ipcrm":{"name":"ipcrm","type":"","path":"linux/ipcrm.html","desc":"删除消息队列、信号集、或者共享内存标识"}, "ipcs":{"name":"ipcs","type":"","path":"linux/ipcs.html","desc":"分析消息队列共享内存和信号量 "}, "iperf":{"name":"iperf","type":"","path":"linux/iperf.html","desc":"网络性能测试工具"}, "iptables-restore":{"name":"iptables-restore","type":"","path":"linux/iptables-restore.html","desc":"还原iptables表的配置"}, "iptables-save":{"name":"iptables-save","type":"","path":"linux/iptables-save.html","desc":"备份iptables的表配置"}, "iptables":{"name":"iptables","type":"","path":"linux/iptables.html","desc":"Linux上常用的防火墙软件"}, "iptraf":{"name":"iptraf","type":"","path":"linux/iptraf.html","desc":"实时地监视网卡流量"}, "iptstate":{"name":"iptstate","type":"","path":"linux/iptstate.html","desc":"显示iptables的工作状态"}, "ispell":{"name":"ispell","type":"","path":"linux/ispell.html","desc":"检查文件中出现的拼写错误"}, "jed":{"name":"jed","type":"","path":"linux/jed.html","desc":"主要用于编辑代码的编辑器"}, "jobs":{"name":"jobs","type":"","path":"linux/jobs.html","desc":"显示Linux中的任务列表及任务状态"}, "joe":{"name":"joe","type":"","path":"linux/joe.html","desc":"强大的纯文本编辑器"}, "join":{"name":"join","type":"","path":"linux/join.html","desc":"两个文件中指定栏位内容相同的行连接起来"}, "jwhois":{"name":"jwhois","type":"","path":"linux/jwhois.html","desc":"whois 客户端服务"}, "kernelversion":{"name":"kernelversion","type":"","path":"linux/kernelversion.html","desc":"打印当前内核的主版本号"}, "kexec":{"name":"kexec","type":"","path":"linux/kexec.html","desc":"从当前正在运行的内核引导到一个新内核"}, "kill":{"name":"kill","type":"","path":"linux/kill.html","desc":"删除执行中的程序或工作"}, "killall":{"name":"killall","type":"","path":"linux/killall.html","desc":"使用进程的名称来杀死一组进程"}, "last":{"name":"last","type":"","path":"linux/last.html","desc":"列出目前与过去登入系统的用户相关信息"}, "lastb":{"name":"lastb","type":"","path":"linux/lastb.html","desc":"列出登入系统失败的用户相关信息"}, "lastlog":{"name":"lastlog","type":"","path":"linux/lastlog.html","desc":"显示系统中所有用户最近一次登录信息"}, "ld":{"name":"ld","type":"","path":"linux/ld.html","desc":"将目标文件连接为可执行程序"}, "ldconfig":{"name":"ldconfig","type":"","path":"linux/ldconfig.html","desc":"动态链接库管理命令"}, "ldd":{"name":"ldd","type":"","path":"linux/ldd.html","desc":"打印程序或者库文件所依赖的共享库列表"}, "less":{"name":"less","type":"","path":"linux/less.html","desc":"分屏上下翻页浏览文件内容"}, "let":{"name":"let","type":"","path":"linux/let.html","desc":"简单的计算器"}, "lftp":{"name":"lftp","type":"","path":"linux/lftp.html","desc":"优秀的文件客户端程序"}, "lftpget":{"name":"lftpget","type":"","path":"linux/lftpget.html","desc":"调用lftp指令下载指定的文件"}, "lha":{"name":"lha","type":"","path":"linux/lha.html","desc":"压缩或解压缩lzh格式文件"}, "lilo":{"name":"lilo","type":"","path":"linux/lilo.html","desc":"安装核心载入开机管理程序"}, "ln":{"name":"ln","type":"","path":"linux/ln.html","desc":"用来为文件创件连接"}, "lnstat":{"name":"lnstat","type":"","path":"linux/lnstat.html","desc":"显示Linux系统的网路状态"}, "locate":{"name":"locate","type":"","path":"linux/locate.html","desc":"比 find 好用的文件查找工具"}, "logger":{"name":"logger","type":"","path":"linux/logger.html","desc":"在系统日志中记录相应条目"}, "login":{"name":"login","type":"","path":"linux/login.html","desc":"登录系统或切换用户身份"}, "logname":{"name":"logname","type":"","path":"linux/logname.html","desc":"用来显示用户名称"}, "logout":{"name":"logout","type":"","path":"linux/logout.html","desc":"退出当前登录的Shell"}, "logrotate":{"name":"logrotate","type":"","path":"linux/logrotate.html","desc":"统日志进行轮转、压缩和删除"}, "logsave":{"name":"logsave","type":"","path":"linux/logsave.html","desc":"将命令的输出信息保存到指定的日志文件"}, "logwatch":{"name":"logwatch","type":"","path":"linux/logwatch.html","desc":"可定制和可插入式的日志监视系统"}, "look":{"name":"look","type":"","path":"linux/look.html","desc":"显示文件中以指定字符串开头的任意行"}, "losetup":{"name":"losetup","type":"","path":"linux/losetup.html","desc":"设定与控制循环(loop)设备"}, "lp":{"name":"lp","type":"","path":"linux/lp.html","desc":"打印文件或修改排队的打印任务"}, "lpadmin":{"name":"lpadmin","type":"","path":"linux/lpadmin.html","desc":"配置CUPS套件中的打印机和类"}, "lpc":{"name":"lpc","type":"","path":"linux/lpc.html","desc":"命令行方式打印机控制程序"}, "lpq":{"name":"lpq","type":"","path":"linux/lpq.html","desc":"显示打印队列中的打印任务的状态信息"}, "lpr":{"name":"lpr","type":"","path":"linux/lpr.html","desc":"将文件发送给指定打印机进行打印"}, "lprm":{"name":"lprm","type":"","path":"linux/lprm.html","desc":"删除打印队列中的打印任务"}, "lpstat":{"name":"lpstat","type":"","path":"linux/lpstat.html","desc":"显示CUPS中打印机的状态信息"}, "ls":{"name":"ls","type":"","path":"linux/ls.html","desc":"显示目录内容列表"}, "lsattr":{"name":"lsattr","type":"","path":"linux/lsattr.html","desc":"查看文件的第二扩展文件系统属性"}, "lsb_release":{"name":"lsb_release","type":"","path":"linux/lsb_release.html","desc":"显示发行版本信息"}, "lsblk":{"name":"lsblk","type":"","path":"linux/lsblk.html","desc":"列出块设备信息"}, "lscpu":{"name":"lscpu","type":"","path":"linux/lscpu.html","desc":"显示有关CPU架构的信息"}, "lsmod":{"name":"lsmod","type":"","path":"linux/lsmod.html","desc":"显示已载入系统的模块"}, "lsof":{"name":"lsof","type":"","path":"linux/lsof.html","desc":"显示Linux系统当前已打开的所有文件列表 `lsof -p pid`"}, "lspci":{"name":"lspci","type":"","path":"linux/lspci.html","desc":"显示当前主机的所有PCI总线信息"}, "lsusb":{"name":"lsusb","type":"","path":"linux/lsusb.html","desc":"显示本机的USB设备列表信息"}, "ltrace":{"name":"ltrace","type":"","path":"linux/ltrace.html","desc":"用来跟踪进程调用库函数的情况"}, "lvcreate":{"name":"lvcreate","type":"","path":"linux/lvcreate.html","desc":"用于创建LVM的逻辑卷"}, "lvdisplay":{"name":"lvdisplay","type":"","path":"linux/lvdisplay.html","desc":"显示逻辑卷属性"}, "lvextend":{"name":"lvextend","type":"","path":"linux/lvextend.html","desc":"扩展逻辑卷空间"}, "lvreduce":{"name":"lvreduce","type":"","path":"linux/lvreduce.html","desc":"收缩逻辑卷空间"}, "lvremove":{"name":"lvremove","type":"","path":"linux/lvremove.html","desc":"删除指定LVM逻辑卷"}, "lvresize":{"name":"lvresize","type":"","path":"linux/lvresize.html","desc":"调整逻辑卷空间大小"}, "lvscan":{"name":"lvscan","type":"","path":"linux/lvscan.html","desc":"扫描逻辑卷"}, "lynx":{"name":"lynx","type":"","path":"linux/lynx.html","desc":"纯文本模式的网页浏览器"}, "mail":{"name":"mail","type":"","path":"linux/mail.html","desc":"命令行下发送和接收电子邮件"}, "mailq":{"name":"mailq","type":"","path":"linux/mailq.html","desc":"显示待发送的邮件队列"}, "mailstat":{"name":"mailstat","type":"","path":"linux/mailstat.html","desc":"显示到达的邮件状态"}, "make":{"name":"make","type":"","path":"linux/make.html","desc":"GNU的工程化编译工具"}, "man":{"name":"man","type":"","path":"linux/man.html","desc":"查看Linux中的指令帮助"}, "md5sum":{"name":"md5sum","type":"","path":"linux/md5sum.html","desc":"计算和校验文件报文摘要的工具程序"}, "mesg":{"name":"mesg","type":"","path":"linux/mesg.html","desc":"设置当前终端的写权限"}, "mii-tool":{"name":"mii-tool","type":"","path":"linux/mii-tool.html","desc":"配置网络设备协商方式的工具"}, "mkbootdisk":{"name":"mkbootdisk","type":"","path":"linux/mkbootdisk.html","desc":"可建立目前系统的启动盘"}, "mkdir":{"name":"mkdir","type":"","path":"linux/mkdir.html","desc":"用来创建目录"}, "mke2fs":{"name":"mke2fs","type":"","path":"linux/mke2fs.html","desc":"创建磁盘分区上的“etc2/etc3”文件系统"}, "mkfs":{"name":"mkfs","type":"","path":"linux/mkfs.html","desc":"用于在设备上创建Linux文件系统"}, "mkinitrd":{"name":"mkinitrd","type":"","path":"linux/mkinitrd.html","desc":"建立要载入ramdisk的映像文件"}, "mkisofs":{"name":"mkisofs","type":"","path":"linux/mkisofs.html","desc":"建立ISO 9660映像文件"}, "mknod":{"name":"mknod","type":"","path":"linux/mknod.html","desc":"创建字符设备文件和块设备文件"}, "mkswap":{"name":"mkswap","type":"","path":"linux/mkswap.html","desc":"建立和设置SWAP交换分区"}, "mktemp":{"name":"mktemp","type":"","path":"linux/mktemp.html","desc":"创建临时文件供shell脚本使用"}, "modprobe":{"name":"modprobe","type":"","path":"linux/modprobe.html","desc":"自动处理可载入模块"}, "more":{"name":"more","type":"","path":"linux/more.html","desc":"显示文件内容,每次显示一屏"}, "mount":{"name":"mount","type":"","path":"linux/mount.html","desc":"用于挂载Linux系统外的文件。"}, "mpstat":{"name":"mpstat","type":"","path":"linux/mpstat.html","desc":"显示各个可用CPU的状态"}, "mtools":{"name":"mtools","type":"","path":"linux/mtools.html","desc":"显示mtools支持的指令"}, "mv":{"name":"mv","type":"","path":"linux/mv.html","desc":"用来对文件或目录重新命名"}, "mysql":{"name":"mysql","type":"","path":"linux/mysql.html","desc":"MySQL服务器客户端工具"}, "mysqladmin":{"name":"mysqladmin","type":"","path":"linux/mysqladmin.html","desc":"MySQL服务器管理客户端"}, "mysqldump":{"name":"mysqldump","type":"","path":"linux/mysqldump.html","desc":"MySQL数据库中备份工具"}, "mysqlimport":{"name":"mysqlimport","type":"","path":"linux/mysqlimport.html","desc":"为MySQL服务器用命令行方式导入数据"}, "mysqlshow":{"name":"mysqlshow","type":"","path":"linux/mysqlshow.html","desc":"显示MySQL中数据库相关信息"}, "named-checkzone":{"name":"named-checkzone","type":"","path":"linux/named-checkzone.html","desc":"使用named-checkzone命令可以进行区域文件有效性检查和转换,必须指定区域名称和区域文件名称。"}, "nano":{"name":"nano","type":"","path":"linux/nano.html","desc":"字符终端文本编辑器"}, "nc":{"name":"nc","type":"","path":"linux/nc.html","desc":"命令用于设置路由器。"}, "ncftp":{"name":"ncftp","type":"","path":"linux/ncftp.html","desc":"是增强的的FTP工具"}, "nethogs":{"name":"nethogs","type":"","path":"linux/nethogs.html","desc":"终端下的网络流量监控工具"}, "netstat":{"name":"netstat","type":"","path":"linux/netstat.html","desc":"查看Linux中网络系统状态信息"}, "newusers":{"name":"newusers","type":"","path":"linux/newusers.html","desc":"用于批处理的方式一次创建多个命令"}, "nfsstat":{"name":"nfsstat","type":"","path":"linux/nfsstat.html","desc":"列出NFS客户端和服务器的工作状态"}, "ngrep":{"name":"ngrep","type":"","path":"linux/ngrep.html","desc":"方便的数据包匹配和显示工具"}, "nice":{"name":"nice","type":"","path":"linux/nice.html","desc":"改变程序执行的优先权等级"}, "nisdomainname":{"name":"nisdomainname","type":"","path":"linux/nisdomainname.html","desc":"显示主机NIS的域名"}, "nl":{"name":"nl","type":"","path":"linux/nl.html","desc":"在Linux系统中计算文件内容行号"}, "nm":{"name":"nm","type":"","path":"linux/nm.html","desc":"显示二进制目标文件的符号表"}, "nmap":{"name":"nmap","type":"","path":"linux/nmap.html","desc":"网络探测和安全审核"}, "nmcli":{"name":"nmcli","type":"","path":"linux/nmcli.html","desc":"地址配置工具"}, "nohup":{"name":"nohup","type":"","path":"linux/nohup.html","desc":"将程序以忽略挂起信号的方式运行起来"}, "nologin":{"name":"nologin","type":"","path":"linux/nologin.html","desc":"拒绝用户登录系统"}, "nslookup":{"name":"nslookup","type":"","path":"linux/nslookup.html","desc":"查询域名DNS信息的工具"}, "ntpdate":{"name":"ntpdate","type":"","path":"linux/ntpdate.html","desc":"使用网络计时协议(NTP)设置日期和时间"}, "ntsysv":{"name":"ntsysv","type":"","path":"linux/ntsysv.html","desc":"集中管理系统的各种服务"}, "objdump":{"name":"objdump","type":"","path":"linux/objdump.html","desc":"显示二进制文件信息"}, "od":{"name":"od","type":"","path":"linux/od.html","desc":"输出文件的八进制、十六进制等格式编码的字节"}, "openssl":{"name":"openssl","type":"","path":"linux/openssl.html","desc":"强大的安全套接字层密码库"}, "parted":{"name":"parted","type":"","path":"linux/parted.html","desc":"磁盘分区和分区大小调整工具"}, "partprobe":{"name":"partprobe","type":"","path":"linux/partprobe.html","desc":"不重启的情况下重读分区"}, "passwd":{"name":"passwd","type":"","path":"linux/passwd.html","desc":"用于让用户可以更改自己的密码"}, "paste":{"name":"paste","type":"","path":"linux/paste.html","desc":"将多个文件按列队列合并"}, "patch":{"name":"patch","type":"","path":"linux/patch.html","desc":"为开放源代码软件安装补丁程序"}, "pathchk":{"name":"pathchk","type":"","path":"linux/pathchk.html","desc":"检查文件中不可移植的部分"}, "perl":{"name":"perl","type":"","path":"linux/perl.html","desc":"perl语言解释器"}, "pfctl":{"name":"pfctl","type":"","path":"linux/pfctl.html","desc":"PF防火墙的配置命令"}, "pgrep":{"name":"pgrep","type":"","path":"linux/pgrep.html","desc":"设置用户的认证信息,包括用户密码、密码过期时间等"}, "php":{"name":"php","type":"","path":"linux/php.html","desc":"PHP语言的命令行接口"}, "pico":{"name":"pico","type":"","path":"linux/pico.html","desc":"功能强大全屏幕的文本编辑器"}, "pidof":{"name":"pidof","type":"","path":"linux/pidof.html","desc":"查找指定名称的进程的进程号ID号"}, "pigz":{"name":"pigz","type":"","path":"linux/pigz.html","desc":"可以用来解压缩文件,gzip的并行实现升级版。"}, "ping":{"name":"ping","type":"","path":"linux/ping.html","desc":"测试主机之间网络的连通性"}, "pkill":{"name":"pkill","type":"","path":"linux/pkill.html","desc":"可以按照进程名杀死进程"}, "pmap":{"name":"pmap","type":"","path":"linux/pmap.html","desc":"报告进程的内存映射关系"}, "popd":{"name":"popd","type":"","path":"linux/popd.html","desc":"用于删除目录栈中的记录"}, "poweroff":{"name":"poweroff","type":"","path":"linux/poweroff.html","desc":"关闭Linux系统,关闭记录会被写入到/var/log/wtmp日志文件中。"}, "ppp-off":{"name":"ppp-off","type":"","path":"linux/ppp-off.html","desc":"关闭ppp连线"}, "pr":{"name":"pr","type":"","path":"linux/pr.html","desc":"将文本文件转换成适合打印的格式"}, "printf":{"name":"printf","type":"","path":"linux/printf.html","desc":"格式化并输出结果"}, "protoize":{"name":"protoize","type":"","path":"linux/protoize.html","desc":"GNU-C代码转换为ANSI-C代码"}, "ps":{"name":"ps","type":"","path":"linux/ps.html","desc":"报告当前系统的进程状态"}, "pssh":{"name":"pssh","type":"","path":"linux/pssh.html","desc":"批量管理执行"}, "pstack":{"name":"pstack","type":"","path":"linux/pstack.html","desc":"显示每个进程的栈跟踪"}, "pstree":{"name":"pstree","type":"","path":"linux/pstree.html","desc":"以树状图的方式展现进程之间的派生关系"}, "pushd":{"name":"pushd","type":"","path":"linux/pushd.html","desc":"将目录加入命令堆叠中"}, "pv":{"name":"pv","type":"","path":"linux/pv.html","desc":"显示当前在命令行执行的命令的进度信息,管道查看器。"}, "pvchange":{"name":"pvchange","type":"","path":"linux/pvchange.html","desc":"修改物理卷属性"}, "pvck":{"name":"pvck","type":"","path":"linux/pvck.html","desc":"检测物理卷的LVM元数据的一致性"}, "pvcreate":{"name":"pvcreate","type":"","path":"linux/pvcreate.html","desc":"将物理硬盘分区初始化为物理卷"}, "pvdisplay":{"name":"pvdisplay","type":"","path":"linux/pvdisplay.html","desc":"显示物理卷的属性"}, "pvremove":{"name":"pvremove","type":"","path":"linux/pvremove.html","desc":"删除一个存在的物理卷"}, "pvs":{"name":"pvs","type":"","path":"linux/pvs.html","desc":"输出物理卷信息报表"}, "pvscan":{"name":"pvscan","type":"","path":"linux/pvscan.html","desc":"扫描系统中所有硬盘的物理卷列表"}, "pwck":{"name":"pwck","type":"","path":"linux/pwck.html","desc":"用来验证系统认证文件内容和格式的完整性"}, "pwconv":{"name":"pwconv","type":"","path":"linux/pwconv.html","desc":"用来开启用户的投影密码"}, "pwd":{"name":"pwd","type":"","path":"linux/pwd.html","desc":"绝对路径方式显示用户当前工作目录"}, "pwunconv":{"name":"pwunconv","type":"","path":"linux/pwunconv.html","desc":"用来关闭用户的投影密码"}, "quota":{"name":"quota","type":"","path":"linux/quota.html","desc":"显示磁盘已使用的空间与限制"}, "quotacheck":{"name":"quotacheck","type":"","path":"linux/quotacheck.html","desc":"检查磁盘的使用空间与限制"}, "quotaoff":{"name":"quotaoff","type":"","path":"linux/quotaoff.html","desc":"关闭Linux内核中指定文件系统的磁盘配额功能"}, "quotaon":{"name":"quotaon","type":"","path":"linux/quotaon.html","desc":"激活Linux内核中指定文件系统的磁盘配额功能"}, "rcconf":{"name":"rcconf","type":"","path":"linux/rcconf.html","desc":"Debian Linux下的运行等级服务配置工具"}, "rcp":{"name":"rcp","type":"","path":"linux/rcp.html","desc":"使在两台Linux主机之间的文件复制操作更简单"}, "read":{"name":"read","type":"","path":"linux/read.html","desc":"从键盘读取变量值"}, "readelf":{"name":"readelf","type":"","path":"linux/readelf.html","desc":"用于显示elf格式文件的信息"}, "readonly":{"name":"readonly","type":"","path":"linux/readonly.html","desc":"定义只读shell变量或函数"}, "reboot":{"name":"reboot","type":"","path":"linux/reboot.html","desc":"重新启动正在运行的Linux操作系统"}, "reject":{"name":"reject","type":"","path":"linux/reject.html","desc":"指示打印系统拒绝发往指定目标打印机的打印任务"}, "rename":{"name":"rename","type":"","path":"linux/rename.html","desc":"用字符串替换的方式批量改变文件名"}, "renice":{"name":"renice","type":"","path":"linux/renice.html","desc":"修改正在运行的进程的调度优先级"}, "repquota":{"name":"repquota","type":"","path":"linux/repquota.html","desc":"报表的格式输出磁盘空间限制的状态"}, "resize":{"name":"resize","type":"","path":"linux/resize.html","desc":"命令设置终端机视窗的大小。"}, "restore":{"name":"restore","type":"","path":"linux/restore.html","desc":"所进行的操作和dump指令相反"}, "restorecon":{"name":"restorecon","type":"","path":"linux/restorecon.html","desc":"恢复文件的安全上下文"}, "rev":{"name":"rev","type":"","path":"linux/rev.html","desc":"将文件内容以字符为单位反序输出"}, "rexec":{"name":"rexec","type":"","path":"linux/rexec.html","desc":"运程执行Linux系统下命令 "}, "rlogin":{"name":"rlogin","type":"","path":"linux/rlogin.html","desc":"从当前终端登录到远程Linux主机"}, "rm":{"name":"rm","type":"","path":"linux/rm.html","desc":"用于删除给定的文件和目录"}, "rmdir":{"name":"rmdir","type":"","path":"linux/rmdir.html","desc":"用来删除空目录"}, "rmmod":{"name":"rmmod","type":"","path":"linux/rmmod.html","desc":"从运行的内核中移除指定的内核模块"}, "route":{"name":"route","type":"","path":"linux/route.html","desc":"显示并设置Linux中静态路由表"}, "rpm":{"name":"rpm","type":"","path":"linux/rpm.html","desc":"RPM软件包的管理工具"}, "rpm2cpio":{"name":"rpm2cpio","type":"","path":"linux/rpm2cpio.html","desc":"将RPM软件包转换为cpio格式的文件"}, "rpmbuild":{"name":"rpmbuild","type":"","path":"linux/rpmbuild.html","desc":"创建RPM的二进制软件包和源码软件包"}, "rpmdb":{"name":"rpmdb","type":"","path":"linux/rpmdb.html","desc":"初始化和重建RPM数据库"}, "rpmquery":{"name":"rpmquery","type":"","path":"linux/rpmquery.html","desc":"从RPM数据库中查询软件包信息"}, "rpmsign":{"name":"rpmsign","type":"","path":"linux/rpmsign.html","desc":"使用RPM软件包的签名管理工具"}, "rpmverify":{"name":"rpmverify","type":"","path":"linux/rpmverify.html","desc":"验证已安装的RPM软件包的正确性"}, "rsh":{"name":"rsh","type":"","path":"linux/rsh.html","desc":"连接远程主机并执行命令"}, "rsync":{"name":"rsync","type":"","path":"linux/rsync.html","desc":"远程数据同步工具"}, "runlevel":{"name":"runlevel","type":"","path":"linux/runlevel.html","desc":"打印当前Linux系统的运行等级"}, "sar":{"name":"sar","type":"","path":"linux/sar.html","desc":"系统运行状态统计工具"}, "scp":{"name":"scp","type":"","path":"linux/scp.html","desc":"加密的方式在本地主机和远程主机之间复制文件"}, "screen":{"name":"screen","type":"","path":"linux/screen.html","desc":"用于命令行终端切换"}, "sed":{"name":"sed","type":"","path":"linux/sed.html","desc":"功能强大的流式文本编辑器"}, "seinfo":{"name":"seinfo","type":"","path":"linux/seinfo.html","desc":"查询SELinux的策略提供多少相关规则"}, "semanage":{"name":"semanage","type":"","path":"linux/semanage.html","desc":"默认目录的安全上下文查询与修改"}, "sendmail":{"name":"sendmail","type":"","path":"linux/sendmail.html","desc":"著名电子邮件服务器"}, "seq":{"name":"seq","type":"","path":"linux/seq.html","desc":"以指定增量从首数开始打印数字到尾数"}, "service":{"name":"service","type":"","path":"linux/service.html","desc":"控制系统服务的实用工具"}, "sesearch":{"name":"sesearch","type":"","path":"linux/sesearch.html","desc":"查询SELinux策略的规则详情"}, "set":{"name":"set","type":"","path":"linux/set.html","desc":"显示或设置shell特性及shell变量"}, "setfacl":{"name":"setfacl","type":"","path":"linux/setfacl.html","desc":"设置文件访问控制列表"}, "setpci":{"name":"setpci","type":"","path":"linux/setpci.html","desc":"查询和配置PCI设备的使用工具"}, "setsebool":{"name":"setsebool","type":"","path":"linux/setsebool.html","desc":"修改SElinux策略内各项规则的布尔值"}, "setsid":{"name":"setsid","type":"","path":"linux/setsid.html","desc":"在新的会话中运行程序。"}, "sftp-server":{"name":"sftp-server","type":"","path":"linux/sftp-server.html","desc":"sftp协议的服务器端程序"}, "sftp":{"name":"sftp","type":"","path":"linux/sftp.html","desc":"交互式的文件传输程序"}, "sh":{"name":"sh","type":"","path":"linux/sh.html","desc":"shell命令解释器"}, "shopt":{"name":"shopt","type":"","path":"linux/shopt.html","desc":"显示和设置shell操作选项"}, "showmount":{"name":"showmount","type":"","path":"linux/showmount.html","desc":"显示NFS服务器加载的信息"}, "shutdown":{"name":"shutdown","type":"","path":"linux/shutdown.html","desc":"用来执行系统关机的命令"}, "skill":{"name":"skill","type":"","path":"linux/skill.html","desc":"向选定的进程发送信号冻结进程"}, "slabtop":{"name":"slabtop","type":"","path":"linux/slabtop.html","desc":"实时显示内核slab内存缓存信息"}, "sleep":{"name":"sleep","type":"","path":"linux/sleep.html","desc":"将目前动作延迟一段时间"}, "slocate":{"name":"slocate","type":"","path":"linux/slocate.html","desc":"命令查找文件或目录"}, "smbclient":{"name":"smbclient","type":"","path":"linux/smbclient.html","desc":"交互方式访问samba服务器"}, "smbpasswd":{"name":"smbpasswd","type":"","path":"linux/smbpasswd.html","desc":"samba用户和密码管理工具"}, "sort":{"name":"sort","type":"","path":"linux/sort.html","desc":"将文件进行排序并输出"}, "source":{"name":"source","type":"","path":"linux/source.html","desc":"在当前Shell环境中从指定文件读取和执行命令,命令返回退出状态。"}, "speedtest-cli":{"name":"speedtest-cli","type":"","path":"linux/speedtest-cli.html","desc":"命令行下测试服务器外网速度"}, "spell":{"name":"spell","type":"","path":"linux/spell.html","desc":"对文件进行拼写检查"}, "split":{"name":"split","type":"","path":"linux/split.html","desc":"分割任意大小的文件"}, "squid":{"name":"squid","type":"","path":"linux/squid.html","desc":"squid服务器守护进程"}, "squidclient":{"name":"squidclient","type":"","path":"linux/squidclient.html","desc":"squid服务器的客户端管理工具"}, "ss":{"name":"ss","type":"","path":"linux/ss.html","desc":"比 netstat 好用的socket统计信息,iproute2 包附带的另一个工具,允许你查询 socket 的有关统计信息。"}, "ssh-add":{"name":"ssh-add","type":"","path":"linux/ssh-add.html","desc":"把专用密钥添加到ssh-agent的高速缓存中"}, "ssh-agent":{"name":"ssh-agent","type":"","path":"linux/ssh-agent.html","desc":"ssh密钥管理器"}, "ssh-copy-id":{"name":"ssh-copy-id","type":"","path":"linux/ssh-copy-id.html","desc":"把本地的ssh公钥文件安装到远程主机对应的账户下"}, "ssh-keygen":{"name":"ssh-keygen","type":"","path":"linux/ssh-keygen.html","desc":"为ssh生成、管理和转换认证密钥"}, "ssh-keyscan":{"name":"ssh-keyscan","type":"","path":"linux/ssh-keyscan.html","desc":"收集主机公钥的使用工具"}, "ssh":{"name":"ssh","type":"","path":"linux/ssh.html","desc":"openssh套件中的客户端连接工具"}, "sshd":{"name":"sshd","type":"","path":"linux/sshd.html","desc":"openssh软件套件中的服务器守护进程"}, "startx":{"name":"startx","type":"","path":"linux/startx.html","desc":"用来启动X Window"}, "stat":{"name":"stat","type":"","path":"linux/stat.html","desc":"用于显示文件的状态信息"}, "strace":{"name":"strace","type":"","path":"linux/strace.html","desc":"跟踪系统调用和信号"}, "strings":{"name":"strings","type":"","path":"linux/strings.html","desc":"在对象文件或二进制文件中查找可打印的字符串"}, "stty":{"name":"stty","type":"","path":"linux/stty.html","desc":"修改终端命令行的相关设置"}, "su":{"name":"su","type":"","path":"linux/su.html","desc":"用于切换当前用户身份到其他用户身份"}, "sudo":{"name":"sudo","type":"","path":"linux/sudo.html","desc":"以其他身份来执行命令"}, "sum":{"name":"sum","type":"","path":"linux/sum.html","desc":"计算文件的校验码和显示块数"}, "supervisord":{"name":"supervisord","type":"","path":"linux/supervisord.html","desc":"配置后台服务/常驻进程的进程管家工具"}, "swapoff":{"name":"swapoff","type":"","path":"linux/swapoff.html","desc":"关闭指定的交换空间"}, "swapon":{"name":"swapon","type":"","path":"linux/swapon.html","desc":"激活Linux系统中交换空间"}, "sync":{"name":"sync","type":"","path":"linux/sync.html","desc":"用于强制被改变的内容立刻写入磁盘"}, "sysctl":{"name":"sysctl","type":"","path":"linux/sysctl.html","desc":"时动态地修改内核的运行参数"}, "syslog":{"name":"syslog","type":"","path":"linux/syslog.html","desc":"系统默认的日志守护进程"}, "systemctl":{"name":"systemctl","type":"","path":"linux/systemctl.html","desc":"系统服务管理器指令"}, "systool":{"name":"systool","type":"","path":"linux/systool.html","desc":"显示基于总线、类和拓扑显示系统中设备的信息"}, "tac":{"name":"tac","type":"","path":"linux/tac.html","desc":"将文件以行为单位的反序输出"}, "tail":{"name":"tail","type":"","path":"linux/tail.html","desc":"在屏幕上显示指定文件的末尾若干行"}, "tailf":{"name":"tailf","type":"","path":"linux/tailf.html","desc":"在屏幕上显示指定文件的末尾若干行内容,通常用于日志文件的跟踪输出。"}, "talk":{"name":"talk","type":"","path":"linux/talk.html","desc":"让用户和其他用户聊天"}, "tar":{"name":"tar","type":"","path":"linux/tar.html","desc":"Linux下的归档使用工具,用来打包和备份。"}, "tcpdump":{"name":"tcpdump","type":"","path":"linux/tcpdump.html","desc":"一款sniffer工具,是Linux上的抓包工具,嗅探器。"}, "tcpreplay":{"name":"tcpreplay","type":"","path":"linux/tcpreplay.html","desc":"将PCAP包重新发送,用于性能或者功能测试"}, "tee":{"name":"tee","type":"","path":"linux/tee.html","desc":"把数据重定向到给定文件和屏幕上"}, "telint":{"name":"telint","type":"","path":"linux/telint.html","desc":"切换当前正在运行系统的运行等级"}, "telnet":{"name":"telnet","type":"","path":"linux/telnet.html","desc":"登录远程主机和管理(测试ip端口是否连通)"}, "tempfile":{"name":"tempfile","type":"","path":"linux/tempfile.html","desc":"shell中给临时文件命名"}, "test":{"name":"test","type":"","path":"linux/test.html","desc":"shell环境中测试条件表达式工具"}, "tftp":{"name":"tftp","type":"","path":"linux/tftp.html","desc":"在本机和tftp服务器之间使用TFTP协议传输文件"}, "time":{"name":"time","type":"","path":"linux/time.html","desc":"统计给定命令所花费的总时间"}, "tload":{"name":"tload","type":"","path":"linux/tload.html","desc":"显示系统负载状况"}, "tmux":{"name":"tmux","type":"","path":"linux/tmux.html","desc":"Tmux是一个优秀的终端复用软件,类似GNU Screen,但来自于OpenBSD,采用BSD授权。"}, "top":{"name":"top","type":"","path":"linux/top.html","desc":"显示或管理执行中的程序"}, "touch":{"name":"touch","type":"","path":"linux/touch.html","desc":"创建新的空文件"}, "tput":{"name":"tput","type":"","path":"linux/tput.html","desc":"通过terminfo数据库对终端会话进行初始化和操作"}, "tr":{"name":"tr","type":"","path":"linux/tr.html","desc":"将字符进行替换压缩和删除"}, "tracepath":{"name":"tracepath","type":"","path":"linux/tracepath.html","desc":"追踪目的主机经过的路由信息"}, "traceroute":{"name":"traceroute","type":"","path":"linux/traceroute.html","desc":"显示数据包到主机间的路径"}, "trap":{"name":"trap","type":"","path":"linux/trap.html","desc":"指定在接收到信号后将要采取的动作"}, "tree":{"name":"tree","type":"","path":"linux/tree.html","desc":"树状图列出目录的内容"}, "tty":{"name":"tty","type":"","path":"linux/tty.html","desc":"显示连接到当前标准输入的终端设备文件名。"}, "type":{"name":"type","type":"","path":"linux/type.html","desc":"显示指定命令的类型"}, "ulimit":{"name":"ulimit","type":"","path":"linux/ulimit.html","desc":"控制shell程序的资源"}, "umask":{"name":"umask","type":"","path":"linux/umask.html","desc":"用来设置限制新建文件权限的掩码"}, "umount":{"name":"umount","type":"","path":"linux/umount.html","desc":"用于卸载已经加载的文件系统"}, "unalias":{"name":"unalias","type":"","path":"linux/unalias.html","desc":"删除由alias设置的别名"}, "uname":{"name":"uname","type":"","path":"linux/uname.html","desc":"显示Linux系统信息"}, "unarj":{"name":"unarj","type":"","path":"linux/unarj.html","desc":"解压缩由arj命令创建的压缩包"}, "uncompress":{"name":"uncompress","type":"","path":"linux/uncompress.html","desc":"用来解压.Z文件"}, "unexpand":{"name":"unexpand","type":"","path":"linux/unexpand.html","desc":"将文件的空白字符转换为制表符"}, "uniq":{"name":"uniq","type":"","path":"linux/uniq.html","desc":"报告或忽略文件中的重复行"}, "unlink":{"name":"unlink","type":"","path":"linux/unlink.html","desc":"系统调用函数unlink去删除指定的文件"}, "unprotoize":{"name":"unprotoize","type":"","path":"linux/unprotoize.html","desc":"删除C语言源代码文件中的函数原型"}, "unset":{"name":"unset","type":"","path":"linux/unset.html","desc":"删除指定的shell变量或函数"}, "unzip":{"name":"unzip","type":"","path":"linux/unzip.html","desc":"用于解压缩由zip命令压缩的压缩包"}, "updatedb":{"name":"updatedb","type":"","path":"linux/updatedb.html","desc":"创建或更新slocate命令所必需的数据库文件"}, "uptime":{"name":"uptime","type":"","path":"linux/uptime.html","desc":"查看Linux系统负载信息"}, "useradd":{"name":"useradd","type":"","path":"linux/useradd.html","desc":"创建的新的系统用户"}, "userdel":{"name":"userdel","type":"","path":"linux/userdel.html","desc":"用于删除给定的用户以及与用户相关的文件"}, "usermod":{"name":"usermod","type":"","path":"linux/usermod.html","desc":"用于修改用户的基本信息"}, "usernetctl":{"name":"usernetctl","type":"","path":"linux/usernetctl.html","desc":"被允许时操作指定的网络接口"}, "users":{"name":"users","type":"","path":"linux/users.html","desc":"显示当前登录系统的所有用户"}, "uucico":{"name":"uucico","type":"","path":"linux/uucico.html","desc":"UUCP文件传输服务程序。"}, "uupick":{"name":"uupick","type":"","path":"linux/uupick.html","desc":"命令处理传送进来的文件。"}, "vdfuse":{"name":"vdfuse","type":"","path":"linux/vdfuse.html","desc":"VirtualBox软件挂载VDI分区文件工具"}, "vgchange":{"name":"vgchange","type":"","path":"linux/vgchange.html","desc":"修改卷组属性"}, "vgconvert":{"name":"vgconvert","type":"","path":"linux/vgconvert.html","desc":"转换卷组元数据格式"}, "vgcreate":{"name":"vgcreate","type":"","path":"linux/vgcreate.html","desc":"用于创建LVM卷组"}, "vgdisplay":{"name":"vgdisplay","type":"","path":"linux/vgdisplay.html","desc":"显示LVM卷组的信息"}, "vgextend":{"name":"vgextend","type":"","path":"linux/vgextend.html","desc":"向卷组中添加物理卷"}, "vgreduce":{"name":"vgreduce","type":"","path":"linux/vgreduce.html","desc":"从卷组中删除物理卷"}, "vgremove":{"name":"vgremove","type":"","path":"linux/vgremove.html","desc":"用于用户删除LVM卷组"}, "vgrename":{"name":"vgrename","type":"","path":"linux/vgrename.html","desc":"使用vgrename命令可以重命名卷组的名称。"}, "vgscan":{"name":"vgscan","type":"","path":"linux/vgscan.html","desc":"扫描并显示系统中的卷组"}, "vi":{"name":"vi","type":"","path":"linux/vi.html","desc":"功能强大的纯文本编辑器"}, "vmstat":{"name":"vmstat","type":"","path":"linux/vmstat.html","desc":"显示虚拟内存状态"}, "volname":{"name":"volname","type":"","path":"linux/volname.html","desc":"显示指定的ISO-9660格式的设备的卷名称"}, "w":{"name":"w","type":"","path":"linux/w.html","desc":"显示目前登入系统的用户信息"}, "wait":{"name":"wait","type":"","path":"linux/wait.html","desc":"等待进程执行完后返回"}, "wall":{"name":"wall","type":"","path":"linux/wall.html","desc":"向系统当前所有打开的终端上输出信息"}, "watch":{"name":"watch","type":"","path":"linux/watch.html","desc":"可以将命令的输出结果输出到标准输出设备,多用于周期性执行命令/定时执行命令"}, "wc":{"name":"wc","type":"","path":"linux/wc.html","desc":"统计文件的字节数、字数、行数"}, "wget":{"name":"wget","type":"","path":"linux/wget.html","desc":"Linux系统下载文件工具"}, "whatis":{"name":"whatis","type":"","path":"linux/whatis.html","desc":"查询一个命令执行什么功能"}, "whereis":{"name":"whereis","type":"","path":"linux/whereis.html","desc":"查找二进制程序、代码等相关文件路径"}, "which":{"name":"which","type":"","path":"linux/which.html","desc":"查找并显示给定命令的绝对路径"}, "who":{"name":"who","type":"","path":"linux/who.html","desc":"显示目前登录系统的用户信息"}, "whoami":{"name":"whoami","type":"","path":"linux/whoami.html","desc":"打印当前有效的用户名称"}, "write":{"name":"write","type":"","path":"linux/write.html","desc":"向指定登录用户终端上发送信息"}, "xargs":{"name":"xargs","type":"","path":"linux/xargs.html","desc":"给其他命令传递参数的一个过滤器"}, "xauth":{"name":"xauth","type":"","path":"linux/xauth.html","desc":"显示和编辑被用于连接X服务器的认证信息"}, "xclip":{"name":"xclip","type":"","path":"linux/xclip.html","desc":"管理 X 粘贴板"}, "xhost":{"name":"xhost","type":"","path":"linux/xhost.html","desc":"制哪些X客户端能够在X服务器上显示"}, "xinit":{"name":"xinit","type":"","path":"linux/xinit.html","desc":"是Linux下X-Window系统的初始化程序"}, "xlsatoms":{"name":"xlsatoms","type":"","path":"linux/xlsatoms.html","desc":"列出X服务器内部所有定义的原子成分"}, "xlsclients":{"name":"xlsclients","type":"","path":"linux/xlsclients.html","desc":"列出显示器中的客户端应用程序"}, "xlsfonts":{"name":"xlsfonts","type":"","path":"linux/xlsfonts.html","desc":"列出X Server使用的字体"}, "xset":{"name":"xset","type":"","path":"linux/xset.html","desc":"设置X-Window系统中的用户爱好的实用工具"}, "xz":{"name":"xz","type":"","path":"linux/xz.html","desc":"POSIX 平台开发具有高压缩率的工具。"}, "yes":{"name":"yes","type":"","path":"linux/yes.html","desc":"重复打印指定字符串"}, "ypdomainname":{"name":"ypdomainname","type":"","path":"linux/ypdomainname.html","desc":"显示主机的NIS的域名"}, "yum":{"name":"yum","type":"","path":"linux/yum.html","desc":"基于RPM的软件包管理器"}, "zcat":{"name":"zcat","type":"","path":"linux/zcat.html","desc":"显示压缩包中文件的内容"}, "zfore":{"name":"zfore","type":"","path":"linux/zfore.html","desc":"强制为gzip格式的压缩文件添加.gz后缀"}, "zip":{"name":"zip","type":"","path":"linux/zip.html","desc":"可以用来解压缩文件"}, "zipinfo":{"name":"zipinfo","type":"","path":"linux/zipinfo.html","desc":"用来列出压缩文件信息"}, "zipsplit":{"name":"zipsplit","type":"","path":"linux/zipsplit.html","desc":"将较大的zip压缩包分割成各个较小的压缩包"}, "znew":{"name":"znew","type":"","path":"linux/znew.html","desc":"将.Z压缩包重新转化为gzip命令压缩的.gz压缩包"} } \ No newline at end of file diff --git a/index/php.json b/index/php.json index fc83e191..48b374f7 100644 --- a/index/php.json +++ b/index/php.json @@ -1 +1 @@ -{ "abs.html": "绝对值", "acos.html": "反余弦", "acosh.html": "反双曲余弦", "addcslashes.html": "以 C 语言风格使用反斜线转义字符串中的字符", "addslashes.html": "使用反斜线引用字符串", "apache_child_terminate.html": "在本次请求结束后终止 apache 子进程", "apache_getenv.html": "获取 Apache subprocess_env 变量", "apache_get_modules.html": "获得已加载的Apache模块列表", "apache_get_version.html": "获得Apache版本信息", "apache_lookup_uri.html": "对指定的 URI 执行部分请求并返回所有有关信息", "apache_note.html": "取得或设置 apache 请求记录", "apache_request_headers.html": "获取全部 HTTP 请求头信息", "apache_reset_timeout.html": "重置 Apache 写入计时器", "apache_response_headers.html": "获得全部 HTTP 响应头信息", "apache_setenv.html": "设置 Apache 子进程环境变量", "apcu_add.html": "Cache a new variable in the data store", "apcu_cache_info.html": "Retrieves cached information from APCu's data store", "apcu_cas.html": "Updates an old value with a new value", "apcu_clear_cache.html": "Clears the APCu cache", "apcu_dec.html": "Decrease a stored number", "apcu_delete.html": "Removes a stored variable from the cache", "apcu_entry.html": "Atomically fetch or generate a cache entry", "apcu_exists.html": "Checks if entry exists", "apcu_fetch.html": "Fetch a stored variable from the cache", "apcu_inc.html": "Increase a stored number", "apcu_sma_info.html": "Retrieves APCu Shared Memory Allocation information", "apcu_store.html": "Cache a variable in the data store", "apc_add.html": "缓存一个变量到数据存储", "apc_bin_dump.html": "获取给定文件和变量的二进制文件转储。", "apc_bin_dumpfile.html": "Output a binary dump of cached files and user variables to a file", "apc_bin_load.html": "Load a binary dump into the APC fileuser cache", "apc_bin_loadfile.html": "Load a binary dump from a file into the APC fileuser cache", "apc_cache_info.html": "Retrieves cached information from APC's data store", "apc_cas.html": "用新值更新旧值", "apc_clear_cache.html": "清除APC缓存", "apc_compile_file.html": "Stores a file in the bytecode cache, bypassing all filters", "apc_dec.html": "Decrease a stored number", "apc_define_constants.html": "Defines a set of constants for retrieval and mass-definition", "apc_delete.html": "从用户缓存中删除某个变量", "apc_delete_file.html": "Deletes files from the opcode cache", "apc_exists.html": "检查APC中是否存在某个或者某些key", "apc_fetch.html": "从缓存中取出存储的变量", "apc_inc.html": "递增一个储存的数字", "apc_load_constants.html": "Loads a set of constants from the cache", "apc_sma_info.html": "Retrieves APC's Shared Memory Allocation information", "apc_store.html": "Cache a variable in the data store", "apd_breakpoint.html": "Stops the interpreter and waits on a CR from the socket", "apd_callstack.html": "Returns the current call stack as an array", "apd_clunk.html": "Throw a warning and a callstack", "apd_continue.html": "Restarts the interpreter", "apd_croak.html": "Throw an error, a callstack and then exit", "apd_dump_function_table.html": "Outputs the current function table", "apd_dump_persistent_resources.html": "Return all persistent resources as an array", "apd_dump_regular_resources.html": "Return all current regular resources as an array", "apd_echo.html": "Echo to the debugging socket", "apd_get_active_symbols.html": "Get an array of the current variables names in the local scope", "apd_set_pprof_trace.html": "Starts the session debugging", "apd_set_session.html": "Changes or sets the current debugging level", "apd_set_session_trace.html": "Starts the session debugging", "apd_set_session_trace_socket.html": "Starts the remote session debugging", "array.html": "新建一个数组", "array_change_key_case.html": "将数组中的所有键名修改为全大写或小写", "array_chunk.html": "将一个数组分割成多个", "array_column.html": "返回数组中指定的一列", "array_combine.html": "创建一个数组,用一个数组的值作为其键名,另一个数组的值作为其值", "array_count_values.html": "统计数组中所有的值", "array_diff.html": "计算数组的差集", "array_diff_assoc.html": "带索引检查计算数组的差集", "array_diff_key.html": "使用键名比较计算数组的差集", "array_diff_uassoc.html": "用用户提供的回调函数做索引检查来计算数组的差集", "array_diff_ukey.html": "用回调函数对键名比较计算数组的差集", "array_fill.html": "用给定的值填充数组", "array_fill_keys.html": "使用指定的键和值填充数组", "array_filter.html": "用回调函数过滤数组中的单元", "array_flip.html": "交换数组中的键和值", "array_intersect.html": "计算数组的交集", "array_intersect_assoc.html": "带索引检查计算数组的交集", "array_intersect_key.html": "使用键名比较计算数组的交集", "array_intersect_uassoc.html": "带索引检查计算数组的交集,用回调函数比较索引", "array_intersect_ukey.html": "用回调函数比较键名来计算数组的交集", "array_keys.html": "返回数组中部分的或所有的键名", "array_key_exists.html": "检查数组里是否有指定的键名或索引", "array_key_first.html": "Gets the first key of an array", "array_key_last.html": "Gets the last key of an array", "array_map.html": "为数组的每个元素应用回调函数", "array_merge.html": "合并一个或多个数组", "array_merge_recursive.html": "递归地合并一个或多个数组", "array_multisort.html": "对多个数组或多维数组进行排序", "array_pad.html": "以指定长度将一个值填充进数组", "array_pop.html": "弹出数组最后一个单元(出栈)", "array_product.html": "计算数组中所有值的乘积", "array_push.html": "将一个或多个单元压入数组的末尾(入栈)", "array_rand.html": "从数组中随机取出一个或多个单元", "array_reduce.html": "用回调函数迭代地将数组简化为单一的值", "array_replace.html": "使用传递的数组替换第一个数组的元素", "array_replace_recursive.html": "使用传递的数组递归替换第一个数组的元素", "array_reverse.html": "返回单元顺序相反的数组", "array_search.html": "在数组中搜索给定的值,如果成功则返回首个相应的键名", "array_shift.html": "将数组开头的单元移出数组", "array_slice.html": "从数组中取出一段", "array_splice.html": "去掉数组中的某一部分并用其它值取代", "array_sum.html": "对数组中所有值求和", "array_udiff.html": "用回调函数比较数据来计算数组的差集", "array_udiff_assoc.html": "带索引检查计算数组的差集,用回调函数比较数据", "array_udiff_uassoc.html": "带索引检查计算数组的差集,用回调函数比较数据和索引", "array_uintersect.html": "计算数组的交集,用回调函数比较数据", "array_uintersect_assoc.html": "带索引检查计算数组的交集,用回调函数比较数据", "array_uintersect_uassoc.html": "带索引检查计算数组的交集,用单独的回调函数比较数据和索引", "array_unique.html": "移除数组中重复的值", "array_unshift.html": "在数组开头插入一个或多个单元", "array_values.html": "返回数组中所有的值", "array_walk.html": "使用用户自定义函数对数组中的每个元素做回调处理", "array_walk_recursive.html": "对数组中的每个成员递归地应用用户函数", "arsort.html": "对数组进行逆向排序并保持索引关系", "asin.html": "反正弦", "asinh.html": "反双曲正弦", "asort.html": "对数组进行排序并保持索引关系", "assert.html": "检查一个断言是否为 FALSE", "assert_options.html": "设置获取断言的各种标志", "atan.html": "反正切", "atan2.html": "两个参数的反正切", "atanh.html": "反双曲正切", "autoload.html": "尝试加载未定义的类", "base64_decode.html": "对使用 MIME base64 编码的数据进行解码", "base64_encode.html": "使用 MIME base64 对数据进行编码", "basename.html": "返回路径中的文件名部分", "base_convert.html": "在任意进制之间转换数字", "bbcode_add_element.html": "Adds a bbcode element", "bbcode_add_smiley.html": "Adds a smiley to the parser", "bbcode_create.html": "Create a BBCode Resource", "bbcode_destroy.html": "Close BBCode_container resource", "bbcode_parse.html": "Parse a string following a given rule set", "bbcode_set_arg_parser.html": "Attach another parser in order to use another rule set for argument parsing", "bbcode_set_flags.html": "Set or alter parser options", "bcadd.html": "2个任意精度数字的加法计算", "bccomp.html": "比较两个任意精度的数字", "bcdiv.html": "2个任意精度的数字除法计算", "bcmod.html": "对一个任意精度数字取模", "bcmul.html": "2个任意精度数字乘法计算", "bcompiler_load.html": "从一个 bz 压缩过的文件中读取并创建类", "bcompiler_load_exe.html": "从一个 bcompiler exe 文件中读取并创建类", "bcompiler_parse_class.html": "读取一个类的字节码并回调一个用户的函数", "bcompiler_read.html": "从一个文件句柄中读取并创建类", "bcompiler_write_class.html": "写入定义过的类的字节码", "bcompiler_write_constant.html": "写入定义过的常量的字节码", "bcompiler_write_exe_footer.html": "写入开始位置以及 exe 类型文件的结尾信号", "bcompiler_write_file.html": "写入 PHP 源码文件的字节码", "bcompiler_write_footer.html": "写入单个字符 x00 用于标识编译数据的结尾", "bcompiler_write_function.html": "以字节码写入定义过的函数", "bcompiler_write_functions_from_file.html": "以字节码写入一个文件中定义过的所以函数", "bcompiler_write_header.html": "写入 bcompiler 头", "bcompiler_write_included_filename.html": "写入一个包含的文件的字节码", "bcpow.html": "任意精度数字的乘方", "bcpowmod.html": "Raise an arbitrary precision number to another, reduced by a specified modulus", "bcscale.html": "设置所有bc数学函数的默认小数点保留位数", "bcsqrt.html": "任意精度数字的二次方根", "bcsub.html": "2个任意精度数字的减法", "bin2hex.html": "函数把包含数据的二进制字符串转换为十六进制值", "bindec.html": "二进制转换为十进制", "bindtextdomain.html": "Sets the path for a domain", "bind_textdomain_codeset.html": "Specify the character encoding in which the messages from the DOMAIN message catalog will be returned", "blenc_encrypt.html": "Encrypt a PHP script with BLENC", "boolval.html": "获取变量的布尔值", "bson_decode.html": "反序列化一个 BSON 对象为 PHP 数组", "bson_encode.html": "序列化一个 PHP 变量为 BSON 字符串", "bzclose.html": "关闭一个 bzip2 文件", "bzcompress.html": "把一个字符串压缩成 bzip2 编码数据", "bzdecompress.html": "解压经 bzip2 编码过的数据", "bzerrno.html": "返回一个 bzip2 错误码", "bzerror.html": "返回包含 bzip2 错误号和错误字符串的一个 array", "bzerrstr.html": "返回一个 bzip2 的错误字符串", "bzflush.html": "强制写入所有写缓冲区的数据", "bzopen.html": "打开 bzip2 压缩文件", "bzread.html": "bzip2 文件二进制安全地读取", "bzwrite.html": "二进制安全地写入 bzip2 文件", "cairo_create.html": "Returns a new CairoContext object on the requested surface", "cairo_matrix_create_scale.html": "别名 CairoMatrixinitScale", "cairo_matrix_create_translate.html": "别名 CairoMatrixinitTranslate", "call_user_func.html": "把第一个参数作为回调函数调用", "call_user_func_array.html": "调用回调函数,并把一个数组参数作为回调函数的参数", "call_user_method.html": "对特定对象调用用户方法", "call_user_method_array.html": "以参数列表的数组,调用用户方法", "cal_days_in_month.html": "返回某个历法中某年中某月的天数", "cal_from_jd.html": "转换Julian Day计数到一个支持的历法。", "cal_info.html": "返回选定历法的信息", "cal_to_jd.html": "从一个支持的历法转变为Julian Day计数。", "ceil.html": "进一法取整", "chdb_create.html": "Creates a chdb file", "chdir.html": "改变目录", "checkdate.html": "验证一个格里高里日期", "checkdnsrr.html": "给指定的主机(域名)或者IP地址做DNS通信检查", "chgrp.html": "改变文件所属的组", "chmod.html": "改变文件模式", "chop.html": "rtrim 的别名", "chown.html": "改变文件的所有者", "chr.html": "返回指定的字符", "chroot.html": "改变根目录", "chunk_split.html": "将字符串分割成小块", "classkit_import.html": "Import new class method definitions from a file", "classkit_method_add.html": "Dynamically adds a new method to a given class", "classkit_method_copy.html": "Copies a method from class to another", "classkit_method_redefine.html": "Dynamically changes the code of the given method", "classkit_method_remove.html": "Dynamically removes the given method", "classkit_method_rename.html": "Dynamically changes the name of the given method", "class_alias.html": "为一个类创建别名", "class_exists.html": "检查类是否已定义", "class_implements.html": "返回指定的类实现的所有接口。", "class_parents.html": "返回指定类的父类。", "class_uses.html": "Return the traits used by the given class", "clearstatcache.html": "清除文件状态缓存", "cli_get_process_title.html": "Returns the current process title", "cli_set_process_title.html": "Sets the process title", "closedir.html": "关闭目录句柄", "closelog.html": "关闭系统日志链接", "commonmark_parse.html": "Parsing", "commonmark_render.html": "Rendering", "commonmark_render_function.html": "Rendering", "commonmark_render_latex.html": "Rendering", "commonmark_render_man.html": "Rendering", "commonmark_render_xml.html": "Rendering", "compact.html": "建立一个数组,包括变量名和它们的值", "com_create_guid.html": "Generate a globally unique identifier (GUID)", "com_event_sink.html": "Connect events from a COM object to a PHP object", "com_get_active_object.html": "Returns a handle to an already running instance of a COM object", "com_load_typelib.html": "装载一个 Typelib", "com_message_pump.html": "Process COM messages, sleeping for up to timeoutms milliseconds", "com_print_typeinfo.html": "Print out a PHP class definition for a dispatchable interface", "connection_aborted.html": "检查客户端是否已经断开", "connection_status.html": "返回连接的状态位", "constant.html": "返回一个常量的值", "convert_cyr_string.html": "将字符由一种 Cyrillic 字符转换成另一种", "convert_uudecode.html": "解码一个 uuencode 编码的字符串", "convert_uuencode.html": "使用 uuencode 编码一个字符串", "copy.html": "拷贝文件", "cos.html": "余弦", "cosh.html": "双曲余弦", "count.html": "计算数组中的单元数目,或对象中的属性个数", "count_chars.html": "返回字符串所用字符的信息", "crack_check.html": "用给定的密码来进行破解测试", "crack_closedict.html": "Closes an open CrackLib dictionary", "crack_getlastmessage.html": "Returns the message from the last obscure check", "crack_opendict.html": "Opens a new CrackLib dictionary", "crc32.html": "计算一个字符串的 crc32 多项式", "create_function.html": "Create an anonymous (lambda-style) function", "crypt.html": "单向字符串散列", "ctype_alnum.html": "做字母和数字字符检测", "ctype_alpha.html": "做纯字符检测", "ctype_cntrl.html": "做控制字符检测", "ctype_digit.html": "做纯数字检测", "ctype_graph.html": "做可打印字符串检测,空格除外", "ctype_lower.html": "做小写字符检测", "ctype_print.html": "做可打印字符检测", "ctype_punct.html": "检测可打印的字符是不是不包含空白、数字和字母", "ctype_space.html": "做空白字符检测", "ctype_upper.html": "做大写字母检测", "ctype_xdigit.html": "检测字符串是否只包含十六进制字符", "cubrid_affected_rows.html": "Return the number of rows affected by the last SQL statement", "cubrid_bind.html": "Bind variables to a prepared statement as parameters", "cubrid_client_encoding.html": "Return the current CUBRID connection charset", "cubrid_close.html": "Close CUBRID connection", "cubrid_close_prepare.html": "Close the request handle", "cubrid_close_request.html": "Close the request handle", "cubrid_column_names.html": "Get the column names in result", "cubrid_column_types.html": "Get column types in result", "cubrid_col_get.html": "Get contents of collection type column using OID", "cubrid_col_size.html": "Get the number of elements in collection type column using OID", "cubrid_commit.html": "Commit a transaction", "cubrid_connect.html": "Open a connection to a CUBRID Server", "cubrid_connect_with_url.html": "Establish the environment for connecting to CUBRID server", "cubrid_current_oid.html": "Get OID of the current cursor location", "cubrid_data_seek.html": "Move the internal row pointer of the CUBRID result", "cubrid_db_name.html": "Get db name from results of cubrid_list_dbs", "cubrid_disconnect.html": "Close a database connection", "cubrid_drop.html": "Delete an instance using OID", "cubrid_errno.html": "Return the numerical value of the error message from previous CUBRID operation", "cubrid_error.html": "Get the error message", "cubrid_error_code.html": "Get error code for the most recent function call", "cubrid_error_code_facility.html": "Get the facility code of error", "cubrid_error_msg.html": "Get last error message for the most recent function call", "cubrid_execute.html": "Execute a prepared SQL statement", "cubrid_fetch.html": "Fetch the next row from a result set", "cubrid_fetch_array.html": "Fetch a result row as an associative array, a numeric array, or both", "cubrid_fetch_assoc.html": "Return the associative array that corresponds to the fetched row", "cubrid_fetch_field.html": "Get column information from a result and return as an object", "cubrid_fetch_lengths.html": "Return an array with the lengths of the values of each field from the current row", "cubrid_fetch_object.html": "Fetch the next row and return it as an object", "cubrid_fetch_row.html": "Return a numerical array with the values of the current row", "cubrid_field_flags.html": "Return a string with the flags of the given field offset", "cubrid_field_len.html": "Get the maximum length of the specified field", "cubrid_field_name.html": "Return the name of the specified field index", "cubrid_field_seek.html": "Move the result set cursor to the specified field offset", "cubrid_field_table.html": "Return the name of the table of the specified field", "cubrid_field_type.html": "Return the type of the column corresponding to the given field offset", "cubrid_free_result.html": "Free the memory occupied by the result data", "cubrid_get.html": "Get a column using OID", "cubrid_get_autocommit.html": "Get auto-commit mode of the connection", "cubrid_get_charset.html": "Return the current CUBRID connection charset", "cubrid_get_class_name.html": "Get the class name using OID", "cubrid_get_client_info.html": "Return the client library version", "cubrid_get_db_parameter.html": "Returns the CUBRID database parameters", "cubrid_get_query_timeout.html": "Get the query timeout value of the request", "cubrid_get_server_info.html": "Return the CUBRID server version", "cubrid_insert_id.html": "Return the ID generated for the last updated AUTO_INCREMENT column", "cubrid_is_instance.html": "Check whether the instance pointed by OID exists", "cubrid_list_dbs.html": "Return an array with the list of all existing CUBRID databases", "cubrid_load_from_glo.html": "Read data from a GLO instance and save it in a file", "cubrid_lob2_bind.html": "Bind a lob object or a string as a lob object to a prepared statement as parameters", "cubrid_lob2_close.html": "Close LOB object", "cubrid_lob2_export.html": "Export the lob object to a file", "cubrid_lob2_import.html": "Import BLOBCLOB data from a file", "cubrid_lob2_new.html": "Create a lob object", "cubrid_lob2_read.html": "Read from BLOBCLOB data", "cubrid_lob2_seek.html": "Move the cursor of a lob object", "cubrid_lob2_seek64.html": "Move the cursor of a lob object", "cubrid_lob2_size.html": "Get a lob object's size", "cubrid_lob2_size64.html": "Get a lob object's size", "cubrid_lob2_tell.html": "Tell the cursor position of the LOB object", "cubrid_lob2_tell64.html": "Tell the cursor position of the LOB object", "cubrid_lob2_write.html": "Write to a lob object", "cubrid_lob_close.html": "Close BLOBCLOB data", "cubrid_lob_export.html": "Export BLOBCLOB data to file", "cubrid_lob_get.html": "Get BLOBCLOB data", "cubrid_lob_send.html": "Read BLOBCLOB data and send straight to browser", "cubrid_lob_size.html": "Get BLOBCLOB data size", "cubrid_lock_read.html": "Set a read lock on the given OID", "cubrid_lock_write.html": "Set a write lock on the given OID", "cubrid_move_cursor.html": "Move the cursor in the result", "cubrid_new_glo.html": "Create a glo instance", "cubrid_next_result.html": "Get result of next query when executing multiple SQL statements", "cubrid_num_cols.html": "Return the number of columns in the result set", "cubrid_num_fields.html": "Return the number of columns in the result set", "cubrid_num_rows.html": "Get the number of rows in the result set", "cubrid_pconnect.html": "Open a persistent connection to a CUBRID server", "cubrid_pconnect_with_url.html": "Open a persistent connection to CUBRID server", "cubrid_ping.html": "Ping a server connection or reconnect if there is no connection", "cubrid_prepare.html": "Prepare a SQL statement for execution", "cubrid_put.html": "Update a column using OID", "cubrid_query.html": "Send a CUBRID query", "cubrid_real_escape_string.html": "Escape special characters in a string for use in an SQL statement", "cubrid_result.html": "Return the value of a specific field in a specific row", "cubrid_rollback.html": "Roll back a transaction", "cubrid_save_to_glo.html": "Save requested file in a GLO instance", "cubrid_schema.html": "Get the requested schema information", "cubrid_send_glo.html": "Read data from glo and send it to std output", "cubrid_seq_drop.html": "Delete an element from sequence type column using OID", "cubrid_seq_insert.html": "Insert an element to a sequence type column using OID", "cubrid_seq_put.html": "Update the element value of sequence type column using OID", "cubrid_set_add.html": "Insert a single element to set type column using OID", "cubrid_set_autocommit.html": "Set autocommit mode of the connection", "cubrid_set_db_parameter.html": "Sets the CUBRID database parameters", "cubrid_set_drop.html": "Delete an element from set type column using OID", "cubrid_set_query_timeout.html": "Set the timeout time of query execution", "cubrid_unbuffered_query.html": "Perform a query without fetching the results into memory", "cubrid_version.html": "Get the CUBRID PHP module's version", "curl_close.html": "关闭 cURL 会话", "curl_copy_handle.html": "复制一个cURL句柄和它的所有选项", "curl_errno.html": "返回最后一次的错误代码", "curl_error.html": "返回当前会话最后一次错误的字符串", "curl_escape.html": "使用 URL 编码给定的字符串", "curl_exec.html": "执行 cURL 会话", "curl_file_create.html": "创建一个 CURLFile 对象", "curl_getinfo.html": "获取一个cURL连接资源句柄的信息", "curl_init.html": "初始化 cURL 会话", "curl_multi_add_handle.html": "向curl批处理会话中添加单独的curl句柄", "curl_multi_close.html": "关闭一组cURL句柄", "curl_multi_errno.html": "返回上一次 curl 批处理的错误码", "curl_multi_exec.html": "运行当前 cURL 句柄的子连接", "curl_multi_getcontent.html": "如果设置了CURLOPT_RETURNTRANSFER,则返回获取的输出的文本流", "curl_multi_info_read.html": "获取当前解析的cURL的相关传输信息", "curl_multi_init.html": "返回一个新cURL批处理句柄", "curl_multi_remove_handle.html": "移除cURL批处理句柄资源中的某个句柄资源", "curl_multi_select.html": "等待所有cURL批处理中的活动连接", "curl_multi_setopt.html": "为 cURL 并行处理设置一个选项", "curl_multi_strerror.html": "返回字符串描述的错误代码", "curl_pause.html": "暂停和取消暂停一个连接。", "curl_reset.html": "重置一个 libcurl 会话句柄的所有的选项", "curl_setopt.html": "设置 cURL 传输选项", "curl_setopt_array.html": "为 cURL 传输会话批量设置选项", "curl_share_close.html": "关闭 cURL 共享句柄", "curl_share_errno.html": "返回共享 curl 句柄的最后一次错误号", "curl_share_init.html": "初始化一个 cURL 共享句柄。", "curl_share_setopt.html": "为 cURL 共享句柄设置选项。", "curl_share_strerror.html": "返回错误号对应的错误消息", "curl_strerror.html": "返回错误代码的字符串描述", "curl_unescape.html": "解码给定的 URL 编码的字符串", "curl_version.html": "获取 cURL 版本信息", "current.html": "返回数组中的当前单元", "cyrus_authenticate.html": "Authenticate against a Cyrus IMAP server", "cyrus_bind.html": "Bind callbacks to a Cyrus IMAP connection", "cyrus_close.html": "Close connection to a Cyrus IMAP server", "cyrus_connect.html": "Connect to a Cyrus IMAP server", "cyrus_query.html": "Send a query to a Cyrus IMAP server", "cyrus_unbind.html": "Unbind ...", "date.html": "格式化一个本地时间/日期", "date_add.html": "别名 DateTimeadd", "date_create.html": "别名 DateTime__construct", "date_create_from_format.html": "别名 DateTimecreateFromFormat", "date_create_immutable.html": "别名 DateTimeImmutable__construct", "date_create_immutable_from_format.html": "别名 DateTimeImmutablecreateFromFormat", "date_date_set.html": "别名 DateTimesetDate", "date_default_timezone_get.html": "取得一个脚本中所有日期时间函数所使用的默认时区", "date_default_timezone_set.html": "设定用于一个脚本中所有日期时间函数的默认时区", "date_diff.html": "别名 DateTimediff", "date_format.html": "别名 DateTimeformat", "date_get_last_errors.html": "别名 DateTimegetLastErrors", "date_interval_create_from_date_string.html": "别名 DateIntervalcreateFromDateString", "date_interval_format.html": "别名 DateIntervalformat", "date_isodate_set.html": "别名 DateTimesetISODate", "date_modify.html": "别名 DateTimemodify", "date_offset_get.html": "别名 DateTimegetOffset", "date_parse.html": "Returns associative array with detailed info about given date", "date_parse_from_format.html": "Get info about given date formatted according to the specified format", "date_sub.html": "别名 DateTimesub", "date_sunrise.html": "返回给定的日期与地点的日出时间", "date_sunset.html": "返回给定的日期与地点的日落时间", "date_sun_info.html": "Returns an array with information about sunsetsunrise and twilight beginend", "date_timestamp_get.html": "别名 DateTimegetTimestamp", "date_timestamp_set.html": "别名 DateTimesetTimestamp", "date_timezone_get.html": "别名 DateTimegetTimezone", "date_timezone_set.html": "别名 DateTimesetTimezone", "date_time_set.html": "别名 DateTimesetTime", "db2_autocommit.html": "Returns or sets the AUTOCOMMIT state for a database connection", "db2_bind_param.html": "Binds a PHP variable to an SQL statement parameter", "db2_client_info.html": "Returns an object with properties that describe the DB2 database client", "db2_close.html": "Closes a database connection", "db2_columns.html": "Returns a result set listing the columns and associated metadata for a table", "db2_column_privileges.html": "Returns a result set listing the columns and associated privileges for a table", "db2_commit.html": "Commits a transaction", "db2_connect.html": "Returns a connection to a database", "db2_conn_error.html": "Returns a string containing the SQLSTATE returned by the last connection attempt", "db2_conn_errormsg.html": "Returns the last connection error message and SQLCODE value", "db2_cursor_type.html": "Returns the cursor type used by a statement resource", "db2_escape_string.html": "Used to escape certain characters", "db2_exec.html": "Executes an SQL statement directly", "db2_execute.html": "Executes a prepared SQL statement", "db2_fetch_array.html": "Returns an array, indexed by column position, representing a row in a result set", "db2_fetch_assoc.html": "Returns an array, indexed by column name, representing a row in a result set", "db2_fetch_both.html": "Returns an array, indexed by both column name and position, representing a row in a result set", "db2_fetch_object.html": "Returns an object with properties representing columns in the fetched row", "db2_fetch_row.html": "Sets the result set pointer to the next row or requested row", "db2_field_display_size.html": "Returns the maximum number of bytes required to display a column", "db2_field_name.html": "Returns the name of the column in the result set", "db2_field_num.html": "Returns the position of the named column in a result set", "db2_field_precision.html": "Returns the precision of the indicated column in a result set", "db2_field_scale.html": "Returns the scale of the indicated column in a result set", "db2_field_type.html": "Returns the data type of the indicated column in a result set", "db2_field_width.html": "Returns the width of the current value of the indicated column in a result set", "db2_foreign_keys.html": "Returns a result set listing the foreign keys for a table", "db2_free_result.html": "Frees resources associated with a result set", "db2_free_stmt.html": "Frees resources associated with the indicated statement resource", "db2_get_option.html": "Retrieves an option value for a statement resource or a connection resource", "db2_last_insert_id.html": "Returns the auto generated ID of the last insert query that succ", "db2_lob_read.html": "Gets a user defined size of LOB files with each invocation", "db2_next_result.html": "Requests the next result set from a stored procedure", "db2_num_fields.html": "Returns the number of fields contained in a result set", "db2_num_rows.html": "Returns the number of rows affected by an SQL statement", "db2_pclose.html": "Closes a persistent database connection", "db2_pconnect.html": "Returns a persistent connection to a database", "db2_prepare.html": "Prepares an SQL statement to be executed", "db2_primary_keys.html": "Returns a result set listing primary keys for a table", "db2_procedures.html": "Returns a result set listing the stored procedures registered in a database", "db2_procedure_columns.html": "Returns a result set listing stored procedure parameters", "db2_result.html": "Returns a single column from a row in the result set", "db2_rollback.html": "Rolls back a transaction", "db2_server_info.html": "Returns an object with properties that describe the DB2 database server", "db2_set_option.html": "Set options for connection or statement resources", "db2_special_columns.html": "Returns a result set listing the unique row identifier columns for a table", "db2_statistics.html": "Returns a result set listing the index and statistics for a table", "db2_stmt_error.html": "Returns a string containing the SQLSTATE returned by an SQL statement", "db2_stmt_errormsg.html": "Returns a string containing the last SQL statement error message", "db2_tables.html": "Returns a result set listing the tables and associated metadata in a database", "db2_table_privileges.html": "Returns a result set listing the tables and associated privileges in a database", "dbase_add_record.html": "Adds a record to a database", "dbase_close.html": "Closes a database", "dbase_create.html": "Creates a database", "dbase_delete_record.html": "Deletes a record from a database", "dbase_get_header_info.html": "Gets the header info of a database", "dbase_get_record.html": "Gets a record from a database as an indexed array", "dbase_get_record_with_names.html": "Gets a record from a database as an associative array", "dbase_numfields.html": "Gets the number of fields of a database", "dbase_numrecords.html": "Gets the number of records in a database", "dbase_open.html": "Opens a database", "dbase_pack.html": "Packs a database", "dbase_replace_record.html": "Replaces a record in a database", "dba_close.html": "Close a DBA database", "dba_delete.html": "Delete DBA entry specified by key", "dba_exists.html": "Check whether key exists", "dba_fetch.html": "Fetch data specified by key", "dba_firstkey.html": "Fetch first key", "dba_handlers.html": "List all the handlers available", "dba_insert.html": "Insert entry", "dba_key_split.html": "Splits a key in string representation into array representation", "dba_list.html": "List all open database files", "dba_nextkey.html": "Fetch next key", "dba_open.html": "Open database", "dba_optimize.html": "Optimize database", "dba_popen.html": "Open database persistently", "dba_replace.html": "Replace or insert entry", "dba_sync.html": "Synchronize database", "dbplus_add.html": "Add a tuple to a relation", "dbplus_aql.html": "Perform AQL query", "dbplus_chdir.html": "GetSet database virtual current directory", "dbplus_close.html": "Close a relation", "dbplus_curr.html": "Get current tuple from relation", "dbplus_errcode.html": "Get error string for given errorcode or last error", "dbplus_errno.html": "Get error code for last operation", "dbplus_find.html": "Set a constraint on a relation", "dbplus_first.html": "Get first tuple from relation", "dbplus_flush.html": "Flush all changes made on a relation", "dbplus_freealllocks.html": "Free all locks held by this client", "dbplus_freelock.html": "Release write lock on tuple", "dbplus_freerlocks.html": "Free all tuple locks on given relation", "dbplus_getlock.html": "Get a write lock on a tuple", "dbplus_getunique.html": "Get an id number unique to a relation", "dbplus_info.html": "Get information about a relation", "dbplus_last.html": "Get last tuple from relation", "dbplus_lockrel.html": "Request write lock on relation", "dbplus_next.html": "Get next tuple from relation", "dbplus_open.html": "Open relation file", "dbplus_prev.html": "Get previous tuple from relation", "dbplus_rchperm.html": "Change relation permissions", "dbplus_rcreate.html": "Creates a new DB++ relation", "dbplus_rcrtexact.html": "Creates an exact but empty copy of a relation including indices", "dbplus_rcrtlike.html": "Creates an empty copy of a relation with default indices", "dbplus_resolve.html": "Resolve host information for relation", "dbplus_restorepos.html": "Restore position", "dbplus_rkeys.html": "Specify new primary key for a relation", "dbplus_ropen.html": "Open relation file local", "dbplus_rquery.html": "Perform local (raw) AQL query", "dbplus_rrename.html": "Rename a relation", "dbplus_rsecindex.html": "Create a new secondary index for a relation", "dbplus_runlink.html": "Remove relation from filesystem", "dbplus_rzap.html": "Remove all tuples from relation", "dbplus_savepos.html": "Save position", "dbplus_setindex.html": "Set index", "dbplus_setindexbynumber.html": "Set index by number", "dbplus_sql.html": "Perform SQL query", "dbplus_tcl.html": "Execute TCL code on server side", "dbplus_tremove.html": "Remove tuple and return new current tuple", "dbplus_undo.html": "Undo", "dbplus_undoprepare.html": "Prepare undo", "dbplus_unlockrel.html": "Give up write lock on relation", "dbplus_unselect.html": "Remove a constraint from relation", "dbplus_update.html": "Update specified tuple in relation", "dbplus_xlockrel.html": "Request exclusive lock on relation", "dbplus_xunlockrel.html": "Free exclusive lock on relation", "dbx_close.html": "Close an open connectiondatabase", "dbx_compare.html": "Compare two rows for sorting purposes", "dbx_connect.html": "Open a connectiondatabase", "dbx_error.html": "Report the error message of the latest function call in the module", "dbx_escape_string.html": "Escape a string so it can safely be used in an sql-statement", "dbx_fetch_row.html": "Fetches rows from a query-result that", "dbx_query.html": "Send a query and fetch all results (if any)", "dbx_sort.html": "Sort a result from a dbx_query by a custom sort function", "dcgettext.html": "Overrides the domain for a single lookup", "dcngettext.html": "Plural version of dcgettext", "debug_backtrace.html": "产生一条回溯跟踪(backtrace)", "debug_print_backtrace.html": "打印一条回溯。", "debug_zval_dump.html": "Dumps a string representation of an internal zend value to output", "decbin.html": "十进制转换为二进制", "dechex.html": "十进制转换为十六进制", "decoct.html": "十进制转换为八进制", "define.html": "定义一个常量", "defined.html": "检查某个名称的常量是否存在", "define_syslog_variables.html": "Initializes all syslog related variables", "deflate_add.html": "Incrementally deflate data", "deflate_init.html": "Initialize an incremental deflate context", "deg2rad.html": "将角度转换为弧度", "delete.html": "参见 unlink 或 unset", "dgettext.html": "Override the current domain", "die.html": "等同于 exit", "dio_close.html": "Closes the file descriptor given by fd", "dio_fcntl.html": "Performs a c library fcntl on fd", "dio_open.html": "Opens a file (creating it if necessary) at a lower level ", "dio_read.html": "Reads bytes from a file descriptor", "dio_seek.html": "Seeks to pos on fd from whence", "dio_stat.html": "Gets stat information about the file descriptor fd", "dio_tcsetattr.html": "Sets terminal attributes and baud rate for a serial port", "dio_truncate.html": "Truncates file descriptor fd to offset bytes", "dio_write.html": "Writes data to fd with optional truncation at length", "dir.html": "返回一个 Directory 类实例", "dirname.html": "返回路径中的目录部分", "diskfreespace.html": "disk_free_space 的别名", "disk_free_space.html": "返回目录中的可用空间", "disk_total_space.html": "返回一个目录的磁盘总大小", "dl.html": "运行时载入一个 PHP 扩展", "dngettext.html": "Plural version of dgettext", "dns_check_record.html": "别名 checkdnsrr", "dns_get_mx.html": "别名 getmxrr", "dns_get_record.html": "获取指定主机的DNS记录", "dom_import_simplexml.html": "Gets a DOMElement objec", "doubleval.html": "floatval 的别名", "each.html": "返回数组中当前的键/值对并将数组指针向前移动一步", "easter_date.html": "得到指定年份的复活节午夜时的Unix时间戳。", "easter_days.html": "得到指定年份的3月21日到复活节之间的天数", "echo.html": "输出一个或多个字符串", "eio_busy.html": "Artificially increase load. Could be useful i", "eio_cancel.html": "Cancels a request", "eio_chmod.html": "Change filedirecrory permissions", "eio_chown.html": "Change filedirecrory permissions", "eio_close.html": "Close file", "eio_custom.html": "Execute custom request like any other eio_ call", "eio_dup2.html": "Duplicate a file descriptor", "eio_event_loop.html": "Polls libeio until all requests proceeded", "eio_fallocate.html": "Allows the caller to directly manipulate the alloca", "eio_fchmod.html": "Change file permissions", "eio_fchown.html": "Change file ownership", "eio_fdatasync.html": "Synchronize a file's in-core state with storage device", "eio_fstat.html": "Get file status", "eio_fstatvfs.html": "Get file system statistics", "eio_fsync.html": "Synchronize a file's in-core state with storage device", "eio_ftruncate.html": "Truncate a file", "eio_futime.html": "Change file last access and modification times", "eio_get_event_stream.html": "Get stream representing a variable used in internal communications with libeio", "eio_get_last_error.html": "Returns string describing the last error associated with a request resource", "eio_grp.html": "Creates a request group", "eio_grp_add.html": "Adds a request to the request group", "eio_grp_cancel.html": "Cancels a request group", "eio_grp_limit.html": "Set group limit", "eio_init.html": "(Re-)initialize Eio", "eio_link.html": "Create a hardlink for file", "eio_lstat.html": "Get file status", "eio_mkdir.html": "Create directory", "eio_mknod.html": "Create a special or ordinary file", "eio_nop.html": "Does nothing, except go through the whole request cycle", "eio_npending.html": "Returns number of finished, but unhandled requests", "eio_nready.html": "Returns number of not-yet handled requests", "eio_nreqs.html": "Returns number of requests to be processed", "eio_nthreads.html": "Returns number of threads currently in use", "eio_open.html": "Opens a file", "eio_poll.html": "Can be to be called whenever there are pending requests that need finishing", "eio_read.html": "Read from a file descriptor at given offset", "eio_readahead.html": "Perform file readahead into page cache", "eio_readdir.html": "Reads through a whole directory", "eio_readlink.html": "Read value of a symbolic link", "eio_realpath.html": "Get the canonicalized absolute pathname", "eio_rename.html": "Change the name or location of a file", "eio_rmdir.html": "Remove a directory", "eio_seek.html": "Repositions the offset of the open file associated with the fd argument to the argument offset according to the directive whence", "eio_sendfile.html": "Transfer data between file descriptors", "eio_set_max_idle.html": "Set maximum number of idle threads", "eio_set_max_parallel.html": "Set maximum parallel threads", "eio_set_max_poll_reqs.html": "Set maximum number of requests processed in a poll", "eio_set_max_poll_time.html": "Set maximum poll time", "eio_set_min_parallel.html": "Set minimum parallel thread number", "eio_stat.html": "Get file status", "eio_statvfs.html": "Get file system statistics", "eio_symlink.html": "Create a symbolic link", "eio_sync.html": "Commit buffer cache to disk", "eio_syncfs.html": "Calls Linux' syncfs syscall, if available", "eio_sync_file_range.html": "Sync a file segment with disk", "eio_truncate.html": "Truncate a file", "eio_unlink.html": "Delete a name and possibly the file it refers to", "eio_utime.html": "Change file last access and modification times", "eio_write.html": "Write to file", "empty.html": "检查一个变量是否为空", "enchant_broker_describe.html": "Enumerates the Enchant providers", "enchant_broker_dict_exists.html": "Whether a dictionary exists or not. Using non-empty tag", "enchant_broker_free.html": "Free the broker resource and its dictionnaries", "enchant_broker_free_dict.html": "Free a dictionary resource", "enchant_broker_get_dict_path.html": "Get the directory path for a given backend", "enchant_broker_get_error.html": "Returns the last error of the broker", "enchant_broker_init.html": "Create a new broker object capable of requesting", "enchant_broker_list_dicts.html": "Returns a list of available dictionaries", "enchant_broker_request_dict.html": "Create a new dictionary using a tag", "enchant_broker_request_pwl_dict.html": "Creates a dictionary using a PWL file", "enchant_broker_set_dict_path.html": "Set the directory path for a given backend", "enchant_broker_set_ordering.html": "Declares a preference of dictionaries to use for the language", "enchant_dict_add_to_personal.html": "Add a word to personal word list", "enchant_dict_add_to_session.html": "Add 'word' to this spell-checking session", "enchant_dict_check.html": "Check whether a word is correctly spelled or not", "enchant_dict_describe.html": "Describes an individual dictionary", "enchant_dict_get_error.html": "Returns the last error of the current spelling-session", "enchant_dict_is_in_session.html": "Whether or not 'word' exists in this spelling-session", "enchant_dict_quick_check.html": "Check the word is correctly spelled and provide suggestions", "enchant_dict_store_replacement.html": "Add a correction for a word", "enchant_dict_suggest.html": "Will return a list of values if any of those pre-conditions are not met", "end.html": "将数组的内部指针指向最后一个单元", "ereg.html": "正则表达式匹配", "eregi.html": "不区分大小写的正则表达式匹配", "eregi_replace.html": "不区分大小写的正则表达式替换", "ereg_replace.html": "正则表达式替换", "error_clear_last.html": "清除最近一次错误", "error_get_last.html": "获取最后发生的错误", "error_log.html": "发送错误信息到某个地方", "error_reporting.html": "设置应该报告何种 PHP 错误", "escapeshellarg.html": "把字符串转码为可以在 shell 命令里使用的参数", "escapeshellcmd.html": "shell 元字符转义", "eval.html": "把字符串作为PHP代码执行", "event_add.html": "Add an event to the set of monitored events", "event_base_free.html": "Destroy event base", "event_base_loop.html": "Handle events", "event_base_loopbreak.html": "Abort event loop", "event_base_loopexit.html": "Exit loop after a time", "event_base_new.html": "Create and initialize new event base", "event_base_priority_init.html": "Set the number of event priority levels", "event_base_reinit.html": "Reinitialize the event base after a fork", "event_base_set.html": "Associate event base with an event", "event_buffer_base_set.html": "Associate buffered event with an event base", "event_buffer_disable.html": "Disable a buffered event", "event_buffer_enable.html": "Enable a buffered event", "event_buffer_fd_set.html": "Change a buffered event file descriptor", "event_buffer_free.html": "Destroy buffered event", "event_buffer_new.html": "Create new buffered event", "event_buffer_priority_set.html": "Assign a priority to a buffered event", "event_buffer_read.html": "Read data from a buffered event", "event_buffer_set_callback.html": "Set or reset callbacks for a buffered event", "event_buffer_timeout_set.html": "Set read and write timeouts for a buffered event", "event_buffer_watermark_set.html": "Set the watermarks for read and write events", "event_buffer_write.html": "Write data to a buffered event", "event_del.html": "Remove an event from the set of monitored events", "event_free.html": "Free event resource", "event_new.html": "Create new event", "event_priority_set.html": "Assign a priority to an event", "event_set.html": "Prepare an event", "event_timer_add.html": "别名 event_add", "event_timer_del.html": "别名 event_del", "event_timer_new.html": "别名 event_new", "event_timer_set.html": "Prepare a timer event", "exec.html": "执行一个外部程序", "exif_imagetype.html": "判断一个图像的类型", "exif_read_data.html": "从 JPEG ", "exif_tagname.html": "获取指定索引的头名称", "exif_thumbnail.html": "取得嵌入在 TIFF 或 JPEG 图像中的缩略图", "exit.html": "输出一个消息并且退出当前脚本", "exp.html": "计算 e 的指数", "expect_expectl.html": "Waits until the output from a process mat", "expect_popen.html": "Execute command via Bourne shell, and open the PTY s", "explode.html": "使用一个字符串分割另一个字符串", "expm1.html": "返回 exp(number) - 1,甚至当 number 的值接近零也能计算出准确结果", "extension_loaded.html": "检查一个扩展是否已经加载", "extract.html": "从数组中将变量导入到当前的符号表", "ezmlm_hash.html": "计算 EZMLM 所需的散列值", "fam_cancel_monitor.html": "Terminate monitoring", "fam_close.html": "Close FAM connection", "fam_monitor_collection.html": "Monitor a collection of files in a directory for changes", "fam_monitor_directory.html": "Monitor a directory for changes", "fam_monitor_file.html": "Monitor a regular file for changes", "fam_next_event.html": "Get next pending FAM event", "fam_open.html": "Open connection to FAM daemon", "fam_pending.html": "Check for pending FAM events", "fam_resume_monitor.html": "Resume suspended monitoring", "fam_suspend_monitor.html": "Temporarily suspend monitoring", "fann_cascadetrain_on_data.html": "在整个数据集上训练,使用一段时间的 Cascade2 训练算法。", "fann_cascadetrain_on_file.html": "读取文件并在整个数据集上训练,使用 Cascade2 训练算法训练一段时间。", "fann_clear_scaling_params.html": "清除缩放参数", "fann_copy.html": "创建一个 fann 结构体的副本。", "fann_create_from_file.html": "从配置文件中构建一个反向传播神经网络。", "fann_create_shortcut.html": "创建一个含快捷连接而非全连接的标准反向传播神经网络。", "fann_create_shortcut_array.html": "创建一个含快捷连接而非全连接的标准反向传播神经网络。", "fann_create_sparse.html": "创建一个标准的反向传播神经网络,该网络不是全连接。", "fann_create_sparse_array.html": "创建一个标准的反向传播神经网络,该网络使用一个表示每层大小的数组来构造,但是并不是全连接的。", "fann_create_standard.html": "创建标准的全连接反向传播神经网络。", "fann_create_standard_array.html": "创建一个全连接的反向传播神经网络,该网络使用一个表示每层大小的数组来构造。", "fann_create_train.html": "创建一个空的训练数据结构。", "fann_create_train_from_callback.html": "从用户提供的函数创建训练数据结构。", "fann_descale_input.html": "在获取基于先前计算的参数之后,在输入向量中缩小数据", "fann_descale_output.html": "在获取基于先前计算的参数之后,在输出向量中缩小数据", "fann_descale_train.html": "基于先前计算的参数来缩小输入和输出数据", "fann_destroy.html": "销毁整个网络并且适当地释放所有的关联内存。", "fann_destroy_train.html": "销毁训练数据。", "fann_duplicate_train_data.html": "返回 fann 训练数据精确的副本。", "fann_get_activation_function.html": "返回激励函数", "fann_get_activation_steepness.html": "为提供的神经和网络层数返回激活陡度", "fann_get_bias_array.html": "获取网络中每一层的偏差数", "fann_get_bit_fail.html": "失败位的数量", "fann_get_bit_fail_limit.html": "返回训练期间使用的误差限制", "fann_get_cascade_activation_functions.html": "返回级联激活函数", "fann_get_cascade_activation_functions_count.html": "返回级联激活函数的数量", "fann_get_cascade_activation_steepnesses.html": "返回级联激活陡度", "fann_get_cascade_activation_steepnesses_count.html": "激活陡度的数量", "fann_get_cascade_candidate_change_fraction.html": "返回级联候选变化分数", "fann_get_cascade_candidate_limit.html": "返回候选限度", "fann_get_cascade_candidate_stagnation_epochs.html": "返回层叠候选停滞周期的数量", "fann_get_cascade_max_cand_epochs.html": "返回候选周期的最大值", "fann_get_cascade_max_out_epochs.html": "返回输出周期的最大值", "fann_get_cascade_min_cand_epochs.html": "返回最小的候选周期", "fann_get_cascade_min_out_epochs.html": "返回最小输出周期", "fann_get_cascade_num_candidates.html": "返回训练期间使用的候选数量", "fann_get_cascade_num_candidate_groups.html": "返回候选组的数量", "fann_get_cascade_output_change_fraction.html": "返回级联输出变化分数", "fann_get_cascade_output_stagnation_epochs.html": "返回级联输出停滞周期的数量", "fann_get_cascade_weight_multiplier.html": "返回权重因子", "fann_get_connection_array.html": "获取网络中的连接。", "fann_get_connection_rate.html": "获取当网络创建时连接的使用率。", "fann_get_errno.html": "返回最后一个错误数字。", "fann_get_errstr.html": "返回最后的错误字符串。", "fann_get_layer_array.html": "获取网络中每层的神经元数量。", "fann_get_learning_momentum.html": "返回学习动量", "fann_get_learning_rate.html": "返回学习速率", "fann_get_mse.html": "从网络中读取均方误差。", "fann_get_network_type.html": "获取所创建的神经网络类型。", "fann_get_num_input.html": "获取输入神经元的数量。", "fann_get_num_layers.html": "获取神经网络的层数。", "fann_get_num_output.html": "获取输出神经元的数量。", "fann_get_quickprop_decay.html": "返回衰退值,用于在 quickprop 训练迭代时衰减权重", "fann_get_quickprop_mu.html": "返回放大系数", "fann_get_rprop_decrease_factor.html": "返回 RPROP 训练期间的衰减系数", "fann_get_rprop_delta_max.html": "返回最大步长", "fann_get_rprop_delta_min.html": "返回最小步长", "fann_get_rprop_delta_zero.html": "返回初始步长", "fann_get_rprop_increase_factor.html": "返回 RPROP 训练的递增系数", "fann_get_sarprop_step_error_shift.html": "返回 sarprop 步值的误差偏移", "fann_get_sarprop_step_error_threshold_factor.html": "返回 sarprop 算法步值的误差阈值系数", "fann_get_sarprop_temperature.html": "返回 sarprop 算法温度", "fann_get_sarprop_weight_decay_shift.html": "返回 sarprop 算法权重衰减变化值", "fann_get_total_connections.html": "获取整个网络中所有的连接数。", "fann_get_total_neurons.html": "获取整个网络中神经元的数量。", "fann_get_training_algorithm.html": "返回训练算法。", "fann_get_train_error_function.html": "返回训练中使用的错误函数。", "fann_get_train_stop_function.html": "返回训练中使用的停止函数。", "fann_init_weights.html": "使用 Widrow 和 Nguyen 算法初始化权重。", "fann_length_train_data.html": "返回训练数据中训练模式的数量。", "fann_merge_train_data.html": "合并训练数据。", "fann_num_input_train_data.html": "返回训练数据中每个训练模式输入的数量。", "fann_num_output_train_data.html": "返回训练数据中每个训练模式输出的数量。", "fann_print_error.html": "打印错误字符串。", "fann_randomize_weights.html": "给每个连接赋一个介于 min_weight 和 max_weight 之间的随机权重。", "fann_read_train_from_file.html": "读取存储训练数据的文件。", "fann_reset_errno.html": "重置最后的错误代码。", "fann_reset_errstr.html": "重置最后的错误字符串。", "fann_reset_mse.html": "重置网络中的均方误差。", "fann_run.html": "将通过神经网络运行输入。", "fann_save.html": "将整个网络保存至配置文件。", "fann_save_train.html": "将训练结构体保存至文件。", "fann_scale_input.html": "在以前计算参数的基础上,在训练之前放大输入向量中的数据", "fann_scale_input_train_data.html": "在训练数据中缩放输入至指定范围", "fann_scale_output.html": "在以前计算参数的基础上,在训练之前放大输出向量中的数据", "fann_scale_output_train_data.html": "在训练数据中缩放输出至指定范围", "fann_scale_train.html": "在以前计算参数的基础上,缩放输入和输出数据", "fann_scale_train_data.html": "在训练数据中缩放输入和输出到指定的范围", "fann_set_activation_function.html": "为已应用的神经元和层设置激活函数", "fann_set_activation_function_hidden.html": "为所有隐藏层设置激活函数", "fann_set_activation_function_layer.html": "为已应用的层中所有的神经元设置激活函数。", "fann_set_activation_function_output.html": "为输出层设置激活函数", "fann_set_activation_steepness.html": "为提供的神经元和层设置激活陡度", "fann_set_activation_steepness_hidden.html": "为所有隐藏层中所有的神经元设置激活函数陡度", "fann_set_activation_steepness_layer.html": "为提供的层中所有的神经元设置激活陡度", "fann_set_activation_steepness_output.html": "在输出层中设置激活陡度", "fann_set_bit_fail_limit.html": "设置训练期间使用的误差", "fann_set_callback.html": "设置训练期间使用的回调函数。", "fann_set_cascade_activation_functions.html": "设置级联候选激活函数的数组", "fann_set_cascade_activation_steepnesses.html": "设置级联候选激活陡度的数组。", "fann_set_cascade_candidate_change_fraction.html": "设置级联候选更改分数", "fann_set_cascade_candidate_limit.html": "设置候选限度", "fann_set_cascade_candidate_stagnation_epochs.html": "设置级联候选停止周期数", "fann_set_cascade_max_cand_epochs.html": "设置最大候选周期数", "fann_set_cascade_max_out_epochs.html": "设置最大输出周期", "fann_set_cascade_min_cand_epochs.html": "设置最小候选周期", "fann_set_cascade_min_out_epochs.html": "设置最小输出周期", "fann_set_cascade_num_candidate_groups.html": "设置候选组数量", "fann_set_cascade_output_change_fraction.html": "设置级联输出改变分数", "fann_set_cascade_output_stagnation_epochs.html": "设置级联输出停滞周期的值", "fann_set_cascade_weight_multiplier.html": "设置权重因子", "fann_set_error_log.html": "设置错误记录保存的位置。", "fann_set_input_scaling_params.html": "根据训练数据计算将来使用的输入比例参数", "fann_set_learning_momentum.html": "设置学习动量。", "fann_set_learning_rate.html": "设置学习速率。", "fann_set_output_scaling_params.html": "根据训练数据计算将来使用的输出缩放参数", "fann_set_quickprop_decay.html": "设置quickprop算法衰减因子", "fann_set_quickprop_mu.html": "设置 quickprop 算法放大因子", "fann_set_rprop_decrease_factor.html": "使用 RPROP 算法训练时,设置下降因子", "fann_set_rprop_delta_max.html": "设置最大步长", "fann_set_rprop_delta_min.html": "设置最小步长", "fann_set_rprop_delta_zero.html": "设置初始步长", "fann_set_rprop_increase_factor.html": "使用 RPROP 算法训练时,设置增长因子", "fann_set_sarprop_step_error_shift.html": "设置 sarprop 算法的步误差偏移量", "fann_set_sarprop_step_error_threshold_factor.html": "设置 sarprop 算法的步误差阈值因子", "fann_set_sarprop_temperature.html": "设置 sarprop 算法的温度", "fann_set_sarprop_weight_decay_shift.html": "设置 sarprop 算法的权重衰减偏移值", "fann_set_scaling_params.html": "根据训练数据计算输入和输出缩放参数以供将来使用", "fann_set_training_algorithm.html": "设置训练算法。", "fann_set_train_error_function.html": "设置训练期间使用的错误函数。", "fann_set_train_stop_function.html": "设置训练期间使用的停止函数。", "fann_set_weight.html": "在网络中设置一个连接。", "fann_set_weight_array.html": "在网络中设置一个连接。", "fann_shuffle_train_data.html": "打算训练数据,使顺序随机。", "fann_subset_train_data.html": "返回一个训练数据子集的副本。", "fann_test.html": "使用一组输入和一组期望的输出来测试。", "fann_test_data.html": "使用训练数据来测试并且计算出 MSE .", "fann_train.html": "使用一个输入集和一个期望的输出集来迭代训练一次。", "fann_train_epoch.html": "使用一组训练数据训练一个周期。", "fann_train_on_data.html": "在整个数据集上训练一段时间。", "fann_train_on_file.html": "在从某个文件读取的整个数据集上训练一段时间。", "fastcgi_finish_request.html": "冲刷(flush)所有响应的数据给客户端", "fbsql_affected_rows.html": "Get number of affected rows in previous FrontBase operation", "fbsql_autocommit.html": "Enable or disable autocommit", "fbsql_blob_size.html": "Get the size of a BLOB", "fbsql_change_user.html": "Change logged in user of the active connection", "fbsql_clob_size.html": "Get the size of a CLOB", "fbsql_close.html": "Close FrontBase connection", "fbsql_commit.html": "Commits a transaction to the database", "fbsql_connect.html": "Open a connection to a FrontBase Server", "fbsql_create_blob.html": "Create a BLOB", "fbsql_create_clob.html": "Create a CLOB", "fbsql_create_db.html": "Create a FrontBase database", "fbsql_database.html": "Get or set the database name used with a connection", "fbsql_database_password.html": "Sets or retrieves the password for a FrontBase database", "fbsql_data_seek.html": "Move internal result pointer", "fbsql_db_query.html": "Send a FrontBase query", "fbsql_db_status.html": "Get the status for a given database", "fbsql_drop_db.html": "Drop (delete) a FrontBase database", "fbsql_errno.html": "Returns the error number from previous operation", "fbsql_error.html": "Returns the error message from previous operation", "fbsql_fetch_array.html": "Fetch a result row as an associative array, a numeric array, or both", "fbsql_fetch_assoc.html": "Fetch a result row as an associative array", "fbsql_fetch_field.html": "Get column information from a result and return as an object", "fbsql_fetch_lengths.html": "Get the length of each output in a result", "fbsql_fetch_object.html": "Fetch a result row as an object", "fbsql_fetch_row.html": "Get a result row as an enumerated array", "fbsql_field_flags.html": "Get the flags associated with the specified field in a result", "fbsql_field_len.html": "Returns the length of the specified field", "fbsql_field_name.html": "Get the name of the specified field in a result", "fbsql_field_seek.html": "Set result pointer to a specified field offset", "fbsql_field_table.html": "Get name of the table the specified field is in", "fbsql_field_type.html": "Get the type of the specified field in a result", "fbsql_free_result.html": "Free result memory", "fbsql_get_autostart_info.html": "说明", "fbsql_hostname.html": "Get or set the host name used with a connection", "fbsql_insert_id.html": "Get the id generated from the previous INSERT operation", "fbsql_list_dbs.html": "List databases available on a FrontBase server", "fbsql_list_fields.html": "List FrontBase result fields", "fbsql_list_tables.html": "List tables in a FrontBase database", "fbsql_next_result.html": "Move the internal result pointer to the next result", "fbsql_num_fields.html": "Get number of fields in result", "fbsql_num_rows.html": "Get number of rows in result", "fbsql_password.html": "Get or set the user password used with a connection", "fbsql_pconnect.html": "Open a persistent connection to a FrontBase Server", "fbsql_query.html": "Send a FrontBase query", "fbsql_read_blob.html": "Read a BLOB from the database", "fbsql_read_clob.html": "Read a CLOB from the database", "fbsql_result.html": "Get result data", "fbsql_rollback.html": "Rollback a transaction to the database", "fbsql_rows_fetched.html": "Get the number of rows affected by the last statement", "fbsql_select_db.html": "Select a FrontBase database", "fbsql_set_characterset.html": "Change inputoutput character set", "fbsql_set_lob_mode.html": "Set the LOB retrieve mode for a FrontBase result set", "fbsql_set_password.html": "Change the password for a given user", "fbsql_set_transaction.html": "Set the transaction locking and isolation", "fbsql_start_db.html": "Start a database on local or remote server", "fbsql_stop_db.html": "Stop a database on local or remote server", "fbsql_tablename.html": "别名 fbsql_table_name", "fbsql_table_name.html": "Get table name of field", "fbsql_username.html": "Get or set the username for the connection", "fbsql_warnings.html": "Enable or disable FrontBase warnings", "fclose.html": "关闭一个已打开的文件指针", "fdf_add_doc_javascript.html": "Adds javascript code to the FDF document", "fdf_add_template.html": "Adds a template into the FDF document", "fdf_close.html": "Close an FDF document", "fdf_create.html": "Create a new FDF document", "fdf_enum_values.html": "Call a user defined function for each document value", "fdf_errno.html": "Return error code for last fdf operation", "fdf_error.html": "Return error description for FDF error code", "fdf_get_ap.html": "Get the appearance of a field", "fdf_get_attachment.html": "Extracts uploaded file embedded in the FDF", "fdf_get_encoding.html": "Get the value of the Encoding key", "fdf_get_file.html": "Get the value of the F key", "fdf_get_flags.html": "Gets the flags of a field", "fdf_get_opt.html": "Gets a value from the opt array of a field", "fdf_get_status.html": "Get the value of the STATUS key", "fdf_get_value.html": "Get the value of a field", "fdf_get_version.html": "Gets version number for FDF API or file", "fdf_header.html": "Sets FDF-specific output headers", "fdf_next_field_name.html": "Get the next field name", "fdf_open.html": "Open a FDF document", "fdf_open_string.html": "Read a FDF document from a string", "fdf_remove_item.html": "Sets target frame for form", "fdf_save.html": "Save a FDF document", "fdf_save_string.html": "Returns the FDF document as a string", "fdf_set_ap.html": "Set the appearance of a field", "fdf_set_encoding.html": "Sets FDF character encoding", "fdf_set_file.html": "Set PDF document to display FDF data in", "fdf_set_flags.html": "Sets a flag of a field", "fdf_set_javascript_action.html": "Sets an javascript action of a field", "fdf_set_on_import_javascript.html": "Adds javascript code to be executed when Acrobat opens the FDF", "fdf_set_opt.html": "Sets an option of a field", "fdf_set_status.html": "Set the value of the STATUS key", "fdf_set_submit_form_action.html": "Sets a submit form action of a field", "fdf_set_target_frame.html": "Set target frame for form display", "fdf_set_value.html": "Set the value of a field", "fdf_set_version.html": "Sets version number for a FDF file", "feof.html": "测试文件指针是否到了文件结束的位置", "fflush.html": "将缓冲内容输出到文件", "fgetc.html": "从文件指针中读取字符", "fgetcsv.html": "从文件指针中读入一行并解析 CSV 字段", "fgets.html": "从文件指针中读取一行", "fgetss.html": "从文件指针中读取一行并过滤掉 HTML 标记", "file.html": "把整个文件读入一个数组中", "fileatime.html": "取得文件的上次访问时间", "filectime.html": "取得文件的 inode 修改时间", "filegroup.html": "取得文件的组", "fileinode.html": "取得文件的 inode", "filemtime.html": "取得文件修改时间", "fileowner.html": "取得文件的所有者", "fileperms.html": "取得文件的权限", "filepro.html": "Read and verify the map file", "filepro_fieldcount.html": "Find out how many fields are in a filePro database", "filepro_fieldname.html": "Gets the name of a field", "filepro_fieldtype.html": "Gets the type of a field", "filepro_fieldwidth.html": "Gets the width of a field", "filepro_retrieve.html": "Retrieves data from a filePro database", "filepro_rowcount.html": "Find out how many rows are in a filePro database", "filesize.html": "取得文件大小", "filetype.html": "取得文件类型", "file_exists.html": "检查文件或目录是否存在", "file_get_contents.html": "将整个文件读入一个字符串", "file_put_contents.html": "将一个字符串写入文件", "filter_has_var.html": "检测是否存在指定类型的变量", "filter_id.html": "返回与某个特定名称的过滤器相关联的id", "filter_input.html": "通过名称获取特定的外部变量,并且可以通过过滤器处理它", "filter_input_array.html": "获取一系列外部变量,并且可以通过过滤器处理它们", "filter_list.html": "返回所支持的过滤器列表", "filter_var.html": "使用特定的过滤器过滤一个变量", "filter_var_array.html": "获取多个变量并且过滤它们", "finfo_buffer.html": "返回一个字符串缓冲区的信息", "finfo_close.html": "关闭 fileinfo 资源", "finfo_file.html": "返回一个文件的信息", "finfo_open.html": "创建一个 fileinfo 资源", "finfo_set_flags.html": "设置 libmagic 配置选项", "floatval.html": "获取变量的浮点值", "flock.html": "轻便的咨询文件锁定", "floor.html": "舍去法取整", "flush.html": "刷新输出缓冲", "fmod.html": "返回除法的浮点数余数", "fnmatch.html": "用模式匹配文件名", "fopen.html": "打开文件或者 URL", "forward_static_call.html": "Call a static method", "forward_static_call_array.html": "Call a static method and pass the arguments as array", "fpassthru.html": "输出文件指针处的所有剩余数据", "fprintf.html": "将格式化后的字符串写入到流", "fputcsv.html": "将行格式化为 CSV 并写入文件指针", "fputs.html": "fwrite 的别名", "fread.html": "读取文件(可安全用于二进制文件)", "frenchtojd.html": "从一个French Republican历法的日期得到Julian Day计数。", "fribidi_log2vis.html": "Convert a logical string to a visual one", "fscanf.html": "从文件中格式化输入", "fseek.html": "在文件指针中定位", "fsockopen.html": "打开一个网络连接或者一个Unix套接字连接", "fstat.html": "通过已打开的文件指针取得文件信息", "ftell.html": "返回文件指针读写的位置", "ftok.html": "Convert a pathname and a project identifier to a System V IPC key", "ftp_alloc.html": "为要上传的文件分配空间", "ftp_append.html": "Append content of a file a another file on the FTP server", "ftp_cdup.html": "切换到当前目录的父目录", "ftp_chdir.html": "在 FTP 服务器上改变当前目录", "ftp_chmod.html": "设置 FTP 服务器上的文件权限", "ftp_close.html": "关闭一个 FTP 连接", "ftp_connect.html": "建立一个新的 FTP 连接", "ftp_delete.html": "删除 FTP 服务器上的一个文件", "ftp_exec.html": "请求运行一条 FTP 命令", "ftp_fget.html": "从 FTP 服务器上下载一个文件并保存到本地一个已经打开的文件中", "ftp_fput.html": "上传一个已经打开的文件到 FTP 服务器", "ftp_get.html": "从 FTP 服务器上下载一个文件", "ftp_get_option.html": "返回当前 FTP 连接的各种不同的选项设置", "ftp_login.html": "登录 FTP 服务器", "ftp_mdtm.html": "返回指定文件的最后修改时间", "ftp_mkdir.html": "建立新目录", "ftp_mlsd.html": "Returns a list of files in the given directory", "ftp_nb_continue.html": "连续获取/发送文件(non-blocking)", "ftp_nb_fget.html": "从 FTP 服务器获取文件并写入到一个打开的文件(非阻塞)", "ftp_nb_fput.html": "将文件存储到 FTP 服务器 (非阻塞)", "ftp_nb_get.html": "从 FTP 服务器上获取文件并写入本地文件(non-blocking)", "ftp_nb_put.html": "存储一个文件至 FTP 服务器(non-blocking)", "ftp_nlist.html": "返回给定目录的文件列表", "ftp_pasv.html": "返回当前 FTP 被动模式是否打开", "ftp_put.html": "上传文件到 FTP 服务器", "ftp_pwd.html": "返回当前目录名", "ftp_quit.html": "ftp_close 的 别名", "ftp_raw.html": "向 FTP 服务器发送命令", "ftp_rawlist.html": "返回指定目录下文件的详细列表", "ftp_rename.html": "更改 FTP 服务器上的文件或目录名", "ftp_rmdir.html": "删除 FTP 服务器上的一个目录", "ftp_set_option.html": "设置各种 FTP 运行时选项", "ftp_site.html": "向服务器发送 SITE 命令", "ftp_size.html": "返回指定文件的大小", "ftp_ssl_connect.html": "打开 SSL-FTP 连接", "ftp_systype.html": "返回远程 FTP 服务器的操作系统类型", "ftruncate.html": "将文件截断到给定的长度", "function_exists.html": "如果给定的函数已经被定义就返回 TRUE", "func_get_arg.html": "返回参数列表的某一项", "func_get_args.html": "返回一个包含函数参数列表的数组", "func_num_args.html": "Returns the number of arguments passed to the function", "fwrite.html": "写入文件(可安全用于二进制文件)", "gc_collect_cycles.html": "强制收集所有现存的垃圾循环周期", "gc_disable.html": "停用循环引用收集器", "gc_enable.html": "激活循环引用收集器", "gc_enabled.html": "返回循环引用计数器的状态", "gc_mem_caches.html": "Reclaims memory used by the Zend Engine memory manager", "gc_status.html": "Gets information about the garbage collector", "gd_info.html": "取得当前安装的 GD 库的信息", "geoip_asnum_by_name.html": "获取自治系统号(ASN)", "geoip_continent_code_by_name.html": "获取七大洲的大写字母简称", "geoip_country_code3_by_name.html": "获取三个字母组成的国家简称", "geoip_country_code_by_name.html": "获取国家代码", "geoip_country_name_by_name.html": "获取国家的全称", "geoip_database_info.html": "获取 GeoIP 数据库的信息", "geoip_db_avail.html": "GeoIP 数据库是否可用", "geoip_db_filename.html": "返回 GeoIP 数据库相对应的文件名", "geoip_db_get_all_info.html": "返回所有 GeoIP 数据库类型的详细信息", "geoip_domain_by_name.html": "获取二级域名", "geoip_id_by_name.html": "获取网络连接类型", "geoip_isp_by_name.html": "获取 ISP (网络服务提供商)的名称", "geoip_netspeedcell_by_name.html": "获取网络连接速度", "geoip_org_by_name.html": "获取机构的名称", "geoip_record_by_name.html": "返回 GeoIP 数据库中详细的城市信息", "geoip_region_by_name.html": "获取国家和地区代码", "geoip_region_name_by_code.html": "返回给定的国家和地区代码组合所对应的地区名称", "geoip_setup_custom_directory.html": "自定义 GeoIP 数据库的目录", "geoip_time_zone_by_country_and_region.html": "返回国家和地区的时区", "getallheaders.html": "获取全部 HTTP 请求头信息", "getcwd.html": "取得当前工作目录", "getdate.html": "取得日期/时间信息", "getenv.html": "获取一个环境变量的值", "gethostbyaddr.html": "获取指定的IP地址对应的主机名", "gethostbyname.html": "返回主机名对应的 IPv4地址。", "gethostbynamel.html": "获取互联网主机名对应的 IPv4 地址列表", "gethostname.html": "获取主机名", "getimagesize.html": "取得图像大小", "getimagesizefromstring.html": "从字符串中获取图像尺寸信息", "getlastmod.html": "获取页面最后修改的时间", "getmxrr.html": "获取互联网主机名对应的 MX 记录", "getmygid.html": "获取当前 PHP 脚本拥有者的 GID", "getmyinode.html": "获取当前脚本的索引节点(inode)", "getmypid.html": "获取 PHP 进程的 ID", "getmyuid.html": "获取 PHP 脚本所有者的 UID", "getopt.html": "从命令行参数列表中获取选项", "getprotobyname.html": "Get protocol number associated with protocol name", "getprotobynumber.html": "Get protocol name associated with protocol number", "getrandmax.html": "显示随机数最大的可能值", "getrusage.html": "获取当前资源使用状况", "getservbyname.html": "获取互联网服务协议对应的端口", "getservbyport.html": "Get Internet service which corresponds to port and protocol", "gettext.html": "Lookup a message in the current domain", "gettimeofday.html": "取得当前时间", "gettype.html": "获取变量的类型", "get_browser.html": "获取浏览器具有的功能", "get_called_class.html": "后期静态绑定("Late Static Binding")类的名称", "get_cfg_var.html": "获取 PHP 配置选项的值", "get_class.html": "返回对象的类名", "get_class_methods.html": "返回由类的方法名组成的数组", "get_class_vars.html": "返回由类的默认属性组成的数组", "get_current_user.html": "获取当前 PHP 脚本所有者名称", "get_declared_classes.html": "返回由已定义类的名字所组成的数组", "get_declared_interfaces.html": "返回一个数组包含所有已声明的接口", "get_declared_traits.html": "返回所有已定义的 traits 的数组", "get_defined_constants.html": "返回所有常量的关联数组,键是常量名,值是常量值", "get_defined_functions.html": "返回所有已定义函数的数组", "get_defined_vars.html": "返回由所有已定义变量所组成的数组", "get_extension_funcs.html": "返回模块函数名称的数组", "get_function_translation_table.html": "返回使用 htmlspecialchars 和 htmlentities 后的转换表", "get_headers.html": "取得服务器响应一个 HTTP 请求所发送的所有标头", "get_included_files.html": "返回被 include 和 require 文件名的 array", "get_include_path.html": "获取当前的 include_path 配置选项", "get_loaded_extensions.html": "返回所有编译并加载模块名的 array", "get_magic_quotes_gpc.html": "获取当前 magic_quotes_gpc 的配置选项设置", "get_magic_quotes_runtime.html": "获取当前 magic_quotes_runtime 配置选项的激活状态", "get_meta_tags.html": "从一个文件中提取所有的 meta 标签 content 属性,返回一个数组", "get_object_vars.html": "返回由对象属性组成的关联数组", "get_parent_class.html": "返回对象或类的父类名", "get_required_files.html": "别名 get_included_files", "get_resources.html": "Returns active resources", "get_resource_type.html": "返回资源(resource)类型", "glob.html": "寻找与模式匹配的文件路径", "gmdate.html": "格式化一个 GMTUTC 日期/时间", "gmmktime.html": "取得 GMT 日期的 UNIX 时间戳", "gmp_abs.html": "Absolute value", "gmp_add.html": "Add numbers", "gmp_and.html": "Bitwise AND", "gmp_binomial.html": "Calculates binomial coefficient", "gmp_clrbit.html": "Clear bit", "gmp_cmp.html": "Compare numbers", "gmp_com.html": "Calculates one's complement", "gmp_div.html": "别名 gmp_div_q", "gmp_divexact.html": "Exact division of numbers", "gmp_div_q.html": "Divide numbers", "gmp_div_qr.html": "Divide numbers and get quotient and remainder", "gmp_div_r.html": "Remainder of the division of numbers", "gmp_export.html": "Export to a binary string", "gmp_fact.html": "Factorial", "gmp_gcd.html": "Calculate GCD", "gmp_gcdext.html": "Calculate GCD and multipliers", "gmp_hamdist.html": "Hamming distance", "gmp_import.html": "Import from a binary string", "gmp_init.html": "Create GMP number", "gmp_intval.html": "Convert GMP number to integer", "gmp_invert.html": "Inverse by modulo", "gmp_jacobi.html": "Jacobi symbol", "gmp_kronecker.html": "Kronecker symbol", "gmp_lcm.html": "Calculate GCD", "gmp_legendre.html": "Legendre symbol", "gmp_mod.html": "Modulo operation", "gmp_mul.html": "Multiply numbers", "gmp_neg.html": "Negate number", "gmp_nextprime.html": "Find next prime number", "gmp_or.html": "Bitwise OR", "gmp_perfect_power.html": "Perfect power check", "gmp_perfect_square.html": "Perfect square check", "gmp_popcount.html": "Population count", "gmp_pow.html": "Raise number into power", "gmp_powm.html": "Raise number into power with modulo", "gmp_prob_prime.html": "Check if number is "probably prime"", "gmp_random.html": "Random number", "gmp_random_bits.html": "Random number", "gmp_random_range.html": "Random number", "gmp_random_seed.html": "Sets the RNG seed", "gmp_root.html": "Take the integer part of nth root", "gmp_rootrem.html": "Take the integer part and remainder of nth root", "gmp_scan0.html": "Scan for 0", "gmp_scan1.html": "Scan for 1", "gmp_setbit.html": "Set bit", "gmp_sign.html": "Sign of number", "gmp_sqrt.html": "Calculate square root", "gmp_sqrtrem.html": "Square root with remainder", "gmp_strval.html": "Convert GMP number to string", "gmp_sub.html": "Subtract numbers", "gmp_testbit.html": "Tests if a bit is set", "gmp_xor.html": "Bitwise XOR", "gmstrftime.html": "根据区域设置格式化 GMTUTC 时间/日期", "gnupg_adddecryptkey.html": "Add a key for decryption", "gnupg_addencryptkey.html": "Add a key for encryption", "gnupg_addsignkey.html": "Add a key for signing", "gnupg_cleardecryptkeys.html": "Removes all keys which were set for decryption before", "gnupg_clearencryptkeys.html": "Removes all keys which were set for encryption before", "gnupg_clearsignkeys.html": "Removes all keys which were set for signing before", "gnupg_decrypt.html": "Decrypts a given text", "gnupg_decryptverify.html": "Decrypts and verifies a given text", "gnupg_encrypt.html": "Encrypts a given text", "gnupg_encryptsign.html": "Encrypts and signs a given text", "gnupg_export.html": "Exports a key", "gnupg_geterror.html": "Returns the errortext, if a function fails", "gnupg_getprotocol.html": "Returns the currently active protocol for all operations", "gnupg_import.html": "Imports a key", "gnupg_init.html": "Initialize a connection", "gnupg_keyinfo.html": "Returns an array with information about all keys that matches the given pattern", "gnupg_setarmor.html": "Toggle armored output", "gnupg_seterrormode.html": "Sets the mode for error_reporting", "gnupg_setsignmode.html": "Sets the mode for signing", "gnupg_sign.html": "Signs a given text", "gnupg_verify.html": "Verifies a signed text", "gopher_parsedir.html": "Translate a gopher formatted directory entry into an associative array", "grapheme_extract.html": "Function to extract a sequence of default grapheme clusters from a text buffer, which must be encoded in UTF-8", "grapheme_stripos.html": "Find position (in grapheme units) of first occurrence of a case-insensitive string", "grapheme_stristr.html": "Returns part of haystack string from the first occurrence of case-insensitive needle to the end of haystack", "grapheme_strlen.html": "Get string length in grapheme units", "grapheme_strpos.html": "Find position (in grapheme units) of first occurrence of a string", "grapheme_strripos.html": "Find position (in grapheme units) of last occurrence of a case-insensitive string", "grapheme_strrpos.html": "Find position (in grapheme units) of last occurrence of a string", "grapheme_strstr.html": "Returns part of haystack string from the first occurrence of needle to the end of haystack", "grapheme_substr.html": "Return part of a string", "gregoriantojd.html": "转变一个Gregorian历法日期到Julian Day计数", "gupnp_context_get_host_ip.html": "Get the IP address", "gupnp_context_get_port.html": "Get the port", "gupnp_context_get_subscription_timeout.html": "Get the event subscription timeout", "gupnp_context_host_path.html": "Start hosting", "gupnp_context_new.html": "Create a new context", "gupnp_context_set_subscription_timeout.html": "Sets the event subscription timeout", "gupnp_context_timeout_add.html": "Sets a function to be called at regular intervals", "gupnp_context_unhost_path.html": "Stop hosting", "gupnp_control_point_browse_start.html": "Start browsing", "gupnp_control_point_browse_stop.html": "Stop browsing", "gupnp_control_point_callback_set.html": "Set control point callback", "gupnp_control_point_new.html": "Create a new control point", "gupnp_device_action_callback_set.html": "Set device callback function", "gupnp_device_info_get.html": "Get info of root device", "gupnp_device_info_get_service.html": "Get the service with type", "gupnp_root_device_get_available.html": "Check whether root device is available", "gupnp_root_device_get_relative_location.html": "Get the relative location of root device", "gupnp_root_device_new.html": "Create a new root device", "gupnp_root_device_set_available.html": "Set whether or not root_device is available", "gupnp_root_device_start.html": "Start main loop", "gupnp_root_device_stop.html": "Stop main loop", "gupnp_service_action_get.html": "Retrieves the specified action arguments", "gupnp_service_action_return.html": "Return successfully", "gupnp_service_action_return_error.html": "Return error code", "gupnp_service_action_set.html": "Sets the specified action return values", "gupnp_service_freeze_notify.html": "Freeze new notifications", "gupnp_service_info_get.html": "Get full info of service", "gupnp_service_info_get_introspection.html": "Get resource introspection of service", "gupnp_service_introspection_get_state_variable.html": "Returns the state variable data", "gupnp_service_notify.html": "Notifies listening clients", "gupnp_service_proxy_action_get.html": "Send action to the service and get value", "gupnp_service_proxy_action_set.html": "Send action to the service and set value", "gupnp_service_proxy_add_notify.html": "Sets up callback for variable change notification", "gupnp_service_proxy_callback_set.html": "Set service proxy callback for signal", "gupnp_service_proxy_get_subscribed.html": "Check whether subscription is valid to the service", "gupnp_service_proxy_remove_notify.html": "Cancels the variable change notification", "gupnp_service_proxy_set_subscribed.html": "(Un)subscribes to the service", "gupnp_service_thaw_notify.html": "Sends out any pending notifications and stops queuing of new ones", "gzclose.html": "Close an open gz-file pointer", "gzcompress.html": "Compress a string", "gzdecode.html": "Decodes a gzip compressed string", "gzdeflate.html": "Deflate a string", "gzencode.html": "Create a gzip compressed string", "gzeof.html": "Test for EOF on a gz-file pointer", "gzfile.html": "Read entire gz-file into an array", "gzgetc.html": "Get character from gz-file pointer", "gzgets.html": "Get line from file pointer", "gzgetss.html": "Get line from gz-file pointer and strip HTML tags", "gzinflate.html": "Inflate a deflated string", "gzopen.html": "Open gz-file", "gzpassthru.html": "Output all remaining data on a gz-file pointer", "gzputs.html": "别名 gzwrite", "gzread.html": "Binary-safe gz-file read", "gzrewind.html": "Rewind the position of a gz-file pointer", "gzseek.html": "Seek on a gz-file pointer", "gztell.html": "Tell gz-file pointer readwrite position", "gzuncompress.html": "Uncompress a compressed string", "gzwrite.html": "Binary-safe gz-file write", "halt_compiler.html": "中断编译器的执行", "hash.html": "生成哈希值 (消息摘要)", "hash_algos.html": "返回已注册的哈希算法列表", "hash_copy.html": "拷贝哈希运算上下文", "hash_equals.html": "可防止时序攻击的字符串比较", "hash_file.html": "使用给定文件的内容生成哈希值", "hash_final.html": "结束增量哈希,并且返回摘要结果", "hash_hkdf.html": "Generate a HKDF key derivation of a supplied key input", "hash_hmac.html": "使用 HMAC 方法生成带有密钥的哈希值", "hash_hmac_algos.html": "Return a list of registered hashing algorithms suitable for hash_hmac", "hash_hmac_file.html": "使用 HMAC 方法和给定文件的内容生成带密钥的哈希值", "hash_init.html": "初始化增量哈希运算上下文", "hash_pbkdf2.html": "生成所提供密码的 PBKDF2 密钥导出", "hash_update.html": "向活跃的哈希运算上下文中填充数据", "hash_update_file.html": "从文件向活跃的哈希运算上下文中填充数据", "hash_update_stream.html": "从打开的流向活跃的哈希运算上下文中填充数据", "header.html": "发送原生 HTTP 头", "headers_list.html": "返回已发送的 HTTP 响应头(或准备发送的)", "headers_sent.html": "检测 HTTP 头是否已经发送", "header_register_callback.html": "调用一个 header 函数", "header_remove.html": "删除之前设置的 HTTP 头", "hebrev.html": "将逻辑顺序希伯来文(logical-Hebrew)转换为视觉顺序希伯来文(visual-Hebrew)", "hebrevc.html": "将逻辑顺序希伯来文(logical-Hebrew)转换为视觉顺序希伯来文(visual-Hebrew),并且转换换行符", "hex2bin.html": "转换十六进制字符串为二进制字符串", "hexdec.html": "十六进制转换为十进制", "highlight_file.html": "语法高亮一个文件", "highlight_string.html": "字符串的语法高亮", "hrtime.html": "Get the system's high resolution time", "htmlentities.html": "将字符转换为 HTML 转义字符", "htmlspecialchars.html": "将特殊字符转换为 HTML 实体", "htmlspecialchars_decode.html": "将特殊的 HTML 实体转换回普通字符", "html_entity_decode.html": "Convert HTML entities to their corresponding characters", "http_build_query.html": "生成 URL-encode 之后的请求字符串", "http_response_code.html": "获取设置响应的 HTTP 状态码", "hwapi_attribute_new.html": "Creates instance of class hw_api_attribute", "hwapi_content_new.html": "Create new instance of class hw_api_content", "hwapi_hgcsp.html": "Returns object of class hw_api", "hwapi_object_new.html": "Creates a new instance of class hwapi_object_new", "hypot.html": "计算一直角三角形的斜边长度", "ibase_add_user.html": "Add a user to a security database", "ibase_affected_rows.html": "Return the number of rows that were affected by the previous query", "ibase_backup.html": "Initiates a backup task in the service manager and returns immediately", "ibase_blob_add.html": "Add data into a newly created blob", "ibase_blob_cancel.html": "Cancel creating blob", "ibase_blob_close.html": "Close blob", "ibase_blob_create.html": "Create a new blob for adding data", "ibase_blob_echo.html": "Output blob contents to browser", "ibase_blob_get.html": "Get len bytes data from open blob", "ibase_blob_import.html": "Create blob, copy file in it, and close it", "ibase_blob_info.html": "Return blob length and other useful info", "ibase_blob_open.html": "Open blob for retrieving data parts", "ibase_close.html": "Close a connection to an InterBase database", "ibase_commit.html": "Commit a transaction", "ibase_commit_ret.html": "Commit a transaction without closing it", "ibase_connect.html": "Open a connection to a database", "ibase_db_info.html": "Request statistics about a database", "ibase_delete_user.html": "Delete a user from a security database", "ibase_drop_db.html": "Drops a database", "ibase_errcode.html": "Return an error code", "ibase_errmsg.html": "Return error messages", "ibase_execute.html": "Execute a previously prepared query", "ibase_fetch_assoc.html": "Fetch a result row from a query as an associative array", "ibase_fetch_object.html": "Get an object from a InterBase database", "ibase_fetch_row.html": "Fetch a row from an InterBase database", "ibase_field_info.html": "Get information about a field", "ibase_free_event_handler.html": "Cancels a registered event handler", "ibase_free_query.html": "Free memory allocated by a prepared query", "ibase_free_result.html": "Free a result set", "ibase_gen_id.html": "Increments the named generator and returns its new value", "ibase_maintain_db.html": "Execute a maintenance command on the database server", "ibase_modify_user.html": "Modify a user to a security database", "ibase_name_result.html": "Assigns a name to a result set", "ibase_num_fields.html": "Get the number of fields in a result set", "ibase_num_params.html": "Return the number of parameters in a prepared query", "ibase_param_info.html": "Return information about a parameter in a prepared query", "ibase_pconnect.html": "Open a persistent connection to an InterBase database", "ibase_prepare.html": "Prepare a query for later binding of parameter placeholders and execution", "ibase_query.html": "Execute a query on an InterBase database", "ibase_restore.html": "Initiates a restore task in the service manager and returns immediately", "ibase_rollback.html": "Roll back a transaction", "ibase_rollback_ret.html": "Roll back a transaction without closing it", "ibase_server_info.html": "Request information about a database server", "ibase_service_attach.html": "Connect to the service manager", "ibase_service_detach.html": "Disconnect from the service manager", "ibase_set_event_handler.html": "Register a callback function to be called when events are posted", "ibase_trans.html": "Begin a transaction", "ibase_wait_event.html": "Wait for an event to be posted by the database", "iconv.html": "字符串按要求的字符编码来转换", "iconv_get_encoding.html": "获取 iconv 扩展的内部配置变量", "iconv_mime_decode.html": "解码一个MIME头字段", "iconv_mime_decode_headers.html": "一次性解码多个 MIME 头字段", "iconv_mime_encode.html": "Composes a MIME header field", "iconv_set_encoding.html": "为字符编码转换设定当前设置", "iconv_strlen.html": "返回字符串的字符数统计", "iconv_strpos.html": "Finds position of first occurrence of a needle within a haystack", "iconv_strrpos.html": "Finds the last occurrence of a needle within a haystack", "iconv_substr.html": "截取字符串的部分", "id3_get_frame_long_name.html": "Get the long name of an ID3v2 frame", "id3_get_frame_short_name.html": "Get the short name of an ID3v2 frame", "id3_get_genre_id.html": "Get the id for a genre", "id3_get_genre_list.html": "Get all possible genre values", "id3_get_genre_name.html": "Get the name for a genre id", "id3_get_tag.html": "Get all information stored in an ID3 tag", "id3_get_version.html": "Get version of an ID3 tag", "id3_remove_tag.html": "Remove an existing ID3 tag", "id3_set_tag.html": "Update information stored in an ID3 tag", "idate.html": "将本地时间日期格式化为整数", "idn_to_ascii.html": "Convert domain name to IDNA ASCII form", "idn_to_utf8.html": "Convert domain name from IDNA ASCII to Unicode", "ifxus_close_slob.html": "Deletes the slob object", "ifxus_create_slob.html": "Creates an slob object and opens it", "ifxus_free_slob.html": "Deletes the slob object", "ifxus_open_slob.html": "Opens an slob object", "ifxus_read_slob.html": "Reads nbytes of the slob object", "ifxus_seek_slob.html": "Sets the current file or seek position", "ifxus_tell_slob.html": "Returns the current file or seek position", "ifxus_write_slob.html": "Writes a string into the slob object", "ifx_affected_rows.html": "Get number of rows affected by a query", "ifx_blobinfile_mode.html": "Set the default blob mode for all select queries", "ifx_byteasvarchar.html": "Set the default byte mode", "ifx_close.html": "Close Informix connection", "ifx_connect.html": "Open Informix server connection", "ifx_copy_blob.html": "Duplicates the given blob object", "ifx_create_blob.html": "Creates an blob object", "ifx_create_char.html": "Creates an char object", "ifx_do.html": "Execute a previously prepared SQL-statement", "ifx_error.html": "Returns error code of last Informix call", "ifx_errormsg.html": "Returns error message of last Informix call", "ifx_fetch_row.html": "Get row as an associative array", "ifx_fieldproperties.html": "List of SQL fieldproperties", "ifx_fieldtypes.html": "List of Informix SQL fields", "ifx_free_blob.html": "Deletes the blob object", "ifx_free_char.html": "Deletes the char object", "ifx_free_result.html": "Releases resources for the query", "ifx_functiontbl_result.html": "Formats all rows of a query into a HTML table", "ifx_getsqlca.html": "Get the contents of sqlca.sqlerrd[0..5] after a query", "ifx_get_blob.html": "Return the content of a blob object", "ifx_get_char.html": "Return the content of the char object", "ifx_nullformat.html": "Sets the default return value on a fetch row", "ifx_num_fields.html": "Returns the number of columns in the query", "ifx_num_rows.html": "Count the rows already fetched from a query", "ifx_pconnect.html": "Open persistent Informix connection", "ifx_prepare.html": "Prepare an SQL-statement for execution", "ifx_query.html": "Send Informix query", "ifx_textasvarchar.html": "Set the default text mode", "ifx_update_blob.html": "Updates the content of the blob object", "ifx_update_char.html": "Updates the content of the char object", "ignore_user_abort.html": "设置客户端断开连接时是否中断脚本的执行", "iis_add_server.html": "Creates a new virtual web server", "iis_get_dir_security.html": "Gets Directory Security", "iis_get_script_map.html": "Gets script mapping on a virtual directory for a specific extension", "iis_get_server_by_comment.html": "Return the instance number associated with the Comment", "iis_get_server_by_path.html": "Return the instance number associated with the Path", "iis_get_server_rights.html": "Gets server rights", "iis_get_service_state.html": "Returns the state for the service defined by ServiceId", "iis_remove_server.html": "Removes the virtual web server indicated by ServerInstance", "iis_set_app_settings.html": "Creates application scope for a virtual directory", "iis_set_dir_security.html": "Sets Directory Security", "iis_set_script_map.html": "Sets script mapping on a virtual directory", "iis_set_server_rights.html": "Sets server rights", "iis_start_server.html": "Starts the virtual web server", "iis_start_service.html": "Starts the service defined by ServiceId", "iis_stop_server.html": "Stops the virtual web server", "iis_stop_service.html": "Stops the service defined by ServiceId", "image2wbmp.html": "以 WBMP 格式将图像输出到浏览器或文件", "imageaffine.html": "返回经过仿射变换后的图像,剪切区域可选", "imageaffinematrixconcat.html": "Concatenate two affine transformation matrices", "imageaffinematrixget.html": "Get an affine transformation matrix", "imagealphablending.html": "设定图像的混色模式", "imageantialias.html": "是否使用抗锯齿(antialias)功能", "imagearc.html": "画椭圆弧", "imagebmp.html": "Output a BMP image to browser or file", "imagechar.html": "水平地画一个字符", "imagecharup.html": "垂直地画一个字符", "imagecolorallocate.html": "为一幅图像分配颜色", "imagecolorallocatealpha.html": "为一幅图像分配颜色 + alpha", "imagecolorat.html": "取得某像素的颜色索引值", "imagecolorclosest.html": "取得与指定的颜色最接近的颜色的索引值", "imagecolorclosestalpha.html": "取得与指定的颜色加透明度最接近的颜色", "imagecolorclosesthwb.html": "取得与给定颜色最接近的色度的黑白色的索引", "imagecolordeallocate.html": "取消图像颜色的分配", "imagecolorexact.html": "取得指定颜色的索引值", "imagecolorexactalpha.html": "取得指定的颜色加透明度的索引值", "imagecolormatch.html": "使一个图像中调色板版本的颜色与真彩色版本更能匹配", "imagecolorresolve.html": "取得指定颜色的索引值或有可能得到的最接近的替代值", "imagecolorresolvealpha.html": "取得指定颜色 + alpha 的索引值或有可能得到的最接近的替代值", "imagecolorset.html": "给指定调色板索引设定颜色", "imagecolorsforindex.html": "取得某索引的颜色", "imagecolorstotal.html": "取得一幅图像的调色板中颜色的数目", "imagecolortransparent.html": "将某个颜色定义为透明色", "imageconvolution.html": "用系数 div 和 offset 申请一个 3x3 的卷积矩阵", "imagecopy.html": "拷贝图像的一部分", "imagecopymerge.html": "拷贝并合并图像的一部分", "imagecopymergegray.html": "用灰度拷贝并合并图像的一部分", "imagecopyresampled.html": "重采样拷贝部分图像并调整大小", "imagecopyresized.html": "拷贝部分图像并调整大小", "imagecreate.html": "新建一个基于调色板的图像", "imagecreatefrombmp.html": "由文件或 URL 创建一个新图象。", "imagecreatefromgd.html": "从 GD 文件或 URL 新建一图像", "imagecreatefromgd2.html": "从 GD2 文件或 URL 新建一图像", "imagecreatefromgd2part.html": "从给定的 GD2 文件或 URL 中的部分新建一图像", "imagecreatefromgif.html": "由文件或 URL 创建一个新图象。", "imagecreatefromjpeg.html": "由文件或 URL 创建一个新图象。", "imagecreatefrompng.html": "由文件或 URL 创建一个新图象。", "imagecreatefromstring.html": "从字符串中的图像流新建一图像", "imagecreatefromwbmp.html": "由文件或 URL 创建一个新图象。", "imagecreatefromwebp.html": "由文件或 URL 创建一个新图象。", "imagecreatefromxbm.html": "由文件或 URL 创建一个新图象。", "imagecreatefromxpm.html": "由文件或 URL 创建一个新图象。", "imagecreatetruecolor.html": "新建一个真彩色图像", "imagecrop.html": "Crop an image to the given rectangle", "imagecropauto.html": "Crop an image automatically using one of the available modes", "imagedashedline.html": "画一虚线", "imagedestroy.html": "销毁一图像", "imageellipse.html": "画一个椭圆", "imagefill.html": "区域填充", "imagefilledarc.html": "画一椭圆弧且填充", "imagefilledellipse.html": "画一椭圆并填充", "imagefilledpolygon.html": "画一多边形并填充", "imagefilledrectangle.html": "画一矩形并填充", "imagefilltoborder.html": "区域填充到指定颜色的边界为止", "imagefilter.html": "对图像使用过滤器", "imageflip.html": "Flips an image using a given mode", "imagefontheight.html": "取得字体高度", "imagefontwidth.html": "取得字体宽度", "imageftbbox.html": "给出一个使用 FreeType 2 字体的文本框", "imagefttext.html": "使用 FreeType 2 字体将文本写入图像", "imagegammacorrect.html": "对 GD 图像应用 gamma 修正", "imagegd.html": "将 GD 图像输出到浏览器或文件", "imagegd2.html": "将 GD2 图像输出到浏览器或文件", "imagegetclip.html": "Get the clipping rectangle", "imagegif.html": "输出图象到浏览器或文件。", "imagegrabscreen.html": "Captures the whole screen", "imagegrabwindow.html": "Captures a window", "imageinterlace.html": "激活或禁止隔行扫描", "imageistruecolor.html": "检查图像是否为真彩色图像", "imagejpeg.html": "输出图象到浏览器或文件。", "imagelayereffect.html": "设定 alpha 混色标志以使用绑定的 libgd 分层效果", "imageline.html": "画一条线段", "imageloadfont.html": "载入一新字体", "imageopenpolygon.html": "Draws an open polygon", "imagepalettecopy.html": "将调色板从一幅图像拷贝到另一幅", "imagepalettetotruecolor.html": "Converts a palette based image to true color", "imagepng.html": "以 PNG 格式将图像输出到浏览器或文件", "imagepolygon.html": "画一个多边形", "imagepsbbox.html": "给出一个使用 PostScript Type1 字体的文本方框", "imagepsencodefont.html": "改变字体中的字符编码矢量", "imagepsextendfont.html": "扩充或精简字体", "imagepsfreefont.html": "释放一个 PostScript Type 1 字体所占用的内存", "imagepsloadfont.html": "从文件中加载一个 PostScript Type 1 字体", "imagepsslantfont.html": "倾斜某字体", "imagepstext.html": "用 PostScript Type1 字体把文本字符串画在图像上", "imagerectangle.html": "画一个矩形", "imageresolution.html": "Get or set the resolution of the image", "imagerotate.html": "用给定角度旋转图像", "imagesavealpha.html": "设置标记以在保存 PNG 图像时保存完整的 alpha 通道信息(与单一透明色相反)", "imagescale.html": "Scale an image using the given new width and height", "imagesetbrush.html": "设定画线用的画笔图像", "imagesetclip.html": "Set the clipping rectangle", "imagesetinterpolation.html": "Set the interpolation method", "imagesetpixel.html": "画一个单一像素", "imagesetstyle.html": "设定画线的风格", "imagesetthickness.html": "设定画线的宽度", "imagesettile.html": "设定用于填充的贴图", "imagestring.html": "水平地画一行字符串", "imagestringup.html": "垂直地画一行字符串", "imagesx.html": "取得图像宽度", "imagesy.html": "取得图像高度", "imagetruecolortopalette.html": "将真彩色图像转换为调色板图像", "imagettfbbox.html": "取得使用 TrueType 字体的文本的范围", "imagettftext.html": "用 TrueType 字体向图像写入文本", "imagetypes.html": "返回当前 PHP 版本所支持的图像类型", "imagewbmp.html": "以 WBMP 格式将图像输出到浏览器或文件", "imagewebp.html": "将 WebP 格式的图像输出到浏览器或文件", "imagexbm.html": "将 XBM 图像输出到浏览器或文件", "image_type_to_extension.html": "取得图像类型的文件后缀", "image_type_to_mime_type.html": "取得 getimagesize,exif_read_data,exif_thumbnail,exif_i", "imap_8bit.html": "Convert an 8bit string to a quoted-printable string", "imap_alerts.html": "Returns all IMAP alert messages that have occurred", "imap_append.html": "Append a string message to a specified mailbox", "imap_base64.html": "Decode BASE64 encoded text", "imap_binary.html": "Convert an 8bit string to a base64 string", "imap_body.html": "Read the message body", "imap_bodystruct.html": "Read the structure of a specified body section of a specific message", "imap_check.html": "Check current mailbox", "imap_clearflag_full.html": "Clears flags on messages", "imap_close.html": "Close an IMAP stream", "imap_create.html": "别名 imap_createmailbox", "imap_createmailbox.html": "Create a new mailbox", "imap_delete.html": "Mark a message for deletion from current mailbox", "imap_deletemailbox.html": "Delete a mailbox", "imap_errors.html": "Returns all of the IMAP errors that have occurred", "imap_expunge.html": "Delete all messages marked for deletion", "imap_fetchbody.html": "Fetch a particular section of the body of the message", "imap_fetchheader.html": "Returns header for a message", "imap_fetchmime.html": "Fetch MIME headers for a particular section of the message", "imap_fetchstructure.html": "Read the structure of a particular message", "imap_fetchtext.html": "别名 imap_body", "imap_fetch_overview.html": "Read an overview of the information in the headers of the given message", "imap_gc.html": "Clears IMAP cache", "imap_getacl.html": "Gets the ACL for a given mailbox", "imap_getmailboxes.html": "Read the list of mailboxes, returning detailed information on each one", "imap_getsubscribed.html": "List all the subscribed mailboxes", "imap_get_quota.html": "Retrieve the quota level settings, and usage statics per mailbox", "imap_get_quotaroot.html": "Retrieve the quota settings per user", "imap_header.html": "别名 imap_headerinfo", "imap_headerinfo.html": "Read the header of the message", "imap_headers.html": "Returns headers for all messages in a mailbox", "imap_last_error.html": "Gets the last IMAP error that occurred during this page request", "imap_list.html": "Read the list of mailboxes", "imap_listmailbox.html": "别名 imap_list", "imap_listscan.html": "Returns the list of mailboxes that matches the given text", "imap_listsubscribed.html": "别名 imap_lsub", "imap_lsub.html": "List all the subscribed mailboxes", "imap_mail.html": "Send an email message", "imap_mailboxmsginfo.html": "Get information about the current mailbox", "imap_mail_compose.html": "Create a MIME message based on given envelope and body sections", "imap_mail_copy.html": "Copy specified messages to a mailbox", "imap_mail_move.html": "Move specified messages to a mailbox", "imap_mime_header_decode.html": "Decode MIME header elements", "imap_msgno.html": "Gets the message sequence number for the given UID", "imap_mutf7_to_utf8.html": "Decode a modified UTF-7 string to UTF-8", "imap_num_msg.html": "Gets the number of messages in the current mailbox", "imap_num_recent.html": "Gets the number of recent messages in current mailbox", "imap_open.html": "Open an IMAP stream to a mailbox", "imap_ping.html": "Check if the IMAP stream is still active", "imap_qprint.html": "Convert a quoted-printable string to an 8 bit string", "imap_rename.html": "别名 imap_renamemailbox", "imap_renamemailbox.html": "Rename an old mailbox to new mailbox", "imap_reopen.html": "Reopen IMAP stream to new mailbox", "imap_rfc822_parse_adrlist.html": "Parses an address string", "imap_rfc822_parse_headers.html": "Parse mail headers from a string", "imap_rfc822_write_address.html": "Returns a properly formatted email address given the mailbox, host, and personal info", "imap_savebody.html": "Save a specific body section to a file", "imap_scan.html": "别名 imap_listscan", "imap_scanmailbox.html": "别名 imap_listscan", "imap_search.html": "This function returns an array of messages matching the given search criteria", "imap_setacl.html": "Sets the ACL for a given mailbox", "imap_setflag_full.html": "Sets flags on messages", "imap_set_quota.html": "Sets a quota for a given mailbox", "imap_sort.html": "Gets and sort messages", "imap_status.html": "Returns status information on a mailbox", "imap_subscribe.html": "Subscribe to a mailbox", "imap_thread.html": "Returns a tree of threaded message", "imap_timeout.html": "Set or fetch imap timeout", "imap_uid.html": "This function returns the UID for the given message sequence number", "imap_undelete.html": "Unmark the message which is marked deleted", "imap_unsubscribe.html": "Unsubscribe from a mailbox", "imap_utf7_decode.html": "Decodes a modified UTF-7 encoded string", "imap_utf7_encode.html": "Converts ISO-8859-1 string to modified UTF-7 text", "imap_utf8.html": "Converts MIME-encoded text to UTF-8", "imap_utf8_to_mutf7.html": "Encode a UTF-8 string to modified UTF-7", "implode.html": "将一个一维数组的值转化为字符串", "import_request_variables.html": "将 GET/POST/Cookie 变量导入到全局作用域中", "include.html": "include", "include_once.html": "include_once", "inclued_get_data.html": "Get the inclued data", "inet_ntop.html": "Converts a packed internet address to a human readable representation", "inet_pton.html": "Converts a human readable IP address to its packed in_addr representation", "inflate_add.html": "Incrementally inflate encoded data", "inflate_get_read_len.html": "Get number of bytes read so far", "inflate_get_status.html": "Get decompression status", "inflate_init.html": "Initialize an incremental inflate context", "ingres_autocommit.html": "Switch autocommit on or off", "ingres_autocommit_state.html": "Test if the connection is using autocommit", "ingres_charset.html": "Returns the installation character set", "ingres_close.html": "Close an Ingres database connection", "ingres_commit.html": "Commit a transaction", "ingres_connect.html": "Open a connection to an Ingres database", "ingres_cursor.html": "Get a cursor name for a given result resource", "ingres_errno.html": "Get the last Ingres error number generated", "ingres_error.html": "Get a meaningful error message for the last error generated", "ingres_errsqlstate.html": "Get the last SQLSTATE error code generated", "ingres_escape_string.html": "Escape special characters for use in a query", "ingres_execute.html": "Execute a prepared query", "ingres_fetch_array.html": "Fetch a row of result into an array", "ingres_fetch_assoc.html": "Fetch a row of result into an associative array", "ingres_fetch_object.html": "Fetch a row of result into an object", "ingres_fetch_proc_return.html": "Get the return value from a procedure call", "ingres_fetch_row.html": "Fetch a row of result into an enumerated array", "ingres_field_length.html": "Get the length of a field", "ingres_field_name.html": "Get the name of a field in a query result", "ingres_field_nullable.html": "Test if a field is nullable", "ingres_field_precision.html": "Get the precision of a field", "ingres_field_scale.html": "Get the scale of a field", "ingres_field_type.html": "Get the type of a field in a query result", "ingres_free_result.html": "Free the resources associated with a result identifier", "ingres_next_error.html": "Get the next Ingres error", "ingres_num_fields.html": "Get the number of fields returned by the last query", "ingres_num_rows.html": "Get the number of rows affected or returned by a query", "ingres_pconnect.html": "Open a persistent connection to an Ingres database", "ingres_prepare.html": "Prepare a query for later execution", "ingres_query.html": "Send an SQL query to Ingres", "ingres_result_seek.html": "Set the row position before fetching data", "ingres_rollback.html": "Roll back a transaction", "ingres_set_environment.html": "Set environment features controlling output options", "ingres_unbuffered_query.html": "Send an unbuffered SQL query to Ingres", "ini_alter.html": "别名 ini_set", "ini_get.html": "获取一个配置选项的值", "ini_get_all.html": "获取所有配置选项", "ini_restore.html": "恢复配置选项的值", "ini_set.html": "为一个配置选项设置值", "inotify_add_watch.html": "Add a watch to an initialized inotify instance", "inotify_init.html": "Initialize an inotify instance", "inotify_queue_len.html": "Return a number upper than zero if there are pending events", "inotify_read.html": "Read events from an inotify instance", "inotify_rm_watch.html": "Remove an existing watch from an inotify instance", "intdiv.html": "对除法结果取整", "interface_exists.html": "检查接口是否已被定义", "intl_error_name.html": "Get symbolic name for a given error code", "intl_get_error_code.html": "Get the last error code", "intl_get_error_message.html": "Get description of the last error", "intl_is_failure.html": "Check whether the given error code indicates failure", "intval.html": "获取变量的整数值", "in_array.html": "检查数组中是否存在某个值", "ip2long.html": "将 IPV4 的字符串互联网协议转换成长整型数字", "iptcembed.html": "将二进制 IPTC 数据嵌入到一幅 JPEG 图像中", "iptcparse.html": "将二进制 IPTC 块解析为单个标记", "isset.html": "检测变量是否已设置并且非 NULL", "is_a.html": "如果对象属于该类或该类是此对象的父类则返回 TRUE", "is_array.html": "检测变量是否是数组", "is_bool.html": "检测变量是否是布尔型", "is_callable.html": "检测参数是否为合法的可调用结构", "is_countable.html": "Verify that the contents of a variable is a countable value", "is_dir.html": "判断给定文件名是否是一个目录", "is_double.html": "is_float 的别名", "is_executable.html": "判断给定文件名是否可执行", "is_file.html": "判断给定文件名是否为一个正常的文件", "is_finite.html": "判断是否为有限值", "is_float.html": "检测变量是否是浮点型", "is_infinite.html": "判断是否为无限值", "is_int.html": "检测变量是否是整数", "is_integer.html": "is_int 的别名", "is_iterable.html": "Verify that the contents of a variable is an iterable value", "is_link.html": "判断给定文件名是否为一个符号连接", "is_long.html": "is_int 的别名", "is_nan.html": "判断是否为合法数值", "is_null.html": "检测变量是否为 NULL", "is_numeric.html": "检测变量是否为数字或数字字符串", "is_object.html": "检测变量是否是一个对象", "is_readable.html": "判断给定文件名是否可读", "is_real.html": "is_float 的别名", "is_resource.html": "检测变量是否为资源类型", "is_scalar.html": "检测变量是否是一个标量", "is_soap_fault.html": "Checks if a SOAP call has failed", "is_string.html": "检测变量是否是字符串", "is_subclass_of.html": "如果此对象是该类的子类,则返回 TRUE", "is_tainted.html": "Checks whether a string is tainted", "is_uploaded_file.html": "判断文件是否是通过 HTTP POST 上传的", "is_writable.html": "判断给定的文件名是否可写", "is_writeable.html": "is_writable 的别名", "iterator_apply.html": "为迭代器中每个元素调用一个用户自定义函数", "iterator_count.html": "计算迭代器中元素的个数", "iterator_to_array.html": "将迭代器中的元素拷贝到数组", "jddayofweek.html": "返回星期的日期", "jdmonthname.html": "返回月份的名称", "jdtofrench.html": "转变一个Julian Day计数到French Republican历法的日期", "jdtogregorian.html": "转变一个Julian Day计数为Gregorian历法日期", "jdtojewish.html": "转换一个julian天数为Jewish历法的日期", "jdtojulian.html": "转变一个Julian Day计数到Julian历法的日期", "jdtounix.html": "转变Julian Day计数为一个Unix时间戳", "jewishtojd.html": "转变一个Jewish历法的日期为一个Julian Day计数", "join.html": "别名 implode", "jpeg2wbmp.html": "将 JPEG 图像文件转换为 WBMP 图像文件", "json_decode.html": "对 JSON 格式的字符串进行解码", "json_encode.html": "对变量进行 JSON 编码", "json_last_error.html": "返回最后发生的错误", "json_last_error_msg.html": "Returns the error string of the last json_encode() or json_decode() call", "judy_type.html": "Return the type of a Judy array", "judy_version.html": "Return or print the current PHP Judy version", "juliantojd.html": "转变一个Julian历法的日期为Julian Day计数", "kadm5_chpass_principal.html": "Changes the principal's password", "kadm5_create_principal.html": "Creates a kerberos principal with the given parameters", "kadm5_delete_principal.html": "Deletes a kerberos principal", "kadm5_destroy.html": "Closes the connection to the admin server and releases all related resources", "kadm5_flush.html": "Flush all changes to the Kerberos database", "kadm5_get_policies.html": "Gets all policies from the Kerberos database", "kadm5_get_principal.html": "Gets the principal's entries from the Kerberos database", "kadm5_get_principals.html": "Gets all principals from the Kerberos database", "kadm5_init_with_password.html": "Opens a connection to the KADM5 library", "kadm5_modify_principal.html": "Modifies a kerberos principal with the given parameters", "key.html": "从关联数组中取得键名", "key_exists.html": "别名 array_key_exists", "krsort.html": "对数组按照键名逆向排序", "ksort.html": "对数组按照键名排序", "lcfirst.html": "使一个字符串的第一个字符小写", "lcg_value.html": "组合线性同余发生器", "lchgrp.html": "修改符号链接的所有组", "lchown.html": "修改符号链接的所有者", "ldap_8859_to_t61.html": "Translate 8859 characters to t61 characters", "ldap_add.html": "Add entries to LDAP directory", "ldap_add_ext.html": "Add entries to LDAP directory", "ldap_bind.html": "绑定 LDAP 目录", "ldap_bind_ext.html": "Bind to LDAP directory", "ldap_close.html": "别名 ldap_unbind", "ldap_compare.html": "Compare value of attribute found in entry specified with DN", "ldap_connect.html": "Connect to an LDAP server", "ldap_control_paged_result.html": "Send LDAP pagination control", "ldap_control_paged_result_response.html": "Retrieve the LDAP pagination cookie", "ldap_count_entries.html": "Count the number of entries in a search", "ldap_delete.html": "Delete an entry from a directory", "ldap_delete_ext.html": "Delete an entry from a directory", "ldap_dn2ufn.html": "Convert DN to User Friendly Naming format", "ldap_err2str.html": "Convert LDAP error number into string error message", "ldap_errno.html": "Return the LDAP error number of the last LDAP command", "ldap_error.html": "Return the LDAP error message of the last LDAP command", "ldap_escape.html": "Escape a string for use in an LDAP filter or DN", "ldap_exop.html": "Performs an extended operation", "ldap_exop_passwd.html": "PASSWD extended operation helper", "ldap_exop_refresh.html": "Refresh extended operation helper", "ldap_exop_whoami.html": "WHOAMI extended operation helper", "ldap_explode_dn.html": "Splits DN into its component parts", "ldap_first_attribute.html": "Return first attribute", "ldap_first_entry.html": "Return first result id", "ldap_first_reference.html": "Return first reference", "ldap_free_result.html": "Free result memory", "ldap_get_attributes.html": "Get attributes from a search result entry", "ldap_get_dn.html": "Get the DN of a result entry", "ldap_get_entries.html": "Get all result entries", "ldap_get_option.html": "Get the current value for given option", "ldap_get_values.html": "Get all values from a result entry", "ldap_get_values_len.html": "Get all binary values from a result entry", "ldap_list.html": "Single-level search", "ldap_modify.html": "别名 ldap_mod_replace", "ldap_modify_batch.html": "Batch and execute modifications on an LDAP entry", "ldap_mod_add.html": "Add attribute values to current attributes", "ldap_mod_add_ext.html": "Add attribute values to current attributes", "ldap_mod_del.html": "Delete attribute values from current attributes", "ldap_mod_del_ext.html": "Delete attribute values from current attributes", "ldap_mod_replace.html": "Replace attribute values with new ones", "ldap_mod_replace_ext.html": "Replace attribute values with new ones", "ldap_next_attribute.html": "Get the next attribute in result", "ldap_next_entry.html": "Get next result entry", "ldap_next_reference.html": "Get next reference", "ldap_parse_exop.html": "Parse result object from an LDAP extended operation", "ldap_parse_reference.html": "Extract information from reference entry", "ldap_parse_result.html": "Extract information from result", "ldap_read.html": "Read an entry", "ldap_rename.html": "Modify the name of an entry", "ldap_rename_ext.html": "Modify the name of an entry", "ldap_sasl_bind.html": "Bind to LDAP directory using SASL", "ldap_search.html": "Search LDAP tree", "ldap_set_option.html": "Set the value of the given option", "ldap_set_rebind_proc.html": "Set a callback function to do re-binds on referral chasing", "ldap_sort.html": "Sort LDAP result entries on the client side", "ldap_start_tls.html": "Start TLS", "ldap_t61_to_8859.html": "Translate t61 characters to 8859 characters", "ldap_unbind.html": "Unbind from LDAP directory", "levenshtein.html": "计算两个字符串之间的编辑距离", "libxml_clear_errors.html": "Clear libxml error buffer", "libxml_disable_entity_loader.html": "Disable the ability to load external entities", "libxml_get_errors.html": "Retrieve array of errors", "libxml_get_last_error.html": "Retrieve last error from libxml", "libxml_set_external_entity_loader.html": "Changes the default external entity loader", "libxml_set_streams_context.html": "Set the streams context for the next libxml document load or write", "libxml_use_internal_errors.html": "Disable libxml errors and allow user to fetch error information as needed", "link.html": "建立一个硬连接", "linkinfo.html": "获取一个连接的信息", "list.html": "把数组中的值赋给一组变量", "localeconv.html": "Get numeric formatting information", "localtime.html": "取得本地时间", "log.html": "自然对数", "log10.html": "以 10 为底的对数", "log1p.html": "返回 log(1 + number),甚至当 number 的值接近零也能计算出准确结果", "log_cmd_delete.html": "Callback When Deleting Documents", "log_cmd_insert.html": "Callback When Inserting Documents", "log_cmd_update.html": "Callback When Updating Documents", "log_getmore.html": "Callback When Retrieving Next Cursor Batch", "log_killcursor.html": "Callback When Executing KILLCURSOR operations", "log_reply.html": "Callback When Reading the MongoDB reply", "log_write_batch.html": "Callback When Writing Batches", "long2ip.html": "将长整型转化为字符串形式带点的互联网标准格式地址(IPV4)", "lstat.html": "给出一个文件或符号连接的信息", "ltrim.html": "删除字符串开头的空白字符(或其他字符)", "lzf_compress.html": "LZF compression", "lzf_decompress.html": "LZF decompression", "lzf_optimized_for.html": "Determines what LZF extension was optimized for", "magic_quotes_runtime.html": "别名 set_magic_quotes_runtime", "mail.html": "发送邮件", "mailparse_determine_best_xfer_encoding.html": "Gets the best way of encoding", "mailparse_msg_create.html": "Create a mime mail resource", "mailparse_msg_extract_part.html": "Extractsdecodes a message section", "mailparse_msg_extract_part_file.html": "Extractsdecodes a message section", "mailparse_msg_extract_whole_part_file.html": "Extracts a message section including headers without decoding the transfer encoding", "mailparse_msg_free.html": "Frees a MIME resource", "mailparse_msg_get_part.html": "Returns a handle on a given section in a mimemessage", "mailparse_msg_get_part_data.html": "Returns an associative array of info about the message", "mailparse_msg_get_structure.html": "Returns an array of mime section names in the supplied message", "mailparse_msg_parse.html": "Incrementally parse data into buffer", "mailparse_msg_parse_file.html": "Parses a file", "mailparse_rfc822_parse_addresses.html": "Parse RFC 822 compliant addresses", "mailparse_stream_encode.html": "Streams data from source file pointer, apply encoding and write to destfp", "mailparse_uudecode_all.html": "Scans the data from fp and extract each embedded uuencoded file", "main.html": "虚拟的main", "max.html": "找出最大值", "maxdb_affected_rows.html": "Gets the number of affected rows in a previous MaxDB operation", "maxdb_autocommit.html": "Turns on or off auto-commiting database modifications", "maxdb_bind_param.html": "别名 maxdb_stmt_bind_param", "maxdb_bind_result.html": "别名 maxdb_stmt_bind_result", "maxdb_change_user.html": "Changes the user of the specified database connection", "maxdb_character_set_name.html": "Returns the default character set for the database connection", "maxdb_client_encoding.html": "别名 maxdb_character_set_name", "maxdb_close.html": "Closes a previously opened database connection", "maxdb_close_long_data.html": "别名 maxdb_stmt_close_long_data", "maxdb_commit.html": "Commits the current transaction", "maxdb_connect.html": "Open a new connection to the MaxDB server", "maxdb_connect_errno.html": "Returns the error code from last connect call", "maxdb_connect_error.html": "Returns a string description of the last connect error", "maxdb_data_seek.html": "Adjusts the result pointer to an arbitary row in the result", "maxdb_debug.html": "Performs debugging operations", "maxdb_disable_reads_from_master.html": "Disable reads from master", "maxdb_disable_rpl_parse.html": "Disable RPL parse", "maxdb_dump_debug_info.html": "Dump debugging information into the log", "maxdb_embedded_connect.html": "Open a connection to an embedded MaxDB server", "maxdb_enable_reads_from_master.html": "Enable reads from master", "maxdb_enable_rpl_parse.html": "Enable RPL parse", "maxdb_errno.html": "Returns the error code for the most recent function call", "maxdb_error.html": "Returns a string description of the last error", "maxdb_escape_string.html": "别名 maxdb_real_escape_string", "maxdb_execute.html": "别名 maxdb_stmt_execute", "maxdb_fetch.html": "别名 maxdb_stmt_fetch", "maxdb_fetch_array.html": "Fetch a result row as an associative, a numeric array, or both", "maxdb_fetch_assoc.html": "Fetch a result row as an associative array", "maxdb_fetch_field.html": "Returns the next field in the result set", "maxdb_fetch_fields.html": "Returns an array of resources representing the fields in a result set", "maxdb_fetch_field_direct.html": "Fetch meta-data for a single field", "maxdb_fetch_lengths.html": "Returns the lengths of the columns of the current row in the result set", "maxdb_fetch_object.html": "Returns the current row of a result set as an object", "maxdb_fetch_row.html": "Get a result row as an enumerated array", "maxdb_field_count.html": "Returns the number of columns for the most recent query", "maxdb_field_seek.html": "Set result pointer to a specified field offset", "maxdb_field_tell.html": "Get current field offset of a result pointer", "maxdb_free_result.html": "Frees the memory associated with a result", "maxdb_get_client_info.html": "Returns the MaxDB client version as a string", "maxdb_get_client_version.html": "Get MaxDB client info", "maxdb_get_host_info.html": "Returns a string representing the type of connection used", "maxdb_get_metadata.html": "别名 maxdb_stmt_result_metadata", "maxdb_get_proto_info.html": "Returns the version of the MaxDB protocol used", "maxdb_get_server_info.html": "Returns the version of the MaxDB server", "maxdb_get_server_version.html": "Returns the version of the MaxDB server as an integer", "maxdb_info.html": "Retrieves information about the most recently executed query", "maxdb_init.html": "Initializes MaxDB and returns an resource for use with maxdb_real_connect", "maxdb_insert_id.html": "Returns the auto generated id used in the last query", "maxdb_kill.html": "Disconnects from a MaxDB server", "maxdb_master_query.html": "Enforce execution of a query on the master in a masterslave setup", "maxdb_more_results.html": "Check if there any more query results from a multi query", "maxdb_multi_query.html": "Performs a query on the database", "maxdb_next_result.html": "Prepare next result from multi_query", "maxdb_num_fields.html": "Get the number of fields in a result", "maxdb_num_rows.html": "Gets the number of rows in a result", "maxdb_options.html": "Set options", "maxdb_param_count.html": "别名 maxdb_stmt_param_count", "maxdb_ping.html": "Pings a server connection, or tries to reconnect if the connection has gone down", "maxdb_prepare.html": "Prepare an SQL statement for execution", "maxdb_query.html": "Performs a query on the database", "maxdb_real_connect.html": "Opens a connection to a MaxDB server", "maxdb_real_escape_string.html": "Escapes special characters in a string for use in an SQL statement, taking into account the current charset of the connection", "maxdb_real_query.html": "Execute an SQL query", "maxdb_report.html": "Enables or disables internal report functions", "maxdb_rollback.html": "Rolls back current transaction", "maxdb_rpl_parse_enabled.html": "Check if RPL parse is enabled", "maxdb_rpl_probe.html": "RPL probe", "maxdb_rpl_query_type.html": "Returns RPL query type", "maxdb_select_db.html": "Selects the default database for database queries", "maxdb_send_long_data.html": "别名 maxdb_stmt_send_long_data", "maxdb_send_query.html": "Send the query and return", "maxdb_server_end.html": "Shut down the embedded server", "maxdb_server_init.html": "Initialize embedded server", "maxdb_set_opt.html": "别名 maxdb_options", "maxdb_sqlstate.html": "Returns the SQLSTATE error from previous MaxDB operation", "maxdb_ssl_set.html": "Used for establishing secure connections using SSL", "maxdb_stat.html": "Gets the current system status", "maxdb_stmt_affected_rows.html": "Returns the total number of rows changed, del", "maxdb_stmt_bind_param.html": "Binds variables to a prepared statement as parameters", "maxdb_stmt_bind_result.html": "Binds variables to a prepared statement for result storage", "maxdb_stmt_close.html": "Closes a prepared statement", "maxdb_stmt_close_long_data.html": "Ends a sequence of maxdb_stmt_send_long_data", "maxdb_stmt_data_seek.html": "Seeks to an arbitray row in statement result set", "maxdb_stmt_errno.html": "Returns the error code for the most recent statement call", "maxdb_stmt_error.html": "Returns a string description for last statement error", "maxdb_stmt_execute.html": "Executes a prepared Query", "maxdb_stmt_fetch.html": "Fetch results from a prepared statement into the bound variables", "maxdb_stmt_free_result.html": "Frees stored result memory for the given statement handle", "maxdb_stmt_init.html": "Initializes a statement and returns an resource for use with maxdb_stmt_prepare", "maxdb_stmt_num_rows.html": "Return the number of rows in statements result set", "maxdb_stmt_param_count.html": "Returns the number of parameter for the given statement", "maxdb_stmt_prepare.html": "Prepare an SQL statement for execution", "maxdb_stmt_reset.html": "Resets a prepared statement", "maxdb_stmt_result_metadata.html": "Returns result set metadata from a prepared statement", "maxdb_stmt_send_long_data.html": "Send data in blocks", "maxdb_stmt_sqlstate.html": "Returns SQLSTATE error from previous statement operation", "maxdb_stmt_store_result.html": "Transfers a result set from a prepared statement", "maxdb_store_result.html": "Transfers a result set from the last query", "maxdb_thread_id.html": "Returns the thread ID for the current connection", "maxdb_thread_safe.html": "Returns whether thread safety is given or not", "maxdb_use_result.html": "Initiate a result set retrieval", "maxdb_warning_count.html": "Returns the number of warnings from the last query for the given link", "mb_check_encoding.html": "检查字符串在指定的编码里是否有效", "mb_chr.html": "Get a specific character", "mb_convert_case.html": "对字符串进行大小写转换", "mb_convert_encoding.html": "转换字符的编码", "mb_convert_kana.html": "Convert "kana" one from another ("zen-kaku", "han-kaku" and more)", "mb_convert_variables.html": "转换一个或多个变量的字符编码", "mb_decode_mimeheader.html": "解码 MIME 头字段中的字符串", "mb_decode_numericentity.html": "根据 HTML 数字字符串解码成字符", "mb_detect_encoding.html": "检测字符的编码", "mb_detect_order.html": "设置获取 字符编码的检测顺序", "mb_encode_mimeheader.html": "为 MIME 头编码字符串", "mb_encode_numericentity.html": "Encode character to HTML numeric string reference", "mb_encoding_aliases.html": "Get aliases of a known encoding type", "mb_ereg.html": "Regular expression match with multibyte support", "mb_eregi.html": "Regular expression match ignoring case with multibyte support", "mb_eregi_replace.html": "Replace regular expression with multibyte support ignoring case", "mb_ereg_match.html": "Regular expression match for multibyte string", "mb_ereg_replace.html": "Replace regular expression with multibyte support", "mb_ereg_replace_callback.html": "Perform a regular expression search and replace with multibyte support using a callback", "mb_ereg_search.html": "Multibyte regular expression match for predefined multibyte string", "mb_ereg_search_getpos.html": "Returns start point for next regular expression match", "mb_ereg_search_getregs.html": "Retrieve the result from the last multibyte regular expression match", "mb_ereg_search_init.html": "Setup string and regular expression for a multibyte regular expression match", "mb_ereg_search_pos.html": "Returns position and length of a matched part of the multibyte regular expression for a predefined multibyte string", "mb_ereg_search_regs.html": "Returns the matched part of a multibyte regular expression", "mb_ereg_search_setpos.html": "Set start point of next regular expression match", "mb_get_info.html": "获取 mbstring 的内部设置", "mb_http_input.html": "检测 HTTP 输入字符编码", "mb_http_output.html": "设置获取 HTTP 输出字符编码", "mb_internal_encoding.html": "设置获取内部字符编码", "mb_language.html": "设置获取当前的语言", "mb_list_encodings.html": "返回所有支持编码的数组", "mb_ord.html": "Get code point of character", "mb_output_handler.html": "在输出缓冲中转换字符编码的回调函数", "mb_parse_str.html": "解析 GETPOSTCOOKIE 数据并设置全局变量", "mb_preferred_mime_name.html": "获取 MIME 字符串", "mb_regex_encoding.html": "SetGet character encoding for multibyte regex", "mb_regex_set_options.html": "SetGet the default options for mbregex functions", "mb_send_mail.html": "发送编码过的邮件", "mb_split.html": "使用正则表达式分割多字节字符串", "mb_strcut.html": "获取字符的一部分", "mb_strimwidth.html": "获取按指定宽度截断的字符串", "mb_stripos.html": "大小写不敏感地查找字符串在另一个字符串中首次出现的位置", "mb_stristr.html": "大小写不敏感地查找字符串在另一个字符串里的首次出现", "mb_strlen.html": "获取字符串的长度", "mb_strpos.html": "查找字符串在另一个字符串中首次出现的位置", "mb_strrchr.html": "查找指定字符在另一个字符串中最后一次的出现", "mb_strrichr.html": "大小写不敏感地查找指定字符在另一个字符串中最后一次的出现", "mb_strripos.html": "大小写不敏感地在字符串中查找一个字符串最后出现的位置", "mb_strrpos.html": "查找字符串在一个字符串中最后出现的位置", "mb_strstr.html": "查找字符串在另一个字符串里的首次出现", "mb_strtolower.html": "使字符串小写", "mb_strtoupper.html": "使字符串大写", "mb_strwidth.html": "返回字符串的宽度", "mb_substitute_character.html": "设置获取替代字符", "mb_substr.html": "获取部分字符串", "mb_substr_count.html": "统计字符串出现的次数", "mcrypt_cbc.html": "以 CBC 模式加解密数据", "mcrypt_cfb.html": "以 CFB 模式加解密数据", "mcrypt_create_iv.html": "从随机源创建初始向量", "mcrypt_decrypt.html": "使用给定参数解密密文", "mcrypt_ecb.html": "已废弃:使用 ECB 模式加解密数据", "mcrypt_encrypt.html": "使用给定参数加密明文", "mcrypt_enc_get_algorithms_name.html": "返回打开的算法名称", "mcrypt_enc_get_block_size.html": "返回打开的算法的分组大小", "mcrypt_enc_get_iv_size.html": "返回打开的算法的初始向量大小", "mcrypt_enc_get_key_size.html": "返回打开的模式所能支持的最长密钥", "mcrypt_enc_get_modes_name.html": "返回打开的模式的名称", "mcrypt_enc_get_supported_key_sizes.html": "以数组方式返回打开的算法所支持的密钥长度", "mcrypt_enc_is_block_algorithm.html": "检测打开模式的算法是否为分组算法", "mcrypt_enc_is_block_algorithm_mode.html": "检测打开的模式是否支持分组加密", "mcrypt_enc_is_block_mode.html": "检测打开的模式是否以分组方式输出", "mcrypt_enc_self_test.html": "在打开的模块上进行自检", "mcrypt_generic.html": "加密数据", "mcrypt_generic_deinit.html": "对加密模块进行清理工作", "mcrypt_generic_end.html": "终止加密", "mcrypt_generic_init.html": "初始化加密所需的缓冲区", "mcrypt_get_block_size.html": "获得加密算法的分组大小", "mcrypt_get_cipher_name.html": "获取加密算法名称", "mcrypt_get_iv_size.html": "返回指定算法模式组合的初始向量大小", "mcrypt_get_key_size.html": "获取指定加密算法的密钥大小", "mcrypt_list_algorithms.html": "获取支持的加密算法", "mcrypt_list_modes.html": "获取所支持的模式", "mcrypt_module_close.html": "关闭加密模块", "mcrypt_module_get_algo_block_size.html": "返回指定算法的分组大小", "mcrypt_module_get_algo_key_size.html": "获取打开模式所支持的最大密钥大小", "mcrypt_module_get_supported_key_sizes.html": "以数组形式返回打开的算法所支持的密钥大小", "mcrypt_module_is_block_algorithm.html": "检测指定算法是否为分组加密算法", "mcrypt_module_is_block_algorithm_mode.html": "返回指定模块是否是分组加密模式", "mcrypt_module_is_block_mode.html": "检测指定模式是否以分组方式输出", "mcrypt_module_open.html": "打开算法和模式对应的模块", "mcrypt_module_self_test.html": "在指定模块上执行自检", "mcrypt_ofb.html": "使用 OFB 模式加密解密数据", "md5.html": "计算字符串的 MD5 散列值", "md5_file.html": "计算指定文件的 MD5 散列值", "mdecrypt_generic.html": "解密数据", "memcache_debug.html": "转换调试输出的开关", "memory_get_peak_usage.html": "返回分配给 PHP 内存的峰值", "memory_get_usage.html": "返回分配给 PHP 的内存量", "metaphone.html": "Calculate the metaphone key of a string", "method_exists.html": "检查类的方法是否存在", "mhash.html": "Computes hash", "mhash_count.html": "Gets the highest available hash ID", "mhash_get_block_size.html": "Gets the block size of the specified hash", "mhash_get_hash_name.html": "Gets the name of the specified hash", "mhash_keygen_s2k.html": "Generates a key", "microtime.html": "返回当前 Unix 时间戳和微秒数", "mime_content_type.html": "检测文件的 MIME 类型", "min.html": "找出最小值", "ming_keypress.html": "Returns the action flag for keyPress(char)", "ming_setcubicthreshold.html": "Set cubic threshold", "ming_setscale.html": "Set the global scaling factor", "ming_setswfcompression.html": "Sets the SWF output compression", "ming_useconstants.html": "Use constant pool", "ming_useswfversion.html": "Sets the SWF version", "mkdir.html": "新建目录", "mktime.html": "取得一个日期的 Unix 时间戳", "money_format.html": "将数字格式化成货币字符串", "mongodb.bson_fromjson.html": "Returns the BSON representation of a JSON value", "mongodb.bson_fromphp.html": "Returns the BSON representation of a PHP value", "mongodb.bson_tocanonicalextendedjson.html": "Returns the Canonical Extended JSON representation of a BSON value", "mongodb.bson_tojson.html": "Returns the Legacy Extended JSON representation of a BSON value", "mongodb.bson_tophp.html": "Returns the PHP representation of a BSON value", "mongodb.bson_torelaxedextendedjson.html": "Returns the Relaxed Extended JSON representation of a BSON value", "mongodb.driver.monitoring.addsubscriber.html": "Registers a new monitoring event subscriber", "mongodb.driver.monitoring.removesubscriber.html": "Unregisters an existing monitoring event subscriber", "move_uploaded_file.html": "将上传的文件移动到新位置", "mqseries_back.html": "MQSeries MQBACK", "mqseries_begin.html": "MQseries MQBEGIN", "mqseries_close.html": "MQSeries MQCLOSE", "mqseries_cmit.html": "MQSeries MQCMIT", "mqseries_conn.html": "MQSeries MQCONN", "mqseries_connx.html": "MQSeries MQCONNX", "mqseries_disc.html": "MQSeries MQDISC", "mqseries_get.html": "MQSeries MQGET", "mqseries_inq.html": "MQSeries MQINQ", "mqseries_open.html": "MQSeries MQOPEN", "mqseries_put.html": "MQSeries MQPUT", "mqseries_put1.html": "MQSeries MQPUT1", "mqseries_set.html": "MQSeries MQSET", "mqseries_strerror.html": "Returns the error message corresponding to a result code (MQRC)", "msession_connect.html": "Connect to msession server", "msession_count.html": "Get session count", "msession_create.html": "Create a session", "msession_destroy.html": "Destroy a session", "msession_disconnect.html": "Close connection to msession server", "msession_find.html": "Find all sessions with name and value", "msession_get.html": "Get value from session", "msession_get_array.html": "Get array of msession variables", "msession_get_data.html": "Get data session unstructured data", "msession_inc.html": "Increment value in session", "msession_list.html": "List all sessions", "msession_listvar.html": "List sessions with variable", "msession_lock.html": "Lock a session", "msession_plugin.html": "Call an escape function within the msession personality plugin", "msession_randstr.html": "Get random string", "msession_set.html": "Set value in session", "msession_set_array.html": "Set msession variables from an array", "msession_set_data.html": "Set data session unstructured data", "msession_timeout.html": "Setget session timeout", "msession_uniq.html": "Get unique id", "msession_unlock.html": "Unlock a session", "msg_get_queue.html": "Create or attach to a message queue", "msg_queue_exists.html": "Check whether a message queue exists", "msg_receive.html": "Receive a message from a message queue", "msg_remove_queue.html": "Destroy a message queue", "msg_send.html": "Send a message to a message queue", "msg_set_queue.html": "Set information in the message queue data structure", "msg_stat_queue.html": "Returns information from the message queue data structure", "msql.html": "Alias of msql_db_query", "msql_affected_rows.html": "Returns number of affected rows", "msql_close.html": "Close mSQL connection", "msql_connect.html": "Open mSQL connection", "msql_createdb.html": "别名 msql_create_db", "msql_create_db.html": "Create mSQL database", "msql_data_seek.html": "Move internal row pointer", "msql_dbname.html": "别名 msql_result", "msql_db_query.html": "Send mSQL query", "msql_drop_db.html": "Drop (delete) mSQL database", "msql_error.html": "Returns error message of last msql call", "msql_fetch_array.html": "Fetch row as array", "msql_fetch_field.html": "Get field information", "msql_fetch_object.html": "Fetch row as object", "msql_fetch_row.html": "Get row as enumerated array", "msql_fieldflags.html": "Alias of msql_field_flags", "msql_fieldlen.html": "Alias of msql_field_len", "msql_fieldname.html": "Alias of msql_field_name", "msql_fieldtable.html": "Alias of msql_field_table", "msql_fieldtype.html": "Alias of msql_field_type", "msql_field_flags.html": "Get field flags", "msql_field_len.html": "Get field length", "msql_field_name.html": "Get the name of the specified field in a result", "msql_field_seek.html": "Set field offset", "msql_field_table.html": "Get table name for field", "msql_field_type.html": "Get field type", "msql_free_result.html": "Free result memory", "msql_list_dbs.html": "List mSQL databases on server", "msql_list_fields.html": "List result fields", "msql_list_tables.html": "List tables in an mSQL database", "msql_numfields.html": "Alias of msql_num_fields", "msql_numrows.html": "Alias of msql_num_rows", "msql_num_fields.html": "Get number of fields in result", "msql_num_rows.html": "Get number of rows in result", "msql_pconnect.html": "Open persistent mSQL connection", "msql_query.html": "Send mSQL query", "msql_regcase.html": "Alias of sql_regcase", "msql_result.html": "Get result data", "msql_select_db.html": "Select mSQL database", "msql_tablename.html": "Alias of msql_result", "mssql_bind.html": "Adds a parameter to a stored procedure or a remote stored procedure", "mssql_close.html": "关闭MS SQL Server链接", "mssql_connect.html": "打开MS SQL server链接", "mssql_data_seek.html": "Moves internal row pointer", "mssql_execute.html": "Executes a stored procedure on a MS SQL server database", "mssql_fetch_array.html": "Fetch a result row as an associative array, a numeric array, or both", "mssql_fetch_assoc.html": "Returns an associative array of the current row in the result", "mssql_fetch_batch.html": "Returns the next batch of records", "mssql_fetch_field.html": "Get field information", "mssql_fetch_object.html": "Fetch row as object", "mssql_fetch_row.html": "Get row as enumerated array", "mssql_field_length.html": "Get the length of a field", "mssql_field_name.html": "Get the name of a field", "mssql_field_seek.html": "Seeks to the specified field offset", "mssql_field_type.html": "Gets the type of a field", "mssql_free_result.html": "Free result memory", "mssql_free_statement.html": "Free statement memory", "mssql_get_last_message.html": "Returns the last message from the server", "mssql_guid_string.html": "Converts a 16 byte binary GUID to a string", "mssql_init.html": "Initializes a stored procedure or a remote stored procedure", "mssql_min_error_severity.html": "Sets the minimum error severity", "mssql_min_message_severity.html": "Sets the minimum message severity", "mssql_next_result.html": "Move the internal result pointer to the next result", "mssql_num_fields.html": "Gets the number of fields in result", "mssql_num_rows.html": "Gets the number of rows in result", "mssql_pconnect.html": "Open persistent MS SQL connection", "mssql_query.html": "Send MS SQL query", "mssql_result.html": "Get result data", "mssql_rows_affected.html": "Returns the number of records affected by the query", "mssql_select_db.html": "Select MS SQL database", "mt_getrandmax.html": "显示随机数的最大可能值", "mt_rand.html": "生成更好的随机数", "mt_srand.html": "播下一个更好的随机数发生器种子", "mysqli_bind_param.html": "mysqli_stmt_bind_param 的别名", "mysqli_bind_result.html": "mysqli_stmt_bind_result 的别名", "mysqli_client_encoding.html": "mysqli_character_set_name 的别名", "mysqli_connect.html": "别名 mysqli__construct", "mysqli_disable_reads_from_master.html": "在主从服务器结构中,禁用从主机读取数据", "mysqli_disable_rpl_parse.html": "禁用RPL解析", "mysqli_enable_reads_from_master.html": "开启从主机读取", "mysqli_enable_rpl_parse.html": "开启RPL解析", "mysqli_escape_string.html": "别名 mysqli_real_escape_string", "mysqli_execute.html": "mysqli_stmt_execute 的别名", "mysqli_fetch.html": "mysqli_stmt_fetch 的别名。", "mysqli_get_cache_stats.html": "返回客户端Zval缓存统计信息", "mysqli_get_client_stats.html": "返回客户端进程统计信息", "mysqli_get_links_stats.html": "返回打开和缓存的链接相关信息", "mysqli_get_metadata.html": "mysqli_stmt_result_metadata 的别名", "mysqli_master_query.html": "在主从机制中强制在主机中执行一个查询", "mysqli_param_count.html": "mysqli_stmt_param_count 的别名", "mysqli_report.html": "别名 mysqli_driver->report_mode", "mysqli_rpl_parse_enabled.html": "检查是否开启了 RPL 解析", "mysqli_rpl_probe.html": "RPL 探测", "mysqli_send_long_data.html": "mysqli_stmt_send_long_data 的别名", "mysqli_set_opt.html": "mysqli_options 的别名", "mysqli_slave_query.html": "在主从机制中强制在从机上执行一个查询", "mysqlnd_memcache_get_config.html": "Returns information about the plugin configuration", "mysqlnd_memcache_set.html": "Associate a MySQL connection with a Memcache connection", "mysqlnd_ms_dump_servers.html": "Returns a list of currently configured servers", "mysqlnd_ms_fabric_select_global.html": "Switch to global sharding server for a given table", "mysqlnd_ms_fabric_select_shard.html": "Switch to shard", "mysqlnd_ms_get_last_gtid.html": "返回最后的全局同步 ID (GTID)", "mysqlnd_ms_get_last_used_connection.html": "Returns an array which describes the last used connection", "mysqlnd_ms_get_stats.html": "Returns query distribution and connection statistics", "mysqlnd_ms_match_wild.html": "Finds whether a table name matches a wildcard pattern or not", "mysqlnd_ms_query_is_select.html": "查询给定的 SQL 会发送给 master、slave 还是最后使用的 MySQL server 执行。", "mysqlnd_ms_set_qos.html": "Sets the quality of service needed from the cluster", "mysqlnd_ms_set_user_pick_server.html": "Sets a callback for user-defined readwrite splitting", "mysqlnd_ms_xa_begin.html": "Starts a distributedXA transaction among MySQL servers", "mysqlnd_ms_xa_commit.html": "Commits a distributedXA transaction among MySQL servers", "mysqlnd_ms_xa_gc.html": "Garbage collects unfinished XA transactions after severe errors", "mysqlnd_ms_xa_rollback.html": "Rolls back a distributedXA transaction among MySQL servers", "mysqlnd_qc_clear_cache.html": "Flush all cache contents", "mysqlnd_qc_get_available_handlers.html": "Returns a list of available storage handler", "mysqlnd_qc_get_cache_info.html": "Returns information on the current handler, the number of cache entries and cache entries, if available", "mysqlnd_qc_get_core_stats.html": "Statistics collected by the core of the query cache", "mysqlnd_qc_get_normalized_query_trace_log.html": "Returns a normalized query trace log for each query inspected by the query cache", "mysqlnd_qc_get_query_trace_log.html": "Returns a backtrace for each query inspected by the query cache", "mysqlnd_qc_set_cache_condition.html": "Set conditions for automatic caching", "mysqlnd_qc_set_is_select.html": "Installs a callback which decides whether a statement is cached", "mysqlnd_qc_set_storage_handler.html": "Change current storage handler", "mysqlnd_qc_set_user_handlers.html": "Sets the callback functions for a user-defined procedural storage handler", "mysqlnd_uh_convert_to_mysqlnd.html": "Converts a MySQL connection handle into a mysqlnd connection handle", "mysqlnd_uh_set_connection_proxy.html": "Installs a proxy for mysqlnd connections", "mysqlnd_uh_set_statement_proxy.html": "Installs a proxy for mysqlnd statements", "mysql_affected_rows.html": "取得前一次 MySQL 操作所影响的记录行数", "mysql_client_encoding.html": "返回字符集的名称", "mysql_close.html": "关闭 MySQL 连接", "mysql_connect.html": "打开一个到 MySQL 服务器的连接", "mysql_create_db.html": "新建一个 MySQL 数据库", "mysql_data_seek.html": "移动内部结果的指针", "mysql_db_name.html": "取得结果数据", "mysql_db_query.html": "发送一条 MySQL 查询", "mysql_drop_db.html": "丢弃(删除)一个 MySQL 数据库", "mysql_errno.html": "返回上一个 MySQL 操作中的错误信息的数字编码", "mysql_error.html": "返回上一个 MySQL 操作产生的文本错误信息", "mysql_escape_string.html": "转义一个字符串用于 mysql_query", "mysql_fetch_array.html": "从结果集中取得一行作为关联数组,或数字数组,或二者兼有", "mysql_fetch_assoc.html": "从结果集中取得一行作为关联数组", "mysql_fetch_field.html": "从结果集中取得列信息并作为对象返回", "mysql_fetch_lengths.html": "取得结果集中每个输出的长度", "mysql_fetch_object.html": "从结果集中取得一行作为对象", "mysql_fetch_row.html": "从结果集中取得一行作为枚举数组", "mysql_field_flags.html": "从结果中取得和指定字段关联的标志", "mysql_field_len.html": "返回指定字段的长度", "mysql_field_name.html": "取得结果中指定字段的字段名", "mysql_field_seek.html": "将结果集中的指针设定为制定的字段偏移量", "mysql_field_table.html": "取得指定字段所在的表名", "mysql_field_type.html": "取得结果集中指定字段的类型", "mysql_free_result.html": "释放结果内存", "mysql_get_client_info.html": "取得 MySQL 客户端信息", "mysql_get_host_info.html": "取得 MySQL 主机信息", "mysql_get_proto_info.html": "取得 MySQL 协议信息", "mysql_get_server_info.html": "取得 MySQL 服务器信息", "mysql_info.html": "取得最近一条查询的信息", "mysql_insert_id.html": "取得上一步 INSERT 操作产生的 ID", "mysql_list_dbs.html": "列出 MySQL 服务器中所有的数据库", "mysql_list_fields.html": "列出 MySQL 结果中的字段", "mysql_list_processes.html": "列出 MySQL 进程", "mysql_list_tables.html": "列出 MySQL 数据库中的表", "mysql_num_fields.html": "取得结果集中字段的数目", "mysql_num_rows.html": "取得结果集中行的数目", "mysql_pconnect.html": "打开一个到 MySQL 服务器的持久连接", "mysql_ping.html": "Ping 一个服务器连接,如果没有连接则重新连接", "mysql_query.html": "发送一条 MySQL 查询", "mysql_real_escape_string.html": "转义 SQL 语句中使用的字符串中的特殊字符,并考虑到连接的当前字符集", "mysql_result.html": "取得结果数据", "mysql_select_db.html": "选择 MySQL 数据库", "mysql_set_charset.html": "设置客户端的字符集", "mysql_stat.html": "取得当前系统状态", "mysql_tablename.html": "取得表名", "mysql_thread_id.html": "返回当前线程的 ID", "mysql_unbuffered_query.html": "向 MySQL 发送一条 SQL 查询,并不获取和缓存结果的行", "mysql_xdevapi_expression.html": "Bind prepared statement variables as parameters", "mysql_xdevapi_getsession.html": "Connect to a MySQL server", "m_checkstatus.html": "Check to see if a transaction has completed", "m_completeauthorizations.html": "Number of complete authorizations in queue, returning an array of their identifiers", "m_connect.html": "Establish the connection to MCVE", "m_connectionerror.html": "Get a textual representation of why a connection failed", "m_deletetrans.html": "Delete specified transaction from MCVE_CONN structure", "m_destroyconn.html": "Destroy the connection and MCVE_CONN structure", "m_destroyengine.html": "Free memory associated with IPSSL connectivity", "m_getcell.html": "Get a specific cell from a comma delimited response by column name", "m_getcellbynum.html": "Get a specific cell from a comma delimited response by column number", "m_getcommadelimited.html": "Get the RAW comma delimited data returned from MCVE", "m_getheader.html": "Get the name of the column in a comma-delimited response", "m_initconn.html": "Create and initialize an MCVE_CONN structure", "m_initengine.html": "Ready the client for IPSSL Communication", "m_iscommadelimited.html": "Checks to see if response is comma delimited", "m_maxconntimeout.html": "The maximum amount of time the API will attempt a connection to MCVE", "m_monitor.html": "Perform communication with MCVE (sendreceive data) Non-blocking", "m_numcolumns.html": "Number of columns returned in a comma delimited response", "m_numrows.html": "Number of rows returned in a comma delimited response", "m_parsecommadelimited.html": "Parse the comma delimited response so m_getcell, etc will work", "m_responsekeys.html": "Returns array of strings which represents the keys that can", "m_responseparam.html": "Get a custom response parameter", "m_returnstatus.html": "Check to see if the transaction was successful", "m_setblocking.html": "Set blockingnon-blocking mode for connection", "m_setdropfile.html": "Set the connection method to Drop-File", "m_setip.html": "Set the connection method to IP", "m_setssl.html": "Set the connection method to SSL", "m_setssl_cafile.html": "Set SSL CA (Certificate Authority) file for verification o", "m_setssl_files.html": "Set certificate key files and certificates if server requires client cer", "m_settimeout.html": "Set maximum transaction time (per trans)", "m_sslcert_gen_hash.html": "Generate hash for SSL client certificate verification", "m_transactionssent.html": "Check to see if outgoing buffer is clear", "m_transinqueue.html": "Number of transactions in client-queue", "m_transkeyval.html": "Add keyvalue pair to a transaction. Replaces deprecated transparam()", "m_transnew.html": "Start a new transaction", "m_transsend.html": "Finalize and send the transaction", "m_uwait.html": "Wait x microsecs", "m_validateidentifier.html": "Whether or not to validate the passed identifier on any transaction it is passed to", "m_verifyconnection.html": "Set whether or not to PING upon connect to verify connection", "m_verifysslcert.html": "Set whether or not to verify the server ssl certificate", "natcasesort.html": "用“自然排序”算法对数组进行不区分大小写字母的排序", "natsort.html": "用“自然排序”算法对数组排序", "ncurses_addch.html": "Add character at current position and advance cursor", "ncurses_addchnstr.html": "Add attributed string with specified length at current position", "ncurses_addchstr.html": "Add attributed string at current position", "ncurses_addnstr.html": "Add string with specified length at current position", "ncurses_addstr.html": "Output text at current position", "ncurses_assume_default_colors.html": "Define default colors for color 0", "ncurses_attroff.html": "Turn off the given attributes", "ncurses_attron.html": "Turn on the given attributes", "ncurses_attrset.html": "Set given attributes", "ncurses_baudrate.html": "Returns baudrate of terminal", "ncurses_beep.html": "Let the terminal beep", "ncurses_bkgd.html": "Set background property for terminal screen", "ncurses_bkgdset.html": "Control screen background", "ncurses_border.html": "Draw a border around the screen using attributed characters", "ncurses_bottom_panel.html": "Moves a visible panel to the bottom of the stack", "ncurses_can_change_color.html": "Checks if terminal color definitions can be changed", "ncurses_cbreak.html": "Switch off input buffering", "ncurses_clear.html": "Clear screen", "ncurses_clrtobot.html": "Clear screen from current position to bottom", "ncurses_clrtoeol.html": "Clear screen from current position to end of line", "ncurses_color_content.html": "Retrieves RGB components of a color", "ncurses_color_set.html": "Set active foreground and background colors", "ncurses_curs_set.html": "Set cursor state", "ncurses_define_key.html": "Define a keycode", "ncurses_def_prog_mode.html": "Saves terminals (program) mode", "ncurses_def_shell_mode.html": "Saves terminals (shell) mode", "ncurses_delay_output.html": "Delay output on terminal using padding characters", "ncurses_delch.html": "Delete character at current position, move rest of line left", "ncurses_deleteln.html": "Delete line at current position, move rest of screen up", "ncurses_delwin.html": "Delete a ncurses window", "ncurses_del_panel.html": "Remove panel from the stack and delete it (but not the associated window)", "ncurses_doupdate.html": "Write all prepared refreshes to terminal", "ncurses_echo.html": "Activate keyboard input echo", "ncurses_echochar.html": "Single character output including refresh", "ncurses_end.html": "Stop using ncurses, clean up the screen", "ncurses_erase.html": "Erase terminal screen", "ncurses_erasechar.html": "Returns current erase character", "ncurses_filter.html": "Set LINES for iniscr() and newterm() to 1", "ncurses_flash.html": "Flash terminal screen (visual bell)", "ncurses_flushinp.html": "Flush keyboard input buffer", "ncurses_getch.html": "Read a character from keyboard", "ncurses_getmaxyx.html": "Returns the size of a window", "ncurses_getmouse.html": "Reads mouse event", "ncurses_getyx.html": "Returns the current cursor position for a window", "ncurses_halfdelay.html": "Put terminal into halfdelay mode", "ncurses_has_colors.html": "Checks if terminal has color capabilities", "ncurses_has_ic.html": "Check for insert- and delete-capabilities", "ncurses_has_il.html": "Check for line insert- and delete-capabilities", "ncurses_has_key.html": "Check for presence of a function key on terminal keyboard", "ncurses_hide_panel.html": "Remove panel from the stack, making it invisible", "ncurses_hline.html": "Draw a horizontal line at current position using an attributed character and max. n characters long", "ncurses_inch.html": "Get character and attribute at current position", "ncurses_init.html": "Initialize ncurses", "ncurses_init_color.html": "Define a terminal color", "ncurses_init_pair.html": "Define a color pair", "ncurses_insch.html": "Insert character moving rest of line including character at current position", "ncurses_insdelln.html": "Insert lines before current line scrolling down (negative numbers delete and scroll up)", "ncurses_insertln.html": "Insert a line, move rest of screen down", "ncurses_insstr.html": "Insert string at current position, moving rest of line right", "ncurses_instr.html": "Reads string from terminal screen", "ncurses_isendwin.html": "Ncurses is in endwin mode, normal screen output may be performed", "ncurses_keyok.html": "Enable or disable a keycode", "ncurses_keypad.html": "Turns keypad on or off", "ncurses_killchar.html": "Returns current line kill character", "ncurses_meta.html": "EnablesDisable 8-bit meta key information", "ncurses_mouseinterval.html": "Set timeout for mouse button clicks", "ncurses_mousemask.html": "Sets mouse options", "ncurses_mouse_trafo.html": "Transforms coordinates", "ncurses_move.html": "Move output position", "ncurses_move_panel.html": "Moves a panel so that its upper-left corner is at [startx, starty]", "ncurses_mvaddch.html": "Move current position and add character", "ncurses_mvaddchnstr.html": "Move position and add attributed string with specified length", "ncurses_mvaddchstr.html": "Move position and add attributed string", "ncurses_mvaddnstr.html": "Move position and add string with specified length", "ncurses_mvaddstr.html": "Move position and add string", "ncurses_mvcur.html": "Move cursor immediately", "ncurses_mvdelch.html": "Move position and delete character, shift rest of line left", "ncurses_mvgetch.html": "Move position and get character at new position", "ncurses_mvhline.html": "Set new position and draw a horizontal line using an attributed character and max. n characters long", "ncurses_mvinch.html": "Move position and get attributed character at new position", "ncurses_mvvline.html": "Set new position and draw a vertical line using an attributed character and max. n characters long", "ncurses_mvwaddstr.html": "Add string at new position in window", "ncurses_napms.html": "Sleep", "ncurses_newpad.html": "Creates a new pad (window)", "ncurses_newwin.html": "Create a new window", "ncurses_new_panel.html": "Create a new panel and associate it with window", "ncurses_nl.html": "Translate newline and carriage return line feed", "ncurses_nocbreak.html": "Switch terminal to cooked mode", "ncurses_noecho.html": "Switch off keyboard input echo", "ncurses_nonl.html": "Do not translate newline and carriage return line feed", "ncurses_noqiflush.html": "Do not flush on signal characters", "ncurses_noraw.html": "Switch terminal out of raw mode", "ncurses_pair_content.html": "Retrieves foreground and background colors of a color pair", "ncurses_panel_above.html": "Returns the panel above panel", "ncurses_panel_below.html": "Returns the panel below panel", "ncurses_panel_window.html": "Returns the window associated with panel", "ncurses_pnoutrefresh.html": "Copies a region from a pad into the virtual screen", "ncurses_prefresh.html": "Copies a region from a pad into the virtual screen", "ncurses_putp.html": "Apply padding information to the string and output it", "ncurses_qiflush.html": "Flush on signal characters", "ncurses_raw.html": "Switch terminal into raw mode", "ncurses_refresh.html": "Refresh screen", "ncurses_replace_panel.html": "Replaces the window associated with panel", "ncurses_resetty.html": "Restores saved terminal state", "ncurses_reset_prog_mode.html": "Resets the prog mode saved by def_prog_mode", "ncurses_reset_shell_mode.html": "Resets the shell mode saved by def_shell_mode", "ncurses_savetty.html": "Saves terminal state", "ncurses_scrl.html": "Scroll window content up or down without changing current position", "ncurses_scr_dump.html": "Dump screen content to file", "ncurses_scr_init.html": "Initialize screen from file dump", "ncurses_scr_restore.html": "Restore screen from file dump", "ncurses_scr_set.html": "Inherit screen from file dump", "ncurses_show_panel.html": "Places an invisible panel on top of the stack, making it visible", "ncurses_slk_attr.html": "Returns current soft label key attribute", "ncurses_slk_attroff.html": "Turn off the given attributes for soft function-key labels", "ncurses_slk_attron.html": "Turn on the given attributes for soft function-key labels", "ncurses_slk_attrset.html": "Set given attributes for soft function-key labels", "ncurses_slk_clear.html": "Clears soft labels from screen", "ncurses_slk_color.html": "Sets color for soft label keys", "ncurses_slk_init.html": "Initializes soft label key functions", "ncurses_slk_noutrefresh.html": "Copies soft label keys to virtual screen", "ncurses_slk_refresh.html": "Copies soft label keys to screen", "ncurses_slk_restore.html": "Restores soft label keys", "ncurses_slk_set.html": "Sets function key labels", "ncurses_slk_touch.html": "Forces output when ncurses_slk_noutrefresh is performed", "ncurses_standend.html": "Stop using 'standout' attribute", "ncurses_standout.html": "Start using 'standout' attribute", "ncurses_start_color.html": "Initializes color functionality", "ncurses_termattrs.html": "Returns a logical OR of all attribute flags supported by terminal", "ncurses_termname.html": "Returns terminals (short)-name", "ncurses_timeout.html": "Set timeout for special key sequences", "ncurses_top_panel.html": "Moves a visible panel to the top of the stack", "ncurses_typeahead.html": "Specify different filedescriptor for typeahead checking", "ncurses_ungetch.html": "Put a character back into the input stream", "ncurses_ungetmouse.html": "Pushes mouse event to queue", "ncurses_update_panels.html": "Refreshes the virtual screen to reflect the relations between panels in the stack", "ncurses_use_default_colors.html": "Assign terminal default colors to color id -1", "ncurses_use_env.html": "Control use of environment information about terminal size", "ncurses_use_extended_names.html": "Control use of extended names in terminfo descriptions", "ncurses_vidattr.html": "Display the string on the terminal in the video attribute mode", "ncurses_vline.html": "Draw a vertical line at current position using an attributed character and max. n characters long", "ncurses_waddch.html": "Adds character at current position in a window and advance cursor", "ncurses_waddstr.html": "Outputs text at current postion in window", "ncurses_wattroff.html": "Turns off attributes for a window", "ncurses_wattron.html": "Turns on attributes for a window", "ncurses_wattrset.html": "Set the attributes for a window", "ncurses_wborder.html": "Draws a border around the window using attributed characters", "ncurses_wclear.html": "Clears window", "ncurses_wcolor_set.html": "Sets windows color pairings", "ncurses_werase.html": "Erase window contents", "ncurses_wgetch.html": "Reads a character from keyboard (window)", "ncurses_whline.html": "Draws a horizontal line in a window at current position using an attributed character and max. n characters long", "ncurses_wmouse_trafo.html": "Transforms windowstdscr coordinates", "ncurses_wmove.html": "Moves windows output position", "ncurses_wnoutrefresh.html": "Copies window to virtual screen", "ncurses_wrefresh.html": "Refresh window on terminal screen", "ncurses_wstandend.html": "End standout mode for a window", "ncurses_wstandout.html": "Enter standout mode for a window", "ncurses_wvline.html": "Draws a vertical line in a window at current position using an attributed character and max. n characters long", "newt_bell.html": "Send a beep to the terminal", "newt_button.html": "Create a new button", "newt_button_bar.html": "This function returns a grid containing the buttons created", "newt_centered_window.html": "Open a centered window of the specified size", "newt_checkbox.html": "说明", "newt_checkbox_get_value.html": "Retreives value of checkox resource", "newt_checkbox_set_flags.html": "Configures checkbox resource", "newt_checkbox_set_value.html": "Sets the value of the checkbox", "newt_checkbox_tree.html": "说明", "newt_checkbox_tree_add_item.html": "Adds new item to the checkbox tree", "newt_checkbox_tree_find_item.html": "Finds an item in the checkbox tree", "newt_checkbox_tree_get_current.html": "Returns checkbox tree selected item", "newt_checkbox_tree_get_entry_value.html": "说明", "newt_checkbox_tree_get_multi_selection.html": "说明", "newt_checkbox_tree_get_selection.html": "说明", "newt_checkbox_tree_multi.html": "说明", "newt_checkbox_tree_set_current.html": "说明", "newt_checkbox_tree_set_entry.html": "说明", "newt_checkbox_tree_set_entry_value.html": "说明", "newt_checkbox_tree_set_width.html": "说明", "newt_clear_key_buffer.html": "Discards the contents of the terminal's input buffer", "newt_cls.html": "说明", "newt_compact_button.html": "说明", "newt_component_add_callback.html": "说明", "newt_component_takes_focus.html": "说明", "newt_create_grid.html": "说明", "newt_cursor_off.html": "说明", "newt_cursor_on.html": "说明", "newt_delay.html": "说明", "newt_draw_form.html": "说明", "newt_draw_root_text.html": "Displays the string text at the position indicated", "newt_entry.html": "说明", "newt_entry_get_value.html": "说明", "newt_entry_set.html": "说明", "newt_entry_set_filter.html": "说明", "newt_entry_set_flags.html": "说明", "newt_finished.html": "Uninitializes newt interface", "newt_form.html": "Create a form", "newt_form_add_component.html": "Adds a single component to the form", "newt_form_add_components.html": "Add several components to the form", "newt_form_add_hot_key.html": "说明", "newt_form_destroy.html": "Destroys a form", "newt_form_get_current.html": "说明", "newt_form_run.html": "Runs a form", "newt_form_set_background.html": "说明", "newt_form_set_height.html": "说明", "newt_form_set_size.html": "说明", "newt_form_set_timer.html": "说明", "newt_form_set_width.html": "说明", "newt_form_watch_fd.html": "说明", "newt_get_screen_size.html": "Fills in the passed references with the current siz", "newt_grid_add_components_to_form.html": "说明", "newt_grid_basic_window.html": "说明", "newt_grid_free.html": "说明", "newt_grid_get_size.html": "说明", "newt_grid_h_close_stacked.html": "说明", "newt_grid_h_stacked.html": "说明", "newt_grid_place.html": "说明", "newt_grid_set_field.html": "说明", "newt_grid_simple_window.html": "说明", "newt_grid_v_close_stacked.html": "说明", "newt_grid_v_stacked.html": "说明", "newt_grid_wrapped_window.html": "说明", "newt_grid_wrapped_window_at.html": "说明", "newt_init.html": "Initialize newt", "newt_label.html": "说明", "newt_label_set_text.html": "说明", "newt_listbox.html": "说明", "newt_listbox_append_entry.html": "说明", "newt_listbox_clear.html": "说明", "newt_listbox_clear_selection.html": "说明", "newt_listbox_delete_entry.html": "说明", "newt_listbox_get_current.html": "说明", "newt_listbox_get_selection.html": "说明", "newt_listbox_insert_entry.html": "说明", "newt_listbox_item_count.html": "说明", "newt_listbox_select_item.html": "说明", "newt_listbox_set_current.html": "说明", "newt_listbox_set_current_by_key.html": "说明", "newt_listbox_set_data.html": "说明", "newt_listbox_set_entry.html": "说明", "newt_listbox_set_width.html": "说明", "newt_listitem.html": "说明", "newt_listitem_get_data.html": "说明", "newt_listitem_set.html": "说明", "newt_open_window.html": "Open a window of the specified size and position", "newt_pop_help_line.html": "Replaces the current help line with the one from the stack", "newt_pop_window.html": "Removes the top window from the display", "newt_push_help_line.html": "Saves the current help line on a stack, and displays the new line", "newt_radiobutton.html": "说明", "newt_radio_get_current.html": "说明", "newt_redraw_help_line.html": "说明", "newt_reflow_text.html": "说明", "newt_refresh.html": "Updates modified portions of the screen", "newt_resize_screen.html": "说明", "newt_resume.html": "Resume using the newt interface after", "newt_run_form.html": "Runs a form", "newt_scale.html": "说明", "newt_scale_set.html": "说明", "newt_scrollbar_set.html": "说明", "newt_set_help_callback.html": "说明", "newt_set_suspend_callback.html": "Set a callback function which gets invoked w", "newt_suspend.html": "Tells newt to return the terminal to its initial state", "newt_textbox.html": "说明", "newt_textbox_get_num_lines.html": "说明", "newt_textbox_reflowed.html": "说明", "newt_textbox_set_height.html": "说明", "newt_textbox_set_text.html": "说明", "newt_vertical_scrollbar.html": "说明", "newt_wait_for_key.html": "Doesn't return until a key has been pressed", "newt_win_choice.html": "说明", "newt_win_entries.html": "说明", "newt_win_menu.html": "说明", "newt_win_message.html": "说明", "newt_win_messagev.html": "说明", "newt_win_ternary.html": "说明", "next.html": "将数组中的内部指针向前移动一位", "ngettext.html": "Plural version of gettext", "nl2br.html": "在字符串所有新行之前插入 HTML 换行标记", "nl_langinfo.html": "Query language and locale information", "nsapi_request_headers.html": "Fetch all HTTP request headers", "nsapi_response_headers.html": "Fetch all HTTP response headers", "nsapi_virtual.html": "Perform an NSAPI sub-request", "number_format.html": "以千位分隔符方式格式化一个数字", "oauth_get_sbs.html": "生成一个签名字符基串", "oauth_urlencode.html": "将 URI 编码为 RFC 3986 规范", "ob_clean.html": "清空(擦掉)输出缓冲区", "ob_end_clean.html": "清空(擦除)缓冲区并关闭输出缓冲", "ob_end_flush.html": "冲刷出(送出)输出缓冲区内容并关闭缓冲", "ob_flush.html": "冲刷出(送出)输出缓冲区中的内容", "ob_get_clean.html": "得到当前缓冲区的内容并删除当前输出缓。", "ob_get_contents.html": "返回输出缓冲区的内容", "ob_get_flush.html": "刷出(送出)缓冲区内容,以字符串形式返回内容,并关闭输出缓冲区。", "ob_get_length.html": "返回输出缓冲区内容的长度", "ob_get_level.html": "返回输出缓冲机制的嵌套级别", "ob_get_status.html": "得到所有输出缓冲区的状态", "ob_gzhandler.html": "在ob_start中使用的用来压缩输出缓冲区中内容的回调函数。ob_start callback function to gzip output buffer", "ob_iconv_handler.html": "以输出缓冲处理程序转换字符编码", "ob_implicit_flush.html": "打开关闭绝对刷送", "ob_list_handlers.html": "列出所有使用中的输出处理程序。", "ob_start.html": "打开输出控制缓冲", "ob_tidyhandler.html": "ob_start callback function to repair the buffer", "ocibindbyname.html": "别名 oci_bind_by_name", "ocicancel.html": "别名 oci_cancel", "ocicloselob.html": "别名 OCI-Lobclose", "ocicollappend.html": "别名 OCI-Collectionappend", "ocicollassign.html": "别名 OCI-Collectionassign", "ocicollassignelem.html": "别名 OCI-CollectionassignElem", "ocicollgetelem.html": "别名 OCI-CollectiongetElem", "ocicollmax.html": "别名 OCI-Collectionmax", "ocicollsize.html": "别名 OCI-Collectionsize", "ocicolltrim.html": "别名 OCI-Collectiontrim", "ocicolumnisnull.html": "别名 oci_field_is_null", "ocicolumnname.html": "别名 oci_field_name", "ocicolumnprecision.html": "别名 oci_field_precision", "ocicolumnscale.html": "别名 oci_field_scale", "ocicolumnsize.html": "别名 oci_field_size", "ocicolumntype.html": "别名 oci_field_type", "ocicolumntyperaw.html": "别名 oci_field_type_raw", "ocicommit.html": "别名 oci_commit", "ocidefinebyname.html": "别名 oci_define_by_name", "ocierror.html": "别名 oci_error", "ociexecute.html": "别名 oci_execute", "ocifetch.html": "别名 oci_fetch", "ocifetchinto.html": "Obsolete variant of oci_fetch_array, oci_fetch", "ocifetchstatement.html": "别名 oci_fetch_all", "ocifreecollection.html": "别名 OCI-Collectionfree", "ocifreecursor.html": "别名 oci_free_statement", "ocifreedesc.html": "别名 OCI-Lobfree", "ocifreestatement.html": "别名 oci_free_statement", "ociinternaldebug.html": "别名 oci_internal_debug", "ociloadlob.html": "别名 OCI-Lobload", "ocilogoff.html": "别名 oci_close", "ocilogon.html": "别名 oci_connect", "ocinewcollection.html": "别名 oci_new_collection", "ocinewcursor.html": "别名 oci_new_cursor", "ocinewdescriptor.html": "别名 oci_new_descriptor", "ocinlogon.html": "别名 oci_new_connect", "ocinumcols.html": "别名 oci_num_fields", "ociparse.html": "别名 oci_parse", "ociplogon.html": "别名 oci_pconnect", "ociresult.html": "别名 oci_result", "ocirollback.html": "别名 oci_rollback", "ocirowcount.html": "别名 oci_num_rows", "ocisavelob.html": "别名 OCI-Lobsave", "ocisavelobfile.html": "别名 OCI-Lobimport", "ociserverversion.html": "别名 oci_server_version", "ocisetprefetch.html": "别名 oci_set_prefetch", "ocistatementtype.html": "别名 oci_statement_type", "ociwritelobtofile.html": "别名 OCI-Lobexport", "ociwritetemporarylob.html": "别名 OCI-LobwriteTemporary", "oci_bind_array_by_name.html": "Binds a PHP array to an Oracle PLSQL array parameter", "oci_bind_by_name.html": "绑定一个 PHP 变量到一个 Oracle 位置标志符", "oci_cancel.html": "中断游标读取数据", "oci_client_version.html": "Returns the Oracle client library version", "oci_close.html": "关闭 Oracle 连接", "oci_commit.html": "提交未执行的事务处理", "oci_connect.html": "建立一个到 Oracle 服务器的连接", "oci_define_by_name.html": "在 SELECT 中使用 PHP 变量作为定义的步骤", "oci_error.html": "返回上一个错误", "oci_execute.html": "执行一条语句", "oci_fetch.html": "Fetches the next row into result-buffer", "oci_fetch_all.html": "获取结果数据的所有行到一个数组", "oci_fetch_array.html": "Returns the next row from a query as an associative or numeric array", "oci_fetch_assoc.html": "Returns the next row from a query as an associative array", "oci_fetch_object.html": "Returns the next row from a query as an object", "oci_fetch_row.html": "Returns the next row from a query as a numeric array", "oci_field_is_null.html": "检查字段是否为 NULL", "oci_field_name.html": "返回字段名", "oci_field_precision.html": "返回字段精度", "oci_field_scale.html": "返回字段范围", "oci_field_size.html": "返回字段大小", "oci_field_type.html": "返回字段的数据类型", "oci_field_type_raw.html": "返回字段的原始 Oracle 数据类型", "oci_free_descriptor.html": "Frees a descriptor", "oci_free_statement.html": "释放关联于语句或游标的所有资源", "oci_get_implicit_resultset.html": "Returns the next child statement resource from a parent statement resource that has Oracle Database 12c Implicit Result Sets", "oci_internal_debug.html": "打开或关闭内部调试输出", "oci_lob_copy.html": "Copies large object", "oci_lob_is_equal.html": "Compares two LOBFILE locators for equality", "oci_new_collection.html": "分配新的 collection 对象", "oci_new_connect.html": "建定一个到 Oracle 服务器的新连接", "oci_new_cursor.html": "分配并返回一个新的游标(语句句柄)", "oci_new_descriptor.html": "初始化一个新的空 LOB 或 FILE 描述符", "oci_num_fields.html": "返回结果列的数目", "oci_num_rows.html": "返回语句执行后受影响的行数", "oci_parse.html": "配置 Oracle 语句预备执行", "oci_password_change.html": "修改 Oracle 用户的密码", "oci_pconnect.html": "使用一个持久连接连到 Oracle 数据库", "oci_register_taf_callback.html": "Register a user-defined callback function for Oracle Database TAF", "oci_result.html": "返回所取得行中字段的值", "oci_rollback.html": "回滚未提交的事务", "oci_server_version.html": "返回服务器版本信息", "oci_set_action.html": "Sets the action name", "oci_set_call_timout.html": "Sets a millisecond timeout for database calls", "oci_set_client_identifier.html": "Sets the client identifier", "oci_set_client_info.html": "Sets the client information", "oci_set_db_operation.html": "Sets the database operation", "oci_set_edition.html": "Sets the database edition", "oci_set_module_name.html": "Sets the module name", "oci_set_prefetch.html": "设置预提取行数", "oci_statement_type.html": "返回 OCI 语句的类型", "oci_unregister_taf_callback.html": "Unregister a user-defined callback function for Oracle Database TAF", "octdec.html": "八进制转换为十进制", "odbc_autocommit.html": "Toggle autocommit behaviour", "odbc_binmode.html": "Handling of binary column data", "odbc_close.html": "Close an ODBC connection", "odbc_close_all.html": "Close all ODBC connections", "odbc_columnprivileges.html": "Lists columns and associated privileges for the given table", "odbc_columns.html": "Lists the column names in specified tables", "odbc_commit.html": "Commit an ODBC transaction", "odbc_connect.html": "Connect to a datasource", "odbc_cursor.html": "Get cursorname", "odbc_data_source.html": "Returns information about a current connection", "odbc_do.html": "别名 odbc_exec", "odbc_error.html": "Get the last error code", "odbc_errormsg.html": "Get the last error message", "odbc_exec.html": "Prepare and execute an SQL statement", "odbc_execute.html": "Execute a prepared statement", "odbc_fetch_array.html": "Fetch a result row as an associative array", "odbc_fetch_into.html": "Fetch one result row into array", "odbc_fetch_object.html": "Fetch a result row as an object", "odbc_fetch_row.html": "Fetch a row", "odbc_field_len.html": "Get the length (precision) of a field", "odbc_field_name.html": "Get the columnname", "odbc_field_num.html": "Return column number", "odbc_field_precision.html": "别名 odbc_field_len", "odbc_field_scale.html": "Get the scale of a field", "odbc_field_type.html": "Datatype of a field", "odbc_foreignkeys.html": "Retrieves a list of foreign keys", "odbc_free_result.html": "Free resources associated with a result", "odbc_gettypeinfo.html": "Retrieves information about data types supported by the data source", "odbc_longreadlen.html": "Handling of LONG columns", "odbc_next_result.html": "Checks if multiple results are available", "odbc_num_fields.html": "Number of columns in a result", "odbc_num_rows.html": "Number of rows in a result", "odbc_pconnect.html": "Open a persistent database connection", "odbc_prepare.html": "Prepares a statement for execution", "odbc_primarykeys.html": "Gets the primary keys for a table", "odbc_procedurecolumns.html": "Retrieve information about parameters to procedures", "odbc_procedures.html": "Get the list of procedures stored in a specific data source", "odbc_result.html": "Get result data", "odbc_result_all.html": "Print result as HTML table", "odbc_rollback.html": "Rollback a transaction", "odbc_setoption.html": "Adjust ODBC settings", "odbc_specialcolumns.html": "Retrieves special columns", "odbc_statistics.html": "Retrieve statistics about a table", "odbc_tableprivileges.html": "Lists tables and the privileges associated with each table", "odbc_tables.html": "Get the list of table names stored in a specific data source", "opcache_compile_file.html": "无需运行,即可编译并缓存 PHP 脚本", "opcache_get_configuration.html": "获取缓存的配置信息", "opcache_get_status.html": "获取缓存的状态信息", "opcache_invalidate.html": "废除脚本缓存", "opcache_is_script_cached.html": "Tells whether a script is cached in OPCache", "opcache_reset.html": "重置字节码缓存的内容", "openal_buffer_create.html": "Generate OpenAL buffer", "openal_buffer_data.html": "Load a buffer with data", "openal_buffer_destroy.html": "Destroys an OpenAL buffer", "openal_buffer_get.html": "Retrieve an OpenAL buffer property", "openal_buffer_loadwav.html": "Load a .wav file into a buffer", "openal_context_create.html": "Create an audio processing context", "openal_context_current.html": "Make the specified context current", "openal_context_destroy.html": "Destroys a context", "openal_context_process.html": "Process the specified context", "openal_context_suspend.html": "Suspend the specified context", "openal_device_close.html": "Close an OpenAL device", "openal_device_open.html": "Initialize the OpenAL audio layer", "openal_listener_get.html": "Retrieve a listener property", "openal_listener_set.html": "Set a listener property", "openal_source_create.html": "Generate a source resource", "openal_source_destroy.html": "Destroy a source resource", "openal_source_get.html": "Retrieve an OpenAL source property", "openal_source_pause.html": "Pause the source", "openal_source_play.html": "Start playing the source", "openal_source_rewind.html": "Rewind the source", "openal_source_set.html": "Set source property", "openal_source_stop.html": "Stop playing the source", "openal_stream.html": "Begin streaming on a source", "opendir.html": "打开目录句柄", "openlog.html": "Open connection to system logger", "openssl_cipher_iv_length.html": "获取密码iv长度", "openssl_csr_export.html": "将CSR作为字符串导出", "openssl_csr_export_to_file.html": "将CSR导出到文件", "openssl_csr_get_public_key.html": "返回CSR的公钥", "openssl_csr_get_subject.html": "返回CSR的主题", "openssl_csr_new.html": "生成一个 CSR", "openssl_csr_sign.html": "用另一个证书签署 CSR (或者本身) 并且生成一个证书", "openssl_decrypt.html": "解密数据", "openssl_dh_compute_key.html": "计算远程DH密钥(公钥)和本地DH密钥的共享密钥", "openssl_digest.html": "计算摘要", "openssl_encrypt.html": "加密数据", "openssl_error_string.html": "返回 openSSL 错误消息", "openssl_free_key.html": "释放密钥资源", "openssl_get_cert_locations.html": "检索可用的证书位置", "openssl_get_cipher_methods.html": "获取可用的加密算法", "openssl_get_curve_names.html": "获得ECC的可用曲线名称列表", "openssl_get_md_methods.html": "获取可用的摘要算法", "openssl_get_privatekey.html": "别名 openssl_pkey_get_private", "openssl_get_publickey.html": "别名 openssl_pkey_get_public", "openssl_open.html": "打开密封的数据", "openssl_pbkdf2.html": "生成一个 PKCS5 v2 PBKDF2 字符串", "openssl_pkcs12_export.html": "将 PKCS#12 兼容证书存储文件导出到变量", "openssl_pkcs12_export_to_file.html": "输出一个 PKCS#12 兼容的证书存储文件", "openssl_pkcs12_read.html": "将 PKCS#12 证书存储区解析到数组中", "openssl_pkcs7_decrypt.html": "解密一个 SMIME 加密的消息", "openssl_pkcs7_encrypt.html": "加密一个 SMIME 消息", "openssl_pkcs7_read.html": "将PKCS7文件导出为PEM格式证书的数组", "openssl_pkcs7_sign.html": "对一个 SMIME 消息进行签名", "openssl_pkcs7_verify.html": "校验一个已签名的 SMIME 消息的签名", "openssl_pkey_export.html": "将一个密钥的可输出表示转换为字符串", "openssl_pkey_export_to_file.html": "将密钥导出到文件中", "openssl_pkey_free.html": "释放一个私钥", "openssl_pkey_get_details.html": "返回包含密钥详情的数组", "openssl_pkey_get_private.html": "获取私钥", "openssl_pkey_get_public.html": "从证书中解析公钥,以供使用。", "openssl_pkey_new.html": "生成一个新的私钥", "openssl_private_decrypt.html": "使用私钥解密数据", "openssl_private_encrypt.html": "使用私钥加密数据", "openssl_public_decrypt.html": "使用公钥解密数据", "openssl_public_encrypt.html": "使用公钥加密数据", "openssl_random_pseudo_bytes.html": "生成一个伪随机字节串", "openssl_seal.html": "密封 (加密) 数据", "openssl_sign.html": "Generate signature", "openssl_spki_export.html": "通过签名公钥和挑战导出一个可用的PEM格式的公钥", "openssl_spki_export_challenge.html": "导出与签名公钥和挑战相关的挑战字符串", "openssl_spki_new.html": "生成一个新的签名公钥和挑战", "openssl_spki_verify.html": "验证签名公钥和挑战。", "openssl_verify.html": "验证签名", "openssl_x509_checkpurpose.html": "验证是否可以为特定目的使用证书", "openssl_x509_check_private_key.html": "检查私钥是否对应于证书", "openssl_x509_export.html": "以字符串格式导出证书", "openssl_x509_export_to_file.html": "导出证书至文件", "openssl_x509_fingerprint.html": "计算一个给定的x.509证书的指纹或摘要", "openssl_x509_free.html": "释放证书资源", "openssl_x509_parse.html": "解析一个X509证书并作为一个数组返回信息", "openssl_x509_read.html": "解析一个x.509证书并返回一个资源标识符", "ord.html": "转换字符串第一个字节为 0-255 之间的值", "output_add_rewrite_var.html": "添加URL重写器的值(Add URL rewriter values)", "output_reset_rewrite_vars.html": "重设URL重写器的值(Reset URL rewriter values)", "override_function.html": "Overrides built-in functions", "pack.html": "将数据打包成二进制字符串", "parsekit_compile_file.html": "Compile a PHP file and return the resulting op array", "parsekit_compile_string.html": "Compile a string of PHP code and return the resulting op array", "parsekit_func_arginfo.html": "Return information regarding function argument(s)", "parse_ini_file.html": "解析一个配置文件", "parse_ini_string.html": "解析配置字符串", "parse_str.html": "将字符串解析成多个变量", "parse_url.html": "解析 URL,返回其组成部分", "passthru.html": "执行外部程序并且显示原始输出", "password_get_info.html": "返回指定散列(hash)的相关信息", "password_hash.html": "创建密码的散列(hash)", "password_needs_rehash.html": "检测散列值是否匹配指定的选项", "password_verify.html": "验证密码是否和散列值匹配", "pathinfo.html": "返回文件路径的信息", "pclose.html": "关闭进程文件指针", "pcntl_alarm.html": "为进程设置一个alarm闹钟信号", "pcntl_async_signals.html": "Enabledisable asynchronous signal handling or return the old setting", "pcntl_errno.html": "别名 pcntl_get_last_error", "pcntl_exec.html": "在当前进程空间执行指定程序", "pcntl_fork.html": "在当前进程当前位置产生分支(子进程)。译注:fork是创建了一个子进程,父进程和", "pcntl_getpriority.html": "获取任意进程的优先级", "pcntl_get_last_error.html": "Retrieve the error number set by the last pcntl function which failed", "pcntl_setpriority.html": "修改任意进程的优先级", "pcntl_signal.html": "安装一个信号处理器", "pcntl_signal_dispatch.html": "调用等待信号的处理器", "pcntl_signal_get_handler.html": "Get the current handler for specified signal", "pcntl_sigprocmask.html": "设置或检索阻塞信号", "pcntl_sigtimedwait.html": "带超时机制的信号等待", "pcntl_sigwaitinfo.html": "等待信号", "pcntl_strerror.html": "Retrieve the system error message associated with the given errno", "pcntl_wait.html": "等待或返回fork的子进程状态", "pcntl_waitpid.html": "等待或返回fork的子进程状态", "pcntl_wexitstatus.html": "返回一个中断的子进程的返回代码", "pcntl_wifexited.html": "检查状态代码是否代表一个正常的退出。", "pcntl_wifsignaled.html": "检查子进程状态码是否代表由于某个信号而中断", "pcntl_wifstopped.html": "检查子进程当前是否已经停止", "pcntl_wstopsig.html": "返回导致子进程停止的信号", "pcntl_wtermsig.html": "返回导致子进程中断的信号", "pdf_activate_item.html": "Activate structure element or other content item", "pdf_add_annotation.html": "Add annotation [deprecated]", "pdf_add_bookmark.html": "Add bookmark for current page [deprecated]", "pdf_add_launchlink.html": "Add launch annotation for current page [deprecated]", "pdf_add_locallink.html": "Add link annotation for current page [deprecated]", "pdf_add_nameddest.html": "Create named destination", "pdf_add_note.html": "Set annotation for current page [deprecated]", "pdf_add_outline.html": "Add bookmark for current page [deprecated]", "pdf_add_pdflink.html": "Add file link annotation for current page [deprecated]", "pdf_add_table_cell.html": "Add a cell to a new or existing table", "pdf_add_textflow.html": "Create Textflow or add text to existing Textflow", "pdf_add_thumbnail.html": "Add thumbnail for current page", "pdf_add_weblink.html": "Add weblink for current page [deprecated]", "pdf_arc.html": "Draw a counterclockwise circular arc segment", "pdf_arcn.html": "Draw a clockwise circular arc segment", "pdf_attach_file.html": "Add file attachment for current page [deprecated]", "pdf_begin_document.html": "Create new PDF file", "pdf_begin_font.html": "Start a Type 3 font definition", "pdf_begin_glyph.html": "Start glyph definition for Type 3 font", "pdf_begin_item.html": "Open structure element or other content item", "pdf_begin_layer.html": "Start layer", "pdf_begin_page.html": "Start new page [deprecated]", "pdf_begin_page_ext.html": "Start new page", "pdf_begin_pattern.html": "Start pattern definition", "pdf_begin_template.html": "Start template definition [deprecated]", "pdf_begin_template_ext.html": "Start template definition", "pdf_circle.html": "Draw a circle", "pdf_clip.html": "Clip to current path", "pdf_close.html": "Close pdf resource [deprecated]", "pdf_closepath.html": "Close current path", "pdf_closepath_fill_stroke.html": "Close, fill and stroke current path", "pdf_closepath_stroke.html": "Close and stroke path", "pdf_close_image.html": "Close image", "pdf_close_pdi.html": "Close the input PDF document [deprecated]", "pdf_close_pdi_page.html": "Close the page handle", "pdf_concat.html": "Concatenate a matrix to the CTM", "pdf_continue_text.html": "Output text in next line", "pdf_create_3dview.html": "Create 3D view", "pdf_create_action.html": "Create action for objects or events", "pdf_create_annotation.html": "Create rectangular annotation", "pdf_create_bookmark.html": "Create bookmark", "pdf_create_field.html": "Create form field", "pdf_create_fieldgroup.html": "Create form field group", "pdf_create_gstate.html": "Create graphics state object", "pdf_create_pvf.html": "Create PDFlib virtual file", "pdf_create_textflow.html": "Create textflow object", "pdf_curveto.html": "Draw Bezier curve", "pdf_define_layer.html": "Create layer definition", "pdf_delete.html": "Delete PDFlib object", "pdf_delete_pvf.html": "Delete PDFlib virtual file", "pdf_delete_table.html": "Delete table object", "pdf_delete_textflow.html": "Delete textflow object", "pdf_encoding_set_char.html": "Add glyph name andor Unicode value", "pdf_endpath.html": "End current path", "pdf_end_document.html": "关闭 PDF 文件", "pdf_end_font.html": "Terminate Type 3 font definition", "pdf_end_glyph.html": "Terminate glyph definition for Type 3 font", "pdf_end_item.html": "Close structure element or other content item", "pdf_end_layer.html": "Deactivate all active layers", "pdf_end_page.html": "Finish page", "pdf_end_page_ext.html": "Finish page", "pdf_end_pattern.html": "Finish pattern", "pdf_end_template.html": "Finish template", "pdf_fill.html": "Fill current path", "pdf_fill_imageblock.html": "Fill image block with variable data", "pdf_fill_pdfblock.html": "Fill PDF block with variable data", "pdf_fill_stroke.html": "Fill and stroke path", "pdf_fill_textblock.html": "Fill text block with variable data", "pdf_findfont.html": "Prepare font for later use [deprecated]", "pdf_fit_image.html": "Place image or template", "pdf_fit_pdi_page.html": "Place imported PDF page", "pdf_fit_table.html": "Place table on page", "pdf_fit_textflow.html": "Format textflow in rectangular area", "pdf_fit_textline.html": "Place single line of text", "pdf_get_apiname.html": "Get name of unsuccessfull API function", "pdf_get_buffer.html": "Get PDF output buffer", "pdf_get_errmsg.html": "Get error text", "pdf_get_errnum.html": "Get error number", "pdf_get_font.html": "Get font [deprecated]", "pdf_get_fontname.html": "Get font name [deprecated]", "pdf_get_fontsize.html": "Font handling [deprecated]", "pdf_get_image_height.html": "Get image height [deprecated]", "pdf_get_image_width.html": "Get image width [deprecated]", "pdf_get_majorversion.html": "Get major version number [deprecated]", "pdf_get_minorversion.html": "Get minor version number [deprecated]", "pdf_get_parameter.html": "Get string parameter", "pdf_get_pdi_parameter.html": "Get PDI string parameter [deprecated]", "pdf_get_pdi_value.html": "Get PDI numerical parameter [deprecated]", "pdf_get_value.html": "Get numerical parameter", "pdf_info_font.html": "Query detailed information about a loaded font", "pdf_info_matchbox.html": "Query matchbox information", "pdf_info_table.html": "Retrieve table information", "pdf_info_textflow.html": "Query textflow state", "pdf_info_textline.html": "Perform textline formatting and query metrics", "pdf_initgraphics.html": "Reset graphic state", "pdf_lineto.html": "Draw a line", "pdf_load_3ddata.html": "Load 3D model", "pdf_load_font.html": "Search and prepare font", "pdf_load_iccprofile.html": "Search and prepare ICC profile", "pdf_load_image.html": "打开一个图像文件", "pdf_makespotcolor.html": "Make spot color", "pdf_moveto.html": "Set current point", "pdf_new.html": "Create PDFlib object", "pdf_open_ccitt.html": "Open raw CCITT image [deprecated]", "pdf_open_file.html": "Create PDF file [deprecated]", "pdf_open_gif.html": "Open GIF image [deprecated]", "pdf_open_image.html": "Use image data [deprecated]", "pdf_open_image_file.html": "Read image from file [deprecated]", "pdf_open_jpeg.html": "Open JPEG image [deprecated]", "pdf_open_memory_image.html": "Open image created with PHP's image functions [not supported]", "pdf_open_pdi.html": "Open PDF file [deprecated]", "pdf_open_pdi_document.html": "Prepare a pdi document", "pdf_open_pdi_page.html": "Prepare a page", "pdf_open_tiff.html": "Open TIFF image [deprecated]", "pdf_pcos_get_number.html": "Get value of pCOS path with type number or boolean", "pdf_pcos_get_stream.html": "Get contents of pCOS path with type stream, fstream, or string", "pdf_pcos_get_string.html": "Get value of pCOS path with type name, string, or boolean", "pdf_place_image.html": "Place image on the page [deprecated]", "pdf_place_pdi_page.html": "Place PDF page [deprecated]", "pdf_process_pdi.html": "Process imported PDF document", "pdf_rect.html": "Draw rectangle", "pdf_restore.html": "Restore graphics state", "pdf_resume_page.html": "Resume page", "pdf_rotate.html": "Rotate coordinate system", "pdf_save.html": "Save graphics state", "pdf_scale.html": "Scale coordinate system", "pdf_setcolor.html": "Set fill and stroke color", "pdf_setdash.html": "Set simple dash pattern", "pdf_setdashpattern.html": "Set dash pattern", "pdf_setflat.html": "Set flatness", "pdf_setfont.html": "Set font", "pdf_setgray.html": "Set color to gray [deprecated]", "pdf_setgray_fill.html": "Set fill color to gray [deprecated]", "pdf_setgray_stroke.html": "Set stroke color to gray [deprecated]", "pdf_setlinecap.html": "Set linecap parameter", "pdf_setlinejoin.html": "Set linejoin parameter", "pdf_setlinewidth.html": "Set line width", "pdf_setmatrix.html": "Set current transformation matrix", "pdf_setmiterlimit.html": "Set miter limit", "pdf_setpolydash.html": "Set complicated dash pattern [deprecated]", "pdf_setrgbcolor.html": "Set fill and stroke rgb color values [deprecated]", "pdf_setrgbcolor_fill.html": "Set fill rgb color values [deprecated]", "pdf_setrgbcolor_stroke.html": "Set stroke rgb color values [deprecated]", "pdf_set_border_color.html": "Set border color of annotations [deprecated]", "pdf_set_border_dash.html": "Set border dash style of annotations [deprecated]", "pdf_set_border_style.html": "Set border style of annotations [deprecated]", "pdf_set_char_spacing.html": "Set character spacing [deprecated]", "pdf_set_duration.html": "Set duration between pages [deprecated]", "pdf_set_gstate.html": "Activate graphics state object", "pdf_set_horiz_scaling.html": "Set horizontal text scaling [deprecated]", "pdf_set_info.html": "Fill document info field", "pdf_set_info_author.html": "Fill the author document info field [deprecated]", "pdf_set_info_creator.html": "Fill the creator document info field [deprecated]", "pdf_set_info_keywords.html": "Fill the keywords document info field [deprecated]", "pdf_set_info_subject.html": "Fill the subject document info field [deprecated]", "pdf_set_info_title.html": "Fill the title document info field [deprecated]", "pdf_set_layer_dependency.html": "Define relationships among layers", "pdf_set_leading.html": "Set distance between text lines [deprecated]", "pdf_set_parameter.html": "Set string parameter", "pdf_set_text_matrix.html": "Set text matrix [deprecated]", "pdf_set_text_pos.html": "Set text position", "pdf_set_text_rendering.html": "Determine text rendering [deprecated]", "pdf_set_text_rise.html": "Set text rise [deprecated]", "pdf_set_value.html": "Set numerical parameter", "pdf_set_word_spacing.html": "Set spacing between words [deprecated]", "pdf_shading.html": "Define blend", "pdf_shading_pattern.html": "Define shading pattern", "pdf_shfill.html": "Fill area with shading", "pdf_show.html": "Output text at current position", "pdf_show_boxed.html": "Output text in a box [deprecated]", "pdf_show_xy.html": "Output text at given position", "pdf_skew.html": "Skew the coordinate system", "pdf_stringwidth.html": "Return width of text", "pdf_stroke.html": "Stroke path", "pdf_suspend_page.html": "Suspend page", "pdf_translate.html": "Set origin of coordinate system", "pdf_utf16_to_utf8.html": "Convert string from UTF-16 to UTF-8", "pdf_utf32_to_utf16.html": "Convert string from UTF-32 to UTF-16", "pdf_utf8_to_utf16.html": "Convert string from UTF-8 to UTF-16", "pfsockopen.html": "打开一个持久的网络连接或者Unix套接字连接。", "pg_affected_rows.html": "返回受影响的记录数目", "pg_cancel_query.html": "取消异步查询", "pg_client_encoding.html": "取得客户端编码方式", "pg_close.html": "关闭一个 PostgreSQL 连接", "pg_connect.html": "打开一个 PostgreSQL 连接", "pg_connection_busy.html": "获知连接是否为忙", "pg_connection_reset.html": "重置连接(再次连接)", "pg_connection_status.html": "获得连接状态", "pg_connect_poll.html": "正在进行尝试轮询 PostgreSQL 链接状态。", "pg_consume_input.html": "Reads input on the connection", "pg_convert.html": "将关联的数组值转换为适合 SQL 语句的格式。", "pg_copy_from.html": "根据数组将记录插入表中", "pg_copy_to.html": "将一个表拷贝到数组中", "pg_dbname.html": "获得数据库名", "pg_delete.html": "删除记录", "pg_end_copy.html": "与 PostgreSQL 后端同步", "pg_escape_bytea.html": "转义 bytea 类型的二进制数据", "pg_escape_identifier.html": "Escape a identifier for insertion into a text field", "pg_escape_literal.html": "Escape a literal for insertion into a text field", "pg_escape_string.html": "转义 textchar 类型的字符串", "pg_execute.html": "Sends a request to execute a prepared statement with given parameters, and waits for the result", "pg_fetch_all.html": "从结果中提取所有行作为一个数组", "pg_fetch_all_columns.html": "Fetches all rows in a particular result column as an array", "pg_fetch_array.html": "提取一行作为数组", "pg_fetch_assoc.html": "提取一行作为关联数组", "pg_fetch_object.html": "提取一行作为对象", "pg_fetch_result.html": "从结果资源中返回值", "pg_fetch_row.html": "提取一行作为枚举数组", "pg_field_is_null.html": "测试字段是否为 NULL", "pg_field_name.html": "返回字段的名字", "pg_field_num.html": "返回字段的编号", "pg_field_prtlen.html": "返回打印出来的长度", "pg_field_size.html": "返回指定字段占用内部存储空间的大小", "pg_field_table.html": "Returns the name or oid of the tables field", "pg_field_type.html": "返回相应字段的类型名称", "pg_field_type_oid.html": "Returns the type ID (OID) for the corresponding field number", "pg_flush.html": "刷新链接中已处理的数据查询", "pg_free_result.html": "释放查询结果占用的内存", "pg_get_notify.html": "Ping 数据库连接", "pg_get_pid.html": "Ping 数据库连接", "pg_get_result.html": "取得异步查询结果", "pg_host.html": "返回和某连接关联的主机名", "pg_insert.html": "将数组插入到表中", "pg_last_error.html": "得到某连接的最后一条错误信息", "pg_last_notice.html": "返回 PostgreSQL 服务器最新一条公告信息", "pg_last_oid.html": "返回上一个对象的 oid", "pg_lo_close.html": "关闭一个大型对象", "pg_lo_create.html": "新建一个大型对象", "pg_lo_export.html": "将大型对象导出到文件", "pg_lo_import.html": "将文件导入为大型对象", "pg_lo_open.html": "打开一个大型对象", "pg_lo_read.html": "从大型对象中读入数据", "pg_lo_read_all.html": "读入整个大型对象并直接发送给浏览器", "pg_lo_seek.html": "移动大型对象中的指针", "pg_lo_tell.html": "返回大型对象的当前指针位置", "pg_lo_truncate.html": "Truncates a large object", "pg_lo_unlink.html": "删除一个大型对象", "pg_lo_write.html": "向大型对象写入数据", "pg_meta_data.html": "获得表的元数据", "pg_num_fields.html": "返回字段的数目", "pg_num_rows.html": "返回行的数目", "pg_options.html": "获得和连接有关的选项", "pg_parameter_status.html": "Looks up a current parameter setting of the server", "pg_pconnect.html": "打开一个持久的 PostgreSQL 连接", "pg_ping.html": "Ping 数据库连接", "pg_port.html": "返回该连接的端口号", "pg_prepare.html": "Submits a request to create a prepared statement ", "pg_put_line.html": "向 PostgreSQL 后端发送以 NULL 结尾的字符串", "pg_query.html": "执行查询", "pg_query_params.html": "Submits a command to the server and waits for the result, with the ability to pass parameters separately from the SQL command text", "pg_result_error.html": "获得查询结果的错误信息", "pg_result_error_field.html": "Returns an individual field of an error report", "pg_result_seek.html": "在结果资源中设定内部行偏移量", "pg_result_status.html": "获得查询结果的状态", "pg_select.html": "选择记录", "pg_send_execute.html": "Sends a request to execute a prepared statement with given parameters, without waiting for the result(s)", "pg_send_prepare.html": "Sends a request to create a prepared statement with the given parameters, without waiting for completion", "pg_send_query.html": "发送异步查询", "pg_send_query_params.html": "Submits a command and separate parameters to the server without waiting for the result(s)", "pg_set_client_encoding.html": "设定客户端编码", "pg_set_error_verbosity.html": "Determines the verbosity of messages returned by pg_la", "pg_socket.html": "Get a read only handle to the socket underlying a PostgreSQL connection", "pg_trace.html": "启动一个 PostgreSQL 连接的追踪功能", "pg_transaction_status.html": "Returns the current in-transaction status of the server", "pg_tty.html": "返回该连接的 tty 号", "pg_unescape_bytea.html": "取消 bytea 类型中的字符串转义", "pg_untrace.html": "关闭 PostgreSQL 连接的追踪功能", "pg_update.html": "更新表", "pg_version.html": "Returns an array with client, protocol and server version (when available)", "phpcredits.html": "打印 PHP 贡献者名单", "phpdbg_break_file.html": "Inserts a breakpoint at a line in a file", "phpdbg_break_function.html": "Inserts a breakpoint at entry to a function", "phpdbg_break_method.html": "Inserts a breakpoint at entry to a method", "phpdbg_break_next.html": "Inserts a breakpoint at the next opcode", "phpdbg_clear.html": "Clears all breakpoints", "phpdbg_color.html": "Sets the color of certain elements", "phpdbg_end_oplog.html": "说明", "phpdbg_exec.html": "Attempts to set the execution context", "phpdbg_get_executable.html": "说明", "phpdbg_prompt.html": "Sets the command prompt", "phpdbg_start_oplog.html": "说明", "phpinfo.html": "输出关于 PHP 配置的信息", "phpversion.html": "获取当前的PHP版本", "php_check_syntax.html": "检查PHP的语法(并执行)指定的文件", "php_ini_loaded_file.html": "取得已加载的 php.ini 文件的路径", "php_ini_scanned_files.html": "返回从额外 ini 目录里解析的 .ini 文件列表", "php_logo_guid.html": "获取 logo 的 guid", "php_sapi_name.html": "返回 web 服务器和 PHP 之间的接口类型", "php_strip_whitespace.html": "返回删除注释和空格后的PHP源码", "php_uname.html": "返回运行 PHP 的系统的有关信息", "pi.html": "得到圆周率值", "png2wbmp.html": "将 PNG 图像文件转换为 WBMP 图像文件", "popen.html": "打开进程文件指针", "pos.html": "current 的别名", "posix_access.html": "Determine accessibility of a file", "posix_ctermid.html": "Get path name of controlling terminal", "posix_errno.html": "别名 posix_get_last_error", "posix_getcwd.html": "Pathname of current directory", "posix_getegid.html": "Return the effective group ID of the current process", "posix_geteuid.html": "Return the effective user ID of the current process", "posix_getgid.html": "Return the real group ID of the current process", "posix_getgrgid.html": "Return info about a group by group id", "posix_getgrnam.html": "Return info about a group by name", "posix_getgroups.html": "Return the group set of the current process", "posix_getlogin.html": "Return login name", "posix_getpgid.html": "Get process group id for job control", "posix_getpgrp.html": "Return the current process group identifier", "posix_getpid.html": "返回当前进程 id", "posix_getppid.html": "Return the parent process identifier", "posix_getpwnam.html": "Return info about a user by username", "posix_getpwuid.html": "Return info about a user by user id", "posix_getrlimit.html": "Return info about system resource limits", "posix_getsid.html": "Get the current sid of the process", "posix_getuid.html": "Return the real user ID of the current process", "posix_get_last_error.html": "Retrieve the error number set by the last posix function that failed", "posix_initgroups.html": "Calculate the group access list", "posix_isatty.html": "Determine if a file descriptor is an interactive terminal", "posix_kill.html": "Send a signal to a process", "posix_mkfifo.html": "Create a fifo special file (a named pipe)", "posix_mknod.html": "Create a special or ordinary file (POSIX.1)", "posix_setegid.html": "Set the effective GID of the current process", "posix_seteuid.html": "Set the effective UID of the current process", "posix_setgid.html": "Set the GID of the current process", "posix_setpgid.html": "Set process group id for job control", "posix_setrlimit.html": "Set system resource limits", "posix_setsid.html": "Make the current process a session leader", "posix_setuid.html": "Set the UID of the current process", "posix_strerror.html": "Retrieve the system error message associated with the given errno", "posix_times.html": "Get process times", "posix_ttyname.html": "Determine terminal device name", "posix_uname.html": "Get system name", "pow.html": "指数表达式", "preg_filter.html": "执行一个正则表达式搜索和替换", "preg_grep.html": "返回匹配模式的数组条目", "preg_last_error.html": "返回最后一个PCRE正则执行产生的错误代码", "preg_match.html": "执行匹配正则表达式", "preg_match_all.html": "执行一个全局正则表达式匹配", "preg_quote.html": "转义正则表达式字符", "preg_replace.html": "执行一个正则表达式的搜索和替换", "preg_replace_callback.html": "执行一个正则表达式搜索并且使用一个回调进行替换", "preg_replace_callback_array.html": "Perform a regular expression search and replace using callbacks", "preg_split.html": "通过一个正则表达式分隔字符串", "prev.html": "将数组的内部指针倒回一位", "print.html": "输出字符串", "printf.html": "输出格式化字符串", "print_r.html": "以易于理解的格式打印变量。", "proc_close.html": "关闭由 proc_open 打开的进程并且返回进程退出码", "proc_get_status.html": "获取由 proc_open 函数打开的进程的信息", "proc_nice.html": "修改当前进程的优先级", "proc_open.html": "执行一个命令,并且打开用来输入输出的文件指针。", "proc_terminate.html": "杀除由 proc_open 打开的进程", "property_exists.html": "检查对象或类是否具有该属性", "pspell_add_to_personal.html": "Add the word to a personal wordlist", "pspell_add_to_session.html": "Add the word to the wordlist in the current session", "pspell_check.html": "Check a word", "pspell_clear_session.html": "Clear the current session", "pspell_config_create.html": "Create a config used to open a dictionary", "pspell_config_data_dir.html": "Location of language data files", "pspell_config_dict_dir.html": "Location of the main word list", "pspell_config_ignore.html": "Ignore words less than N characters long", "pspell_config_mode.html": "Change the mode number of suggestions returned", "pspell_config_personal.html": "Set a file that contains personal wordlist", "pspell_config_repl.html": "Set a file that contains replacement pairs", "pspell_config_runtogether.html": "Consider run-together words as valid compounds", "pspell_config_save_repl.html": "Determine whether to save a replacement pa", "pspell_new.html": "Load a new dictionary", "pspell_new_config.html": "Load a new dictionary with settings based on a given config", "pspell_new_personal.html": "Load a new dictionary with personal wordlist", "pspell_save_wordlist.html": "Save the personal wordlist to a file", "pspell_store_replacement.html": "Store a replacement pair for a word", "pspell_suggest.html": "Suggest spellings of a word", "ps_add_bookmark.html": "Add bookmark to current page", "ps_add_launchlink.html": "Adds link which launches file", "ps_add_locallink.html": "Adds link to a page in the same document", "ps_add_note.html": "Adds note to current page", "ps_add_pdflink.html": "Adds link to a page in a second pdf document", "ps_add_weblink.html": "Adds link to a web location", "ps_arc.html": "Draws an arc counterclockwise", "ps_arcn.html": "Draws an arc clockwise", "ps_begin_page.html": "Start a new page", "ps_begin_pattern.html": "Start a new pattern", "ps_begin_template.html": "Start a new template", "ps_circle.html": "Draws a circle", "ps_clip.html": "Clips drawing to current path", "ps_close.html": "Closes a PostScript document", "ps_closepath.html": "Closes path", "ps_closepath_stroke.html": "Closes and strokes path", "ps_close_image.html": "Closes image and frees memory", "ps_continue_text.html": "Continue text in next line", "ps_curveto.html": "Draws a curve", "ps_delete.html": "Deletes all resources of a PostScript document", "ps_end_page.html": "End a page", "ps_end_pattern.html": "End a pattern", "ps_end_template.html": "End a template", "ps_fill.html": "Fills the current path", "ps_fill_stroke.html": "Fills and strokes the current path", "ps_findfont.html": "Loads a font", "ps_get_buffer.html": "Fetches the full buffer containig the generated PS data", "ps_get_parameter.html": "Gets certain parameters", "ps_get_value.html": "Gets certain values", "ps_hyphenate.html": "Hyphenates a word", "ps_include_file.html": "Reads an external file with raw PostScript code", "ps_lineto.html": "Draws a line", "ps_makespotcolor.html": "Create spot color", "ps_moveto.html": "Sets current point", "ps_new.html": "Creates a new PostScript document object", "ps_open_file.html": "Opens a file for output", "ps_open_image.html": "Reads an image for later placement", "ps_open_image_file.html": "Opens image from file", "ps_open_memory_image.html": "Takes an GD image and returns an image for placement in a PS document", "ps_place_image.html": "Places image on the page", "ps_rect.html": "Draws a rectangle", "ps_restore.html": "Restore previously save context", "ps_rotate.html": "Sets rotation factor", "ps_save.html": "Save current context", "ps_scale.html": "Sets scaling factor", "ps_setcolor.html": "Sets current color", "ps_setdash.html": "Sets appearance of a dashed line", "ps_setflat.html": "Sets flatness", "ps_setfont.html": "Sets font to use for following output", "ps_setgray.html": "Sets gray value", "ps_setlinecap.html": "Sets appearance of line ends", "ps_setlinejoin.html": "Sets how contected lines are joined", "ps_setlinewidth.html": "Sets width of a line", "ps_setmiterlimit.html": "Sets the miter limit", "ps_setoverprintmode.html": "Sets overprint mode", "ps_setpolydash.html": "Sets appearance of a dashed line", "ps_set_border_color.html": "Sets color of border for annotations", "ps_set_border_dash.html": "Sets length of dashes for border of annotations", "ps_set_border_style.html": "Sets border style of annotations", "ps_set_info.html": "Sets information fields of document", "ps_set_parameter.html": "Sets certain parameters", "ps_set_text_pos.html": "Sets position for text output", "ps_set_value.html": "Sets certain values", "ps_shading.html": "Creates a shading for later use", "ps_shading_pattern.html": "Creates a pattern based on a shading", "ps_shfill.html": "Fills an area with a shading", "ps_show.html": "Output text", "ps_show2.html": "Output a text at current position", "ps_show_boxed.html": "Output text in a box", "ps_show_xy.html": "Output text at given position", "ps_show_xy2.html": "Output text at position", "ps_stringwidth.html": "Gets width of a string", "ps_string_geometry.html": "Gets geometry of a string", "ps_stroke.html": "Draws the current path", "ps_symbol.html": "Output a glyph", "ps_symbol_name.html": "Gets name of a glyph", "ps_symbol_width.html": "Gets width of a glyph", "ps_translate.html": "Sets translation", "putenv.html": "设置环境变量的值", "px_close.html": "Closes a paradox database", "px_create_fp.html": "Create a new paradox database", "px_date2string.html": "Converts a date into a string", "px_delete.html": "Deletes resource of paradox database", "px_delete_record.html": "Deletes record from paradox database", "px_get_field.html": "Returns the specification of a single field", "px_get_info.html": "Return lots of information about a paradox file", "px_get_parameter.html": "Gets a parameter", "px_get_record.html": "Returns record of paradox database", "px_get_schema.html": "Returns the database schema", "px_get_value.html": "Gets a value", "px_insert_record.html": "Inserts record into paradox database", "px_new.html": "Create a new paradox object", "px_numfields.html": "Returns number of fields in a database", "px_numrecords.html": "Returns number of records in a database", "px_open_fp.html": "Open paradox database", "px_put_record.html": "Stores record into paradox database", "px_retrieve_record.html": "Returns record of paradox database", "px_set_blob_file.html": "Sets the file where blobs are read from", "px_set_parameter.html": "Sets a parameter", "px_set_tablename.html": "Sets the name of a table (deprecated)", "px_set_targetencoding.html": "Sets the encoding for character fields (deprecated)", "px_set_value.html": "Sets a value", "px_timestamp2string.html": "Converts the timestamp into a string", "px_update_record.html": "Updates record in paradox database", "quoted_printable_decode.html": "将 quoted-printable 字符串转换为 8-bit 字符串", "quoted_printable_encode.html": "将 8-bit 字符串转换成 quoted-printable 字符串", "quotemeta.html": "转义元字符集", "rad2deg.html": "将弧度数转换为相应的角度数", "radius_acct_open.html": "Creates a Radius handle for accounting", "radius_add_server.html": "Adds a server", "radius_auth_open.html": "Creates a Radius handle for authentication", "radius_close.html": "Frees all ressources", "radius_config.html": "Causes the library to read the given configuration file", "radius_create_request.html": "Create accounting or authentication request", "radius_cvt_addr.html": "Converts raw data to IP-Address", "radius_cvt_int.html": "Converts raw data to integer", "radius_cvt_string.html": "Converts raw data to string", "radius_demangle.html": "Demangles data", "radius_demangle_mppe_key.html": "Derives mppe-keys from mangled data", "radius_get_attr.html": "Extracts an attribute", "radius_get_tagged_attr_data.html": "Extracts the data from a tagged attribute", "radius_get_tagged_attr_tag.html": "Extracts the tag from a tagged attribute", "radius_get_vendor_attr.html": "Extracts a vendor specific attribute", "radius_put_addr.html": "Attaches an IP address attribute", "radius_put_attr.html": "Attaches a binary attribute", "radius_put_int.html": "Attaches an integer attribute", "radius_put_string.html": "Attaches a string attribute", "radius_put_vendor_addr.html": "Attaches a vendor specific IP address attribute", "radius_put_vendor_attr.html": "Attaches a vendor specific binary attribute", "radius_put_vendor_int.html": "Attaches a vendor specific integer attribute", "radius_put_vendor_string.html": "Attaches a vendor specific string attribute", "radius_request_authenticator.html": "Returns the request authenticator", "radius_salt_encrypt_attr.html": "Salt-encrypts a value", "radius_send_request.html": "Sends the request and waits for a reply", "radius_server_secret.html": "Returns the shared secret", "radius_strerror.html": "Returns an error message", "rand.html": "产生一个随机整数", "random_bytes.html": "Generates cryptographically secure pseudo-random bytes", "random_int.html": "Generates cryptographically secure pseudo-random integers", "range.html": "根据范围创建数组,包含指定的元素", "rar_wrapper_cache_stats.html": "Cache hits and misses for the URL wrapper", "rawurldecode.html": "对已编码的 URL 字符串进行解码", "rawurlencode.html": "按照 RFC 3986 对 URL 进行编码", "readdir.html": "从目录句柄中读取条目", "readfile.html": "输出文件", "readgzfile.html": "Output a gz-file", "readline.html": "读取一行", "readline_add_history.html": "添加一行命令行历史记录", "readline_callback_handler_install.html": "初始化一个 readline 回调接口,然后终端输出提示信息并立即返回", "readline_callback_handler_remove.html": "移除上一个安装的回调函数句柄并且恢复终端设置", "readline_callback_read_char.html": "当一个行被接收时读取一个字符并且通知 readline 调用回调函数", "readline_clear_history.html": "清除历史", "readline_completion_function.html": "注册一个完成函数", "readline_info.html": "获取设置readline内部的各个变量", "readline_list_history.html": "获取命令历史列表", "readline_on_new_line.html": "通知readline将光标移动到新行", "readline_read_history.html": "读取命令历史", "readline_redisplay.html": "重绘显示区", "readline_write_history.html": "写入历史记录", "readlink.html": "返回符号连接指向的目标", "read_exif_data.html": "别名 exif_read_data", "realpath.html": "返回规范化的绝对路径名", "realpath_cache_get.html": "获取真实目录缓存的详情", "realpath_cache_size.html": "获取真实路径缓冲区的大小", "recode.html": "别名 recode_string", "recode_file.html": "Recode from file to file according to recode request", "recode_string.html": "Recode a string according to a recode request", "register_shutdown_function.html": "注册一个会在php中止时执行的函数", "register_tick_function.html": "Register a function for execution on each tick", "rename.html": "重命名一个文件或目录", "rename_function.html": "Renames orig_name to new_name in the global function table", "require.html": "require", "require_once.html": "require_once", "reset.html": "将数组的内部指针指向第一个单元", "restore_error_handler.html": "还原之前的错误处理函数", "restore_exception_handler.html": "恢复之前定义过的异常处理函数。", "restore_include_path.html": "还原 include_path 配置选项的值", "return.html": "return", "rewind.html": "倒回文件指针的位置", "rewinddir.html": "倒回目录句柄", "rmdir.html": "删除目录", "round.html": "对浮点数进行四舍五入", "rpm_close.html": "Closes an RPM file", "rpm_get_tag.html": "Retrieves a header tag from an RPM file", "rpm_is_valid.html": "Tests a filename for validity as an RPM file", "rpm_open.html": "Opens an RPM file", "rpm_version.html": "Returns a string representing the current versio", "rrdc_disconnect.html": "Close any outstanding connection to rrd caching daemon", "rrd_create.html": "Creates rrd database file", "rrd_error.html": "Gets latest error message", "rrd_fetch.html": "Fetch the data for graph as array", "rrd_first.html": "Gets the timestamp of the first sample from rrd file", "rrd_graph.html": "Creates image from a data", "rrd_info.html": "Gets information about rrd file", "rrd_last.html": "Gets unix timestamp of the last sample", "rrd_lastupdate.html": "Gets information about last updated data", "rrd_restore.html": "Restores the RRD file from XML dump", "rrd_tune.html": "Tunes some RRD database file header options", "rrd_update.html": "Updates the RRD database", "rrd_version.html": "Gets information about underlying rrdtool library", "rrd_xport.html": "Exports the information about RRD database", "rsort.html": "对数组逆向排序", "rtrim.html": "删除字符串末端的空白字符(或者其他字符)", "runkit_class_adopt.html": "Convert a base class to an inherited class, add ancestral methods when appropriate", "runkit_class_emancipate.html": "Convert an inherited class to a base class, removes any method whose scope is ancestral", "runkit_constant_add.html": "Similar to define(), but allows defining in class definitions as well", "runkit_constant_redefine.html": "Redefine an already defined constant", "runkit_constant_remove.html": "RemoveDelete an already defined constant", "runkit_function_add.html": "Add a new function, similar to create_function", "runkit_function_copy.html": "Copy a function to a new function name", "runkit_function_redefine.html": "Replace a function definition with a new implementation", "runkit_function_remove.html": "Remove a function definition", "runkit_function_rename.html": "Change a function's name", "runkit_import.html": "Process a PHP file importing function and class definitions, overwriting where appropriate", "runkit_lint.html": "Check the PHP syntax of the specified php code", "runkit_lint_file.html": "Check the PHP syntax of the specified file", "runkit_method_add.html": "Dynamically adds a new method to a given class", "runkit_method_copy.html": "Copies a method from class to another", "runkit_method_redefine.html": "Dynamically changes the code of the given method", "runkit_method_remove.html": "Dynamically removes the given method", "runkit_method_rename.html": "Dynamically changes the name of the given method", "runkit_return_value_used.html": "Determines if the current functions return value will be used", "runkit_sandbox_output_handler.html": "Specify a function to capture andor process output from a runkit sandbox", "runkit_superglobals.html": "Return numerically indexed array of registered superglobals", "sapi_windows_cp_conv.html": "Convert string from one codepage to another", "sapi_windows_cp_get.html": "Get process codepage", "sapi_windows_cp_is_utf8.html": "Indicates whether the codepage is UTF-8 compatible", "sapi_windows_cp_set.html": "Set process codepage", "sapi_windows_vt100_support.html": "Get or set VT100 support for the specified stream associated to an output buffer of a Windows console.", "scandir.html": "列出指定路径中的文件和目录", "seaslog_get_author.html": "获取 SeasLog 作者", "seaslog_get_version.html": "获取 SeasLog 的版本", "sem_acquire.html": "Acquire a semaphore", "sem_get.html": "Get a semaphore id", "sem_release.html": "Release a semaphore", "sem_remove.html": "Remove a semaphore", "serialize.html": "产生一个可存储的值的表示", "session_abort.html": "Discard session array changes and finish session", "session_cache_expire.html": "返回当前缓存的到期时间", "session_cache_limiter.html": "读取设置缓存限制器", "session_commit.html": "session_write_close 的别名", "session_create_id.html": "Create new session id", "session_decode.html": "解码会话数据", "session_destroy.html": "销毁一个会话中的全部数据", "session_encode.html": "将当前会话数据编码为一个字符串", "session_gc.html": "Perform session data garbage collection", "session_get_cookie_params.html": "获取会话 cookie 参数", "session_id.html": "获取设置当前会话 ID", "session_is_registered.html": "检查变量是否在会话中已经注册", "session_module_name.html": "获取设置会话模块名称", "session_name.html": "读取设置会话名称", "session_pgsql_add_error.html": "Increments error counts and sets last error message", "session_pgsql_get_error.html": "Returns number of errors and last error message", "session_pgsql_get_field.html": "Get custom field value", "session_pgsql_reset.html": "Reset connection to session database servers", "session_pgsql_set_field.html": "Set custom field value", "session_pgsql_status.html": "Get current save handler status", "session_regenerate_id.html": "使用新生成的会话 ID 更新现有会话 ID", "session_register.html": "Register one or more global variables with the current session", "session_register_shutdown.html": "关闭会话", "session_reset.html": "Re-initialize session array with original values", "session_save_path.html": "读取设置当前会话的保存路径", "session_set_cookie_params.html": "设置会话 cookie 参数", "session_set_save_handler.html": "设置用户自定义会话存储函数", "session_start.html": "启动新会话或者重用现有会话", "session_status.html": "返回当前会话状态", "session_unregister.html": "Unregister a global variable from the current session", "session_unset.html": "释放所有的会话变量", "session_write_close.html": "Write session data and end session", "setcookie.html": "发送 Cookie", "setlocale.html": "设置地区信息", "setproctitle.html": "Set the process title", "setrawcookie.html": "发送未经 URL 编码的 cookie", "setthreadtitle.html": "Set the thread title", "settype.html": "设置变量的类型", "set_error_handler.html": "设置用户自定义的错误处理函数", "set_exception_handler.html": "设置用户自定义的异常处理函数", "set_file_buffer.html": "stream_set_write_buffer 的别名", "set_include_path.html": "设置 include_path 配置选项", "set_magic_quotes_runtime.html": "设置当前 magic_quotes_runtime 配置选项的激活状态", "set_socket_blocking.html": "别名 stream_set_blocking", "set_time_limit.html": "设置脚本最大执行时间", "sha1.html": "计算字符串的 sha1 散列值", "sha1_file.html": "计算文件的 sha1 散列值", "shell_exec.html": "通过 shell 环境执行命令,并且将完整的输出以字符串的方式返回。", "shmop_close.html": "Close shared memory block", "shmop_delete.html": "Delete shared memory block", "shmop_open.html": "Create or open shared memory block", "shmop_read.html": "Read data from shared memory block", "shmop_size.html": "Get size of shared memory block", "shmop_write.html": "Write data into shared memory block", "shm_attach.html": "Creates or open a shared memory segment", "shm_detach.html": "Disconnects from shared memory segment", "shm_get_var.html": "Returns a variable from shared memory", "shm_has_var.html": "Check whether a specific entry exists", "shm_put_var.html": "Inserts or updates a variable in shared memory", "shm_remove.html": "Removes shared memory from Unix systems", "shm_remove_var.html": "Removes a variable from shared memory", "show_source.html": "别名 highlight_file", "shuffle.html": "打乱数组", "similar_text.html": "计算两个字符串的相似度", "simplexml_import_dom.html": "Get a SimpleXMLElement object from a DOM node", "simplexml_load_file.html": "Interprets an XML file into an object", "simplexml_load_string.html": "Interprets a string of XML into an object", "sin.html": "正弦", "sinh.html": "双曲正弦", "sizeof.html": "count 的别名", "sleep.html": "延缓执行", "snmp2_get.html": "Fetch an SNMP object", "snmp2_getnext.html": "Fetch the SNMP object which follows the given object id", "snmp2_real_walk.html": "Return all objects including their respective object ID within the specified one", "snmp2_set.html": "Set the value of an SNMP object", "snmp2_walk.html": "Fetch all the SNMP objects from an agent", "snmp3_get.html": "Fetch an SNMP object", "snmp3_getnext.html": "Fetch the SNMP object which follows the given object id", "snmp3_real_walk.html": "Return all objects including their respective object ID within the specified one", "snmp3_set.html": "Set the value of an SNMP object", "snmp3_walk.html": "Fetch all the SNMP objects from an agent", "snmpget.html": "获取一个 SNMP 对象", "snmpgetnext.html": "Fetch the SNMP object which follows the given object id", "snmprealwalk.html": "返回指定的所有对象,包括它们各自的对象 ID", "snmpset.html": "设置一个 SNMP 对象", "snmpwalk.html": "从代理返回所有的 SNMP 对象", "snmpwalkoid.html": "查询关于网络实体的信息树", "snmp_get_quick_print.html": "返回 UCD 库中 quick_print 设置的当前值", "snmp_get_valueretrieval.html": "Return the method how the SNMP values will be returned", "snmp_read_mib.html": "Reads and parses a MIB file into the active MIB tree", "snmp_set_enum_print.html": "Return all values that are enums with their enum value instead of the raw integer", "snmp_set_oid_numeric_print.html": "Set the OID output format", "snmp_set_oid_output_format.html": "Set the OID output format", "snmp_set_quick_print.html": "设置 UCD SNMP 库中 quick_print 的值", "snmp_set_valueretrieval.html": "Specify the method how the SNMP values will be returned", "socket_accept.html": "Accepts a connection on a socket", "socket_addrinfo_bind.html": "Create and bind to a socket from a given addrinfo", "socket_addrinfo_connect.html": "Create and connect to a socket from a given addrinfo", "socket_addrinfo_explain.html": "Get information about addrinfo", "socket_addrinfo_lookup.html": "Get array with contents of getaddrinfo about the given hostname", "socket_bind.html": "给套接字绑定名字", "socket_clear_error.html": "清除套接字或者最后的错误代码上的错误", "socket_close.html": "关闭套接字资源", "socket_cmsg_space.html": "Calculate message buffer size", "socket_connect.html": "开启一个套接字连接", "socket_create.html": "创建一个套接字(通讯节点)", "socket_create_listen.html": "Opens a socket on port to accept connections", "socket_create_pair.html": "Creates a pair of indistinguishable sockets and stores them in an array", "socket_export_stream.html": "Export a socket extension resource into a stream that encapsulates a socket", "socket_getopt.html": "别名 socket_get_option", "socket_getpeername.html": "Queries the remote side of the given socket which may either result in hostport or in a Unix filesystem path, dependent on its type", "socket_getsockname.html": "Queries the local side of the given socket which may either result in hostport or in a Unix filesystem path, dependent on its type", "socket_get_option.html": "Gets socket options for the socket", "socket_get_status.html": "别名 stream_get_meta_data", "socket_import_stream.html": "Import a stream", "socket_last_error.html": "Returns the last error on the socket", "socket_listen.html": "Listens for a connection on a socket", "socket_read.html": "Reads a maximum of length bytes from a socket", "socket_recv.html": "从已连接的socket接收数据", "socket_recvfrom.html": "Receives data from a socket whether or not it is connection-oriented", "socket_recvmsg.html": "Read a message", "socket_select.html": "Runs the select() system call on the given arrays of sockets with a specified timeout", "socket_send.html": "Sends data to a connected socket", "socket_sendmsg.html": "Send a message", "socket_sendto.html": "Sends a message to a socket, whether it is connected or not", "socket_setopt.html": "别名 socket_set_option", "socket_set_block.html": "Sets blocking mode on a socket resource", "socket_set_blocking.html": "别名 stream_set_blocking", "socket_set_nonblock.html": "Sets nonblocking mode for file descriptor fd", "socket_set_option.html": "Sets socket options for the socket", "socket_set_timeout.html": "别名 stream_set_timeout", "socket_shutdown.html": "Shuts down a socket for receiving, sending, or both", "socket_strerror.html": "Return a string describing a socket error", "socket_write.html": "Write to a socket", "sodium_add.html": "Add large numbers", "sodium_bin2hex.html": "Encode to hexadecimal", "sodium_compare.html": "Compare large numbers", "sodium_crypto_aead_aes256gcm_decrypt.html": "Decrypt in combined mode with precalculation", "sodium_crypto_aead_aes256gcm_encrypt.html": "Encrypt in combined mode with precalculation", "sodium_crypto_aead_aes256gcm_is_available.html": "Check if hardware supports AES256-GCM", "sodium_crypto_aead_aes256gcm_keygen.html": "Get random bytes for key", "sodium_crypto_aead_chacha20poly1305_decrypt.html": "Verify that the ciphertext includes a valid tag", "sodium_crypto_aead_chacha20poly1305_encrypt.html": "Encrypt a message", "sodium_crypto_aead_chacha20poly1305_ietf_decrypt.html": "Verify that the ciphertext includes a valid tag", "sodium_crypto_aead_chacha20poly1305_ietf_encrypt.html": "Encrypt a message", "sodium_crypto_aead_chacha20poly1305_ietf_keygen.html": "Get random bytes for key", "sodium_crypto_aead_chacha20poly1305_keygen.html": "Get random bytes for key", "sodium_crypto_auth.html": "Compute a tag for the message", "sodium_crypto_auth_keygen.html": "Get random bytes for key", "sodium_crypto_auth_verify.html": "Verifies that the tag is valid for the message", "sodium_crypto_box.html": "Encrypt a message", "sodium_crypto_box_keypair.html": "Randomly generate a secret key and a corresponding public key", "sodium_crypto_box_open.html": "Verify and decrypt a ciphertext", "sodium_crypto_box_seal.html": "Encrypt a message", "sodium_crypto_box_seal_open.html": "Decrypt the ciphertext", "sodium_crypto_box_seed_keypair.html": "Deterministically derive the key pair from a single key", "sodium_crypto_generichash.html": "Get a hash of the message", "sodium_crypto_generichash_final.html": "Complete the hash", "sodium_crypto_generichash_init.html": "Initialize a hash", "sodium_crypto_generichash_keygen.html": "Get random bytes for key", "sodium_crypto_generichash_update.html": "Add message to a hash", "sodium_crypto_kdf_derive_from_key.html": "Derive a subkey", "sodium_crypto_kdf_keygen.html": "Get random bytes for key", "sodium_crypto_kx_keypair.html": "Creates a new sodium keypair", "sodium_crypto_pwhash.html": "Derive a key from a password", "sodium_crypto_pwhash_scryptsalsa208sha256.html": "Derives a key from a password", "sodium_crypto_pwhash_scryptsalsa208sha256_str.html": "Get an ASCII encoded hash", "sodium_crypto_pwhash_scryptsalsa208sha256_str_verify.html": "Verify that the password is a valid password verification string", "sodium_crypto_pwhash_str.html": "Get an ASCII-encoded hash", "sodium_crypto_pwhash_str_verify.html": "Verifies that a password matches a hash", "sodium_crypto_scalarmult.html": "Compute a shared secret given a user's secret key and another user's public key", "sodium_crypto_scalarmult_base.html": "别名 sodium_crypto_box_publickey_from_secretkey", "sodium_crypto_secretbox.html": "Encrypt a message", "sodium_crypto_secretbox_keygen.html": "Get random bytes for key", "sodium_crypto_secretbox_open.html": "Verify and decrypt a ciphertext", "sodium_crypto_shorthash.html": "Compute a fixed-size fingerprint for the message", "sodium_crypto_shorthash_keygen.html": "Get random bytes for key", "sodium_crypto_sign.html": "Sign a message", "sodium_crypto_sign_detached.html": "Sign the message", "sodium_crypto_sign_ed25519_pk_to_curve25519.html": "Convert an Ed25519 public key to a Curve25519 public key", "sodium_crypto_sign_ed25519_sk_to_curve25519.html": "Convert an Ed25519 secret key to a Curve25519 secret key", "sodium_crypto_sign_keypair.html": "Randomly generate a secret key and a corresponding public key", "sodium_crypto_sign_open.html": "Check that the signed message has a valid signature", "sodium_crypto_sign_publickey_from_secretkey.html": "Extract the public key from the secret key", "sodium_crypto_sign_seed_keypair.html": "Deterministically derive the key pair from a single key", "sodium_crypto_sign_verify_detached.html": "Verify signature for the message", "sodium_crypto_stream.html": "Generate a deterministic sequence of bytes from a seed", "sodium_crypto_stream_keygen.html": "Get random bytes for key", "sodium_crypto_stream_xor.html": "Encrypt a message", "sodium_hex2bin.html": "Decodes a hexadecimally encoded binary string", "sodium_increment.html": "Increment large number", "sodium_memcmp.html": "Test for equality in constant-time", "sodium_memzero.html": "Overwrite buf with zeros", "sodium_pad.html": "Add padding data", "sodium_unpad.html": "Remove padding data", "solr_get_version.html": "返回当前Solr扩展的版本", "sort.html": "对数组排序", "soundex.html": "Calculate the soundex key of a string", "split.html": "用正则表达式将字符串分割到数组中", "spliti.html": "用正则表达式不区分大小写将字符串分割到数组中", "spl_autoload.html": "__autoload()函数的默认实现", "spl_autoload_call.html": "尝试调用所有已注册的__autoload()函数来装载请求类", "spl_autoload_extensions.html": "注册并返回spl_autoload函数使用的默认文件扩展名。", "spl_autoload_functions.html": "返回所有已注册的__autoload()函数。", "spl_autoload_register.html": "注册给定的函数作为 __autoload 的实现", "spl_autoload_unregister.html": "注销已注册的__autoload()函数", "spl_classes.html": "返回所有可用的SPL类", "spl_object_hash.html": "返回指定对象的hash id", "spl_object_id.html": "Return the integer object handle for given object", "sprintf.html": "Return a formatted string", "sqlite_array_query.html": "Execute a query against a given database and returns an array", "sqlite_busy_timeout.html": "Set busy timeout duration, or disable busy handlers", "sqlite_changes.html": "Returns the number of rows that were changed by ", "sqlite_close.html": "Closes an open SQLite database", "sqlite_column.html": "Fetches a column from the current row of a result set", "sqlite_create_aggregate.html": "Register an aggregating UDF for use in SQL statements", "sqlite_create_function.html": "Registers a "regular" User Defined Function for use in SQL statements", "sqlite_current.html": "Fetches the current row from a result set as an array", "sqlite_error_string.html": "Returns the textual description of an error code", "sqlite_escape_string.html": "Escapes a string for use as a query parameter", "sqlite_exec.html": "Executes a result-less query against a given database", "sqlite_factory.html": "Opens an SQLite database and returns an SQLiteDatabase object", "sqlite_fetch_all.html": "Fetches all rows from a result set as an array of arrays", "sqlite_fetch_array.html": "Fetches the next row from a result set as an array", "sqlite_fetch_column_types.html": "Return an array of column types from a particular table", "sqlite_fetch_object.html": "Fetches the next row from a result set as an object", "sqlite_fetch_single.html": "Fetches the first column of a result set as a string", "sqlite_fetch_string.html": "别名 sqlite_fetch_single", "sqlite_field_name.html": "Returns the name of a particular field", "sqlite_has_more.html": "Finds whether or not more rows are available", "sqlite_has_prev.html": "Returns whether or not a previous row is available", "sqlite_key.html": "Returns the current row index", "sqlite_last_error.html": "Returns the error code of the last error for a database", "sqlite_last_insert_rowid.html": "Returns the rowid of the most recently inserted row", "sqlite_libencoding.html": "Returns the encoding of the linked SQLite library", "sqlite_libversion.html": "Returns the version of the linked SQLite library", "sqlite_next.html": "Seek to the next row number", "sqlite_num_fields.html": "Returns the number of fields in a result set", "sqlite_num_rows.html": "Returns the number of rows in a buffered result set", "sqlite_open.html": "Opens an SQLite database and create the database if it does not exist", "sqlite_popen.html": "Opens a persistent handle to an SQLite database and create the database if it does not exist", "sqlite_prev.html": "Seek to the previous row number of a result set", "sqlite_query.html": "Executes a query against a given database and returns a result handle", "sqlite_rewind.html": "Seek to the first row number", "sqlite_seek.html": "Seek to a particular row number of a buffered result set", "sqlite_single_query.html": "Executes a query and returns either an array for one single column or the value of the first row", "sqlite_udf_decode_binary.html": "Decode binary data passed as parameters to an UDF", "sqlite_udf_encode_binary.html": "Encode binary data before returning it from an UDF", "sqlite_unbuffered_query.html": "Execute a query that does not prefetch and buffer all data", "sqlite_valid.html": "Returns whether more rows are available", "sqlsrv_begin_transaction.html": "Begins a database transaction", "sqlsrv_cancel.html": "Cancels a statement", "sqlsrv_client_info.html": "Returns information about the client and specified connection", "sqlsrv_close.html": "Closes an open connection and releases resourses associated with the connection", "sqlsrv_commit.html": "Commits a transaction that was begun with sqlsrv_begin_transaction", "sqlsrv_configure.html": "Changes the driver error handling and logging configurations", "sqlsrv_connect.html": "Opens a connection to a Microsoft SQL Server database", "sqlsrv_errors.html": "Returns error and warning information about the last SQLSRV operation performed", "sqlsrv_execute.html": "Executes a statement prepared with sqlsrv_prepare", "sqlsrv_fetch.html": "Makes the next row in a result set available for reading", "sqlsrv_fetch_array.html": "Returns a row as an array", "sqlsrv_fetch_object.html": "Retrieves the next row of data in a result set as an object", "sqlsrv_field_metadata.html": "Retrieves metadata for the fields of a statement pre", "sqlsrv_free_stmt.html": "Frees all resources for the specified statement", "sqlsrv_get_config.html": "Returns the value of the specified configuration setting", "sqlsrv_get_field.html": "Gets field data from the currently selected row", "sqlsrv_has_rows.html": "Indicates whether the specified statement has rows", "sqlsrv_next_result.html": "Makes the next result of the specified statement active", "sqlsrv_num_fields.html": "Retrieves the number of fields (columns) on a statement", "sqlsrv_num_rows.html": "Retrieves the number of rows in a result set", "sqlsrv_prepare.html": "Prepares a query for execution", "sqlsrv_query.html": "Prepares and executes a query", "sqlsrv_rollback.html": "Rolls back a transaction that was be", "sqlsrv_rows_affected.html": "Returns the number of rows modified by the last INSERT, UP", "sqlsrv_send_stream_data.html": "Sends data from parameter streams to the server", "sqlsrv_server_info.html": "Returns information about the server", "sql_regcase.html": "产生用于不区分大小的匹配的正则表达式", "sqrt.html": "平方根", "srand.html": "播下随机数发生器种子", "sscanf.html": "根据指定格式解析输入的字符", "ssdeep_fuzzy_compare.html": "Calculates the match score between two fuzzy hash signatures", "ssdeep_fuzzy_hash.html": "Create a fuzzy hash from a string", "ssdeep_fuzzy_hash_filename.html": "Create a fuzzy hash from a file", "ssh2_auth_agent.html": "Authenticate over SSH using the ssh agent", "ssh2_auth_hostbased_file.html": "Authenticate using a public hostkey", "ssh2_auth_none.html": "Authenticate as "none"", "ssh2_auth_password.html": "Authenticate over SSH using a plain password", "ssh2_auth_pubkey_file.html": "Authenticate using a public key", "ssh2_connect.html": "Connect to an SSH server", "ssh2_disconnect.html": "Close a connection to a remote SSH server", "ssh2_exec.html": "Execute a command on a remote server", "ssh2_fetch_stream.html": "Fetch an extended data stream", "ssh2_fingerprint.html": "Retrieve fingerprint of remote server", "ssh2_methods_negotiated.html": "Return list of negotiated methods", "ssh2_publickey_add.html": "Add an authorized publickey", "ssh2_publickey_init.html": "Initialize Publickey subsystem", "ssh2_publickey_list.html": "List currently authorized publickeys", "ssh2_publickey_remove.html": "Remove an authorized publickey", "ssh2_scp_recv.html": "Request a file via SCP", "ssh2_scp_send.html": "Send a file via SCP", "ssh2_sftp.html": "Initialize SFTP subsystem", "ssh2_sftp_chmod.html": "Changes file mode", "ssh2_sftp_lstat.html": "Stat a symbolic link", "ssh2_sftp_mkdir.html": "Create a directory", "ssh2_sftp_readlink.html": "Return the target of a symbolic link", "ssh2_sftp_realpath.html": "Resolve the realpath of a provided path string", "ssh2_sftp_rename.html": "Rename a remote file", "ssh2_sftp_rmdir.html": "Remove a directory", "ssh2_sftp_stat.html": "Stat a file on a remote filesystem", "ssh2_sftp_symlink.html": "Create a symlink", "ssh2_sftp_unlink.html": "Delete a file", "ssh2_shell.html": "Request an interactive shell", "ssh2_tunnel.html": "Open a tunnel through a remote server", "stat.html": "给出文件的信息", "stats_absolute_deviation.html": "Returns the absolute deviation of an array of values", "stats_cdf_beta.html": "Calculates any one parameter of the beta distribution given values for the others", "stats_cdf_binomial.html": "Calculates any one parameter of the binomial distribution given values for the others", "stats_cdf_cauchy.html": "Calculates any one parameter of the Cauchy distribution given values for the others", "stats_cdf_chisquare.html": "Calculates any one parameter of the chi-square distribution given values for the others", "stats_cdf_exponential.html": "Calculates any one parameter of the exponential distribution given values for the others", "stats_cdf_f.html": "Calculates any one parameter of the F distribution given values for the others", "stats_cdf_gamma.html": "Calculates any one parameter of the gamma distribution given values for the others", "stats_cdf_laplace.html": "Calculates any one parameter of the Laplace distribution given values for the others", "stats_cdf_logistic.html": "Calculates any one parameter of the logistic distribution given values for the others", "stats_cdf_negative_binomial.html": "Calculates any one parameter of the negative binomial distribution given values for the others", "stats_cdf_noncentral_chisquare.html": "Calculates any one parameter of the non-central chi-square distribution given values for the others", "stats_cdf_noncentral_f.html": "Calculates any one parameter of the non-central F distribution given values for the others", "stats_cdf_noncentral_t.html": "Calculates any one parameter of the non-central t-distribution give values for the others", "stats_cdf_normal.html": "Calculates any one parameter of the normal distribution given values for the others", "stats_cdf_poisson.html": "Calculates any one parameter of the Poisson distribution given values for the others", "stats_cdf_t.html": "Calculates any one parameter of the t-distribution given values for the others", "stats_cdf_uniform.html": "Calculates any one parameter of the uniform distribution given values for the others", "stats_cdf_weibull.html": "Calculates any one parameter of the Weibull distribution given values for the others", "stats_covariance.html": "Computes the covariance of two data sets", "stats_dens_beta.html": "Probability density function of the beta distribution", "stats_dens_cauchy.html": "Probability density function of the Cauchy distribution", "stats_dens_chisquare.html": "Probability density function of the chi-square distribution", "stats_dens_exponential.html": "Probability density function of the exponential distribution", "stats_dens_f.html": "Probability density function of the F distribution", "stats_dens_gamma.html": "Probability density function of the gamma distribution", "stats_dens_laplace.html": "Probability density function of the Laplace distribution", "stats_dens_logistic.html": "Probability density function of the logistic distribution", "stats_dens_normal.html": "Probability density function of the normal distribution", "stats_dens_pmf_binomial.html": "Probability mass function of the binomial distribution", "stats_dens_pmf_hypergeometric.html": "Probability mass function of the hypergeometric distribution", "stats_dens_pmf_negative_binomial.html": "Probability density function of the negative binomial distribution", "stats_dens_pmf_poisson.html": "Probability mass function of the Poisson distribution", "stats_dens_t.html": "Probability density function of the t-distribution", "stats_dens_uniform.html": "Probability density function of the uniform distribution", "stats_dens_weibull.html": "Probability density function of the Weibull distribution", "stats_harmonic_mean.html": "Returns the harmonic mean of an array of values", "stats_kurtosis.html": "Computes the kurtosis of the data in the array", "stats_rand_gen_beta.html": "Generates a random deviate from the beta distribution", "stats_rand_gen_chisquare.html": "Generates a random deviate from the chi-square distribution", "stats_rand_gen_exponential.html": "Generates a random deviate from the exponential distribution", "stats_rand_gen_f.html": "Generates a random deviate from the F distribution", "stats_rand_gen_funiform.html": "Generates uniform float between low (exclusive) and high (exclusive)", "stats_rand_gen_gamma.html": "Generates a random deviate from the gamma distribution", "stats_rand_gen_ibinomial.html": "Generates a random deviate from the binomial distribution", "stats_rand_gen_ibinomial_negative.html": "Generates a random deviate from the negative binomial distribution", "stats_rand_gen_int.html": "Generates random integer between 1 and 2147483562", "stats_rand_gen_ipoisson.html": "Generates a single random deviate from a Poisson distribution", "stats_rand_gen_iuniform.html": "Generates integer uniformly distributed between LOW (inclusive) and HIGH (inclusive)", "stats_rand_gen_noncenral_chisquare.html": "Generates a random deviate from the non-central chi-square distribution", "stats_rand_gen_noncentral_chisquare.html": "Generates a random deviate from the non-central chi-square distribution", "stats_rand_gen_noncentral_f.html": "Generates a random deviate from the noncentral F distribution", "stats_rand_gen_noncentral_t.html": "Generates a single random deviate from a non-central t-distribution", "stats_rand_gen_normal.html": "Generates a single random deviate from a normal distribution", "stats_rand_gen_t.html": "Generates a single random deviate from a t-distribution", "stats_rand_get_seeds.html": "Get the seed values of the random number generator", "stats_rand_phrase_to_seeds.html": "Generate two seeds for the RGN random number generator", "stats_rand_ranf.html": "Generates a random floating point number between 0 and 1", "stats_rand_setall.html": "Set seed values to the random generator", "stats_skew.html": "Computes the skewness of the data in the array", "stats_standard_deviation.html": "Returns the standard deviation", "stats_stat_binomial_coef.html": "Returns a binomial coefficient", "stats_stat_correlation.html": "Returns the Pearson correlation coefficient of two data sets", "stats_stat_factorial.html": "Returns the factorial of an integer", "stats_stat_independent_t.html": "Returns the t-value from the independent two-sample t-test", "stats_stat_innerproduct.html": "Returns the inner product of two vectors", "stats_stat_paired_t.html": "Returns the t-value of the dependent t-test for paired samples", "stats_stat_percentile.html": "Returns the percentile value", "stats_stat_powersum.html": "Returns the power sum of a vector", "stats_variance.html": "Returns the variance", "stomp_connect_error.html": "Returns a string description of the last connect error", "stomp_version.html": "Gets the current stomp extension version", "strcasecmp.html": "二进制安全比较字符串(不区分大小写)", "strchr.html": "别名 strstr", "strcmp.html": "二进制安全字符串比较", "strcoll.html": "基于区域设置的字符串比较", "strcspn.html": "获取不匹配遮罩的起始子字符串的长度", "stream_bucket_append.html": "Append bucket to brigade", "stream_bucket_make_writeable.html": "Return a bucket object from the brigade for operating on", "stream_bucket_new.html": "Create a new bucket for use on the current stream", "stream_bucket_prepend.html": "Prepend bucket to brigade", "stream_context_create.html": "创建资源流上下文", "stream_context_get_default.html": "Retrieve the default stream context", "stream_context_get_options.html": "获取资源流数据包上下文的参数", "stream_context_get_params.html": "Retrieves parameters from a context", "stream_context_set_default.html": "Set the default stream context", "stream_context_set_option.html": "对资源流、数据包或者上下文设置参数", "stream_context_set_params.html": "Set parameters for a streamwrappercontext", "stream_copy_to_stream.html": "Copies data from one stream to another", "stream_filter_append.html": "Attach a filter to a stream", "stream_filter_prepend.html": "Attach a filter to a stream", "stream_filter_register.html": "Register a user defined stream filter", "stream_filter_remove.html": "从资源流里移除某个过滤器", "stream_get_contents.html": "读取资源流到一个字符串", "stream_get_filters.html": "获取已注册的数据流过滤器列表", "stream_get_line.html": "从资源流里读取一行直到给定的定界符", "stream_get_meta_data.html": "从封装协议文件指针中取得报头/元数据", "stream_get_transports.html": "获取已注册的套接字传输协议列表", "stream_get_wrappers.html": "获取已注册的流类型", "stream_isatty.html": "Check if a stream is a TTY", "stream_is_local.html": "Checks if a stream is a local stream", "stream_notification_callback.html": "A callback function for the notification context parameter", "stream_register_wrapper.html": "别名 stream_wrapper_register", "stream_resolve_include_path.html": "Resolve filename against the include path", "stream_select.html": "Runs the equivalent of the select() system call on t", "stream_set_blocking.html": "为资源流设置阻塞或者阻塞模式", "stream_set_chunk_size.html": "设置资源流区块大小", "stream_set_read_buffer.html": "Set read file buffering on the given stream", "stream_set_timeout.html": "Set timeout period on a stream", "stream_set_write_buffer.html": "Sets write file buffering on the given stream", "stream_socket_accept.html": "接受由 stream_socket_server 创建的套接字连接", "stream_socket_client.html": "Open Internet or Unix domain socket connection", "stream_socket_enable_crypto.html": "Turns encryption onoff on an already connected socket", "stream_socket_get_name.html": "获取本地或者远程的套接字名称", "stream_socket_pair.html": "创建一对完全一样的网络套接字连接流", "stream_socket_recvfrom.html": "Receives data from a socket, connected or not", "stream_socket_sendto.html": "Sends a message to a socket, whether it is connected or not", "stream_socket_server.html": "Create an Internet or Unix domain server socket", "stream_socket_shutdown.html": "Shutdown a full-duplex connection", "stream_supports_lock.html": "Tells whether the stream supports locking", "stream_wrapper_register.html": "注册一个用 PHP 类实现的 URL 封装协议", "stream_wrapper_restore.html": "Restores a previously unregistered built-in wrapper", "stream_wrapper_unregister.html": "Unregister a URL wrapper", "strftime.html": "根据区域设置格式化本地时间/日期", "stripcslashes.html": "反引用一个使用 addcslashes 转义的字符串", "stripos.html": "查找字符串首次出现的位置(不区分大小写)", "stripslashes.html": "反引用一个引用字符串", "strip_tags.html": "从字符串中去除 HTML 和 PHP 标记", "stristr.html": "strstr 函数的忽略大小写版本", "strlen.html": "获取字符串长度", "strnatcasecmp.html": "使用“自然顺序”算法比较字符串(不区分大小写)", "strnatcmp.html": "使用自然排序算法比较字符串", "strncasecmp.html": "二进制安全比较字符串开头的若干个字符(不区分大小写)", "strncmp.html": "二进制安全比较字符串开头的若干个字符", "strpbrk.html": "在字符串中查找一组字符的任何一个字符", "strpos.html": "查找字符串首次出现的位置", "strptime.html": "解析由 strftime 生成的日期/时间", "strrchr.html": "查找指定字符在字符串中的最后一次出现", "strrev.html": "反转字符串", "strripos.html": "计算指定字符串在目标字符串中最后一次出现的位置(不区分大小写)", "strrpos.html": "计算指定字符串在目标字符串中最后一次出现的位置", "strspn.html": "计算字符串中全部字符都存在于指定字符集合中的第一段子串的长度。", "strstr.html": "查找字符串的首次出现", "strtok.html": "标记分割字符串", "strtolower.html": "将字符串转化为小写", "strtotime.html": "将任何字符串的日期时间描述解析为 Unix 时间戳", "strtoupper.html": "将字符串转化为大写", "strtr.html": "转换指定字符", "strval.html": "获取变量的字符串值", "str_getcsv.html": "解析 CSV 字符串为一个数组", "str_ireplace.html": "str_replace 的忽略大小写版本", "str_pad.html": "使用另一个字符串填充字符串为指定长度", "str_repeat.html": "重复一个字符串", "str_replace.html": "子字符串替换", "str_rot13.html": "对字符串执行 ROT13 转换", "str_shuffle.html": "随机打乱一个字符串", "str_split.html": "将字符串转换为数组", "str_word_count.html": "返回字符串中单词的使用情况", "substr.html": "返回字符串的子串", "substr_compare.html": "二进制安全比较字符串(从偏移位置比较指定长度)", "substr_count.html": "计算字串出现的次数", "substr_replace.html": "替换字符串的子串", "svn_add.html": "计划在工作目录添加项", "svn_auth_get_parameter.html": "Retrieves authentication parameter", "svn_auth_set_parameter.html": "Sets an authentication parameter", "svn_blame.html": "Get the SVN blame for a file", "svn_cat.html": "Returns the contents of a file in a repository", "svn_checkout.html": "Checks out a working copy from the repository", "svn_cleanup.html": "Recursively cleanup a working copy directory, finishing incomplete operations and removing locks", "svn_client_version.html": "Returns the version of the SVN client libraries", "svn_commit.html": "将修改的本地文件副本发送至版本库", "svn_delete.html": "Delete items from a working copy or repository", "svn_diff.html": "Recursively diffs two paths", "svn_export.html": "Export the contents of a SVN directory", "svn_fs_abort_txn.html": "Abort a transaction, returns true if everything is okay, false otherwise", "svn_fs_apply_text.html": "Creates and returns a stream that will be used to replace", "svn_fs_begin_txn2.html": "Create a new transaction", "svn_fs_change_node_prop.html": "Return true if everything is ok, false otherwise", "svn_fs_check_path.html": "Determines what kind of item lives at path in a given repository fsroot", "svn_fs_contents_changed.html": "Return true if content is different, false otherwise", "svn_fs_copy.html": "Copies a file or a directory, returns true if all is ok, false otherwise", "svn_fs_delete.html": "Deletes a file or a directory, return true if all is ok, false otherwise", "svn_fs_dir_entries.html": "Enumerates the directory entries under path; returns a hash of dir names to file type", "svn_fs_file_contents.html": "Returns a stream to access the contents of a file from a given version of the fs", "svn_fs_file_length.html": "Returns the length of a file from a given version of the fs", "svn_fs_is_dir.html": "Return true if the path points to a directory, false otherwise", "svn_fs_is_file.html": "Return true if the path points to a file, false otherwise", "svn_fs_make_dir.html": "Creates a new empty directory, returns true if all is ok, false otherwise", "svn_fs_make_file.html": "Creates a new empty file, returns true if all is ok, false otherwise", "svn_fs_node_created_rev.html": "Returns the revision in which path under fsroot was created", "svn_fs_node_prop.html": "Returns the value of a property for a node", "svn_fs_props_changed.html": "Return true if props are different, false otherwise", "svn_fs_revision_prop.html": "Fetches the value of a named property", "svn_fs_revision_root.html": "Get a handle on a specific version of the repository root", "svn_fs_txn_root.html": "Creates and returns a transaction root", "svn_fs_youngest_rev.html": "Returns the number of the youngest revision in the filesystem", "svn_import.html": "Imports an unversioned path into a repository", "svn_log.html": "Returns the commit log messages of a repository URL", "svn_ls.html": "Returns list of directory contents in repository URL, optionally at revision number", "svn_mkdir.html": "Creates a directory in a working copy or repository", "svn_repos_create.html": "Create a new subversion repository at path", "svn_repos_fs.html": "Gets a handle on the filesystem for a repository", "svn_repos_fs_begin_txn_for_commit.html": "Create a new transaction", "svn_repos_fs_commit_txn.html": "Commits a transaction and returns the new revision", "svn_repos_hotcopy.html": "Make a hot-copy of the repos at repospath; copy it to destpath", "svn_repos_open.html": "Open a shared lock on a repository", "svn_repos_recover.html": "Run recovery procedures on the repository located at path", "svn_revert.html": "Revert changes to the working copy", "svn_status.html": "Returns the status of working copy files and directories", "svn_update.html": "Update working copy", "swoole_async_dns_lookup.html": "Async and non-blocking hostname to IP lookup", "swoole_async_read.html": "Read file stream asynchronously", "swoole_async_readfile.html": "Read a file asynchronously", "swoole_async_set.html": "Update the async IO options", "swoole_async_write.html": "Write data to a file stream asynchronously", "swoole_async_writefile.html": "Write data to a file asynchronously", "swoole_client_select.html": "Get the file description which are ready to readwrite or error", "swoole_cpu_num.html": "Get the number of CPU", "swoole_errno.html": "Get the error code of the latest system call", "swoole_event_add.html": "Add new callback functions of a socket into the EventLoop", "swoole_event_defer.html": "Add callback function to the next event loop", "swoole_event_del.html": "Remove all event callback functions of a socket", "swoole_event_exit.html": "Exit the eventloop, only available at the client side", "swoole_event_set.html": "Update the event callback functions of a socket", "swoole_event_wait.html": "Start the event loop", "swoole_event_write.html": "Write data to a socket", "swoole_get_local_ip.html": "Get the IPv4 IP addresses of each NIC on the machine", "swoole_last_error.html": "Get the lastest error message", "swoole_load_module.html": "Load a swoole extension", "swoole_select.html": "Select the file descriptions which are ready to readwrite or error in the eventloop", "swoole_set_process_name.html": "Set the process name", "swoole_strerror.html": "Convert the Errno into error messages", "swoole_timer_after.html": "Trigger a one time callback function in the future", "swoole_timer_exists.html": "Check if a timer callback function is existed", "swoole_timer_tick.html": "Trigger a timer tick callback function by time interval", "swoole_version.html": "Get the version of Swoole", "sybase_affected_rows.html": "Gets number of affected rows in last query", "sybase_close.html": "Closes a Sybase connection", "sybase_connect.html": "Opens a Sybase server connection", "sybase_data_seek.html": "Moves internal row pointer", "sybase_deadlock_retry_count.html": "Sets the deadlock retry count", "sybase_fetch_array.html": "Fetch row as array", "sybase_fetch_assoc.html": "Fetch a result row as an associative array", "sybase_fetch_field.html": "Get field information from a result", "sybase_fetch_object.html": "Fetch a row as an object", "sybase_fetch_row.html": "Get a result row as an enumerated array", "sybase_field_seek.html": "Sets field offset", "sybase_free_result.html": "Frees result memory", "sybase_get_last_message.html": "Returns the last message from the server", "sybase_min_client_severity.html": "Sets minimum client severity", "sybase_min_error_severity.html": "Sets minimum error severity", "sybase_min_message_severity.html": "Sets minimum message severity", "sybase_min_server_severity.html": "Sets minimum server severity", "sybase_num_fields.html": "Gets the number of fields in a result set", "sybase_num_rows.html": "Get number of rows in a result set", "sybase_pconnect.html": "Open persistent Sybase connection", "sybase_query.html": "Sends a Sybase query", "sybase_result.html": "Get result data", "sybase_select_db.html": "Selects a Sybase database", "sybase_set_message_handler.html": "Sets the handler called when a server message is raised", "sybase_unbuffered_query.html": "Send a Sybase query and do not block", "symlink.html": "建立符号连接", "syslog.html": "Generate a system log message", "system.html": "执行外部程序,并且显示输出", "sys_getloadavg.html": "获取系统的负载(load average)", "sys_get_temp_dir.html": "返回用于临时文件的目录", "taint.html": "Taint a string", "tan.html": "正切", "tanh.html": "双曲正切", "tcpwrap_check.html": "Performs a tcpwrap check", "tempnam.html": "建立一个具有唯一文件名的文件", "textdomain.html": "Sets the default domain", "tidy_access_count.html": "Returns the Number of Tidy accessibility warnings encountered for specified document", "tidy_config_count.html": "Returns the Number of Tidy configuration errors encountered for specified document", "tidy_error_count.html": "Returns the Number of Tidy errors encountered for specified document", "tidy_get_output.html": "Return a string representing the parsed tidy markup", "tidy_warning_count.html": "Returns the Number of Tidy warnings encountered for specified document", "time.html": "返回当前的 Unix 时间戳", "timezone_abbreviations_list.html": "别名 DateTimeZonelistAbbreviations", "timezone_identifiers_list.html": "别名 DateTimeZonelistIdentifiers", "timezone_location_get.html": "别名 DateTimeZonegetLocation", "timezone_name_from_abbr.html": "Returns the timezone name from abbreviation", "timezone_name_get.html": "别名 DateTimeZonegetName", "timezone_offset_get.html": "别名 DateTimeZonegetOffset", "timezone_open.html": "别名 DateTimeZone__construct", "timezone_transitions_get.html": "别名 DateTimeZonegetTransitions", "timezone_version_get.html": "Gets the version of the timezonedb", "time_nanosleep.html": "延缓执行若干秒和纳秒", "time_sleep_until.html": "使脚本睡眠到指定的时间为止。", "tmpfile.html": "建立一个临时文件", "token_get_all.html": "将提供的源码按 PHP 标记进行分割", "token_name.html": "获取提供的 PHP 解析器代号的符号名称", "touch.html": "设定文件的访问和修改时间", "trader_acos.html": "Vector Trigonometric ACos", "trader_ad.html": "Chaikin AD Line", "trader_add.html": "Vector Arithmetic Add", "trader_adosc.html": "Chaikin AD Oscillator", "trader_adx.html": "Average Directional Movement Index", "trader_adxr.html": "Average Directional Movement Index Rating", "trader_apo.html": "Absolute Price Oscillator", "trader_aroon.html": "Aroon", "trader_aroonosc.html": "Aroon Oscillator", "trader_asin.html": "Vector Trigonometric ASin", "trader_atan.html": "Vector Trigonometric ATan", "trader_atr.html": "Average True Range", "trader_avgprice.html": "Average Price", "trader_bbands.html": "Bollinger Bands", "trader_beta.html": "Beta", "trader_bop.html": "Balance Of Power", "trader_cci.html": "Commodity Channel Index", "trader_cdl2crows.html": "Two Crows", "trader_cdl3blackcrows.html": "Three Black Crows", "trader_cdl3inside.html": "Three Inside UpDown", "trader_cdl3linestrike.html": "Three-Line Strike", "trader_cdl3outside.html": "Three Outside UpDown", "trader_cdl3starsinsouth.html": "Three Stars In The South", "trader_cdl3whitesoldiers.html": "Three Advancing White Soldiers", "trader_cdlabandonedbaby.html": "Abandoned Baby", "trader_cdladvanceblock.html": "Advance Block", "trader_cdlbelthold.html": "Belt-hold", "trader_cdlbreakaway.html": "Breakaway", "trader_cdlclosingmarubozu.html": "Closing Marubozu", "trader_cdlconcealbabyswall.html": "Concealing Baby Swallow", "trader_cdlcounterattack.html": "Counterattack", "trader_cdldarkcloudcover.html": "Dark Cloud Cover", "trader_cdldoji.html": "Doji", "trader_cdldojistar.html": "Doji Star", "trader_cdldragonflydoji.html": "Dragonfly Doji", "trader_cdlengulfing.html": "Engulfing Pattern", "trader_cdleveningdojistar.html": "Evening Doji Star", "trader_cdleveningstar.html": "Evening Star", "trader_cdlgapsidesidewhite.html": "UpDown-gap side-by-side white lines", "trader_cdlgravestonedoji.html": "Gravestone Doji", "trader_cdlhammer.html": "Hammer", "trader_cdlhangingman.html": "Hanging Man", "trader_cdlharami.html": "Harami Pattern", "trader_cdlharamicross.html": "Harami Cross Pattern", "trader_cdlhighwave.html": "High-Wave Candle", "trader_cdlhikkake.html": "Hikkake Pattern", "trader_cdlhikkakemod.html": "Modified Hikkake Pattern", "trader_cdlhomingpigeon.html": "Homing Pigeon", "trader_cdlidentical3crows.html": "Identical Three Crows", "trader_cdlinneck.html": "In-Neck Pattern", "trader_cdlinvertedhammer.html": "Inverted Hammer", "trader_cdlkicking.html": "Kicking", "trader_cdlkickingbylength.html": "Kicking - bullbear determined by the longer marubozu", "trader_cdlladderbottom.html": "Ladder Bottom", "trader_cdllongleggeddoji.html": "Long Legged Doji", "trader_cdllongline.html": "Long Line Candle", "trader_cdlmarubozu.html": "Marubozu", "trader_cdlmatchinglow.html": "Matching Low", "trader_cdlmathold.html": "Mat Hold", "trader_cdlmorningdojistar.html": "Morning Doji Star", "trader_cdlmorningstar.html": "Morning Star", "trader_cdlonneck.html": "On-Neck Pattern", "trader_cdlpiercing.html": "Piercing Pattern", "trader_cdlrickshawman.html": "Rickshaw Man", "trader_cdlrisefall3methods.html": "RisingFalling Three Methods", "trader_cdlseparatinglines.html": "Separating Lines", "trader_cdlshootingstar.html": "Shooting Star", "trader_cdlshortline.html": "Short Line Candle", "trader_cdlspinningtop.html": "Spinning Top", "trader_cdlstalledpattern.html": "Stalled Pattern", "trader_cdlsticksandwich.html": "Stick Sandwich", "trader_cdltakuri.html": "Takuri (Dragonfly Doji with very long lower shadow)", "trader_cdltasukigap.html": "Tasuki Gap", "trader_cdlthrusting.html": "Thrusting Pattern", "trader_cdltristar.html": "Tristar Pattern", "trader_cdlunique3river.html": "Unique 3 River", "trader_cdlupsidegap2crows.html": "Upside Gap Two Crows", "trader_cdlxsidegap3methods.html": "UpsideDownside Gap Three Methods", "trader_ceil.html": "Vector Ceil", "trader_cmo.html": "Chande Momentum Oscillator", "trader_correl.html": "Pearson's Correlation Coefficient (r)", "trader_cos.html": "Vector Trigonometric Cos", "trader_cosh.html": "Vector Trigonometric Cosh", "trader_dema.html": "Double Exponential Moving Average", "trader_div.html": "Vector Arithmetic Div", "trader_dx.html": "Directional Movement Index", "trader_ema.html": "Exponential Moving Average", "trader_errno.html": "Get error code", "trader_exp.html": "Vector Arithmetic Exp", "trader_floor.html": "Vector Floor", "trader_get_compat.html": "Get compatibility mode", "trader_get_unstable_period.html": "Get unstable period", "trader_ht_dcperiod.html": "Hilbert Transform - Dominant Cycle Period", "trader_ht_dcphase.html": "Hilbert Transform - Dominant Cycle Phase", "trader_ht_phasor.html": "Hilbert Transform - Phasor Components", "trader_ht_sine.html": "Hilbert Transform - SineWave", "trader_ht_trendline.html": "Hilbert Transform - Instantaneous Trendline", "trader_ht_trendmode.html": "Hilbert Transform - Trend vs Cycle Mode", "trader_kama.html": "Kaufman Adaptive Moving Average", "trader_linearreg.html": "Linear Regression", "trader_linearreg_angle.html": "Linear Regression Angle", "trader_linearreg_intercept.html": "Linear Regression Intercept", "trader_linearreg_slope.html": "Linear Regression Slope", "trader_ln.html": "Vector Log Natural", "trader_log10.html": "Vector Log10", "trader_ma.html": "Moving average", "trader_macd.html": "Moving Average ConvergenceDivergence", "trader_macdext.html": "MACD with controllable MA type", "trader_macdfix.html": "Moving Average ConvergenceDivergence Fix 1226", "trader_mama.html": "MESA Adaptive Moving Average", "trader_mavp.html": "Moving average with variable period", "trader_max.html": "Highest value over a specified period", "trader_maxindex.html": "Index of highest value over a specified period", "trader_medprice.html": "Median Price", "trader_mfi.html": "Money Flow Index", "trader_midpoint.html": "MidPoint over period", "trader_midprice.html": "Midpoint Price over period", "trader_min.html": "Lowest value over a specified period", "trader_minindex.html": "Index of lowest value over a specified period", "trader_minmax.html": "Lowest and highest values over a specified period", "trader_minmaxindex.html": "Indexes of lowest and highest values over a specified period", "trader_minus_di.html": "Minus Directional Indicator", "trader_minus_dm.html": "Minus Directional Movement", "trader_mom.html": "Momentum", "trader_mult.html": "Vector Arithmetic Mult", "trader_natr.html": "Normalized Average True Range", "trader_obv.html": "On Balance Volume", "trader_plus_di.html": "Plus Directional Indicator", "trader_plus_dm.html": "Plus Directional Movement", "trader_ppo.html": "Percentage Price Oscillator", "trader_roc.html": "Rate of change ((priceprevPrice)-1)100", "trader_rocp.html": "Rate of change Percentage (price-prevPrice)prevPrice", "trader_rocr.html": "Rate of change ratio (priceprevPrice)", "trader_rocr100.html": "Rate of change ratio 100 scale (priceprevPrice)100", "trader_rsi.html": "Relative Strength Index", "trader_sar.html": "Parabolic SAR", "trader_sarext.html": "Parabolic SAR - Extended", "trader_set_compat.html": "Set compatibility mode", "trader_set_unstable_period.html": "Set unstable period", "trader_sin.html": "Vector Trigonometric Sin", "trader_sinh.html": "Vector Trigonometric Sinh", "trader_sma.html": "Simple Moving Average", "trader_sqrt.html": "Vector Square Root", "trader_stddev.html": "Standard Deviation", "trader_stoch.html": "Stochastic", "trader_stochf.html": "Stochastic Fast", "trader_stochrsi.html": "Stochastic Relative Strength Index", "trader_sub.html": "Vector Arithmetic Subtraction", "trader_sum.html": "Summation", "trader_t3.html": "Triple Exponential Moving Average (T3)", "trader_tan.html": "Vector Trigonometric Tan", "trader_tanh.html": "Vector Trigonometric Tanh", "trader_tema.html": "Triple Exponential Moving Average", "trader_trange.html": "True Range", "trader_trima.html": "Triangular Moving Average", "trader_trix.html": "1-day Rate-Of-Change (ROC) of a Triple Smooth EMA", "trader_tsf.html": "Time Series Forecast", "trader_typprice.html": "Typical Price", "trader_ultosc.html": "Ultimate Oscillator", "trader_var.html": "Variance", "trader_wclprice.html": "Weighted Close Price", "trader_willr.html": "Williams' %R", "trader_wma.html": "Weighted Moving Average", "trait_exists.html": "检查指定的 trait 是否存在", "trigger_error.html": "产生一个用户级别的 errorwarningnotice 信息", "trim.html": "去除字符串首尾处的空白字符(或者其他字符)", "uasort.html": "使用用户自定义的比较函数对数组中的值进行排序并保持索引关联", "ucfirst.html": "将字符串的首字母转换为大写", "ucwords.html": "将字符串中每个单词的首字母转换为大写", "udm_add_search_limit.html": "Add various search limits", "udm_alloc_agent.html": "Allocate mnoGoSearch session", "udm_alloc_agent_array.html": "Allocate mnoGoSearch session", "udm_api_version.html": "Get mnoGoSearch API version", "udm_cat_list.html": "Get all the categories on the same level with the current one", "udm_cat_path.html": "Get the path to the current category", "udm_check_charset.html": "Check if the given charset is known to mnogosearch", "udm_clear_search_limits.html": "Clear all mnoGoSearch search restrictions", "udm_crc32.html": "Return CRC32 checksum of given string", "udm_errno.html": "Get mnoGoSearch error number", "udm_error.html": "Get mnoGoSearch error message", "udm_find.html": "Perform search", "udm_free_agent.html": "Free mnoGoSearch session", "udm_free_ispell_data.html": "Free memory allocated for ispell data", "udm_free_res.html": "Free mnoGoSearch result", "udm_get_doc_count.html": "Get total number of documents in database", "udm_get_res_field.html": "Fetch a result field", "udm_get_res_param.html": "Get mnoGoSearch result parameters", "udm_hash32.html": "Return Hash32 checksum of given string", "udm_load_ispell_data.html": "Load ispell data", "udm_set_agent_param.html": "Set mnoGoSearch agent session parameters", "ui_draw_text_font_fontfamilies.html": "Retrieve Font Families", "ui_quit.html": "Quit UI Loop", "ui_run.html": "Enter UI Loop", "uksort.html": "使用用户自定义的比较函数对数组中的键名进行排序", "umask.html": "改变当前的 umask", "uniqid.html": "生成一个唯一ID", "unixtojd.html": "转变Unix时间戳为Julian Day计数", "unlink.html": "删除文件", "unpack.html": "Unpack data from binary string", "unregister_tick_function.html": "De-register a function for execution on each tick", "unserialize.html": "从已存储的表示中创建 PHP 的值", "unset.html": "释放给定的变量", "untaint.html": "Untaint strings", "uopz_add_function.html": "Adds non-existent function or method", "uopz_allow_exit.html": "Allows control over disabled exit opcode", "uopz_backup.html": "Backup a function", "uopz_compose.html": "Compose a class", "uopz_copy.html": "Copy a function", "uopz_delete.html": "Delete a function", "uopz_del_function.html": "Deletes previously added function or method", "uopz_extend.html": "Extend a class at runtime", "uopz_flags.html": "Get or set flags on function or class", "uopz_function.html": "Creates a function at runtime", "uopz_get_exit_status.html": "Retrieve the last set exit status", "uopz_get_hook.html": "Gets previously set hook on function or method", "uopz_get_mock.html": "Get the current mock for a class", "uopz_get_property.html": "Gets value of class or instance property", "uopz_get_return.html": "Gets a previous set return value for a function", "uopz_get_static.html": "Gets the static variables from function or method scope", "uopz_implement.html": "Implements an interface at runtime", "uopz_overload.html": "Overload a VM opcode", "uopz_redefine.html": "Redefine a constant", "uopz_rename.html": "Rename a function at runtime", "uopz_restore.html": "Restore a previously backed up function", "uopz_set_hook.html": "Sets hook to execute when entering a function or method", "uopz_set_mock.html": "Use mock instead of class for new objects", "uopz_set_property.html": "Sets value of existing class or instance property", "uopz_set_return.html": "Provide a return value for an existing function", "uopz_set_static.html": "Sets the static variables in function or method scope", "uopz_undefine.html": "Undefine a constant", "uopz_unset_hook.html": "Removes previously set hook on function or method", "uopz_unset_mock.html": "Unset previously set mock", "uopz_unset_return.html": "Unsets a previously set return value for a function", "urldecode.html": "解码已编码的 URL 字符串", "urlencode.html": "编码 URL 字符串", "user_error.html": "trigger_error 的别名", "use_soap_error_handler.html": "Set whether to use the SOAP error handler", "usleep.html": "以指定的微秒数延迟执行", "usort.html": "使用用户自定义的比较函数对数组中的值进行排序", "utf8_decode.html": "将用 UTF-8 方式编码的 ISO-8859-1 字符串转换成单字节的 ISO-8859-1 字符串。", "utf8_encode.html": "将 ISO-8859-1 编码的字符串转换为 UTF-8 编码", "variant_abs.html": "Returns the absolute value of a variant", "variant_add.html": ""Adds" two variant values together and returns the result", "variant_and.html": "Performs a bitwise AND operation between two variants", "variant_cast.html": "Convert a variant into a new variant object of another type", "variant_cat.html": "Concatenates two variant values together and returns the result", "variant_cmp.html": "Compares two variants", "variant_date_from_timestamp.html": "Returns a variant date representation of a Unix timestamp", "variant_date_to_timestamp.html": "Converts a variant datetime value to Unix timestamp", "variant_div.html": "Returns the result from dividing two variants", "variant_eqv.html": "Performs a bitwise equivalence on two variants", "variant_fix.html": "Returns the integer portion of a variant", "variant_get_type.html": "Returns the type of a variant object", "variant_idiv.html": "Converts variants to integers and then returns the result from dividing them", "variant_imp.html": "Performs a bitwise implication on two variants", "variant_int.html": "Returns the integer portion of a variant", "variant_mod.html": "Divides two variants and returns only the remainder", "variant_mul.html": "Multiplies the values of the two variants", "variant_neg.html": "Performs logical negation on a variant", "variant_not.html": "Performs bitwise not negation on a variant", "variant_or.html": "Performs a logical disjunction on two variants", "variant_pow.html": "Returns the result of performing the power function with two variants", "variant_round.html": "Rounds a variant to the specified number of decimal places", "variant_set.html": "Assigns a new value for a variant object", "variant_set_type.html": "Convert a variant into another type "in-place"", "variant_sub.html": "Subtracts the value of the right variant from the left variant value", "variant_xor.html": "Performs a logical exclusion on two variants", "var_dump.html": "打印变量的相关信息", "var_export.html": "输出或返回一个变量的字符串表示", "version_compare.html": "对比两个「PHP 规范化」的版本数字字符串", "vfprintf.html": "将格式化字符串写入流", "virtual.html": "执行 Apache 子请求", "vpopmail_add_alias_domain.html": "Add an alias for a virtual domain", "vpopmail_add_alias_domain_ex.html": "Add alias to an existing virtual domain", "vpopmail_add_domain.html": "Add a new virtual domain", "vpopmail_add_domain_ex.html": "Add a new virtual domain", "vpopmail_add_user.html": "Add a new user to the specified virtual domain", "vpopmail_alias_add.html": "Insert a virtual alias", "vpopmail_alias_del.html": "Deletes all virtual aliases of a user", "vpopmail_alias_del_domain.html": "Deletes all virtual aliases of a domain", "vpopmail_alias_get.html": "Get all lines of an alias for a domain", "vpopmail_alias_get_all.html": "Get all lines of an alias for a domain", "vpopmail_auth_user.html": "Attempt to validate a usernamedomainpassword", "vpopmail_del_domain.html": "Delete a virtual domain", "vpopmail_del_domain_ex.html": "Delete a virtual domain", "vpopmail_del_user.html": "Delete a user from a virtual domain", "vpopmail_error.html": "Get text message for last vpopmail error", "vpopmail_passwd.html": "Change a virtual user's password", "vpopmail_set_user_quota.html": "Sets a virtual user's quota", "vprintf.html": "输出格式化字符串", "vsprintf.html": "返回格式化字符串", "wddx_add_vars.html": "Add variables to a WDDX packet with the specified ID", "wddx_deserialize.html": "Unserializes a WDDX packet", "wddx_packet_end.html": "Ends a WDDX packet with the specified ID", "wddx_packet_start.html": "Starts a new WDDX packet with structure inside it", "wddx_serialize_value.html": "Serialize a single value into a WDDX packet", "wddx_serialize_vars.html": "Serialize variables into a WDDX packet", "win32_continue_service.html": "Resumes a paused service", "win32_create_service.html": "Creates a new service entry in the SCM database", "win32_delete_service.html": "Deletes a service entry from the SCM database", "win32_get_last_control_message.html": "Returns the last control message that was sent to this service", "win32_pause_service.html": "Pauses a service", "win32_ps_list_procs.html": "List running processes", "win32_ps_stat_mem.html": "Stat memory utilization", "win32_ps_stat_proc.html": "Stat process", "win32_query_service_status.html": "Queries the status of a service", "win32_send_custom_control.html": "Send a custom control to the service", "win32_set_service_exit_code.html": "Define or return the exit code for the current running service", "win32_set_service_exit_mode.html": "Define or return the exit mode for the current running service", "win32_set_service_status.html": "Update the service status", "win32_start_service.html": "Starts a service", "win32_start_service_ctrl_dispatcher.html": "Registers the script with the SCM, so that it can act as the service with the given name", "win32_stop_service.html": "Stops a service", "wincache_fcache_fileinfo.html": "Retrieves information about files cached in the file cache", "wincache_fcache_meminfo.html": "Retrieves information about file cache memory usage", "wincache_lock.html": "Acquires an exclusive lock on a given key", "wincache_ocache_fileinfo.html": "Retrieves information about files cached in the opcode cache", "wincache_ocache_meminfo.html": "Retrieves information about opcode cache memory usage", "wincache_refresh_if_changed.html": "Refreshes the cache entries for the cached files", "wincache_rplist_fileinfo.html": "Retrieves information about resolve file path cache", "wincache_rplist_meminfo.html": "Retrieves information about memory usage by the resolve file path cache", "wincache_scache_info.html": "Retrieves information about files cached in the session cache", "wincache_scache_meminfo.html": "Retrieves information about session cache memory usage", "wincache_ucache_add.html": "Adds a variable in user cache only if variable does not already exist in the cache", "wincache_ucache_cas.html": "Compares the variable with old value and assigns new value to it", "wincache_ucache_clear.html": "Deletes entire content of the user cache", "wincache_ucache_dec.html": "Decrements the value associated with the key", "wincache_ucache_delete.html": "Deletes variables from the user cache", "wincache_ucache_exists.html": "Checks if a variable exists in the user cache", "wincache_ucache_get.html": "Gets a variable stored in the user cache", "wincache_ucache_inc.html": "Increments the value associated with the key", "wincache_ucache_info.html": "Retrieves information about data stored in the user cache", "wincache_ucache_meminfo.html": "Retrieves information about user cache memory usage", "wincache_ucache_set.html": "Adds a variable in user cache and overwrites a variable if it already exists in the cache", "wincache_unlock.html": "Releases an exclusive lock on a given key", "wordwrap.html": "打断字符串为指定数量的字串", "xattr_get.html": "Get an extended attribute", "xattr_list.html": "Get a list of extended attributes", "xattr_remove.html": "Remove an extended attribute", "xattr_set.html": "Set an extended attribute", "xattr_supported.html": "Check if filesystem supports extended attributes", "xdiff_file_bdiff.html": "Make binary diff of two files", "xdiff_file_bdiff_size.html": "Read a size of file created by applying a binary diff", "xdiff_file_bpatch.html": "Patch a file with a binary diff", "xdiff_file_diff.html": "Make unified diff of two files", "xdiff_file_diff_binary.html": "Alias of xdiff_file_bdiff", "xdiff_file_merge3.html": "Merge 3 files into one", "xdiff_file_patch.html": "Patch a file with an unified diff", "xdiff_file_patch_binary.html": "Alias of xdiff_file_bpatch", "xdiff_file_rabdiff.html": "Make binary diff of two files using the Rabin's polynomial fingerprinting algorithm", "xdiff_string_bdiff.html": "Make binary diff of two strings", "xdiff_string_bdiff_size.html": "Read a size of file created by applying a binary diff", "xdiff_string_bpatch.html": "Patch a string with a binary diff", "xdiff_string_diff.html": "Make unified diff of two strings", "xdiff_string_diff_binary.html": "Alias of xdiff_string_bdiff", "xdiff_string_merge3.html": "Merge 3 strings into one", "xdiff_string_patch.html": "Patch a string with an unified diff", "xdiff_string_patch_binary.html": "Alias of xdiff_string_bpatch", "xdiff_string_rabdiff.html": "Make binary diff of two strings using the Rabin's polynomial fingerprinting algorithm", "xhprof_disable.html": "停止 xhprof 分析器", "xhprof_enable.html": "启动 xhprof 性能分析器", "xhprof_sample_disable.html": "停止 xhprof 性能采样分析器", "xhprof_sample_enable.html": "以采样模式启动 XHProf 性能分析", "xmlrpc_decode.html": "将 XML 译码为 PHP 本身的类型", "xmlrpc_decode_request.html": "将 XML 译码为 PHP 本身的类型", "xmlrpc_encode.html": "为 PHP 的值生成 XML", "xmlrpc_encode_request.html": "为 PHP 的值生成 XML", "xmlrpc_get_type.html": "为 PHP 的值获取 xmlrpc 的类型", "xmlrpc_is_fault.html": "Determines if an array value represents an XMLRPC fault", "xmlrpc_parse_method_descriptions.html": "将 XML 译码成方法描述的列表", "xmlrpc_server_add_introspection_data.html": "添加自我描述的文档", "xmlrpc_server_call_method.html": "解析 XML 请求同时调用方法", "xmlrpc_server_create.html": "创建一个 xmlrpc 服务端", "xmlrpc_server_destroy.html": "销毁服务端资源", "xmlrpc_server_register_introspection_callback.html": "注册一个 PHP 函数用于生成文档", "xmlrpc_server_register_method.html": "注册一个 PHP 函数用于匹配 xmlrpc 方法名", "xmlrpc_set_type.html": "为一个 PHP 字符串值设置 xmlrpc 的类型、base64 或日期时间", "xmlwriter_end_attribute.html": "End attribute", "xmlwriter_end_cdata.html": "End current CDATA", "xmlwriter_end_comment.html": "Create end comment", "xmlwriter_end_document.html": "End current document", "xmlwriter_end_dtd.html": "End current DTD", "xmlwriter_end_dtd_attlist.html": "End current DTD AttList", "xmlwriter_end_dtd_element.html": "End current DTD element", "xmlwriter_end_dtd_entity.html": "End current DTD Entity", "xmlwriter_end_element.html": "End current element", "xmlwriter_end_pi.html": "End current PI", "xmlwriter_flush.html": "Flush current buffer", "xmlwriter_full_end_element.html": "End current element", "xmlwriter_open_memory.html": "Create new xmlwriter using memory for string output", "xmlwriter_open_uri.html": "Create new xmlwriter using source uri for output", "xmlwriter_output_memory.html": "Returns current buffer", "xmlwriter_set_indent.html": "Toggle indentation onoff", "xmlwriter_set_indent_string.html": "Set string used for indenting", "xmlwriter_start_attribute.html": "Create start attribute", "xmlwriter_start_attribute_ns.html": "Create start namespaced attribute", "xmlwriter_start_cdata.html": "Create start CDATA tag", "xmlwriter_start_comment.html": "Create start comment", "xmlwriter_start_document.html": "Create document tag", "xmlwriter_start_dtd.html": "Create start DTD tag", "xmlwriter_start_dtd_attlist.html": "Create start DTD AttList", "xmlwriter_start_dtd_element.html": "Create start DTD element", "xmlwriter_start_dtd_entity.html": "Create start DTD Entity", "xmlwriter_start_element.html": "Create start element tag", "xmlwriter_start_element_ns.html": "Create start namespaced element tag", "xmlwriter_start_pi.html": "Create start PI tag", "xmlwriter_text.html": "Write text", "xmlwriter_write_attribute.html": "Write full attribute", "xmlwriter_write_attribute_ns.html": "Write full namespaced attribute", "xmlwriter_write_cdata.html": "Write full CDATA tag", "xmlwriter_write_comment.html": "Write full comment tag", "xmlwriter_write_dtd.html": "Write full DTD tag", "xmlwriter_write_dtd_attlist.html": "Write full DTD AttList tag", "xmlwriter_write_dtd_element.html": "Write full DTD element tag", "xmlwriter_write_dtd_entity.html": "Write full DTD Entity tag", "xmlwriter_write_element.html": "Write full element tag", "xmlwriter_write_element_ns.html": "Write full namespaced element tag", "xmlwriter_write_pi.html": "Writes a PI", "xmlwriter_write_raw.html": "Write a raw XML text", "xml_error_string.html": "获取 XML 解析器的错误字符串", "xml_get_current_byte_index.html": "获取 XML 解析器的当前字节索引", "xml_get_current_column_number.html": "获取 XML 解析器的当前列号", "xml_get_current_line_number.html": "获取 XML 解析器的当前行号", "xml_get_error_code.html": "获取 XML 解析器错误代码", "xml_parse.html": "开始解析一个 XML 文档", "xml_parser_create.html": "建立一个 XML 解析器", "xml_parser_create_ns.html": "生成一个支持命名空间的 XML 解析器", "xml_parser_free.html": "释放指定的 XML 解析器", "xml_parser_get_option.html": "从 XML 解析器获取选项设置信息", "xml_parser_set_option.html": "为指定 XML 解析进行选项设置", "xml_parse_into_struct.html": "将 XML 数据解析到数组中", "xml_set_character_data_handler.html": "建立字符数据处理器", "xml_set_default_handler.html": "建立默认处理器", "xml_set_element_handler.html": "建立起始和终止元素处理器", "xml_set_end_namespace_decl_handler.html": "建立终止命名空间声明处理器", "xml_set_external_entity_ref_handler.html": "建立外部实体指向处理器", "xml_set_notation_decl_handler.html": "建立注释声明处理器", "xml_set_object.html": "在对象中使用 XML 解析器", "xml_set_processing_instruction_handler.html": "建立处理指令(PI)处理器", "xml_set_start_namespace_decl_handler.html": "建立起始命名空间声明处理器", "xml_set_unparsed_entity_decl_handler.html": "建立未解析实体定义声明处理器", "yaml_emit.html": "Returns the YAML representation of a value", "yaml_emit_file.html": "Send the YAML representation of a value to a file", "yaml_parse.html": "Parse a YAML stream", "yaml_parse_file.html": "Parse a YAML stream from a file", "yaml_parse_url.html": "Parse a Yaml stream from a URL", "yaz_addinfo.html": "Returns additional error information", "yaz_ccl_conf.html": "Configure CCL parser", "yaz_ccl_parse.html": "Invoke CCL Parser", "yaz_close.html": "Close YAZ connection", "yaz_connect.html": "Prepares for a connection to a Z39.50 server", "yaz_database.html": "Specifies the databases within a session", "yaz_element.html": "Specifies Element-Set Name for retrieval", "yaz_errno.html": "Returns error number", "yaz_es.html": "Prepares for an Extended Service Request", "yaz_es_result.html": "Inspects Extended Services Result", "yaz_get_option.html": "Returns value of option for connection", "yaz_hits.html": "Returns number of hits for last search", "yaz_itemorder.html": "Prepares for Z39.50 Item Order with an ILL-Request package", "yaz_present.html": "Prepares for retrieval (Z39.50 present)", "yaz_range.html": "Specifies a range of records to retrieve", "yaz_record.html": "Returns a record", "yaz_scan.html": "Prepares for a scan", "yaz_scan_result.html": "Returns Scan Response result", "yaz_schema.html": "Specifies schema for retrieval", "yaz_search.html": "Prepares for a search", "yaz_set_option.html": "Sets one or more options for connection", "yaz_sort.html": "Sets sorting criteria", "yaz_syntax.html": "Specifies the preferred record syntax for retrieval", "yaz_wait.html": "Wait for Z39.50 requests to complete", "yp_all.html": "Traverse the map and call a function on each entry", "yp_cat.html": "Return an array containing the entire map", "yp_errno.html": "Returns the error code of the previous operation", "yp_err_string.html": "Returns the error string associated with the given error code", "yp_first.html": "Returns the first key-value pair from the named map", "yp_get_default_domain.html": "Fetches the machine's default NIS domain", "yp_master.html": "Returns the machine name of the master NIS server for a map", "yp_match.html": "Returns the matched line", "yp_next.html": "Returns the next key-value pair in the named map", "yp_order.html": "Returns the order number for a map", "zend_logo_guid.html": "获取 Zend guid", "zend_thread_id.html": "返回当前线程的唯一识别符", "zend_version.html": "获取当前 Zend 引擎的版本", "zip_close.html": "关闭一个ZIP档案文件", "zip_entry_close.html": "关闭目录项", "zip_entry_compressedsize.html": "检索目录项压缩过后的大小", "zip_entry_compressionmethod.html": "检索目录实体的压缩方法", "zip_entry_filesize.html": "检索目录实体的实际大小", "zip_entry_name.html": "检索目录项的名称", "zip_entry_open.html": "打开用于读取的目录实体", "zip_entry_read.html": "读取一个打开了的压缩目录实体", "zip_open.html": "打开ZIP存档文件", "zip_read.html": "读取ZIP存档文件中下一项", "zlib_decode.html": "Uncompress any rawgzipzlib encoded data", "zlib_encode.html": "Compress data with the specified encoding", "zlib_get_coding_type.html": "Returns the coding type used for output compression", "zookeeper_dispatch.html": "Calls callbacks for pending operations" } \ No newline at end of file +{ "abs":{"name":"abs","type":"","path":"php/abs.html","desc":"绝对值"}, "acos":{"name":"acos","type":"","path":"php/acos.html","desc":"反余弦"}, "acosh":{"name":"acosh","type":"","path":"php/acosh.html","desc":"反双曲余弦"}, "addcslashes":{"name":"addcslashes","type":"","path":"php/addcslashes.html","desc":"以 C 语言风格使用反斜线转义字符串中的字符"}, "addslashes":{"name":"addslashes","type":"","path":"php/addslashes.html","desc":"使用反斜线引用字符串"}, "apache_child_terminate":{"name":"apache_child_terminate","type":"","path":"php/apache_child_terminate.html","desc":"在本次请求结束后终止 apache 子进程"}, "apache_getenv":{"name":"apache_getenv","type":"","path":"php/apache_getenv.html","desc":"获取 Apache subprocess_env 变量"}, "apache_get_modules":{"name":"apache_get_modules","type":"","path":"php/apache_get_modules.html","desc":"获得已加载的Apache模块列表"}, "apache_get_version":{"name":"apache_get_version","type":"","path":"php/apache_get_version.html","desc":"获得Apache版本信息"}, "apache_lookup_uri":{"name":"apache_lookup_uri","type":"","path":"php/apache_lookup_uri.html","desc":"对指定的 URI 执行部分请求并返回所有有关信息"}, "apache_note":{"name":"apache_note","type":"","path":"php/apache_note.html","desc":"取得或设置 apache 请求记录"}, "apache_request_headers":{"name":"apache_request_headers","type":"","path":"php/apache_request_headers.html","desc":"获取全部 HTTP 请求头信息"}, "apache_reset_timeout":{"name":"apache_reset_timeout","type":"","path":"php/apache_reset_timeout.html","desc":"重置 Apache 写入计时器"}, "apache_response_headers":{"name":"apache_response_headers","type":"","path":"php/apache_response_headers.html","desc":"获得全部 HTTP 响应头信息"}, "apache_setenv":{"name":"apache_setenv","type":"","path":"php/apache_setenv.html","desc":"设置 Apache 子进程环境变量"}, "apcu_add":{"name":"apcu_add","type":"","path":"php/apcu_add.html","desc":"Cache a new variable in the data store"}, "apcu_cache_info":{"name":"apcu_cache_info","type":"","path":"php/apcu_cache_info.html","desc":"Retrieves cached information from APCu's data store"}, "apcu_cas":{"name":"apcu_cas","type":"","path":"php/apcu_cas.html","desc":"Updates an old value with a new value"}, "apcu_clear_cache":{"name":"apcu_clear_cache","type":"","path":"php/apcu_clear_cache.html","desc":"Clears the APCu cache"}, "apcu_dec":{"name":"apcu_dec","type":"","path":"php/apcu_dec.html","desc":"Decrease a stored number"}, "apcu_delete":{"name":"apcu_delete","type":"","path":"php/apcu_delete.html","desc":"Removes a stored variable from the cache"}, "apcu_entry":{"name":"apcu_entry","type":"","path":"php/apcu_entry.html","desc":"Atomically fetch or generate a cache entry"}, "apcu_exists":{"name":"apcu_exists","type":"","path":"php/apcu_exists.html","desc":"Checks if entry exists"}, "apcu_fetch":{"name":"apcu_fetch","type":"","path":"php/apcu_fetch.html","desc":"Fetch a stored variable from the cache"}, "apcu_inc":{"name":"apcu_inc","type":"","path":"php/apcu_inc.html","desc":"Increase a stored number"}, "apcu_sma_info":{"name":"apcu_sma_info","type":"","path":"php/apcu_sma_info.html","desc":"Retrieves APCu Shared Memory Allocation information"}, "apcu_store":{"name":"apcu_store","type":"","path":"php/apcu_store.html","desc":"Cache a variable in the data store"}, "apc_add":{"name":"apc_add","type":"","path":"php/apc_add.html","desc":"缓存一个变量到数据存储"}, "apc_bin_dump":{"name":"apc_bin_dump","type":"","path":"php/apc_bin_dump.html","desc":"获取给定文件和变量的二进制文件转储。"}, "apc_bin_dumpfile":{"name":"apc_bin_dumpfile","type":"","path":"php/apc_bin_dumpfile.html","desc":"Output a binary dump of cached files and user variables to a file"}, "apc_bin_load":{"name":"apc_bin_load","type":"","path":"php/apc_bin_load.html","desc":"Load a binary dump into the APC fileuser cache"}, "apc_bin_loadfile":{"name":"apc_bin_loadfile","type":"","path":"php/apc_bin_loadfile.html","desc":"Load a binary dump from a file into the APC fileuser cache"}, "apc_cache_info":{"name":"apc_cache_info","type":"","path":"php/apc_cache_info.html","desc":"Retrieves cached information from APC's data store"}, "apc_cas":{"name":"apc_cas","type":"","path":"php/apc_cas.html","desc":"用新值更新旧值"}, "apc_clear_cache":{"name":"apc_clear_cache","type":"","path":"php/apc_clear_cache.html","desc":"清除APC缓存"}, "apc_compile_file":{"name":"apc_compile_file","type":"","path":"php/apc_compile_file.html","desc":"Stores a file in the bytecode cache, bypassing all filters"}, "apc_dec":{"name":"apc_dec","type":"","path":"php/apc_dec.html","desc":"Decrease a stored number"}, "apc_define_constants":{"name":"apc_define_constants","type":"","path":"php/apc_define_constants.html","desc":"Defines a set of constants for retrieval and mass-definition"}, "apc_delete":{"name":"apc_delete","type":"","path":"php/apc_delete.html","desc":"从用户缓存中删除某个变量"}, "apc_delete_file":{"name":"apc_delete_file","type":"","path":"php/apc_delete_file.html","desc":"Deletes files from the opcode cache"}, "apc_exists":{"name":"apc_exists","type":"","path":"php/apc_exists.html","desc":"检查APC中是否存在某个或者某些key"}, "apc_fetch":{"name":"apc_fetch","type":"","path":"php/apc_fetch.html","desc":"从缓存中取出存储的变量"}, "apc_inc":{"name":"apc_inc","type":"","path":"php/apc_inc.html","desc":"递增一个储存的数字"}, "apc_load_constants":{"name":"apc_load_constants","type":"","path":"php/apc_load_constants.html","desc":"Loads a set of constants from the cache"}, "apc_sma_info":{"name":"apc_sma_info","type":"","path":"php/apc_sma_info.html","desc":"Retrieves APC's Shared Memory Allocation information"}, "apc_store":{"name":"apc_store","type":"","path":"php/apc_store.html","desc":"Cache a variable in the data store"}, "apd_breakpoint":{"name":"apd_breakpoint","type":"","path":"php/apd_breakpoint.html","desc":"Stops the interpreter and waits on a CR from the socket"}, "apd_callstack":{"name":"apd_callstack","type":"","path":"php/apd_callstack.html","desc":"Returns the current call stack as an array"}, "apd_clunk":{"name":"apd_clunk","type":"","path":"php/apd_clunk.html","desc":"Throw a warning and a callstack"}, "apd_continue":{"name":"apd_continue","type":"","path":"php/apd_continue.html","desc":"Restarts the interpreter"}, "apd_croak":{"name":"apd_croak","type":"","path":"php/apd_croak.html","desc":"Throw an error, a callstack and then exit"}, "apd_dump_function_table":{"name":"apd_dump_function_table","type":"","path":"php/apd_dump_function_table.html","desc":"Outputs the current function table"}, "apd_dump_persistent_resources":{"name":"apd_dump_persistent_resources","type":"","path":"php/apd_dump_persistent_resources.html","desc":"Return all persistent resources as an array"}, "apd_dump_regular_resources":{"name":"apd_dump_regular_resources","type":"","path":"php/apd_dump_regular_resources.html","desc":"Return all current regular resources as an array"}, "apd_echo":{"name":"apd_echo","type":"","path":"php/apd_echo.html","desc":"Echo to the debugging socket"}, "apd_get_active_symbols":{"name":"apd_get_active_symbols","type":"","path":"php/apd_get_active_symbols.html","desc":"Get an array of the current variables names in the local scope"}, "apd_set_pprof_trace":{"name":"apd_set_pprof_trace","type":"","path":"php/apd_set_pprof_trace.html","desc":"Starts the session debugging"}, "apd_set_session":{"name":"apd_set_session","type":"","path":"php/apd_set_session.html","desc":"Changes or sets the current debugging level"}, "apd_set_session_trace":{"name":"apd_set_session_trace","type":"","path":"php/apd_set_session_trace.html","desc":"Starts the session debugging"}, "apd_set_session_trace_socket":{"name":"apd_set_session_trace_socket","type":"","path":"php/apd_set_session_trace_socket.html","desc":"Starts the remote session debugging"}, "array":{"name":"array","type":"","path":"php/array.html","desc":"新建一个数组"}, "array_change_key_case":{"name":"array_change_key_case","type":"","path":"php/array_change_key_case.html","desc":"将数组中的所有键名修改为全大写或小写"}, "array_chunk":{"name":"array_chunk","type":"","path":"php/array_chunk.html","desc":"将一个数组分割成多个"}, "array_column":{"name":"array_column","type":"","path":"php/array_column.html","desc":"返回数组中指定的一列"}, "array_combine":{"name":"array_combine","type":"","path":"php/array_combine.html","desc":"创建一个数组,用一个数组的值作为其键名,另一个数组的值作为其值"}, "array_count_values":{"name":"array_count_values","type":"","path":"php/array_count_values.html","desc":"统计数组中所有的值"}, "array_diff":{"name":"array_diff","type":"","path":"php/array_diff.html","desc":"计算数组的差集"}, "array_diff_assoc":{"name":"array_diff_assoc","type":"","path":"php/array_diff_assoc.html","desc":"带索引检查计算数组的差集"}, "array_diff_key":{"name":"array_diff_key","type":"","path":"php/array_diff_key.html","desc":"使用键名比较计算数组的差集"}, "array_diff_uassoc":{"name":"array_diff_uassoc","type":"","path":"php/array_diff_uassoc.html","desc":"用用户提供的回调函数做索引检查来计算数组的差集"}, "array_diff_ukey":{"name":"array_diff_ukey","type":"","path":"php/array_diff_ukey.html","desc":"用回调函数对键名比较计算数组的差集"}, "array_fill":{"name":"array_fill","type":"","path":"php/array_fill.html","desc":"用给定的值填充数组"}, "array_fill_keys":{"name":"array_fill_keys","type":"","path":"php/array_fill_keys.html","desc":"使用指定的键和值填充数组"}, "array_filter":{"name":"array_filter","type":"","path":"php/array_filter.html","desc":"用回调函数过滤数组中的单元"}, "array_flip":{"name":"array_flip","type":"","path":"php/array_flip.html","desc":"交换数组中的键和值"}, "array_intersect":{"name":"array_intersect","type":"","path":"php/array_intersect.html","desc":"计算数组的交集"}, "array_intersect_assoc":{"name":"array_intersect_assoc","type":"","path":"php/array_intersect_assoc.html","desc":"带索引检查计算数组的交集"}, "array_intersect_key":{"name":"array_intersect_key","type":"","path":"php/array_intersect_key.html","desc":"使用键名比较计算数组的交集"}, "array_intersect_uassoc":{"name":"array_intersect_uassoc","type":"","path":"php/array_intersect_uassoc.html","desc":"带索引检查计算数组的交集,用回调函数比较索引"}, "array_intersect_ukey":{"name":"array_intersect_ukey","type":"","path":"php/array_intersect_ukey.html","desc":"用回调函数比较键名来计算数组的交集"}, "array_keys":{"name":"array_keys","type":"","path":"php/array_keys.html","desc":"返回数组中部分的或所有的键名"}, "array_key_exists":{"name":"array_key_exists","type":"","path":"php/array_key_exists.html","desc":"检查数组里是否有指定的键名或索引"}, "array_key_first":{"name":"array_key_first","type":"","path":"php/array_key_first.html","desc":"Gets the first key of an array"}, "array_key_last":{"name":"array_key_last","type":"","path":"php/array_key_last.html","desc":"Gets the last key of an array"}, "array_map":{"name":"array_map","type":"","path":"php/array_map.html","desc":"为数组的每个元素应用回调函数"}, "array_merge":{"name":"array_merge","type":"","path":"php/array_merge.html","desc":"合并一个或多个数组"}, "array_merge_recursive":{"name":"array_merge_recursive","type":"","path":"php/array_merge_recursive.html","desc":"递归地合并一个或多个数组"}, "array_multisort":{"name":"array_multisort","type":"","path":"php/array_multisort.html","desc":"对多个数组或多维数组进行排序"}, "array_pad":{"name":"array_pad","type":"","path":"php/array_pad.html","desc":"以指定长度将一个值填充进数组"}, "array_pop":{"name":"array_pop","type":"","path":"php/array_pop.html","desc":"弹出数组最后一个单元(出栈)"}, "array_product":{"name":"array_product","type":"","path":"php/array_product.html","desc":"计算数组中所有值的乘积"}, "array_push":{"name":"array_push","type":"","path":"php/array_push.html","desc":"将一个或多个单元压入数组的末尾(入栈)"}, "array_rand":{"name":"array_rand","type":"","path":"php/array_rand.html","desc":"从数组中随机取出一个或多个单元"}, "array_reduce":{"name":"array_reduce","type":"","path":"php/array_reduce.html","desc":"用回调函数迭代地将数组简化为单一的值"}, "array_replace":{"name":"array_replace","type":"","path":"php/array_replace.html","desc":"使用传递的数组替换第一个数组的元素"}, "array_replace_recursive":{"name":"array_replace_recursive","type":"","path":"php/array_replace_recursive.html","desc":"使用传递的数组递归替换第一个数组的元素"}, "array_reverse":{"name":"array_reverse","type":"","path":"php/array_reverse.html","desc":"返回单元顺序相反的数组"}, "array_search":{"name":"array_search","type":"","path":"php/array_search.html","desc":"在数组中搜索给定的值,如果成功则返回首个相应的键名"}, "array_shift":{"name":"array_shift","type":"","path":"php/array_shift.html","desc":"将数组开头的单元移出数组"}, "array_slice":{"name":"array_slice","type":"","path":"php/array_slice.html","desc":"从数组中取出一段"}, "array_splice":{"name":"array_splice","type":"","path":"php/array_splice.html","desc":"去掉数组中的某一部分并用其它值取代"}, "array_sum":{"name":"array_sum","type":"","path":"php/array_sum.html","desc":"对数组中所有值求和"}, "array_udiff":{"name":"array_udiff","type":"","path":"php/array_udiff.html","desc":"用回调函数比较数据来计算数组的差集"}, "array_udiff_assoc":{"name":"array_udiff_assoc","type":"","path":"php/array_udiff_assoc.html","desc":"带索引检查计算数组的差集,用回调函数比较数据"}, "array_udiff_uassoc":{"name":"array_udiff_uassoc","type":"","path":"php/array_udiff_uassoc.html","desc":"带索引检查计算数组的差集,用回调函数比较数据和索引"}, "array_uintersect":{"name":"array_uintersect","type":"","path":"php/array_uintersect.html","desc":"计算数组的交集,用回调函数比较数据"}, "array_uintersect_assoc":{"name":"array_uintersect_assoc","type":"","path":"php/array_uintersect_assoc.html","desc":"带索引检查计算数组的交集,用回调函数比较数据"}, "array_uintersect_uassoc":{"name":"array_uintersect_uassoc","type":"","path":"php/array_uintersect_uassoc.html","desc":"带索引检查计算数组的交集,用单独的回调函数比较数据和索引"}, "array_unique":{"name":"array_unique","type":"","path":"php/array_unique.html","desc":"移除数组中重复的值"}, "array_unshift":{"name":"array_unshift","type":"","path":"php/array_unshift.html","desc":"在数组开头插入一个或多个单元"}, "array_values":{"name":"array_values","type":"","path":"php/array_values.html","desc":"返回数组中所有的值"}, "array_walk":{"name":"array_walk","type":"","path":"php/array_walk.html","desc":"使用用户自定义函数对数组中的每个元素做回调处理"}, "array_walk_recursive":{"name":"array_walk_recursive","type":"","path":"php/array_walk_recursive.html","desc":"对数组中的每个成员递归地应用用户函数"}, "arsort":{"name":"arsort","type":"","path":"php/arsort.html","desc":"对数组进行逆向排序并保持索引关系"}, "asin":{"name":"asin","type":"","path":"php/asin.html","desc":"反正弦"}, "asinh":{"name":"asinh","type":"","path":"php/asinh.html","desc":"反双曲正弦"}, "asort":{"name":"asort","type":"","path":"php/asort.html","desc":"对数组进行排序并保持索引关系"}, "assert":{"name":"assert","type":"","path":"php/assert.html","desc":"检查一个断言是否为 FALSE"}, "assert_options":{"name":"assert_options","type":"","path":"php/assert_options.html","desc":"设置获取断言的各种标志"}, "atan":{"name":"atan","type":"","path":"php/atan.html","desc":"反正切"}, "atan2":{"name":"atan2","type":"","path":"php/atan2.html","desc":"两个参数的反正切"}, "atanh":{"name":"atanh","type":"","path":"php/atanh.html","desc":"反双曲正切"}, "autoload":{"name":"autoload","type":"","path":"php/autoload.html","desc":"尝试加载未定义的类"}, "base64_decode":{"name":"base64_decode","type":"","path":"php/base64_decode.html","desc":"对使用 MIME base64 编码的数据进行解码"}, "base64_encode":{"name":"base64_encode","type":"","path":"php/base64_encode.html","desc":"使用 MIME base64 对数据进行编码"}, "basename":{"name":"basename","type":"","path":"php/basename.html","desc":"返回路径中的文件名部分"}, "base_convert":{"name":"base_convert","type":"","path":"php/base_convert.html","desc":"在任意进制之间转换数字"}, "bbcode_add_element":{"name":"bbcode_add_element","type":"","path":"php/bbcode_add_element.html","desc":"Adds a bbcode element"}, "bbcode_add_smiley":{"name":"bbcode_add_smiley","type":"","path":"php/bbcode_add_smiley.html","desc":"Adds a smiley to the parser"}, "bbcode_create":{"name":"bbcode_create","type":"","path":"php/bbcode_create.html","desc":"Create a BBCode Resource"}, "bbcode_destroy":{"name":"bbcode_destroy","type":"","path":"php/bbcode_destroy.html","desc":"Close BBCode_container resource"}, "bbcode_parse":{"name":"bbcode_parse","type":"","path":"php/bbcode_parse.html","desc":"Parse a string following a given rule set"}, "bbcode_set_arg_parser":{"name":"bbcode_set_arg_parser","type":"","path":"php/bbcode_set_arg_parser.html","desc":"Attach another parser in order to use another rule set for argument parsing"}, "bbcode_set_flags":{"name":"bbcode_set_flags","type":"","path":"php/bbcode_set_flags.html","desc":"Set or alter parser options"}, "bcadd":{"name":"bcadd","type":"","path":"php/bcadd.html","desc":"2个任意精度数字的加法计算"}, "bccomp":{"name":"bccomp","type":"","path":"php/bccomp.html","desc":"比较两个任意精度的数字"}, "bcdiv":{"name":"bcdiv","type":"","path":"php/bcdiv.html","desc":"2个任意精度的数字除法计算"}, "bcmod":{"name":"bcmod","type":"","path":"php/bcmod.html","desc":"对一个任意精度数字取模"}, "bcmul":{"name":"bcmul","type":"","path":"php/bcmul.html","desc":"2个任意精度数字乘法计算"}, "bcompiler_load":{"name":"bcompiler_load","type":"","path":"php/bcompiler_load.html","desc":"从一个 bz 压缩过的文件中读取并创建类"}, "bcompiler_load_exe":{"name":"bcompiler_load_exe","type":"","path":"php/bcompiler_load_exe.html","desc":"从一个 bcompiler exe 文件中读取并创建类"}, "bcompiler_parse_class":{"name":"bcompiler_parse_class","type":"","path":"php/bcompiler_parse_class.html","desc":"读取一个类的字节码并回调一个用户的函数"}, "bcompiler_read":{"name":"bcompiler_read","type":"","path":"php/bcompiler_read.html","desc":"从一个文件句柄中读取并创建类"}, "bcompiler_write_class":{"name":"bcompiler_write_class","type":"","path":"php/bcompiler_write_class.html","desc":"写入定义过的类的字节码"}, "bcompiler_write_constant":{"name":"bcompiler_write_constant","type":"","path":"php/bcompiler_write_constant.html","desc":"写入定义过的常量的字节码"}, "bcompiler_write_exe_footer":{"name":"bcompiler_write_exe_footer","type":"","path":"php/bcompiler_write_exe_footer.html","desc":"写入开始位置以及 exe 类型文件的结尾信号"}, "bcompiler_write_file":{"name":"bcompiler_write_file","type":"","path":"php/bcompiler_write_file.html","desc":"写入 PHP 源码文件的字节码"}, "bcompiler_write_footer":{"name":"bcompiler_write_footer","type":"","path":"php/bcompiler_write_footer.html","desc":"写入单个字符 x00 用于标识编译数据的结尾"}, "bcompiler_write_function":{"name":"bcompiler_write_function","type":"","path":"php/bcompiler_write_function.html","desc":"以字节码写入定义过的函数"}, "bcompiler_write_functions_from_file":{"name":"bcompiler_write_functions_from_file","type":"","path":"php/bcompiler_write_functions_from_file.html","desc":"以字节码写入一个文件中定义过的所以函数"}, "bcompiler_write_header":{"name":"bcompiler_write_header","type":"","path":"php/bcompiler_write_header.html","desc":"写入 bcompiler 头"}, "bcompiler_write_included_filename":{"name":"bcompiler_write_included_filename","type":"","path":"php/bcompiler_write_included_filename.html","desc":"写入一个包含的文件的字节码"}, "bcpow":{"name":"bcpow","type":"","path":"php/bcpow.html","desc":"任意精度数字的乘方"}, "bcpowmod":{"name":"bcpowmod","type":"","path":"php/bcpowmod.html","desc":"Raise an arbitrary precision number to another, reduced by a specified modulus"}, "bcscale":{"name":"bcscale","type":"","path":"php/bcscale.html","desc":"设置所有bc数学函数的默认小数点保留位数"}, "bcsqrt":{"name":"bcsqrt","type":"","path":"php/bcsqrt.html","desc":"任意精度数字的二次方根"}, "bcsub":{"name":"bcsub","type":"","path":"php/bcsub.html","desc":"2个任意精度数字的减法"}, "bin2hex":{"name":"bin2hex","type":"","path":"php/bin2hex.html","desc":"函数把包含数据的二进制字符串转换为十六进制值"}, "bindec":{"name":"bindec","type":"","path":"php/bindec.html","desc":"二进制转换为十进制"}, "bindtextdomain":{"name":"bindtextdomain","type":"","path":"php/bindtextdomain.html","desc":"Sets the path for a domain"}, "bind_textdomain_codeset":{"name":"bind_textdomain_codeset","type":"","path":"php/bind_textdomain_codeset.html","desc":"Specify the character encoding in which the messages from the DOMAIN message catalog will be returned"}, "blenc_encrypt":{"name":"blenc_encrypt","type":"","path":"php/blenc_encrypt.html","desc":"Encrypt a PHP script with BLENC"}, "boolval":{"name":"boolval","type":"","path":"php/boolval.html","desc":"获取变量的布尔值"}, "bson_decode":{"name":"bson_decode","type":"","path":"php/bson_decode.html","desc":"反序列化一个 BSON 对象为 PHP 数组"}, "bson_encode":{"name":"bson_encode","type":"","path":"php/bson_encode.html","desc":"序列化一个 PHP 变量为 BSON 字符串"}, "bzclose":{"name":"bzclose","type":"","path":"php/bzclose.html","desc":"关闭一个 bzip2 文件"}, "bzcompress":{"name":"bzcompress","type":"","path":"php/bzcompress.html","desc":"把一个字符串压缩成 bzip2 编码数据"}, "bzdecompress":{"name":"bzdecompress","type":"","path":"php/bzdecompress.html","desc":"解压经 bzip2 编码过的数据"}, "bzerrno":{"name":"bzerrno","type":"","path":"php/bzerrno.html","desc":"返回一个 bzip2 错误码"}, "bzerror":{"name":"bzerror","type":"","path":"php/bzerror.html","desc":"返回包含 bzip2 错误号和错误字符串的一个 array"}, "bzerrstr":{"name":"bzerrstr","type":"","path":"php/bzerrstr.html","desc":"返回一个 bzip2 的错误字符串"}, "bzflush":{"name":"bzflush","type":"","path":"php/bzflush.html","desc":"强制写入所有写缓冲区的数据"}, "bzopen":{"name":"bzopen","type":"","path":"php/bzopen.html","desc":"打开 bzip2 压缩文件"}, "bzread":{"name":"bzread","type":"","path":"php/bzread.html","desc":"bzip2 文件二进制安全地读取"}, "bzwrite":{"name":"bzwrite","type":"","path":"php/bzwrite.html","desc":"二进制安全地写入 bzip2 文件"}, "cairo_create":{"name":"cairo_create","type":"","path":"php/cairo_create.html","desc":"Returns a new CairoContext object on the requested surface"}, "cairo_matrix_create_scale":{"name":"cairo_matrix_create_scale","type":"","path":"php/cairo_matrix_create_scale.html","desc":"别名 CairoMatrixinitScale"}, "cairo_matrix_create_translate":{"name":"cairo_matrix_create_translate","type":"","path":"php/cairo_matrix_create_translate.html","desc":"别名 CairoMatrixinitTranslate"}, "call_user_func":{"name":"call_user_func","type":"","path":"php/call_user_func.html","desc":"把第一个参数作为回调函数调用"}, "call_user_func_array":{"name":"call_user_func_array","type":"","path":"php/call_user_func_array.html","desc":"调用回调函数,并把一个数组参数作为回调函数的参数"}, "call_user_method":{"name":"call_user_method","type":"","path":"php/call_user_method.html","desc":"对特定对象调用用户方法"}, "call_user_method_array":{"name":"call_user_method_array","type":"","path":"php/call_user_method_array.html","desc":"以参数列表的数组,调用用户方法"}, "cal_days_in_month":{"name":"cal_days_in_month","type":"","path":"php/cal_days_in_month.html","desc":"返回某个历法中某年中某月的天数"}, "cal_from_jd":{"name":"cal_from_jd","type":"","path":"php/cal_from_jd.html","desc":"转换Julian Day计数到一个支持的历法。"}, "cal_info":{"name":"cal_info","type":"","path":"php/cal_info.html","desc":"返回选定历法的信息"}, "cal_to_jd":{"name":"cal_to_jd","type":"","path":"php/cal_to_jd.html","desc":"从一个支持的历法转变为Julian Day计数。"}, "ceil":{"name":"ceil","type":"","path":"php/ceil.html","desc":"进一法取整"}, "chdb_create":{"name":"chdb_create","type":"","path":"php/chdb_create.html","desc":"Creates a chdb file"}, "chdir":{"name":"chdir","type":"","path":"php/chdir.html","desc":"改变目录"}, "checkdate":{"name":"checkdate","type":"","path":"php/checkdate.html","desc":"验证一个格里高里日期"}, "checkdnsrr":{"name":"checkdnsrr","type":"","path":"php/checkdnsrr.html","desc":"给指定的主机(域名)或者IP地址做DNS通信检查"}, "chgrp":{"name":"chgrp","type":"","path":"php/chgrp.html","desc":"改变文件所属的组"}, "chmod":{"name":"chmod","type":"","path":"php/chmod.html","desc":"改变文件模式"}, "chop":{"name":"chop","type":"","path":"php/chop.html","desc":"rtrim 的别名"}, "chown":{"name":"chown","type":"","path":"php/chown.html","desc":"改变文件的所有者"}, "chr":{"name":"chr","type":"","path":"php/chr.html","desc":"返回指定的字符"}, "chroot":{"name":"chroot","type":"","path":"php/chroot.html","desc":"改变根目录"}, "chunk_split":{"name":"chunk_split","type":"","path":"php/chunk_split.html","desc":"将字符串分割成小块"}, "classkit_import":{"name":"classkit_import","type":"","path":"php/classkit_import.html","desc":"Import new class method definitions from a file"}, "classkit_method_add":{"name":"classkit_method_add","type":"","path":"php/classkit_method_add.html","desc":"Dynamically adds a new method to a given class"}, "classkit_method_copy":{"name":"classkit_method_copy","type":"","path":"php/classkit_method_copy.html","desc":"Copies a method from class to another"}, "classkit_method_redefine":{"name":"classkit_method_redefine","type":"","path":"php/classkit_method_redefine.html","desc":"Dynamically changes the code of the given method"}, "classkit_method_remove":{"name":"classkit_method_remove","type":"","path":"php/classkit_method_remove.html","desc":"Dynamically removes the given method"}, "classkit_method_rename":{"name":"classkit_method_rename","type":"","path":"php/classkit_method_rename.html","desc":"Dynamically changes the name of the given method"}, "class_alias":{"name":"class_alias","type":"","path":"php/class_alias.html","desc":"为一个类创建别名"}, "class_exists":{"name":"class_exists","type":"","path":"php/class_exists.html","desc":"检查类是否已定义"}, "class_implements":{"name":"class_implements","type":"","path":"php/class_implements.html","desc":"返回指定的类实现的所有接口。"}, "class_parents":{"name":"class_parents","type":"","path":"php/class_parents.html","desc":"返回指定类的父类。"}, "class_uses":{"name":"class_uses","type":"","path":"php/class_uses.html","desc":"Return the traits used by the given class"}, "clearstatcache":{"name":"clearstatcache","type":"","path":"php/clearstatcache.html","desc":"清除文件状态缓存"}, "cli_get_process_title":{"name":"cli_get_process_title","type":"","path":"php/cli_get_process_title.html","desc":"Returns the current process title"}, "cli_set_process_title":{"name":"cli_set_process_title","type":"","path":"php/cli_set_process_title.html","desc":"Sets the process title"}, "closedir":{"name":"closedir","type":"","path":"php/closedir.html","desc":"关闭目录句柄"}, "closelog":{"name":"closelog","type":"","path":"php/closelog.html","desc":"关闭系统日志链接"}, "commonmark_parse":{"name":"commonmark_parse","type":"","path":"php/commonmark_parse.html","desc":"Parsing"}, "commonmark_render":{"name":"commonmark_render","type":"","path":"php/commonmark_render.html","desc":"Rendering"}, "commonmark_render_function":{"name":"commonmark_render_function","type":"","path":"php/commonmark_render_function.html","desc":"Rendering"}, "commonmark_render_latex":{"name":"commonmark_render_latex","type":"","path":"php/commonmark_render_latex.html","desc":"Rendering"}, "commonmark_render_man":{"name":"commonmark_render_man","type":"","path":"php/commonmark_render_man.html","desc":"Rendering"}, "commonmark_render_xml":{"name":"commonmark_render_xml","type":"","path":"php/commonmark_render_xml.html","desc":"Rendering"}, "compact":{"name":"compact","type":"","path":"php/compact.html","desc":"建立一个数组,包括变量名和它们的值"}, "com_create_guid":{"name":"com_create_guid","type":"","path":"php/com_create_guid.html","desc":"Generate a globally unique identifier (GUID)"}, "com_event_sink":{"name":"com_event_sink","type":"","path":"php/com_event_sink.html","desc":"Connect events from a COM object to a PHP object"}, "com_get_active_object":{"name":"com_get_active_object","type":"","path":"php/com_get_active_object.html","desc":"Returns a handle to an already running instance of a COM object"}, "com_load_typelib":{"name":"com_load_typelib","type":"","path":"php/com_load_typelib.html","desc":"装载一个 Typelib"}, "com_message_pump":{"name":"com_message_pump","type":"","path":"php/com_message_pump.html","desc":"Process COM messages, sleeping for up to timeoutms milliseconds"}, "com_print_typeinfo":{"name":"com_print_typeinfo","type":"","path":"php/com_print_typeinfo.html","desc":"Print out a PHP class definition for a dispatchable interface"}, "connection_aborted":{"name":"connection_aborted","type":"","path":"php/connection_aborted.html","desc":"检查客户端是否已经断开"}, "connection_status":{"name":"connection_status","type":"","path":"php/connection_status.html","desc":"返回连接的状态位"}, "constant":{"name":"constant","type":"","path":"php/constant.html","desc":"返回一个常量的值"}, "convert_cyr_string":{"name":"convert_cyr_string","type":"","path":"php/convert_cyr_string.html","desc":"将字符由一种 Cyrillic 字符转换成另一种"}, "convert_uudecode":{"name":"convert_uudecode","type":"","path":"php/convert_uudecode.html","desc":"解码一个 uuencode 编码的字符串"}, "convert_uuencode":{"name":"convert_uuencode","type":"","path":"php/convert_uuencode.html","desc":"使用 uuencode 编码一个字符串"}, "copy":{"name":"copy","type":"","path":"php/copy.html","desc":"拷贝文件"}, "cos":{"name":"cos","type":"","path":"php/cos.html","desc":"余弦"}, "cosh":{"name":"cosh","type":"","path":"php/cosh.html","desc":"双曲余弦"}, "count":{"name":"count","type":"","path":"php/count.html","desc":"计算数组中的单元数目,或对象中的属性个数"}, "count_chars":{"name":"count_chars","type":"","path":"php/count_chars.html","desc":"返回字符串所用字符的信息"}, "crack_check":{"name":"crack_check","type":"","path":"php/crack_check.html","desc":"用给定的密码来进行破解测试"}, "crack_closedict":{"name":"crack_closedict","type":"","path":"php/crack_closedict.html","desc":"Closes an open CrackLib dictionary"}, "crack_getlastmessage":{"name":"crack_getlastmessage","type":"","path":"php/crack_getlastmessage.html","desc":"Returns the message from the last obscure check"}, "crack_opendict":{"name":"crack_opendict","type":"","path":"php/crack_opendict.html","desc":"Opens a new CrackLib dictionary"}, "crc32":{"name":"crc32","type":"","path":"php/crc32.html","desc":"计算一个字符串的 crc32 多项式"}, "create_function":{"name":"create_function","type":"","path":"php/create_function.html","desc":"Create an anonymous (lambda-style) function"}, "crypt":{"name":"crypt","type":"","path":"php/crypt.html","desc":"单向字符串散列"}, "ctype_alnum":{"name":"ctype_alnum","type":"","path":"php/ctype_alnum.html","desc":"做字母和数字字符检测"}, "ctype_alpha":{"name":"ctype_alpha","type":"","path":"php/ctype_alpha.html","desc":"做纯字符检测"}, "ctype_cntrl":{"name":"ctype_cntrl","type":"","path":"php/ctype_cntrl.html","desc":"做控制字符检测"}, "ctype_digit":{"name":"ctype_digit","type":"","path":"php/ctype_digit.html","desc":"做纯数字检测"}, "ctype_graph":{"name":"ctype_graph","type":"","path":"php/ctype_graph.html","desc":"做可打印字符串检测,空格除外"}, "ctype_lower":{"name":"ctype_lower","type":"","path":"php/ctype_lower.html","desc":"做小写字符检测"}, "ctype_print":{"name":"ctype_print","type":"","path":"php/ctype_print.html","desc":"做可打印字符检测"}, "ctype_punct":{"name":"ctype_punct","type":"","path":"php/ctype_punct.html","desc":"检测可打印的字符是不是不包含空白、数字和字母"}, "ctype_space":{"name":"ctype_space","type":"","path":"php/ctype_space.html","desc":"做空白字符检测"}, "ctype_upper":{"name":"ctype_upper","type":"","path":"php/ctype_upper.html","desc":"做大写字母检测"}, "ctype_xdigit":{"name":"ctype_xdigit","type":"","path":"php/ctype_xdigit.html","desc":"检测字符串是否只包含十六进制字符"}, "cubrid_affected_rows":{"name":"cubrid_affected_rows","type":"","path":"php/cubrid_affected_rows.html","desc":"Return the number of rows affected by the last SQL statement"}, "cubrid_bind":{"name":"cubrid_bind","type":"","path":"php/cubrid_bind.html","desc":"Bind variables to a prepared statement as parameters"}, "cubrid_client_encoding":{"name":"cubrid_client_encoding","type":"","path":"php/cubrid_client_encoding.html","desc":"Return the current CUBRID connection charset"}, "cubrid_close":{"name":"cubrid_close","type":"","path":"php/cubrid_close.html","desc":"Close CUBRID connection"}, "cubrid_close_prepare":{"name":"cubrid_close_prepare","type":"","path":"php/cubrid_close_prepare.html","desc":"Close the request handle"}, "cubrid_close_request":{"name":"cubrid_close_request","type":"","path":"php/cubrid_close_request.html","desc":"Close the request handle"}, "cubrid_column_names":{"name":"cubrid_column_names","type":"","path":"php/cubrid_column_names.html","desc":"Get the column names in result"}, "cubrid_column_types":{"name":"cubrid_column_types","type":"","path":"php/cubrid_column_types.html","desc":"Get column types in result"}, "cubrid_col_get":{"name":"cubrid_col_get","type":"","path":"php/cubrid_col_get.html","desc":"Get contents of collection type column using OID"}, "cubrid_col_size":{"name":"cubrid_col_size","type":"","path":"php/cubrid_col_size.html","desc":"Get the number of elements in collection type column using OID"}, "cubrid_commit":{"name":"cubrid_commit","type":"","path":"php/cubrid_commit.html","desc":"Commit a transaction"}, "cubrid_connect":{"name":"cubrid_connect","type":"","path":"php/cubrid_connect.html","desc":"Open a connection to a CUBRID Server"}, "cubrid_connect_with_url":{"name":"cubrid_connect_with_url","type":"","path":"php/cubrid_connect_with_url.html","desc":"Establish the environment for connecting to CUBRID server"}, "cubrid_current_oid":{"name":"cubrid_current_oid","type":"","path":"php/cubrid_current_oid.html","desc":"Get OID of the current cursor location"}, "cubrid_data_seek":{"name":"cubrid_data_seek","type":"","path":"php/cubrid_data_seek.html","desc":"Move the internal row pointer of the CUBRID result"}, "cubrid_db_name":{"name":"cubrid_db_name","type":"","path":"php/cubrid_db_name.html","desc":"Get db name from results of cubrid_list_dbs"}, "cubrid_disconnect":{"name":"cubrid_disconnect","type":"","path":"php/cubrid_disconnect.html","desc":"Close a database connection"}, "cubrid_drop":{"name":"cubrid_drop","type":"","path":"php/cubrid_drop.html","desc":"Delete an instance using OID"}, "cubrid_errno":{"name":"cubrid_errno","type":"","path":"php/cubrid_errno.html","desc":"Return the numerical value of the error message from previous CUBRID operation"}, "cubrid_error":{"name":"cubrid_error","type":"","path":"php/cubrid_error.html","desc":"Get the error message"}, "cubrid_error_code":{"name":"cubrid_error_code","type":"","path":"php/cubrid_error_code.html","desc":"Get error code for the most recent function call"}, "cubrid_error_code_facility":{"name":"cubrid_error_code_facility","type":"","path":"php/cubrid_error_code_facility.html","desc":"Get the facility code of error"}, "cubrid_error_msg":{"name":"cubrid_error_msg","type":"","path":"php/cubrid_error_msg.html","desc":"Get last error message for the most recent function call"}, "cubrid_execute":{"name":"cubrid_execute","type":"","path":"php/cubrid_execute.html","desc":"Execute a prepared SQL statement"}, "cubrid_fetch":{"name":"cubrid_fetch","type":"","path":"php/cubrid_fetch.html","desc":"Fetch the next row from a result set"}, "cubrid_fetch_array":{"name":"cubrid_fetch_array","type":"","path":"php/cubrid_fetch_array.html","desc":"Fetch a result row as an associative array, a numeric array, or both"}, "cubrid_fetch_assoc":{"name":"cubrid_fetch_assoc","type":"","path":"php/cubrid_fetch_assoc.html","desc":"Return the associative array that corresponds to the fetched row"}, "cubrid_fetch_field":{"name":"cubrid_fetch_field","type":"","path":"php/cubrid_fetch_field.html","desc":"Get column information from a result and return as an object"}, "cubrid_fetch_lengths":{"name":"cubrid_fetch_lengths","type":"","path":"php/cubrid_fetch_lengths.html","desc":"Return an array with the lengths of the values of each field from the current row"}, "cubrid_fetch_object":{"name":"cubrid_fetch_object","type":"","path":"php/cubrid_fetch_object.html","desc":"Fetch the next row and return it as an object"}, "cubrid_fetch_row":{"name":"cubrid_fetch_row","type":"","path":"php/cubrid_fetch_row.html","desc":"Return a numerical array with the values of the current row"}, "cubrid_field_flags":{"name":"cubrid_field_flags","type":"","path":"php/cubrid_field_flags.html","desc":"Return a string with the flags of the given field offset"}, "cubrid_field_len":{"name":"cubrid_field_len","type":"","path":"php/cubrid_field_len.html","desc":"Get the maximum length of the specified field"}, "cubrid_field_name":{"name":"cubrid_field_name","type":"","path":"php/cubrid_field_name.html","desc":"Return the name of the specified field index"}, "cubrid_field_seek":{"name":"cubrid_field_seek","type":"","path":"php/cubrid_field_seek.html","desc":"Move the result set cursor to the specified field offset"}, "cubrid_field_table":{"name":"cubrid_field_table","type":"","path":"php/cubrid_field_table.html","desc":"Return the name of the table of the specified field"}, "cubrid_field_type":{"name":"cubrid_field_type","type":"","path":"php/cubrid_field_type.html","desc":"Return the type of the column corresponding to the given field offset"}, "cubrid_free_result":{"name":"cubrid_free_result","type":"","path":"php/cubrid_free_result.html","desc":"Free the memory occupied by the result data"}, "cubrid_get":{"name":"cubrid_get","type":"","path":"php/cubrid_get.html","desc":"Get a column using OID"}, "cubrid_get_autocommit":{"name":"cubrid_get_autocommit","type":"","path":"php/cubrid_get_autocommit.html","desc":"Get auto-commit mode of the connection"}, "cubrid_get_charset":{"name":"cubrid_get_charset","type":"","path":"php/cubrid_get_charset.html","desc":"Return the current CUBRID connection charset"}, "cubrid_get_class_name":{"name":"cubrid_get_class_name","type":"","path":"php/cubrid_get_class_name.html","desc":"Get the class name using OID"}, "cubrid_get_client_info":{"name":"cubrid_get_client_info","type":"","path":"php/cubrid_get_client_info.html","desc":"Return the client library version"}, "cubrid_get_db_parameter":{"name":"cubrid_get_db_parameter","type":"","path":"php/cubrid_get_db_parameter.html","desc":"Returns the CUBRID database parameters"}, "cubrid_get_query_timeout":{"name":"cubrid_get_query_timeout","type":"","path":"php/cubrid_get_query_timeout.html","desc":"Get the query timeout value of the request"}, "cubrid_get_server_info":{"name":"cubrid_get_server_info","type":"","path":"php/cubrid_get_server_info.html","desc":"Return the CUBRID server version"}, "cubrid_insert_id":{"name":"cubrid_insert_id","type":"","path":"php/cubrid_insert_id.html","desc":"Return the ID generated for the last updated AUTO_INCREMENT column"}, "cubrid_is_instance":{"name":"cubrid_is_instance","type":"","path":"php/cubrid_is_instance.html","desc":"Check whether the instance pointed by OID exists"}, "cubrid_list_dbs":{"name":"cubrid_list_dbs","type":"","path":"php/cubrid_list_dbs.html","desc":"Return an array with the list of all existing CUBRID databases"}, "cubrid_load_from_glo":{"name":"cubrid_load_from_glo","type":"","path":"php/cubrid_load_from_glo.html","desc":"Read data from a GLO instance and save it in a file"}, "cubrid_lob2_bind":{"name":"cubrid_lob2_bind","type":"","path":"php/cubrid_lob2_bind.html","desc":"Bind a lob object or a string as a lob object to a prepared statement as parameters"}, "cubrid_lob2_close":{"name":"cubrid_lob2_close","type":"","path":"php/cubrid_lob2_close.html","desc":"Close LOB object"}, "cubrid_lob2_export":{"name":"cubrid_lob2_export","type":"","path":"php/cubrid_lob2_export.html","desc":"Export the lob object to a file"}, "cubrid_lob2_import":{"name":"cubrid_lob2_import","type":"","path":"php/cubrid_lob2_import.html","desc":"Import BLOBCLOB data from a file"}, "cubrid_lob2_new":{"name":"cubrid_lob2_new","type":"","path":"php/cubrid_lob2_new.html","desc":"Create a lob object"}, "cubrid_lob2_read":{"name":"cubrid_lob2_read","type":"","path":"php/cubrid_lob2_read.html","desc":"Read from BLOBCLOB data"}, "cubrid_lob2_seek":{"name":"cubrid_lob2_seek","type":"","path":"php/cubrid_lob2_seek.html","desc":"Move the cursor of a lob object"}, "cubrid_lob2_seek64":{"name":"cubrid_lob2_seek64","type":"","path":"php/cubrid_lob2_seek64.html","desc":"Move the cursor of a lob object"}, "cubrid_lob2_size":{"name":"cubrid_lob2_size","type":"","path":"php/cubrid_lob2_size.html","desc":"Get a lob object's size"}, "cubrid_lob2_size64":{"name":"cubrid_lob2_size64","type":"","path":"php/cubrid_lob2_size64.html","desc":"Get a lob object's size"}, "cubrid_lob2_tell":{"name":"cubrid_lob2_tell","type":"","path":"php/cubrid_lob2_tell.html","desc":"Tell the cursor position of the LOB object"}, "cubrid_lob2_tell64":{"name":"cubrid_lob2_tell64","type":"","path":"php/cubrid_lob2_tell64.html","desc":"Tell the cursor position of the LOB object"}, "cubrid_lob2_write":{"name":"cubrid_lob2_write","type":"","path":"php/cubrid_lob2_write.html","desc":"Write to a lob object"}, "cubrid_lob_close":{"name":"cubrid_lob_close","type":"","path":"php/cubrid_lob_close.html","desc":"Close BLOBCLOB data"}, "cubrid_lob_export":{"name":"cubrid_lob_export","type":"","path":"php/cubrid_lob_export.html","desc":"Export BLOBCLOB data to file"}, "cubrid_lob_get":{"name":"cubrid_lob_get","type":"","path":"php/cubrid_lob_get.html","desc":"Get BLOBCLOB data"}, "cubrid_lob_send":{"name":"cubrid_lob_send","type":"","path":"php/cubrid_lob_send.html","desc":"Read BLOBCLOB data and send straight to browser"}, "cubrid_lob_size":{"name":"cubrid_lob_size","type":"","path":"php/cubrid_lob_size.html","desc":"Get BLOBCLOB data size"}, "cubrid_lock_read":{"name":"cubrid_lock_read","type":"","path":"php/cubrid_lock_read.html","desc":"Set a read lock on the given OID"}, "cubrid_lock_write":{"name":"cubrid_lock_write","type":"","path":"php/cubrid_lock_write.html","desc":"Set a write lock on the given OID"}, "cubrid_move_cursor":{"name":"cubrid_move_cursor","type":"","path":"php/cubrid_move_cursor.html","desc":"Move the cursor in the result"}, "cubrid_new_glo":{"name":"cubrid_new_glo","type":"","path":"php/cubrid_new_glo.html","desc":"Create a glo instance"}, "cubrid_next_result":{"name":"cubrid_next_result","type":"","path":"php/cubrid_next_result.html","desc":"Get result of next query when executing multiple SQL statements"}, "cubrid_num_cols":{"name":"cubrid_num_cols","type":"","path":"php/cubrid_num_cols.html","desc":"Return the number of columns in the result set"}, "cubrid_num_fields":{"name":"cubrid_num_fields","type":"","path":"php/cubrid_num_fields.html","desc":"Return the number of columns in the result set"}, "cubrid_num_rows":{"name":"cubrid_num_rows","type":"","path":"php/cubrid_num_rows.html","desc":"Get the number of rows in the result set"}, "cubrid_pconnect":{"name":"cubrid_pconnect","type":"","path":"php/cubrid_pconnect.html","desc":"Open a persistent connection to a CUBRID server"}, "cubrid_pconnect_with_url":{"name":"cubrid_pconnect_with_url","type":"","path":"php/cubrid_pconnect_with_url.html","desc":"Open a persistent connection to CUBRID server"}, "cubrid_ping":{"name":"cubrid_ping","type":"","path":"php/cubrid_ping.html","desc":"Ping a server connection or reconnect if there is no connection"}, "cubrid_prepare":{"name":"cubrid_prepare","type":"","path":"php/cubrid_prepare.html","desc":"Prepare a SQL statement for execution"}, "cubrid_put":{"name":"cubrid_put","type":"","path":"php/cubrid_put.html","desc":"Update a column using OID"}, "cubrid_query":{"name":"cubrid_query","type":"","path":"php/cubrid_query.html","desc":"Send a CUBRID query"}, "cubrid_real_escape_string":{"name":"cubrid_real_escape_string","type":"","path":"php/cubrid_real_escape_string.html","desc":"Escape special characters in a string for use in an SQL statement"}, "cubrid_result":{"name":"cubrid_result","type":"","path":"php/cubrid_result.html","desc":"Return the value of a specific field in a specific row"}, "cubrid_rollback":{"name":"cubrid_rollback","type":"","path":"php/cubrid_rollback.html","desc":"Roll back a transaction"}, "cubrid_save_to_glo":{"name":"cubrid_save_to_glo","type":"","path":"php/cubrid_save_to_glo.html","desc":"Save requested file in a GLO instance"}, "cubrid_schema":{"name":"cubrid_schema","type":"","path":"php/cubrid_schema.html","desc":"Get the requested schema information"}, "cubrid_send_glo":{"name":"cubrid_send_glo","type":"","path":"php/cubrid_send_glo.html","desc":"Read data from glo and send it to std output"}, "cubrid_seq_drop":{"name":"cubrid_seq_drop","type":"","path":"php/cubrid_seq_drop.html","desc":"Delete an element from sequence type column using OID"}, "cubrid_seq_insert":{"name":"cubrid_seq_insert","type":"","path":"php/cubrid_seq_insert.html","desc":"Insert an element to a sequence type column using OID"}, "cubrid_seq_put":{"name":"cubrid_seq_put","type":"","path":"php/cubrid_seq_put.html","desc":"Update the element value of sequence type column using OID"}, "cubrid_set_add":{"name":"cubrid_set_add","type":"","path":"php/cubrid_set_add.html","desc":"Insert a single element to set type column using OID"}, "cubrid_set_autocommit":{"name":"cubrid_set_autocommit","type":"","path":"php/cubrid_set_autocommit.html","desc":"Set autocommit mode of the connection"}, "cubrid_set_db_parameter":{"name":"cubrid_set_db_parameter","type":"","path":"php/cubrid_set_db_parameter.html","desc":"Sets the CUBRID database parameters"}, "cubrid_set_drop":{"name":"cubrid_set_drop","type":"","path":"php/cubrid_set_drop.html","desc":"Delete an element from set type column using OID"}, "cubrid_set_query_timeout":{"name":"cubrid_set_query_timeout","type":"","path":"php/cubrid_set_query_timeout.html","desc":"Set the timeout time of query execution"}, "cubrid_unbuffered_query":{"name":"cubrid_unbuffered_query","type":"","path":"php/cubrid_unbuffered_query.html","desc":"Perform a query without fetching the results into memory"}, "cubrid_version":{"name":"cubrid_version","type":"","path":"php/cubrid_version.html","desc":"Get the CUBRID PHP module's version"}, "curl_close":{"name":"curl_close","type":"","path":"php/curl_close.html","desc":"关闭 cURL 会话"}, "curl_copy_handle":{"name":"curl_copy_handle","type":"","path":"php/curl_copy_handle.html","desc":"复制一个cURL句柄和它的所有选项"}, "curl_errno":{"name":"curl_errno","type":"","path":"php/curl_errno.html","desc":"返回最后一次的错误代码"}, "curl_error":{"name":"curl_error","type":"","path":"php/curl_error.html","desc":"返回当前会话最后一次错误的字符串"}, "curl_escape":{"name":"curl_escape","type":"","path":"php/curl_escape.html","desc":"使用 URL 编码给定的字符串"}, "curl_exec":{"name":"curl_exec","type":"","path":"php/curl_exec.html","desc":"执行 cURL 会话"}, "curl_file_create":{"name":"curl_file_create","type":"","path":"php/curl_file_create.html","desc":"创建一个 CURLFile 对象"}, "curl_getinfo":{"name":"curl_getinfo","type":"","path":"php/curl_getinfo.html","desc":"获取一个cURL连接资源句柄的信息"}, "curl_init":{"name":"curl_init","type":"","path":"php/curl_init.html","desc":"初始化 cURL 会话"}, "curl_multi_add_handle":{"name":"curl_multi_add_handle","type":"","path":"php/curl_multi_add_handle.html","desc":"向curl批处理会话中添加单独的curl句柄"}, "curl_multi_close":{"name":"curl_multi_close","type":"","path":"php/curl_multi_close.html","desc":"关闭一组cURL句柄"}, "curl_multi_errno":{"name":"curl_multi_errno","type":"","path":"php/curl_multi_errno.html","desc":"返回上一次 curl 批处理的错误码"}, "curl_multi_exec":{"name":"curl_multi_exec","type":"","path":"php/curl_multi_exec.html","desc":"运行当前 cURL 句柄的子连接"}, "curl_multi_getcontent":{"name":"curl_multi_getcontent","type":"","path":"php/curl_multi_getcontent.html","desc":"如果设置了CURLOPT_RETURNTRANSFER,则返回获取的输出的文本流"}, "curl_multi_info_read":{"name":"curl_multi_info_read","type":"","path":"php/curl_multi_info_read.html","desc":"获取当前解析的cURL的相关传输信息"}, "curl_multi_init":{"name":"curl_multi_init","type":"","path":"php/curl_multi_init.html","desc":"返回一个新cURL批处理句柄"}, "curl_multi_remove_handle":{"name":"curl_multi_remove_handle","type":"","path":"php/curl_multi_remove_handle.html","desc":"移除cURL批处理句柄资源中的某个句柄资源"}, "curl_multi_select":{"name":"curl_multi_select","type":"","path":"php/curl_multi_select.html","desc":"等待所有cURL批处理中的活动连接"}, "curl_multi_setopt":{"name":"curl_multi_setopt","type":"","path":"php/curl_multi_setopt.html","desc":"为 cURL 并行处理设置一个选项"}, "curl_multi_strerror":{"name":"curl_multi_strerror","type":"","path":"php/curl_multi_strerror.html","desc":"返回字符串描述的错误代码"}, "curl_pause":{"name":"curl_pause","type":"","path":"php/curl_pause.html","desc":"暂停和取消暂停一个连接。"}, "curl_reset":{"name":"curl_reset","type":"","path":"php/curl_reset.html","desc":"重置一个 libcurl 会话句柄的所有的选项"}, "curl_setopt":{"name":"curl_setopt","type":"","path":"php/curl_setopt.html","desc":"设置 cURL 传输选项"}, "curl_setopt_array":{"name":"curl_setopt_array","type":"","path":"php/curl_setopt_array.html","desc":"为 cURL 传输会话批量设置选项"}, "curl_share_close":{"name":"curl_share_close","type":"","path":"php/curl_share_close.html","desc":"关闭 cURL 共享句柄"}, "curl_share_errno":{"name":"curl_share_errno","type":"","path":"php/curl_share_errno.html","desc":"返回共享 curl 句柄的最后一次错误号"}, "curl_share_init":{"name":"curl_share_init","type":"","path":"php/curl_share_init.html","desc":"初始化一个 cURL 共享句柄。"}, "curl_share_setopt":{"name":"curl_share_setopt","type":"","path":"php/curl_share_setopt.html","desc":"为 cURL 共享句柄设置选项。"}, "curl_share_strerror":{"name":"curl_share_strerror","type":"","path":"php/curl_share_strerror.html","desc":"返回错误号对应的错误消息"}, "curl_strerror":{"name":"curl_strerror","type":"","path":"php/curl_strerror.html","desc":"返回错误代码的字符串描述"}, "curl_unescape":{"name":"curl_unescape","type":"","path":"php/curl_unescape.html","desc":"解码给定的 URL 编码的字符串"}, "curl_version":{"name":"curl_version","type":"","path":"php/curl_version.html","desc":"获取 cURL 版本信息"}, "current":{"name":"current","type":"","path":"php/current.html","desc":"返回数组中的当前单元"}, "cyrus_authenticate":{"name":"cyrus_authenticate","type":"","path":"php/cyrus_authenticate.html","desc":"Authenticate against a Cyrus IMAP server"}, "cyrus_bind":{"name":"cyrus_bind","type":"","path":"php/cyrus_bind.html","desc":"Bind callbacks to a Cyrus IMAP connection"}, "cyrus_close":{"name":"cyrus_close","type":"","path":"php/cyrus_close.html","desc":"Close connection to a Cyrus IMAP server"}, "cyrus_connect":{"name":"cyrus_connect","type":"","path":"php/cyrus_connect.html","desc":"Connect to a Cyrus IMAP server"}, "cyrus_query":{"name":"cyrus_query","type":"","path":"php/cyrus_query.html","desc":"Send a query to a Cyrus IMAP server"}, "cyrus_unbind":{"name":"cyrus_unbind","type":"","path":"php/cyrus_unbind.html","desc":"Unbind ..."}, "date":{"name":"date","type":"","path":"php/date.html","desc":"格式化一个本地时间/日期"}, "date_add":{"name":"date_add","type":"","path":"php/date_add.html","desc":"别名 DateTimeadd"}, "date_create":{"name":"date_create","type":"","path":"php/date_create.html","desc":"别名 DateTime__construct"}, "date_create_from_format":{"name":"date_create_from_format","type":"","path":"php/date_create_from_format.html","desc":"别名 DateTimecreateFromFormat"}, "date_create_immutable":{"name":"date_create_immutable","type":"","path":"php/date_create_immutable.html","desc":"别名 DateTimeImmutable__construct"}, "date_create_immutable_from_format":{"name":"date_create_immutable_from_format","type":"","path":"php/date_create_immutable_from_format.html","desc":"别名 DateTimeImmutablecreateFromFormat"}, "date_date_set":{"name":"date_date_set","type":"","path":"php/date_date_set.html","desc":"别名 DateTimesetDate"}, "date_default_timezone_get":{"name":"date_default_timezone_get","type":"","path":"php/date_default_timezone_get.html","desc":"取得一个脚本中所有日期时间函数所使用的默认时区"}, "date_default_timezone_set":{"name":"date_default_timezone_set","type":"","path":"php/date_default_timezone_set.html","desc":"设定用于一个脚本中所有日期时间函数的默认时区"}, "date_diff":{"name":"date_diff","type":"","path":"php/date_diff.html","desc":"别名 DateTimediff"}, "date_format":{"name":"date_format","type":"","path":"php/date_format.html","desc":"别名 DateTimeformat"}, "date_get_last_errors":{"name":"date_get_last_errors","type":"","path":"php/date_get_last_errors.html","desc":"别名 DateTimegetLastErrors"}, "date_interval_create_from_date_string":{"name":"date_interval_create_from_date_string","type":"","path":"php/date_interval_create_from_date_string.html","desc":"别名 DateIntervalcreateFromDateString"}, "date_interval_format":{"name":"date_interval_format","type":"","path":"php/date_interval_format.html","desc":"别名 DateIntervalformat"}, "date_isodate_set":{"name":"date_isodate_set","type":"","path":"php/date_isodate_set.html","desc":"别名 DateTimesetISODate"}, "date_modify":{"name":"date_modify","type":"","path":"php/date_modify.html","desc":"别名 DateTimemodify"}, "date_offset_get":{"name":"date_offset_get","type":"","path":"php/date_offset_get.html","desc":"别名 DateTimegetOffset"}, "date_parse":{"name":"date_parse","type":"","path":"php/date_parse.html","desc":"Returns associative array with detailed info about given date"}, "date_parse_from_format":{"name":"date_parse_from_format","type":"","path":"php/date_parse_from_format.html","desc":"Get info about given date formatted according to the specified format"}, "date_sub":{"name":"date_sub","type":"","path":"php/date_sub.html","desc":"别名 DateTimesub"}, "date_sunrise":{"name":"date_sunrise","type":"","path":"php/date_sunrise.html","desc":"返回给定的日期与地点的日出时间"}, "date_sunset":{"name":"date_sunset","type":"","path":"php/date_sunset.html","desc":"返回给定的日期与地点的日落时间"}, "date_sun_info":{"name":"date_sun_info","type":"","path":"php/date_sun_info.html","desc":"Returns an array with information about sunsetsunrise and twilight beginend"}, "date_timestamp_get":{"name":"date_timestamp_get","type":"","path":"php/date_timestamp_get.html","desc":"别名 DateTimegetTimestamp"}, "date_timestamp_set":{"name":"date_timestamp_set","type":"","path":"php/date_timestamp_set.html","desc":"别名 DateTimesetTimestamp"}, "date_timezone_get":{"name":"date_timezone_get","type":"","path":"php/date_timezone_get.html","desc":"别名 DateTimegetTimezone"}, "date_timezone_set":{"name":"date_timezone_set","type":"","path":"php/date_timezone_set.html","desc":"别名 DateTimesetTimezone"}, "date_time_set":{"name":"date_time_set","type":"","path":"php/date_time_set.html","desc":"别名 DateTimesetTime"}, "db2_autocommit":{"name":"db2_autocommit","type":"","path":"php/db2_autocommit.html","desc":"Returns or sets the AUTOCOMMIT state for a database connection"}, "db2_bind_param":{"name":"db2_bind_param","type":"","path":"php/db2_bind_param.html","desc":"Binds a PHP variable to an SQL statement parameter"}, "db2_client_info":{"name":"db2_client_info","type":"","path":"php/db2_client_info.html","desc":"Returns an object with properties that describe the DB2 database client"}, "db2_close":{"name":"db2_close","type":"","path":"php/db2_close.html","desc":"Closes a database connection"}, "db2_columns":{"name":"db2_columns","type":"","path":"php/db2_columns.html","desc":"Returns a result set listing the columns and associated metadata for a table"}, "db2_column_privileges":{"name":"db2_column_privileges","type":"","path":"php/db2_column_privileges.html","desc":"Returns a result set listing the columns and associated privileges for a table"}, "db2_commit":{"name":"db2_commit","type":"","path":"php/db2_commit.html","desc":"Commits a transaction"}, "db2_connect":{"name":"db2_connect","type":"","path":"php/db2_connect.html","desc":"Returns a connection to a database"}, "db2_conn_error":{"name":"db2_conn_error","type":"","path":"php/db2_conn_error.html","desc":"Returns a string containing the SQLSTATE returned by the last connection attempt"}, "db2_conn_errormsg":{"name":"db2_conn_errormsg","type":"","path":"php/db2_conn_errormsg.html","desc":"Returns the last connection error message and SQLCODE value"}, "db2_cursor_type":{"name":"db2_cursor_type","type":"","path":"php/db2_cursor_type.html","desc":"Returns the cursor type used by a statement resource"}, "db2_escape_string":{"name":"db2_escape_string","type":"","path":"php/db2_escape_string.html","desc":"Used to escape certain characters"}, "db2_exec":{"name":"db2_exec","type":"","path":"php/db2_exec.html","desc":"Executes an SQL statement directly"}, "db2_execute":{"name":"db2_execute","type":"","path":"php/db2_execute.html","desc":"Executes a prepared SQL statement"}, "db2_fetch_array":{"name":"db2_fetch_array","type":"","path":"php/db2_fetch_array.html","desc":"Returns an array, indexed by column position, representing a row in a result set"}, "db2_fetch_assoc":{"name":"db2_fetch_assoc","type":"","path":"php/db2_fetch_assoc.html","desc":"Returns an array, indexed by column name, representing a row in a result set"}, "db2_fetch_both":{"name":"db2_fetch_both","type":"","path":"php/db2_fetch_both.html","desc":"Returns an array, indexed by both column name and position, representing a row in a result set"}, "db2_fetch_object":{"name":"db2_fetch_object","type":"","path":"php/db2_fetch_object.html","desc":"Returns an object with properties representing columns in the fetched row"}, "db2_fetch_row":{"name":"db2_fetch_row","type":"","path":"php/db2_fetch_row.html","desc":"Sets the result set pointer to the next row or requested row"}, "db2_field_display_size":{"name":"db2_field_display_size","type":"","path":"php/db2_field_display_size.html","desc":"Returns the maximum number of bytes required to display a column"}, "db2_field_name":{"name":"db2_field_name","type":"","path":"php/db2_field_name.html","desc":"Returns the name of the column in the result set"}, "db2_field_num":{"name":"db2_field_num","type":"","path":"php/db2_field_num.html","desc":"Returns the position of the named column in a result set"}, "db2_field_precision":{"name":"db2_field_precision","type":"","path":"php/db2_field_precision.html","desc":"Returns the precision of the indicated column in a result set"}, "db2_field_scale":{"name":"db2_field_scale","type":"","path":"php/db2_field_scale.html","desc":"Returns the scale of the indicated column in a result set"}, "db2_field_type":{"name":"db2_field_type","type":"","path":"php/db2_field_type.html","desc":"Returns the data type of the indicated column in a result set"}, "db2_field_width":{"name":"db2_field_width","type":"","path":"php/db2_field_width.html","desc":"Returns the width of the current value of the indicated column in a result set"}, "db2_foreign_keys":{"name":"db2_foreign_keys","type":"","path":"php/db2_foreign_keys.html","desc":"Returns a result set listing the foreign keys for a table"}, "db2_free_result":{"name":"db2_free_result","type":"","path":"php/db2_free_result.html","desc":"Frees resources associated with a result set"}, "db2_free_stmt":{"name":"db2_free_stmt","type":"","path":"php/db2_free_stmt.html","desc":"Frees resources associated with the indicated statement resource"}, "db2_get_option":{"name":"db2_get_option","type":"","path":"php/db2_get_option.html","desc":"Retrieves an option value for a statement resource or a connection resource"}, "db2_last_insert_id":{"name":"db2_last_insert_id","type":"","path":"php/db2_last_insert_id.html","desc":"Returns the auto generated ID of the last insert query that succ"}, "db2_lob_read":{"name":"db2_lob_read","type":"","path":"php/db2_lob_read.html","desc":"Gets a user defined size of LOB files with each invocation"}, "db2_next_result":{"name":"db2_next_result","type":"","path":"php/db2_next_result.html","desc":"Requests the next result set from a stored procedure"}, "db2_num_fields":{"name":"db2_num_fields","type":"","path":"php/db2_num_fields.html","desc":"Returns the number of fields contained in a result set"}, "db2_num_rows":{"name":"db2_num_rows","type":"","path":"php/db2_num_rows.html","desc":"Returns the number of rows affected by an SQL statement"}, "db2_pclose":{"name":"db2_pclose","type":"","path":"php/db2_pclose.html","desc":"Closes a persistent database connection"}, "db2_pconnect":{"name":"db2_pconnect","type":"","path":"php/db2_pconnect.html","desc":"Returns a persistent connection to a database"}, "db2_prepare":{"name":"db2_prepare","type":"","path":"php/db2_prepare.html","desc":"Prepares an SQL statement to be executed"}, "db2_primary_keys":{"name":"db2_primary_keys","type":"","path":"php/db2_primary_keys.html","desc":"Returns a result set listing primary keys for a table"}, "db2_procedures":{"name":"db2_procedures","type":"","path":"php/db2_procedures.html","desc":"Returns a result set listing the stored procedures registered in a database"}, "db2_procedure_columns":{"name":"db2_procedure_columns","type":"","path":"php/db2_procedure_columns.html","desc":"Returns a result set listing stored procedure parameters"}, "db2_result":{"name":"db2_result","type":"","path":"php/db2_result.html","desc":"Returns a single column from a row in the result set"}, "db2_rollback":{"name":"db2_rollback","type":"","path":"php/db2_rollback.html","desc":"Rolls back a transaction"}, "db2_server_info":{"name":"db2_server_info","type":"","path":"php/db2_server_info.html","desc":"Returns an object with properties that describe the DB2 database server"}, "db2_set_option":{"name":"db2_set_option","type":"","path":"php/db2_set_option.html","desc":"Set options for connection or statement resources"}, "db2_special_columns":{"name":"db2_special_columns","type":"","path":"php/db2_special_columns.html","desc":"Returns a result set listing the unique row identifier columns for a table"}, "db2_statistics":{"name":"db2_statistics","type":"","path":"php/db2_statistics.html","desc":"Returns a result set listing the index and statistics for a table"}, "db2_stmt_error":{"name":"db2_stmt_error","type":"","path":"php/db2_stmt_error.html","desc":"Returns a string containing the SQLSTATE returned by an SQL statement"}, "db2_stmt_errormsg":{"name":"db2_stmt_errormsg","type":"","path":"php/db2_stmt_errormsg.html","desc":"Returns a string containing the last SQL statement error message"}, "db2_tables":{"name":"db2_tables","type":"","path":"php/db2_tables.html","desc":"Returns a result set listing the tables and associated metadata in a database"}, "db2_table_privileges":{"name":"db2_table_privileges","type":"","path":"php/db2_table_privileges.html","desc":"Returns a result set listing the tables and associated privileges in a database"}, "dbase_add_record":{"name":"dbase_add_record","type":"","path":"php/dbase_add_record.html","desc":"Adds a record to a database"}, "dbase_close":{"name":"dbase_close","type":"","path":"php/dbase_close.html","desc":"Closes a database"}, "dbase_create":{"name":"dbase_create","type":"","path":"php/dbase_create.html","desc":"Creates a database"}, "dbase_delete_record":{"name":"dbase_delete_record","type":"","path":"php/dbase_delete_record.html","desc":"Deletes a record from a database"}, "dbase_get_header_info":{"name":"dbase_get_header_info","type":"","path":"php/dbase_get_header_info.html","desc":"Gets the header info of a database"}, "dbase_get_record":{"name":"dbase_get_record","type":"","path":"php/dbase_get_record.html","desc":"Gets a record from a database as an indexed array"}, "dbase_get_record_with_names":{"name":"dbase_get_record_with_names","type":"","path":"php/dbase_get_record_with_names.html","desc":"Gets a record from a database as an associative array"}, "dbase_numfields":{"name":"dbase_numfields","type":"","path":"php/dbase_numfields.html","desc":"Gets the number of fields of a database"}, "dbase_numrecords":{"name":"dbase_numrecords","type":"","path":"php/dbase_numrecords.html","desc":"Gets the number of records in a database"}, "dbase_open":{"name":"dbase_open","type":"","path":"php/dbase_open.html","desc":"Opens a database"}, "dbase_pack":{"name":"dbase_pack","type":"","path":"php/dbase_pack.html","desc":"Packs a database"}, "dbase_replace_record":{"name":"dbase_replace_record","type":"","path":"php/dbase_replace_record.html","desc":"Replaces a record in a database"}, "dba_close":{"name":"dba_close","type":"","path":"php/dba_close.html","desc":"Close a DBA database"}, "dba_delete":{"name":"dba_delete","type":"","path":"php/dba_delete.html","desc":"Delete DBA entry specified by key"}, "dba_exists":{"name":"dba_exists","type":"","path":"php/dba_exists.html","desc":"Check whether key exists"}, "dba_fetch":{"name":"dba_fetch","type":"","path":"php/dba_fetch.html","desc":"Fetch data specified by key"}, "dba_firstkey":{"name":"dba_firstkey","type":"","path":"php/dba_firstkey.html","desc":"Fetch first key"}, "dba_handlers":{"name":"dba_handlers","type":"","path":"php/dba_handlers.html","desc":"List all the handlers available"}, "dba_insert":{"name":"dba_insert","type":"","path":"php/dba_insert.html","desc":"Insert entry"}, "dba_key_split":{"name":"dba_key_split","type":"","path":"php/dba_key_split.html","desc":"Splits a key in string representation into array representation"}, "dba_list":{"name":"dba_list","type":"","path":"php/dba_list.html","desc":"List all open database files"}, "dba_nextkey":{"name":"dba_nextkey","type":"","path":"php/dba_nextkey.html","desc":"Fetch next key"}, "dba_open":{"name":"dba_open","type":"","path":"php/dba_open.html","desc":"Open database"}, "dba_optimize":{"name":"dba_optimize","type":"","path":"php/dba_optimize.html","desc":"Optimize database"}, "dba_popen":{"name":"dba_popen","type":"","path":"php/dba_popen.html","desc":"Open database persistently"}, "dba_replace":{"name":"dba_replace","type":"","path":"php/dba_replace.html","desc":"Replace or insert entry"}, "dba_sync":{"name":"dba_sync","type":"","path":"php/dba_sync.html","desc":"Synchronize database"}, "dbplus_add":{"name":"dbplus_add","type":"","path":"php/dbplus_add.html","desc":"Add a tuple to a relation"}, "dbplus_aql":{"name":"dbplus_aql","type":"","path":"php/dbplus_aql.html","desc":"Perform AQL query"}, "dbplus_chdir":{"name":"dbplus_chdir","type":"","path":"php/dbplus_chdir.html","desc":"GetSet database virtual current directory"}, "dbplus_close":{"name":"dbplus_close","type":"","path":"php/dbplus_close.html","desc":"Close a relation"}, "dbplus_curr":{"name":"dbplus_curr","type":"","path":"php/dbplus_curr.html","desc":"Get current tuple from relation"}, "dbplus_errcode":{"name":"dbplus_errcode","type":"","path":"php/dbplus_errcode.html","desc":"Get error string for given errorcode or last error"}, "dbplus_errno":{"name":"dbplus_errno","type":"","path":"php/dbplus_errno.html","desc":"Get error code for last operation"}, "dbplus_find":{"name":"dbplus_find","type":"","path":"php/dbplus_find.html","desc":"Set a constraint on a relation"}, "dbplus_first":{"name":"dbplus_first","type":"","path":"php/dbplus_first.html","desc":"Get first tuple from relation"}, "dbplus_flush":{"name":"dbplus_flush","type":"","path":"php/dbplus_flush.html","desc":"Flush all changes made on a relation"}, "dbplus_freealllocks":{"name":"dbplus_freealllocks","type":"","path":"php/dbplus_freealllocks.html","desc":"Free all locks held by this client"}, "dbplus_freelock":{"name":"dbplus_freelock","type":"","path":"php/dbplus_freelock.html","desc":"Release write lock on tuple"}, "dbplus_freerlocks":{"name":"dbplus_freerlocks","type":"","path":"php/dbplus_freerlocks.html","desc":"Free all tuple locks on given relation"}, "dbplus_getlock":{"name":"dbplus_getlock","type":"","path":"php/dbplus_getlock.html","desc":"Get a write lock on a tuple"}, "dbplus_getunique":{"name":"dbplus_getunique","type":"","path":"php/dbplus_getunique.html","desc":"Get an id number unique to a relation"}, "dbplus_info":{"name":"dbplus_info","type":"","path":"php/dbplus_info.html","desc":"Get information about a relation"}, "dbplus_last":{"name":"dbplus_last","type":"","path":"php/dbplus_last.html","desc":"Get last tuple from relation"}, "dbplus_lockrel":{"name":"dbplus_lockrel","type":"","path":"php/dbplus_lockrel.html","desc":"Request write lock on relation"}, "dbplus_next":{"name":"dbplus_next","type":"","path":"php/dbplus_next.html","desc":"Get next tuple from relation"}, "dbplus_open":{"name":"dbplus_open","type":"","path":"php/dbplus_open.html","desc":"Open relation file"}, "dbplus_prev":{"name":"dbplus_prev","type":"","path":"php/dbplus_prev.html","desc":"Get previous tuple from relation"}, "dbplus_rchperm":{"name":"dbplus_rchperm","type":"","path":"php/dbplus_rchperm.html","desc":"Change relation permissions"}, "dbplus_rcreate":{"name":"dbplus_rcreate","type":"","path":"php/dbplus_rcreate.html","desc":"Creates a new DB++ relation"}, "dbplus_rcrtexact":{"name":"dbplus_rcrtexact","type":"","path":"php/dbplus_rcrtexact.html","desc":"Creates an exact but empty copy of a relation including indices"}, "dbplus_rcrtlike":{"name":"dbplus_rcrtlike","type":"","path":"php/dbplus_rcrtlike.html","desc":"Creates an empty copy of a relation with default indices"}, "dbplus_resolve":{"name":"dbplus_resolve","type":"","path":"php/dbplus_resolve.html","desc":"Resolve host information for relation"}, "dbplus_restorepos":{"name":"dbplus_restorepos","type":"","path":"php/dbplus_restorepos.html","desc":"Restore position"}, "dbplus_rkeys":{"name":"dbplus_rkeys","type":"","path":"php/dbplus_rkeys.html","desc":"Specify new primary key for a relation"}, "dbplus_ropen":{"name":"dbplus_ropen","type":"","path":"php/dbplus_ropen.html","desc":"Open relation file local"}, "dbplus_rquery":{"name":"dbplus_rquery","type":"","path":"php/dbplus_rquery.html","desc":"Perform local (raw) AQL query"}, "dbplus_rrename":{"name":"dbplus_rrename","type":"","path":"php/dbplus_rrename.html","desc":"Rename a relation"}, "dbplus_rsecindex":{"name":"dbplus_rsecindex","type":"","path":"php/dbplus_rsecindex.html","desc":"Create a new secondary index for a relation"}, "dbplus_runlink":{"name":"dbplus_runlink","type":"","path":"php/dbplus_runlink.html","desc":"Remove relation from filesystem"}, "dbplus_rzap":{"name":"dbplus_rzap","type":"","path":"php/dbplus_rzap.html","desc":"Remove all tuples from relation"}, "dbplus_savepos":{"name":"dbplus_savepos","type":"","path":"php/dbplus_savepos.html","desc":"Save position"}, "dbplus_setindex":{"name":"dbplus_setindex","type":"","path":"php/dbplus_setindex.html","desc":"Set index"}, "dbplus_setindexbynumber":{"name":"dbplus_setindexbynumber","type":"","path":"php/dbplus_setindexbynumber.html","desc":"Set index by number"}, "dbplus_sql":{"name":"dbplus_sql","type":"","path":"php/dbplus_sql.html","desc":"Perform SQL query"}, "dbplus_tcl":{"name":"dbplus_tcl","type":"","path":"php/dbplus_tcl.html","desc":"Execute TCL code on server side"}, "dbplus_tremove":{"name":"dbplus_tremove","type":"","path":"php/dbplus_tremove.html","desc":"Remove tuple and return new current tuple"}, "dbplus_undo":{"name":"dbplus_undo","type":"","path":"php/dbplus_undo.html","desc":"Undo"}, "dbplus_undoprepare":{"name":"dbplus_undoprepare","type":"","path":"php/dbplus_undoprepare.html","desc":"Prepare undo"}, "dbplus_unlockrel":{"name":"dbplus_unlockrel","type":"","path":"php/dbplus_unlockrel.html","desc":"Give up write lock on relation"}, "dbplus_unselect":{"name":"dbplus_unselect","type":"","path":"php/dbplus_unselect.html","desc":"Remove a constraint from relation"}, "dbplus_update":{"name":"dbplus_update","type":"","path":"php/dbplus_update.html","desc":"Update specified tuple in relation"}, "dbplus_xlockrel":{"name":"dbplus_xlockrel","type":"","path":"php/dbplus_xlockrel.html","desc":"Request exclusive lock on relation"}, "dbplus_xunlockrel":{"name":"dbplus_xunlockrel","type":"","path":"php/dbplus_xunlockrel.html","desc":"Free exclusive lock on relation"}, "dbx_close":{"name":"dbx_close","type":"","path":"php/dbx_close.html","desc":"Close an open connectiondatabase"}, "dbx_compare":{"name":"dbx_compare","type":"","path":"php/dbx_compare.html","desc":"Compare two rows for sorting purposes"}, "dbx_connect":{"name":"dbx_connect","type":"","path":"php/dbx_connect.html","desc":"Open a connectiondatabase"}, "dbx_error":{"name":"dbx_error","type":"","path":"php/dbx_error.html","desc":"Report the error message of the latest function call in the module"}, "dbx_escape_string":{"name":"dbx_escape_string","type":"","path":"php/dbx_escape_string.html","desc":"Escape a string so it can safely be used in an sql-statement"}, "dbx_fetch_row":{"name":"dbx_fetch_row","type":"","path":"php/dbx_fetch_row.html","desc":"Fetches rows from a query-result that"}, "dbx_query":{"name":"dbx_query","type":"","path":"php/dbx_query.html","desc":"Send a query and fetch all results (if any)"}, "dbx_sort":{"name":"dbx_sort","type":"","path":"php/dbx_sort.html","desc":"Sort a result from a dbx_query by a custom sort function"}, "dcgettext":{"name":"dcgettext","type":"","path":"php/dcgettext.html","desc":"Overrides the domain for a single lookup"}, "dcngettext":{"name":"dcngettext","type":"","path":"php/dcngettext.html","desc":"Plural version of dcgettext"}, "debug_backtrace":{"name":"debug_backtrace","type":"","path":"php/debug_backtrace.html","desc":"产生一条回溯跟踪(backtrace)"}, "debug_print_backtrace":{"name":"debug_print_backtrace","type":"","path":"php/debug_print_backtrace.html","desc":"打印一条回溯。"}, "debug_zval_dump":{"name":"debug_zval_dump","type":"","path":"php/debug_zval_dump.html","desc":"Dumps a string representation of an internal zend value to output"}, "decbin":{"name":"decbin","type":"","path":"php/decbin.html","desc":"十进制转换为二进制"}, "dechex":{"name":"dechex","type":"","path":"php/dechex.html","desc":"十进制转换为十六进制"}, "decoct":{"name":"decoct","type":"","path":"php/decoct.html","desc":"十进制转换为八进制"}, "define":{"name":"define","type":"","path":"php/define.html","desc":"定义一个常量"}, "defined":{"name":"defined","type":"","path":"php/defined.html","desc":"检查某个名称的常量是否存在"}, "define_syslog_variables":{"name":"define_syslog_variables","type":"","path":"php/define_syslog_variables.html","desc":"Initializes all syslog related variables"}, "deflate_add":{"name":"deflate_add","type":"","path":"php/deflate_add.html","desc":"Incrementally deflate data"}, "deflate_init":{"name":"deflate_init","type":"","path":"php/deflate_init.html","desc":"Initialize an incremental deflate context"}, "deg2rad":{"name":"deg2rad","type":"","path":"php/deg2rad.html","desc":"将角度转换为弧度"}, "delete":{"name":"delete","type":"","path":"php/delete.html","desc":"参见 unlink 或 unset"}, "dgettext":{"name":"dgettext","type":"","path":"php/dgettext.html","desc":"Override the current domain"}, "die":{"name":"die","type":"","path":"php/die.html","desc":"等同于 exit"}, "dio_close":{"name":"dio_close","type":"","path":"php/dio_close.html","desc":"Closes the file descriptor given by fd"}, "dio_fcntl":{"name":"dio_fcntl","type":"","path":"php/dio_fcntl.html","desc":"Performs a c library fcntl on fd"}, "dio_open":{"name":"dio_open","type":"","path":"php/dio_open.html","desc":"Opens a file (creating it if necessary) at a lower level "}, "dio_read":{"name":"dio_read","type":"","path":"php/dio_read.html","desc":"Reads bytes from a file descriptor"}, "dio_seek":{"name":"dio_seek","type":"","path":"php/dio_seek.html","desc":"Seeks to pos on fd from whence"}, "dio_stat":{"name":"dio_stat","type":"","path":"php/dio_stat.html","desc":"Gets stat information about the file descriptor fd"}, "dio_tcsetattr":{"name":"dio_tcsetattr","type":"","path":"php/dio_tcsetattr.html","desc":"Sets terminal attributes and baud rate for a serial port"}, "dio_truncate":{"name":"dio_truncate","type":"","path":"php/dio_truncate.html","desc":"Truncates file descriptor fd to offset bytes"}, "dio_write":{"name":"dio_write","type":"","path":"php/dio_write.html","desc":"Writes data to fd with optional truncation at length"}, "dir":{"name":"dir","type":"","path":"php/dir.html","desc":"返回一个 Directory 类实例"}, "dirname":{"name":"dirname","type":"","path":"php/dirname.html","desc":"返回路径中的目录部分"}, "diskfreespace":{"name":"diskfreespace","type":"","path":"php/diskfreespace.html","desc":"disk_free_space 的别名"}, "disk_free_space":{"name":"disk_free_space","type":"","path":"php/disk_free_space.html","desc":"返回目录中的可用空间"}, "disk_total_space":{"name":"disk_total_space","type":"","path":"php/disk_total_space.html","desc":"返回一个目录的磁盘总大小"}, "dl":{"name":"dl","type":"","path":"php/dl.html","desc":"运行时载入一个 PHP 扩展"}, "dngettext":{"name":"dngettext","type":"","path":"php/dngettext.html","desc":"Plural version of dgettext"}, "dns_check_record":{"name":"dns_check_record","type":"","path":"php/dns_check_record.html","desc":"别名 checkdnsrr"}, "dns_get_mx":{"name":"dns_get_mx","type":"","path":"php/dns_get_mx.html","desc":"别名 getmxrr"}, "dns_get_record":{"name":"dns_get_record","type":"","path":"php/dns_get_record.html","desc":"获取指定主机的DNS记录"}, "dom_import_simplexml":{"name":"dom_import_simplexml","type":"","path":"php/dom_import_simplexml.html","desc":"Gets a DOMElement objec"}, "doubleval":{"name":"doubleval","type":"","path":"php/doubleval.html","desc":"floatval 的别名"}, "each":{"name":"each","type":"","path":"php/each.html","desc":"返回数组中当前的键/值对并将数组指针向前移动一步"}, "easter_date":{"name":"easter_date","type":"","path":"php/easter_date.html","desc":"得到指定年份的复活节午夜时的Unix时间戳。"}, "easter_days":{"name":"easter_days","type":"","path":"php/easter_days.html","desc":"得到指定年份的3月21日到复活节之间的天数"}, "echo":{"name":"echo","type":"","path":"php/echo.html","desc":"输出一个或多个字符串"}, "eio_busy":{"name":"eio_busy","type":"","path":"php/eio_busy.html","desc":"Artificially increase load. Could be useful i"}, "eio_cancel":{"name":"eio_cancel","type":"","path":"php/eio_cancel.html","desc":"Cancels a request"}, "eio_chmod":{"name":"eio_chmod","type":"","path":"php/eio_chmod.html","desc":"Change filedirecrory permissions"}, "eio_chown":{"name":"eio_chown","type":"","path":"php/eio_chown.html","desc":"Change filedirecrory permissions"}, "eio_close":{"name":"eio_close","type":"","path":"php/eio_close.html","desc":"Close file"}, "eio_custom":{"name":"eio_custom","type":"","path":"php/eio_custom.html","desc":"Execute custom request like any other eio_ call"}, "eio_dup2":{"name":"eio_dup2","type":"","path":"php/eio_dup2.html","desc":"Duplicate a file descriptor"}, "eio_event_loop":{"name":"eio_event_loop","type":"","path":"php/eio_event_loop.html","desc":"Polls libeio until all requests proceeded"}, "eio_fallocate":{"name":"eio_fallocate","type":"","path":"php/eio_fallocate.html","desc":"Allows the caller to directly manipulate the alloca"}, "eio_fchmod":{"name":"eio_fchmod","type":"","path":"php/eio_fchmod.html","desc":"Change file permissions"}, "eio_fchown":{"name":"eio_fchown","type":"","path":"php/eio_fchown.html","desc":"Change file ownership"}, "eio_fdatasync":{"name":"eio_fdatasync","type":"","path":"php/eio_fdatasync.html","desc":"Synchronize a file's in-core state with storage device"}, "eio_fstat":{"name":"eio_fstat","type":"","path":"php/eio_fstat.html","desc":"Get file status"}, "eio_fstatvfs":{"name":"eio_fstatvfs","type":"","path":"php/eio_fstatvfs.html","desc":"Get file system statistics"}, "eio_fsync":{"name":"eio_fsync","type":"","path":"php/eio_fsync.html","desc":"Synchronize a file's in-core state with storage device"}, "eio_ftruncate":{"name":"eio_ftruncate","type":"","path":"php/eio_ftruncate.html","desc":"Truncate a file"}, "eio_futime":{"name":"eio_futime","type":"","path":"php/eio_futime.html","desc":"Change file last access and modification times"}, "eio_get_event_stream":{"name":"eio_get_event_stream","type":"","path":"php/eio_get_event_stream.html","desc":"Get stream representing a variable used in internal communications with libeio"}, "eio_get_last_error":{"name":"eio_get_last_error","type":"","path":"php/eio_get_last_error.html","desc":"Returns string describing the last error associated with a request resource"}, "eio_grp":{"name":"eio_grp","type":"","path":"php/eio_grp.html","desc":"Creates a request group"}, "eio_grp_add":{"name":"eio_grp_add","type":"","path":"php/eio_grp_add.html","desc":"Adds a request to the request group"}, "eio_grp_cancel":{"name":"eio_grp_cancel","type":"","path":"php/eio_grp_cancel.html","desc":"Cancels a request group"}, "eio_grp_limit":{"name":"eio_grp_limit","type":"","path":"php/eio_grp_limit.html","desc":"Set group limit"}, "eio_init":{"name":"eio_init","type":"","path":"php/eio_init.html","desc":"(Re-)initialize Eio"}, "eio_link":{"name":"eio_link","type":"","path":"php/eio_link.html","desc":"Create a hardlink for file"}, "eio_lstat":{"name":"eio_lstat","type":"","path":"php/eio_lstat.html","desc":"Get file status"}, "eio_mkdir":{"name":"eio_mkdir","type":"","path":"php/eio_mkdir.html","desc":"Create directory"}, "eio_mknod":{"name":"eio_mknod","type":"","path":"php/eio_mknod.html","desc":"Create a special or ordinary file"}, "eio_nop":{"name":"eio_nop","type":"","path":"php/eio_nop.html","desc":"Does nothing, except go through the whole request cycle"}, "eio_npending":{"name":"eio_npending","type":"","path":"php/eio_npending.html","desc":"Returns number of finished, but unhandled requests"}, "eio_nready":{"name":"eio_nready","type":"","path":"php/eio_nready.html","desc":"Returns number of not-yet handled requests"}, "eio_nreqs":{"name":"eio_nreqs","type":"","path":"php/eio_nreqs.html","desc":"Returns number of requests to be processed"}, "eio_nthreads":{"name":"eio_nthreads","type":"","path":"php/eio_nthreads.html","desc":"Returns number of threads currently in use"}, "eio_open":{"name":"eio_open","type":"","path":"php/eio_open.html","desc":"Opens a file"}, "eio_poll":{"name":"eio_poll","type":"","path":"php/eio_poll.html","desc":"Can be to be called whenever there are pending requests that need finishing"}, "eio_read":{"name":"eio_read","type":"","path":"php/eio_read.html","desc":"Read from a file descriptor at given offset"}, "eio_readahead":{"name":"eio_readahead","type":"","path":"php/eio_readahead.html","desc":"Perform file readahead into page cache"}, "eio_readdir":{"name":"eio_readdir","type":"","path":"php/eio_readdir.html","desc":"Reads through a whole directory"}, "eio_readlink":{"name":"eio_readlink","type":"","path":"php/eio_readlink.html","desc":"Read value of a symbolic link"}, "eio_realpath":{"name":"eio_realpath","type":"","path":"php/eio_realpath.html","desc":"Get the canonicalized absolute pathname"}, "eio_rename":{"name":"eio_rename","type":"","path":"php/eio_rename.html","desc":"Change the name or location of a file"}, "eio_rmdir":{"name":"eio_rmdir","type":"","path":"php/eio_rmdir.html","desc":"Remove a directory"}, "eio_seek":{"name":"eio_seek","type":"","path":"php/eio_seek.html","desc":"Repositions the offset of the open file associated with the fd argument to the argument offset according to the directive whence"}, "eio_sendfile":{"name":"eio_sendfile","type":"","path":"php/eio_sendfile.html","desc":"Transfer data between file descriptors"}, "eio_set_max_idle":{"name":"eio_set_max_idle","type":"","path":"php/eio_set_max_idle.html","desc":"Set maximum number of idle threads"}, "eio_set_max_parallel":{"name":"eio_set_max_parallel","type":"","path":"php/eio_set_max_parallel.html","desc":"Set maximum parallel threads"}, "eio_set_max_poll_reqs":{"name":"eio_set_max_poll_reqs","type":"","path":"php/eio_set_max_poll_reqs.html","desc":"Set maximum number of requests processed in a poll"}, "eio_set_max_poll_time":{"name":"eio_set_max_poll_time","type":"","path":"php/eio_set_max_poll_time.html","desc":"Set maximum poll time"}, "eio_set_min_parallel":{"name":"eio_set_min_parallel","type":"","path":"php/eio_set_min_parallel.html","desc":"Set minimum parallel thread number"}, "eio_stat":{"name":"eio_stat","type":"","path":"php/eio_stat.html","desc":"Get file status"}, "eio_statvfs":{"name":"eio_statvfs","type":"","path":"php/eio_statvfs.html","desc":"Get file system statistics"}, "eio_symlink":{"name":"eio_symlink","type":"","path":"php/eio_symlink.html","desc":"Create a symbolic link"}, "eio_sync":{"name":"eio_sync","type":"","path":"php/eio_sync.html","desc":"Commit buffer cache to disk"}, "eio_syncfs":{"name":"eio_syncfs","type":"","path":"php/eio_syncfs.html","desc":"Calls Linux' syncfs syscall, if available"}, "eio_sync_file_range":{"name":"eio_sync_file_range","type":"","path":"php/eio_sync_file_range.html","desc":"Sync a file segment with disk"}, "eio_truncate":{"name":"eio_truncate","type":"","path":"php/eio_truncate.html","desc":"Truncate a file"}, "eio_unlink":{"name":"eio_unlink","type":"","path":"php/eio_unlink.html","desc":"Delete a name and possibly the file it refers to"}, "eio_utime":{"name":"eio_utime","type":"","path":"php/eio_utime.html","desc":"Change file last access and modification times"}, "eio_write":{"name":"eio_write","type":"","path":"php/eio_write.html","desc":"Write to file"}, "empty":{"name":"empty","type":"","path":"php/empty.html","desc":"检查一个变量是否为空"}, "enchant_broker_describe":{"name":"enchant_broker_describe","type":"","path":"php/enchant_broker_describe.html","desc":"Enumerates the Enchant providers"}, "enchant_broker_dict_exists":{"name":"enchant_broker_dict_exists","type":"","path":"php/enchant_broker_dict_exists.html","desc":"Whether a dictionary exists or not. Using non-empty tag"}, "enchant_broker_free":{"name":"enchant_broker_free","type":"","path":"php/enchant_broker_free.html","desc":"Free the broker resource and its dictionnaries"}, "enchant_broker_free_dict":{"name":"enchant_broker_free_dict","type":"","path":"php/enchant_broker_free_dict.html","desc":"Free a dictionary resource"}, "enchant_broker_get_dict_path":{"name":"enchant_broker_get_dict_path","type":"","path":"php/enchant_broker_get_dict_path.html","desc":"Get the directory path for a given backend"}, "enchant_broker_get_error":{"name":"enchant_broker_get_error","type":"","path":"php/enchant_broker_get_error.html","desc":"Returns the last error of the broker"}, "enchant_broker_init":{"name":"enchant_broker_init","type":"","path":"php/enchant_broker_init.html","desc":"Create a new broker object capable of requesting"}, "enchant_broker_list_dicts":{"name":"enchant_broker_list_dicts","type":"","path":"php/enchant_broker_list_dicts.html","desc":"Returns a list of available dictionaries"}, "enchant_broker_request_dict":{"name":"enchant_broker_request_dict","type":"","path":"php/enchant_broker_request_dict.html","desc":"Create a new dictionary using a tag"}, "enchant_broker_request_pwl_dict":{"name":"enchant_broker_request_pwl_dict","type":"","path":"php/enchant_broker_request_pwl_dict.html","desc":"Creates a dictionary using a PWL file"}, "enchant_broker_set_dict_path":{"name":"enchant_broker_set_dict_path","type":"","path":"php/enchant_broker_set_dict_path.html","desc":"Set the directory path for a given backend"}, "enchant_broker_set_ordering":{"name":"enchant_broker_set_ordering","type":"","path":"php/enchant_broker_set_ordering.html","desc":"Declares a preference of dictionaries to use for the language"}, "enchant_dict_add_to_personal":{"name":"enchant_dict_add_to_personal","type":"","path":"php/enchant_dict_add_to_personal.html","desc":"Add a word to personal word list"}, "enchant_dict_add_to_session":{"name":"enchant_dict_add_to_session","type":"","path":"php/enchant_dict_add_to_session.html","desc":"Add 'word' to this spell-checking session"}, "enchant_dict_check":{"name":"enchant_dict_check","type":"","path":"php/enchant_dict_check.html","desc":"Check whether a word is correctly spelled or not"}, "enchant_dict_describe":{"name":"enchant_dict_describe","type":"","path":"php/enchant_dict_describe.html","desc":"Describes an individual dictionary"}, "enchant_dict_get_error":{"name":"enchant_dict_get_error","type":"","path":"php/enchant_dict_get_error.html","desc":"Returns the last error of the current spelling-session"}, "enchant_dict_is_in_session":{"name":"enchant_dict_is_in_session","type":"","path":"php/enchant_dict_is_in_session.html","desc":"Whether or not 'word' exists in this spelling-session"}, "enchant_dict_quick_check":{"name":"enchant_dict_quick_check","type":"","path":"php/enchant_dict_quick_check.html","desc":"Check the word is correctly spelled and provide suggestions"}, "enchant_dict_store_replacement":{"name":"enchant_dict_store_replacement","type":"","path":"php/enchant_dict_store_replacement.html","desc":"Add a correction for a word"}, "enchant_dict_suggest":{"name":"enchant_dict_suggest","type":"","path":"php/enchant_dict_suggest.html","desc":"Will return a list of values if any of those pre-conditions are not met"}, "end":{"name":"end","type":"","path":"php/end.html","desc":"将数组的内部指针指向最后一个单元"}, "ereg":{"name":"ereg","type":"","path":"php/ereg.html","desc":"正则表达式匹配"}, "eregi":{"name":"eregi","type":"","path":"php/eregi.html","desc":"不区分大小写的正则表达式匹配"}, "eregi_replace":{"name":"eregi_replace","type":"","path":"php/eregi_replace.html","desc":"不区分大小写的正则表达式替换"}, "ereg_replace":{"name":"ereg_replace","type":"","path":"php/ereg_replace.html","desc":"正则表达式替换"}, "error_clear_last":{"name":"error_clear_last","type":"","path":"php/error_clear_last.html","desc":"清除最近一次错误"}, "error_get_last":{"name":"error_get_last","type":"","path":"php/error_get_last.html","desc":"获取最后发生的错误"}, "error_log":{"name":"error_log","type":"","path":"php/error_log.html","desc":"发送错误信息到某个地方"}, "error_reporting":{"name":"error_reporting","type":"","path":"php/error_reporting.html","desc":"设置应该报告何种 PHP 错误"}, "escapeshellarg":{"name":"escapeshellarg","type":"","path":"php/escapeshellarg.html","desc":"把字符串转码为可以在 shell 命令里使用的参数"}, "escapeshellcmd":{"name":"escapeshellcmd","type":"","path":"php/escapeshellcmd.html","desc":"shell 元字符转义"}, "eval":{"name":"eval","type":"","path":"php/eval.html","desc":"把字符串作为PHP代码执行"}, "event_add":{"name":"event_add","type":"","path":"php/event_add.html","desc":"Add an event to the set of monitored events"}, "event_base_free":{"name":"event_base_free","type":"","path":"php/event_base_free.html","desc":"Destroy event base"}, "event_base_loop":{"name":"event_base_loop","type":"","path":"php/event_base_loop.html","desc":"Handle events"}, "event_base_loopbreak":{"name":"event_base_loopbreak","type":"","path":"php/event_base_loopbreak.html","desc":"Abort event loop"}, "event_base_loopexit":{"name":"event_base_loopexit","type":"","path":"php/event_base_loopexit.html","desc":"Exit loop after a time"}, "event_base_new":{"name":"event_base_new","type":"","path":"php/event_base_new.html","desc":"Create and initialize new event base"}, "event_base_priority_init":{"name":"event_base_priority_init","type":"","path":"php/event_base_priority_init.html","desc":"Set the number of event priority levels"}, "event_base_reinit":{"name":"event_base_reinit","type":"","path":"php/event_base_reinit.html","desc":"Reinitialize the event base after a fork"}, "event_base_set":{"name":"event_base_set","type":"","path":"php/event_base_set.html","desc":"Associate event base with an event"}, "event_buffer_base_set":{"name":"event_buffer_base_set","type":"","path":"php/event_buffer_base_set.html","desc":"Associate buffered event with an event base"}, "event_buffer_disable":{"name":"event_buffer_disable","type":"","path":"php/event_buffer_disable.html","desc":"Disable a buffered event"}, "event_buffer_enable":{"name":"event_buffer_enable","type":"","path":"php/event_buffer_enable.html","desc":"Enable a buffered event"}, "event_buffer_fd_set":{"name":"event_buffer_fd_set","type":"","path":"php/event_buffer_fd_set.html","desc":"Change a buffered event file descriptor"}, "event_buffer_free":{"name":"event_buffer_free","type":"","path":"php/event_buffer_free.html","desc":"Destroy buffered event"}, "event_buffer_new":{"name":"event_buffer_new","type":"","path":"php/event_buffer_new.html","desc":"Create new buffered event"}, "event_buffer_priority_set":{"name":"event_buffer_priority_set","type":"","path":"php/event_buffer_priority_set.html","desc":"Assign a priority to a buffered event"}, "event_buffer_read":{"name":"event_buffer_read","type":"","path":"php/event_buffer_read.html","desc":"Read data from a buffered event"}, "event_buffer_set_callback":{"name":"event_buffer_set_callback","type":"","path":"php/event_buffer_set_callback.html","desc":"Set or reset callbacks for a buffered event"}, "event_buffer_timeout_set":{"name":"event_buffer_timeout_set","type":"","path":"php/event_buffer_timeout_set.html","desc":"Set read and write timeouts for a buffered event"}, "event_buffer_watermark_set":{"name":"event_buffer_watermark_set","type":"","path":"php/event_buffer_watermark_set.html","desc":"Set the watermarks for read and write events"}, "event_buffer_write":{"name":"event_buffer_write","type":"","path":"php/event_buffer_write.html","desc":"Write data to a buffered event"}, "event_del":{"name":"event_del","type":"","path":"php/event_del.html","desc":"Remove an event from the set of monitored events"}, "event_free":{"name":"event_free","type":"","path":"php/event_free.html","desc":"Free event resource"}, "event_new":{"name":"event_new","type":"","path":"php/event_new.html","desc":"Create new event"}, "event_priority_set":{"name":"event_priority_set","type":"","path":"php/event_priority_set.html","desc":"Assign a priority to an event"}, "event_set":{"name":"event_set","type":"","path":"php/event_set.html","desc":"Prepare an event"}, "event_timer_add":{"name":"event_timer_add","type":"","path":"php/event_timer_add.html","desc":"别名 event_add"}, "event_timer_del":{"name":"event_timer_del","type":"","path":"php/event_timer_del.html","desc":"别名 event_del"}, "event_timer_new":{"name":"event_timer_new","type":"","path":"php/event_timer_new.html","desc":"别名 event_new"}, "event_timer_set":{"name":"event_timer_set","type":"","path":"php/event_timer_set.html","desc":"Prepare a timer event"}, "exec":{"name":"exec","type":"","path":"php/exec.html","desc":"执行一个外部程序"}, "exif_imagetype":{"name":"exif_imagetype","type":"","path":"php/exif_imagetype.html","desc":"判断一个图像的类型"}, "exif_read_data":{"name":"exif_read_data","type":"","path":"php/exif_read_data.html","desc":"从 JPEG "}, "exif_tagname":{"name":"exif_tagname","type":"","path":"php/exif_tagname.html","desc":"获取指定索引的头名称"}, "exif_thumbnail":{"name":"exif_thumbnail","type":"","path":"php/exif_thumbnail.html","desc":"取得嵌入在 TIFF 或 JPEG 图像中的缩略图"}, "exit":{"name":"exit","type":"","path":"php/exit.html","desc":"输出一个消息并且退出当前脚本"}, "exp":{"name":"exp","type":"","path":"php/exp.html","desc":"计算 e 的指数"}, "expect_expectl":{"name":"expect_expectl","type":"","path":"php/expect_expectl.html","desc":"Waits until the output from a process mat"}, "expect_popen":{"name":"expect_popen","type":"","path":"php/expect_popen.html","desc":"Execute command via Bourne shell, and open the PTY s"}, "explode":{"name":"explode","type":"","path":"php/explode.html","desc":"使用一个字符串分割另一个字符串"}, "expm1":{"name":"expm1","type":"","path":"php/expm1.html","desc":"返回 exp(number) - 1,甚至当 number 的值接近零也能计算出准确结果"}, "extension_loaded":{"name":"extension_loaded","type":"","path":"php/extension_loaded.html","desc":"检查一个扩展是否已经加载"}, "extract":{"name":"extract","type":"","path":"php/extract.html","desc":"从数组中将变量导入到当前的符号表"}, "ezmlm_hash":{"name":"ezmlm_hash","type":"","path":"php/ezmlm_hash.html","desc":"计算 EZMLM 所需的散列值"}, "fam_cancel_monitor":{"name":"fam_cancel_monitor","type":"","path":"php/fam_cancel_monitor.html","desc":"Terminate monitoring"}, "fam_close":{"name":"fam_close","type":"","path":"php/fam_close.html","desc":"Close FAM connection"}, "fam_monitor_collection":{"name":"fam_monitor_collection","type":"","path":"php/fam_monitor_collection.html","desc":"Monitor a collection of files in a directory for changes"}, "fam_monitor_directory":{"name":"fam_monitor_directory","type":"","path":"php/fam_monitor_directory.html","desc":"Monitor a directory for changes"}, "fam_monitor_file":{"name":"fam_monitor_file","type":"","path":"php/fam_monitor_file.html","desc":"Monitor a regular file for changes"}, "fam_next_event":{"name":"fam_next_event","type":"","path":"php/fam_next_event.html","desc":"Get next pending FAM event"}, "fam_open":{"name":"fam_open","type":"","path":"php/fam_open.html","desc":"Open connection to FAM daemon"}, "fam_pending":{"name":"fam_pending","type":"","path":"php/fam_pending.html","desc":"Check for pending FAM events"}, "fam_resume_monitor":{"name":"fam_resume_monitor","type":"","path":"php/fam_resume_monitor.html","desc":"Resume suspended monitoring"}, "fam_suspend_monitor":{"name":"fam_suspend_monitor","type":"","path":"php/fam_suspend_monitor.html","desc":"Temporarily suspend monitoring"}, "fann_cascadetrain_on_data":{"name":"fann_cascadetrain_on_data","type":"","path":"php/fann_cascadetrain_on_data.html","desc":"在整个数据集上训练,使用一段时间的 Cascade2 训练算法。"}, "fann_cascadetrain_on_file":{"name":"fann_cascadetrain_on_file","type":"","path":"php/fann_cascadetrain_on_file.html","desc":"读取文件并在整个数据集上训练,使用 Cascade2 训练算法训练一段时间。"}, "fann_clear_scaling_params":{"name":"fann_clear_scaling_params","type":"","path":"php/fann_clear_scaling_params.html","desc":"清除缩放参数"}, "fann_copy":{"name":"fann_copy","type":"","path":"php/fann_copy.html","desc":"创建一个 fann 结构体的副本。"}, "fann_create_from_file":{"name":"fann_create_from_file","type":"","path":"php/fann_create_from_file.html","desc":"从配置文件中构建一个反向传播神经网络。"}, "fann_create_shortcut":{"name":"fann_create_shortcut","type":"","path":"php/fann_create_shortcut.html","desc":"创建一个含快捷连接而非全连接的标准反向传播神经网络。"}, "fann_create_shortcut_array":{"name":"fann_create_shortcut_array","type":"","path":"php/fann_create_shortcut_array.html","desc":"创建一个含快捷连接而非全连接的标准反向传播神经网络。"}, "fann_create_sparse":{"name":"fann_create_sparse","type":"","path":"php/fann_create_sparse.html","desc":"创建一个标准的反向传播神经网络,该网络不是全连接。"}, "fann_create_sparse_array":{"name":"fann_create_sparse_array","type":"","path":"php/fann_create_sparse_array.html","desc":"创建一个标准的反向传播神经网络,该网络使用一个表示每层大小的数组来构造,但是并不是全连接的。"}, "fann_create_standard":{"name":"fann_create_standard","type":"","path":"php/fann_create_standard.html","desc":"创建标准的全连接反向传播神经网络。"}, "fann_create_standard_array":{"name":"fann_create_standard_array","type":"","path":"php/fann_create_standard_array.html","desc":"创建一个全连接的反向传播神经网络,该网络使用一个表示每层大小的数组来构造。"}, "fann_create_train":{"name":"fann_create_train","type":"","path":"php/fann_create_train.html","desc":"创建一个空的训练数据结构。"}, "fann_create_train_from_callback":{"name":"fann_create_train_from_callback","type":"","path":"php/fann_create_train_from_callback.html","desc":"从用户提供的函数创建训练数据结构。"}, "fann_descale_input":{"name":"fann_descale_input","type":"","path":"php/fann_descale_input.html","desc":"在获取基于先前计算的参数之后,在输入向量中缩小数据"}, "fann_descale_output":{"name":"fann_descale_output","type":"","path":"php/fann_descale_output.html","desc":"在获取基于先前计算的参数之后,在输出向量中缩小数据"}, "fann_descale_train":{"name":"fann_descale_train","type":"","path":"php/fann_descale_train.html","desc":"基于先前计算的参数来缩小输入和输出数据"}, "fann_destroy":{"name":"fann_destroy","type":"","path":"php/fann_destroy.html","desc":"销毁整个网络并且适当地释放所有的关联内存。"}, "fann_destroy_train":{"name":"fann_destroy_train","type":"","path":"php/fann_destroy_train.html","desc":"销毁训练数据。"}, "fann_duplicate_train_data":{"name":"fann_duplicate_train_data","type":"","path":"php/fann_duplicate_train_data.html","desc":"返回 fann 训练数据精确的副本。"}, "fann_get_activation_function":{"name":"fann_get_activation_function","type":"","path":"php/fann_get_activation_function.html","desc":"返回激励函数"}, "fann_get_activation_steepness":{"name":"fann_get_activation_steepness","type":"","path":"php/fann_get_activation_steepness.html","desc":"为提供的神经和网络层数返回激活陡度"}, "fann_get_bias_array":{"name":"fann_get_bias_array","type":"","path":"php/fann_get_bias_array.html","desc":"获取网络中每一层的偏差数"}, "fann_get_bit_fail":{"name":"fann_get_bit_fail","type":"","path":"php/fann_get_bit_fail.html","desc":"失败位的数量"}, "fann_get_bit_fail_limit":{"name":"fann_get_bit_fail_limit","type":"","path":"php/fann_get_bit_fail_limit.html","desc":"返回训练期间使用的误差限制"}, "fann_get_cascade_activation_functions":{"name":"fann_get_cascade_activation_functions","type":"","path":"php/fann_get_cascade_activation_functions.html","desc":"返回级联激活函数"}, "fann_get_cascade_activation_functions_count":{"name":"fann_get_cascade_activation_functions_count","type":"","path":"php/fann_get_cascade_activation_functions_count.html","desc":"返回级联激活函数的数量"}, "fann_get_cascade_activation_steepnesses":{"name":"fann_get_cascade_activation_steepnesses","type":"","path":"php/fann_get_cascade_activation_steepnesses.html","desc":"返回级联激活陡度"}, "fann_get_cascade_activation_steepnesses_count":{"name":"fann_get_cascade_activation_steepnesses_count","type":"","path":"php/fann_get_cascade_activation_steepnesses_count.html","desc":"激活陡度的数量"}, "fann_get_cascade_candidate_change_fraction":{"name":"fann_get_cascade_candidate_change_fraction","type":"","path":"php/fann_get_cascade_candidate_change_fraction.html","desc":"返回级联候选变化分数"}, "fann_get_cascade_candidate_limit":{"name":"fann_get_cascade_candidate_limit","type":"","path":"php/fann_get_cascade_candidate_limit.html","desc":"返回候选限度"}, "fann_get_cascade_candidate_stagnation_epochs":{"name":"fann_get_cascade_candidate_stagnation_epochs","type":"","path":"php/fann_get_cascade_candidate_stagnation_epochs.html","desc":"返回层叠候选停滞周期的数量"}, "fann_get_cascade_max_cand_epochs":{"name":"fann_get_cascade_max_cand_epochs","type":"","path":"php/fann_get_cascade_max_cand_epochs.html","desc":"返回候选周期的最大值"}, "fann_get_cascade_max_out_epochs":{"name":"fann_get_cascade_max_out_epochs","type":"","path":"php/fann_get_cascade_max_out_epochs.html","desc":"返回输出周期的最大值"}, "fann_get_cascade_min_cand_epochs":{"name":"fann_get_cascade_min_cand_epochs","type":"","path":"php/fann_get_cascade_min_cand_epochs.html","desc":"返回最小的候选周期"}, "fann_get_cascade_min_out_epochs":{"name":"fann_get_cascade_min_out_epochs","type":"","path":"php/fann_get_cascade_min_out_epochs.html","desc":"返回最小输出周期"}, "fann_get_cascade_num_candidates":{"name":"fann_get_cascade_num_candidates","type":"","path":"php/fann_get_cascade_num_candidates.html","desc":"返回训练期间使用的候选数量"}, "fann_get_cascade_num_candidate_groups":{"name":"fann_get_cascade_num_candidate_groups","type":"","path":"php/fann_get_cascade_num_candidate_groups.html","desc":"返回候选组的数量"}, "fann_get_cascade_output_change_fraction":{"name":"fann_get_cascade_output_change_fraction","type":"","path":"php/fann_get_cascade_output_change_fraction.html","desc":"返回级联输出变化分数"}, "fann_get_cascade_output_stagnation_epochs":{"name":"fann_get_cascade_output_stagnation_epochs","type":"","path":"php/fann_get_cascade_output_stagnation_epochs.html","desc":"返回级联输出停滞周期的数量"}, "fann_get_cascade_weight_multiplier":{"name":"fann_get_cascade_weight_multiplier","type":"","path":"php/fann_get_cascade_weight_multiplier.html","desc":"返回权重因子"}, "fann_get_connection_array":{"name":"fann_get_connection_array","type":"","path":"php/fann_get_connection_array.html","desc":"获取网络中的连接。"}, "fann_get_connection_rate":{"name":"fann_get_connection_rate","type":"","path":"php/fann_get_connection_rate.html","desc":"获取当网络创建时连接的使用率。"}, "fann_get_errno":{"name":"fann_get_errno","type":"","path":"php/fann_get_errno.html","desc":"返回最后一个错误数字。"}, "fann_get_errstr":{"name":"fann_get_errstr","type":"","path":"php/fann_get_errstr.html","desc":"返回最后的错误字符串。"}, "fann_get_layer_array":{"name":"fann_get_layer_array","type":"","path":"php/fann_get_layer_array.html","desc":"获取网络中每层的神经元数量。"}, "fann_get_learning_momentum":{"name":"fann_get_learning_momentum","type":"","path":"php/fann_get_learning_momentum.html","desc":"返回学习动量"}, "fann_get_learning_rate":{"name":"fann_get_learning_rate","type":"","path":"php/fann_get_learning_rate.html","desc":"返回学习速率"}, "fann_get_mse":{"name":"fann_get_mse","type":"","path":"php/fann_get_mse.html","desc":"从网络中读取均方误差。"}, "fann_get_network_type":{"name":"fann_get_network_type","type":"","path":"php/fann_get_network_type.html","desc":"获取所创建的神经网络类型。"}, "fann_get_num_input":{"name":"fann_get_num_input","type":"","path":"php/fann_get_num_input.html","desc":"获取输入神经元的数量。"}, "fann_get_num_layers":{"name":"fann_get_num_layers","type":"","path":"php/fann_get_num_layers.html","desc":"获取神经网络的层数。"}, "fann_get_num_output":{"name":"fann_get_num_output","type":"","path":"php/fann_get_num_output.html","desc":"获取输出神经元的数量。"}, "fann_get_quickprop_decay":{"name":"fann_get_quickprop_decay","type":"","path":"php/fann_get_quickprop_decay.html","desc":"返回衰退值,用于在 quickprop 训练迭代时衰减权重"}, "fann_get_quickprop_mu":{"name":"fann_get_quickprop_mu","type":"","path":"php/fann_get_quickprop_mu.html","desc":"返回放大系数"}, "fann_get_rprop_decrease_factor":{"name":"fann_get_rprop_decrease_factor","type":"","path":"php/fann_get_rprop_decrease_factor.html","desc":"返回 RPROP 训练期间的衰减系数"}, "fann_get_rprop_delta_max":{"name":"fann_get_rprop_delta_max","type":"","path":"php/fann_get_rprop_delta_max.html","desc":"返回最大步长"}, "fann_get_rprop_delta_min":{"name":"fann_get_rprop_delta_min","type":"","path":"php/fann_get_rprop_delta_min.html","desc":"返回最小步长"}, "fann_get_rprop_delta_zero":{"name":"fann_get_rprop_delta_zero","type":"","path":"php/fann_get_rprop_delta_zero.html","desc":"返回初始步长"}, "fann_get_rprop_increase_factor":{"name":"fann_get_rprop_increase_factor","type":"","path":"php/fann_get_rprop_increase_factor.html","desc":"返回 RPROP 训练的递增系数"}, "fann_get_sarprop_step_error_shift":{"name":"fann_get_sarprop_step_error_shift","type":"","path":"php/fann_get_sarprop_step_error_shift.html","desc":"返回 sarprop 步值的误差偏移"}, "fann_get_sarprop_step_error_threshold_factor":{"name":"fann_get_sarprop_step_error_threshold_factor","type":"","path":"php/fann_get_sarprop_step_error_threshold_factor.html","desc":"返回 sarprop 算法步值的误差阈值系数"}, "fann_get_sarprop_temperature":{"name":"fann_get_sarprop_temperature","type":"","path":"php/fann_get_sarprop_temperature.html","desc":"返回 sarprop 算法温度"}, "fann_get_sarprop_weight_decay_shift":{"name":"fann_get_sarprop_weight_decay_shift","type":"","path":"php/fann_get_sarprop_weight_decay_shift.html","desc":"返回 sarprop 算法权重衰减变化值"}, "fann_get_total_connections":{"name":"fann_get_total_connections","type":"","path":"php/fann_get_total_connections.html","desc":"获取整个网络中所有的连接数。"}, "fann_get_total_neurons":{"name":"fann_get_total_neurons","type":"","path":"php/fann_get_total_neurons.html","desc":"获取整个网络中神经元的数量。"}, "fann_get_training_algorithm":{"name":"fann_get_training_algorithm","type":"","path":"php/fann_get_training_algorithm.html","desc":"返回训练算法。"}, "fann_get_train_error_function":{"name":"fann_get_train_error_function","type":"","path":"php/fann_get_train_error_function.html","desc":"返回训练中使用的错误函数。"}, "fann_get_train_stop_function":{"name":"fann_get_train_stop_function","type":"","path":"php/fann_get_train_stop_function.html","desc":"返回训练中使用的停止函数。"}, "fann_init_weights":{"name":"fann_init_weights","type":"","path":"php/fann_init_weights.html","desc":"使用 Widrow 和 Nguyen 算法初始化权重。"}, "fann_length_train_data":{"name":"fann_length_train_data","type":"","path":"php/fann_length_train_data.html","desc":"返回训练数据中训练模式的数量。"}, "fann_merge_train_data":{"name":"fann_merge_train_data","type":"","path":"php/fann_merge_train_data.html","desc":"合并训练数据。"}, "fann_num_input_train_data":{"name":"fann_num_input_train_data","type":"","path":"php/fann_num_input_train_data.html","desc":"返回训练数据中每个训练模式输入的数量。"}, "fann_num_output_train_data":{"name":"fann_num_output_train_data","type":"","path":"php/fann_num_output_train_data.html","desc":"返回训练数据中每个训练模式输出的数量。"}, "fann_print_error":{"name":"fann_print_error","type":"","path":"php/fann_print_error.html","desc":"打印错误字符串。"}, "fann_randomize_weights":{"name":"fann_randomize_weights","type":"","path":"php/fann_randomize_weights.html","desc":"给每个连接赋一个介于 min_weight 和 max_weight 之间的随机权重。"}, "fann_read_train_from_file":{"name":"fann_read_train_from_file","type":"","path":"php/fann_read_train_from_file.html","desc":"读取存储训练数据的文件。"}, "fann_reset_errno":{"name":"fann_reset_errno","type":"","path":"php/fann_reset_errno.html","desc":"重置最后的错误代码。"}, "fann_reset_errstr":{"name":"fann_reset_errstr","type":"","path":"php/fann_reset_errstr.html","desc":"重置最后的错误字符串。"}, "fann_reset_mse":{"name":"fann_reset_mse","type":"","path":"php/fann_reset_mse.html","desc":"重置网络中的均方误差。"}, "fann_run":{"name":"fann_run","type":"","path":"php/fann_run.html","desc":"将通过神经网络运行输入。"}, "fann_save":{"name":"fann_save","type":"","path":"php/fann_save.html","desc":"将整个网络保存至配置文件。"}, "fann_save_train":{"name":"fann_save_train","type":"","path":"php/fann_save_train.html","desc":"将训练结构体保存至文件。"}, "fann_scale_input":{"name":"fann_scale_input","type":"","path":"php/fann_scale_input.html","desc":"在以前计算参数的基础上,在训练之前放大输入向量中的数据"}, "fann_scale_input_train_data":{"name":"fann_scale_input_train_data","type":"","path":"php/fann_scale_input_train_data.html","desc":"在训练数据中缩放输入至指定范围"}, "fann_scale_output":{"name":"fann_scale_output","type":"","path":"php/fann_scale_output.html","desc":"在以前计算参数的基础上,在训练之前放大输出向量中的数据"}, "fann_scale_output_train_data":{"name":"fann_scale_output_train_data","type":"","path":"php/fann_scale_output_train_data.html","desc":"在训练数据中缩放输出至指定范围"}, "fann_scale_train":{"name":"fann_scale_train","type":"","path":"php/fann_scale_train.html","desc":"在以前计算参数的基础上,缩放输入和输出数据"}, "fann_scale_train_data":{"name":"fann_scale_train_data","type":"","path":"php/fann_scale_train_data.html","desc":"在训练数据中缩放输入和输出到指定的范围"}, "fann_set_activation_function":{"name":"fann_set_activation_function","type":"","path":"php/fann_set_activation_function.html","desc":"为已应用的神经元和层设置激活函数"}, "fann_set_activation_function_hidden":{"name":"fann_set_activation_function_hidden","type":"","path":"php/fann_set_activation_function_hidden.html","desc":"为所有隐藏层设置激活函数"}, "fann_set_activation_function_layer":{"name":"fann_set_activation_function_layer","type":"","path":"php/fann_set_activation_function_layer.html","desc":"为已应用的层中所有的神经元设置激活函数。"}, "fann_set_activation_function_output":{"name":"fann_set_activation_function_output","type":"","path":"php/fann_set_activation_function_output.html","desc":"为输出层设置激活函数"}, "fann_set_activation_steepness":{"name":"fann_set_activation_steepness","type":"","path":"php/fann_set_activation_steepness.html","desc":"为提供的神经元和层设置激活陡度"}, "fann_set_activation_steepness_hidden":{"name":"fann_set_activation_steepness_hidden","type":"","path":"php/fann_set_activation_steepness_hidden.html","desc":"为所有隐藏层中所有的神经元设置激活函数陡度"}, "fann_set_activation_steepness_layer":{"name":"fann_set_activation_steepness_layer","type":"","path":"php/fann_set_activation_steepness_layer.html","desc":"为提供的层中所有的神经元设置激活陡度"}, "fann_set_activation_steepness_output":{"name":"fann_set_activation_steepness_output","type":"","path":"php/fann_set_activation_steepness_output.html","desc":"在输出层中设置激活陡度"}, "fann_set_bit_fail_limit":{"name":"fann_set_bit_fail_limit","type":"","path":"php/fann_set_bit_fail_limit.html","desc":"设置训练期间使用的误差"}, "fann_set_callback":{"name":"fann_set_callback","type":"","path":"php/fann_set_callback.html","desc":"设置训练期间使用的回调函数。"}, "fann_set_cascade_activation_functions":{"name":"fann_set_cascade_activation_functions","type":"","path":"php/fann_set_cascade_activation_functions.html","desc":"设置级联候选激活函数的数组"}, "fann_set_cascade_activation_steepnesses":{"name":"fann_set_cascade_activation_steepnesses","type":"","path":"php/fann_set_cascade_activation_steepnesses.html","desc":"设置级联候选激活陡度的数组。"}, "fann_set_cascade_candidate_change_fraction":{"name":"fann_set_cascade_candidate_change_fraction","type":"","path":"php/fann_set_cascade_candidate_change_fraction.html","desc":"设置级联候选更改分数"}, "fann_set_cascade_candidate_limit":{"name":"fann_set_cascade_candidate_limit","type":"","path":"php/fann_set_cascade_candidate_limit.html","desc":"设置候选限度"}, "fann_set_cascade_candidate_stagnation_epochs":{"name":"fann_set_cascade_candidate_stagnation_epochs","type":"","path":"php/fann_set_cascade_candidate_stagnation_epochs.html","desc":"设置级联候选停止周期数"}, "fann_set_cascade_max_cand_epochs":{"name":"fann_set_cascade_max_cand_epochs","type":"","path":"php/fann_set_cascade_max_cand_epochs.html","desc":"设置最大候选周期数"}, "fann_set_cascade_max_out_epochs":{"name":"fann_set_cascade_max_out_epochs","type":"","path":"php/fann_set_cascade_max_out_epochs.html","desc":"设置最大输出周期"}, "fann_set_cascade_min_cand_epochs":{"name":"fann_set_cascade_min_cand_epochs","type":"","path":"php/fann_set_cascade_min_cand_epochs.html","desc":"设置最小候选周期"}, "fann_set_cascade_min_out_epochs":{"name":"fann_set_cascade_min_out_epochs","type":"","path":"php/fann_set_cascade_min_out_epochs.html","desc":"设置最小输出周期"}, "fann_set_cascade_num_candidate_groups":{"name":"fann_set_cascade_num_candidate_groups","type":"","path":"php/fann_set_cascade_num_candidate_groups.html","desc":"设置候选组数量"}, "fann_set_cascade_output_change_fraction":{"name":"fann_set_cascade_output_change_fraction","type":"","path":"php/fann_set_cascade_output_change_fraction.html","desc":"设置级联输出改变分数"}, "fann_set_cascade_output_stagnation_epochs":{"name":"fann_set_cascade_output_stagnation_epochs","type":"","path":"php/fann_set_cascade_output_stagnation_epochs.html","desc":"设置级联输出停滞周期的值"}, "fann_set_cascade_weight_multiplier":{"name":"fann_set_cascade_weight_multiplier","type":"","path":"php/fann_set_cascade_weight_multiplier.html","desc":"设置权重因子"}, "fann_set_error_log":{"name":"fann_set_error_log","type":"","path":"php/fann_set_error_log.html","desc":"设置错误记录保存的位置。"}, "fann_set_input_scaling_params":{"name":"fann_set_input_scaling_params","type":"","path":"php/fann_set_input_scaling_params.html","desc":"根据训练数据计算将来使用的输入比例参数"}, "fann_set_learning_momentum":{"name":"fann_set_learning_momentum","type":"","path":"php/fann_set_learning_momentum.html","desc":"设置学习动量。"}, "fann_set_learning_rate":{"name":"fann_set_learning_rate","type":"","path":"php/fann_set_learning_rate.html","desc":"设置学习速率。"}, "fann_set_output_scaling_params":{"name":"fann_set_output_scaling_params","type":"","path":"php/fann_set_output_scaling_params.html","desc":"根据训练数据计算将来使用的输出缩放参数"}, "fann_set_quickprop_decay":{"name":"fann_set_quickprop_decay","type":"","path":"php/fann_set_quickprop_decay.html","desc":"设置quickprop算法衰减因子"}, "fann_set_quickprop_mu":{"name":"fann_set_quickprop_mu","type":"","path":"php/fann_set_quickprop_mu.html","desc":"设置 quickprop 算法放大因子"}, "fann_set_rprop_decrease_factor":{"name":"fann_set_rprop_decrease_factor","type":"","path":"php/fann_set_rprop_decrease_factor.html","desc":"使用 RPROP 算法训练时,设置下降因子"}, "fann_set_rprop_delta_max":{"name":"fann_set_rprop_delta_max","type":"","path":"php/fann_set_rprop_delta_max.html","desc":"设置最大步长"}, "fann_set_rprop_delta_min":{"name":"fann_set_rprop_delta_min","type":"","path":"php/fann_set_rprop_delta_min.html","desc":"设置最小步长"}, "fann_set_rprop_delta_zero":{"name":"fann_set_rprop_delta_zero","type":"","path":"php/fann_set_rprop_delta_zero.html","desc":"设置初始步长"}, "fann_set_rprop_increase_factor":{"name":"fann_set_rprop_increase_factor","type":"","path":"php/fann_set_rprop_increase_factor.html","desc":"使用 RPROP 算法训练时,设置增长因子"}, "fann_set_sarprop_step_error_shift":{"name":"fann_set_sarprop_step_error_shift","type":"","path":"php/fann_set_sarprop_step_error_shift.html","desc":"设置 sarprop 算法的步误差偏移量"}, "fann_set_sarprop_step_error_threshold_factor":{"name":"fann_set_sarprop_step_error_threshold_factor","type":"","path":"php/fann_set_sarprop_step_error_threshold_factor.html","desc":"设置 sarprop 算法的步误差阈值因子"}, "fann_set_sarprop_temperature":{"name":"fann_set_sarprop_temperature","type":"","path":"php/fann_set_sarprop_temperature.html","desc":"设置 sarprop 算法的温度"}, "fann_set_sarprop_weight_decay_shift":{"name":"fann_set_sarprop_weight_decay_shift","type":"","path":"php/fann_set_sarprop_weight_decay_shift.html","desc":"设置 sarprop 算法的权重衰减偏移值"}, "fann_set_scaling_params":{"name":"fann_set_scaling_params","type":"","path":"php/fann_set_scaling_params.html","desc":"根据训练数据计算输入和输出缩放参数以供将来使用"}, "fann_set_training_algorithm":{"name":"fann_set_training_algorithm","type":"","path":"php/fann_set_training_algorithm.html","desc":"设置训练算法。"}, "fann_set_train_error_function":{"name":"fann_set_train_error_function","type":"","path":"php/fann_set_train_error_function.html","desc":"设置训练期间使用的错误函数。"}, "fann_set_train_stop_function":{"name":"fann_set_train_stop_function","type":"","path":"php/fann_set_train_stop_function.html","desc":"设置训练期间使用的停止函数。"}, "fann_set_weight":{"name":"fann_set_weight","type":"","path":"php/fann_set_weight.html","desc":"在网络中设置一个连接。"}, "fann_set_weight_array":{"name":"fann_set_weight_array","type":"","path":"php/fann_set_weight_array.html","desc":"在网络中设置一个连接。"}, "fann_shuffle_train_data":{"name":"fann_shuffle_train_data","type":"","path":"php/fann_shuffle_train_data.html","desc":"打算训练数据,使顺序随机。"}, "fann_subset_train_data":{"name":"fann_subset_train_data","type":"","path":"php/fann_subset_train_data.html","desc":"返回一个训练数据子集的副本。"}, "fann_test":{"name":"fann_test","type":"","path":"php/fann_test.html","desc":"使用一组输入和一组期望的输出来测试。"}, "fann_test_data":{"name":"fann_test_data","type":"","path":"php/fann_test_data.html","desc":"使用训练数据来测试并且计算出 MSE ."}, "fann_train":{"name":"fann_train","type":"","path":"php/fann_train.html","desc":"使用一个输入集和一个期望的输出集来迭代训练一次。"}, "fann_train_epoch":{"name":"fann_train_epoch","type":"","path":"php/fann_train_epoch.html","desc":"使用一组训练数据训练一个周期。"}, "fann_train_on_data":{"name":"fann_train_on_data","type":"","path":"php/fann_train_on_data.html","desc":"在整个数据集上训练一段时间。"}, "fann_train_on_file":{"name":"fann_train_on_file","type":"","path":"php/fann_train_on_file.html","desc":"在从某个文件读取的整个数据集上训练一段时间。"}, "fastcgi_finish_request":{"name":"fastcgi_finish_request","type":"","path":"php/fastcgi_finish_request.html","desc":"冲刷(flush)所有响应的数据给客户端"}, "fbsql_affected_rows":{"name":"fbsql_affected_rows","type":"","path":"php/fbsql_affected_rows.html","desc":"Get number of affected rows in previous FrontBase operation"}, "fbsql_autocommit":{"name":"fbsql_autocommit","type":"","path":"php/fbsql_autocommit.html","desc":"Enable or disable autocommit"}, "fbsql_blob_size":{"name":"fbsql_blob_size","type":"","path":"php/fbsql_blob_size.html","desc":"Get the size of a BLOB"}, "fbsql_change_user":{"name":"fbsql_change_user","type":"","path":"php/fbsql_change_user.html","desc":"Change logged in user of the active connection"}, "fbsql_clob_size":{"name":"fbsql_clob_size","type":"","path":"php/fbsql_clob_size.html","desc":"Get the size of a CLOB"}, "fbsql_close":{"name":"fbsql_close","type":"","path":"php/fbsql_close.html","desc":"Close FrontBase connection"}, "fbsql_commit":{"name":"fbsql_commit","type":"","path":"php/fbsql_commit.html","desc":"Commits a transaction to the database"}, "fbsql_connect":{"name":"fbsql_connect","type":"","path":"php/fbsql_connect.html","desc":"Open a connection to a FrontBase Server"}, "fbsql_create_blob":{"name":"fbsql_create_blob","type":"","path":"php/fbsql_create_blob.html","desc":"Create a BLOB"}, "fbsql_create_clob":{"name":"fbsql_create_clob","type":"","path":"php/fbsql_create_clob.html","desc":"Create a CLOB"}, "fbsql_create_db":{"name":"fbsql_create_db","type":"","path":"php/fbsql_create_db.html","desc":"Create a FrontBase database"}, "fbsql_database":{"name":"fbsql_database","type":"","path":"php/fbsql_database.html","desc":"Get or set the database name used with a connection"}, "fbsql_database_password":{"name":"fbsql_database_password","type":"","path":"php/fbsql_database_password.html","desc":"Sets or retrieves the password for a FrontBase database"}, "fbsql_data_seek":{"name":"fbsql_data_seek","type":"","path":"php/fbsql_data_seek.html","desc":"Move internal result pointer"}, "fbsql_db_query":{"name":"fbsql_db_query","type":"","path":"php/fbsql_db_query.html","desc":"Send a FrontBase query"}, "fbsql_db_status":{"name":"fbsql_db_status","type":"","path":"php/fbsql_db_status.html","desc":"Get the status for a given database"}, "fbsql_drop_db":{"name":"fbsql_drop_db","type":"","path":"php/fbsql_drop_db.html","desc":"Drop (delete) a FrontBase database"}, "fbsql_errno":{"name":"fbsql_errno","type":"","path":"php/fbsql_errno.html","desc":"Returns the error number from previous operation"}, "fbsql_error":{"name":"fbsql_error","type":"","path":"php/fbsql_error.html","desc":"Returns the error message from previous operation"}, "fbsql_fetch_array":{"name":"fbsql_fetch_array","type":"","path":"php/fbsql_fetch_array.html","desc":"Fetch a result row as an associative array, a numeric array, or both"}, "fbsql_fetch_assoc":{"name":"fbsql_fetch_assoc","type":"","path":"php/fbsql_fetch_assoc.html","desc":"Fetch a result row as an associative array"}, "fbsql_fetch_field":{"name":"fbsql_fetch_field","type":"","path":"php/fbsql_fetch_field.html","desc":"Get column information from a result and return as an object"}, "fbsql_fetch_lengths":{"name":"fbsql_fetch_lengths","type":"","path":"php/fbsql_fetch_lengths.html","desc":"Get the length of each output in a result"}, "fbsql_fetch_object":{"name":"fbsql_fetch_object","type":"","path":"php/fbsql_fetch_object.html","desc":"Fetch a result row as an object"}, "fbsql_fetch_row":{"name":"fbsql_fetch_row","type":"","path":"php/fbsql_fetch_row.html","desc":"Get a result row as an enumerated array"}, "fbsql_field_flags":{"name":"fbsql_field_flags","type":"","path":"php/fbsql_field_flags.html","desc":"Get the flags associated with the specified field in a result"}, "fbsql_field_len":{"name":"fbsql_field_len","type":"","path":"php/fbsql_field_len.html","desc":"Returns the length of the specified field"}, "fbsql_field_name":{"name":"fbsql_field_name","type":"","path":"php/fbsql_field_name.html","desc":"Get the name of the specified field in a result"}, "fbsql_field_seek":{"name":"fbsql_field_seek","type":"","path":"php/fbsql_field_seek.html","desc":"Set result pointer to a specified field offset"}, "fbsql_field_table":{"name":"fbsql_field_table","type":"","path":"php/fbsql_field_table.html","desc":"Get name of the table the specified field is in"}, "fbsql_field_type":{"name":"fbsql_field_type","type":"","path":"php/fbsql_field_type.html","desc":"Get the type of the specified field in a result"}, "fbsql_free_result":{"name":"fbsql_free_result","type":"","path":"php/fbsql_free_result.html","desc":"Free result memory"}, "fbsql_get_autostart_info":{"name":"fbsql_get_autostart_info","type":"","path":"php/fbsql_get_autostart_info.html","desc":"说明"}, "fbsql_hostname":{"name":"fbsql_hostname","type":"","path":"php/fbsql_hostname.html","desc":"Get or set the host name used with a connection"}, "fbsql_insert_id":{"name":"fbsql_insert_id","type":"","path":"php/fbsql_insert_id.html","desc":"Get the id generated from the previous INSERT operation"}, "fbsql_list_dbs":{"name":"fbsql_list_dbs","type":"","path":"php/fbsql_list_dbs.html","desc":"List databases available on a FrontBase server"}, "fbsql_list_fields":{"name":"fbsql_list_fields","type":"","path":"php/fbsql_list_fields.html","desc":"List FrontBase result fields"}, "fbsql_list_tables":{"name":"fbsql_list_tables","type":"","path":"php/fbsql_list_tables.html","desc":"List tables in a FrontBase database"}, "fbsql_next_result":{"name":"fbsql_next_result","type":"","path":"php/fbsql_next_result.html","desc":"Move the internal result pointer to the next result"}, "fbsql_num_fields":{"name":"fbsql_num_fields","type":"","path":"php/fbsql_num_fields.html","desc":"Get number of fields in result"}, "fbsql_num_rows":{"name":"fbsql_num_rows","type":"","path":"php/fbsql_num_rows.html","desc":"Get number of rows in result"}, "fbsql_password":{"name":"fbsql_password","type":"","path":"php/fbsql_password.html","desc":"Get or set the user password used with a connection"}, "fbsql_pconnect":{"name":"fbsql_pconnect","type":"","path":"php/fbsql_pconnect.html","desc":"Open a persistent connection to a FrontBase Server"}, "fbsql_query":{"name":"fbsql_query","type":"","path":"php/fbsql_query.html","desc":"Send a FrontBase query"}, "fbsql_read_blob":{"name":"fbsql_read_blob","type":"","path":"php/fbsql_read_blob.html","desc":"Read a BLOB from the database"}, "fbsql_read_clob":{"name":"fbsql_read_clob","type":"","path":"php/fbsql_read_clob.html","desc":"Read a CLOB from the database"}, "fbsql_result":{"name":"fbsql_result","type":"","path":"php/fbsql_result.html","desc":"Get result data"}, "fbsql_rollback":{"name":"fbsql_rollback","type":"","path":"php/fbsql_rollback.html","desc":"Rollback a transaction to the database"}, "fbsql_rows_fetched":{"name":"fbsql_rows_fetched","type":"","path":"php/fbsql_rows_fetched.html","desc":"Get the number of rows affected by the last statement"}, "fbsql_select_db":{"name":"fbsql_select_db","type":"","path":"php/fbsql_select_db.html","desc":"Select a FrontBase database"}, "fbsql_set_characterset":{"name":"fbsql_set_characterset","type":"","path":"php/fbsql_set_characterset.html","desc":"Change inputoutput character set"}, "fbsql_set_lob_mode":{"name":"fbsql_set_lob_mode","type":"","path":"php/fbsql_set_lob_mode.html","desc":"Set the LOB retrieve mode for a FrontBase result set"}, "fbsql_set_password":{"name":"fbsql_set_password","type":"","path":"php/fbsql_set_password.html","desc":"Change the password for a given user"}, "fbsql_set_transaction":{"name":"fbsql_set_transaction","type":"","path":"php/fbsql_set_transaction.html","desc":"Set the transaction locking and isolation"}, "fbsql_start_db":{"name":"fbsql_start_db","type":"","path":"php/fbsql_start_db.html","desc":"Start a database on local or remote server"}, "fbsql_stop_db":{"name":"fbsql_stop_db","type":"","path":"php/fbsql_stop_db.html","desc":"Stop a database on local or remote server"}, "fbsql_tablename":{"name":"fbsql_tablename","type":"","path":"php/fbsql_tablename.html","desc":"别名 fbsql_table_name"}, "fbsql_table_name":{"name":"fbsql_table_name","type":"","path":"php/fbsql_table_name.html","desc":"Get table name of field"}, "fbsql_username":{"name":"fbsql_username","type":"","path":"php/fbsql_username.html","desc":"Get or set the username for the connection"}, "fbsql_warnings":{"name":"fbsql_warnings","type":"","path":"php/fbsql_warnings.html","desc":"Enable or disable FrontBase warnings"}, "fclose":{"name":"fclose","type":"","path":"php/fclose.html","desc":"关闭一个已打开的文件指针"}, "fdf_add_doc_javascript":{"name":"fdf_add_doc_javascript","type":"","path":"php/fdf_add_doc_javascript.html","desc":"Adds javascript code to the FDF document"}, "fdf_add_template":{"name":"fdf_add_template","type":"","path":"php/fdf_add_template.html","desc":"Adds a template into the FDF document"}, "fdf_close":{"name":"fdf_close","type":"","path":"php/fdf_close.html","desc":"Close an FDF document"}, "fdf_create":{"name":"fdf_create","type":"","path":"php/fdf_create.html","desc":"Create a new FDF document"}, "fdf_enum_values":{"name":"fdf_enum_values","type":"","path":"php/fdf_enum_values.html","desc":"Call a user defined function for each document value"}, "fdf_errno":{"name":"fdf_errno","type":"","path":"php/fdf_errno.html","desc":"Return error code for last fdf operation"}, "fdf_error":{"name":"fdf_error","type":"","path":"php/fdf_error.html","desc":"Return error description for FDF error code"}, "fdf_get_ap":{"name":"fdf_get_ap","type":"","path":"php/fdf_get_ap.html","desc":"Get the appearance of a field"}, "fdf_get_attachment":{"name":"fdf_get_attachment","type":"","path":"php/fdf_get_attachment.html","desc":"Extracts uploaded file embedded in the FDF"}, "fdf_get_encoding":{"name":"fdf_get_encoding","type":"","path":"php/fdf_get_encoding.html","desc":"Get the value of the Encoding key"}, "fdf_get_file":{"name":"fdf_get_file","type":"","path":"php/fdf_get_file.html","desc":"Get the value of the F key"}, "fdf_get_flags":{"name":"fdf_get_flags","type":"","path":"php/fdf_get_flags.html","desc":"Gets the flags of a field"}, "fdf_get_opt":{"name":"fdf_get_opt","type":"","path":"php/fdf_get_opt.html","desc":"Gets a value from the opt array of a field"}, "fdf_get_status":{"name":"fdf_get_status","type":"","path":"php/fdf_get_status.html","desc":"Get the value of the STATUS key"}, "fdf_get_value":{"name":"fdf_get_value","type":"","path":"php/fdf_get_value.html","desc":"Get the value of a field"}, "fdf_get_version":{"name":"fdf_get_version","type":"","path":"php/fdf_get_version.html","desc":"Gets version number for FDF API or file"}, "fdf_header":{"name":"fdf_header","type":"","path":"php/fdf_header.html","desc":"Sets FDF-specific output headers"}, "fdf_next_field_name":{"name":"fdf_next_field_name","type":"","path":"php/fdf_next_field_name.html","desc":"Get the next field name"}, "fdf_open":{"name":"fdf_open","type":"","path":"php/fdf_open.html","desc":"Open a FDF document"}, "fdf_open_string":{"name":"fdf_open_string","type":"","path":"php/fdf_open_string.html","desc":"Read a FDF document from a string"}, "fdf_remove_item":{"name":"fdf_remove_item","type":"","path":"php/fdf_remove_item.html","desc":"Sets target frame for form"}, "fdf_save":{"name":"fdf_save","type":"","path":"php/fdf_save.html","desc":"Save a FDF document"}, "fdf_save_string":{"name":"fdf_save_string","type":"","path":"php/fdf_save_string.html","desc":"Returns the FDF document as a string"}, "fdf_set_ap":{"name":"fdf_set_ap","type":"","path":"php/fdf_set_ap.html","desc":"Set the appearance of a field"}, "fdf_set_encoding":{"name":"fdf_set_encoding","type":"","path":"php/fdf_set_encoding.html","desc":"Sets FDF character encoding"}, "fdf_set_file":{"name":"fdf_set_file","type":"","path":"php/fdf_set_file.html","desc":"Set PDF document to display FDF data in"}, "fdf_set_flags":{"name":"fdf_set_flags","type":"","path":"php/fdf_set_flags.html","desc":"Sets a flag of a field"}, "fdf_set_javascript_action":{"name":"fdf_set_javascript_action","type":"","path":"php/fdf_set_javascript_action.html","desc":"Sets an javascript action of a field"}, "fdf_set_on_import_javascript":{"name":"fdf_set_on_import_javascript","type":"","path":"php/fdf_set_on_import_javascript.html","desc":"Adds javascript code to be executed when Acrobat opens the FDF"}, "fdf_set_opt":{"name":"fdf_set_opt","type":"","path":"php/fdf_set_opt.html","desc":"Sets an option of a field"}, "fdf_set_status":{"name":"fdf_set_status","type":"","path":"php/fdf_set_status.html","desc":"Set the value of the STATUS key"}, "fdf_set_submit_form_action":{"name":"fdf_set_submit_form_action","type":"","path":"php/fdf_set_submit_form_action.html","desc":"Sets a submit form action of a field"}, "fdf_set_target_frame":{"name":"fdf_set_target_frame","type":"","path":"php/fdf_set_target_frame.html","desc":"Set target frame for form display"}, "fdf_set_value":{"name":"fdf_set_value","type":"","path":"php/fdf_set_value.html","desc":"Set the value of a field"}, "fdf_set_version":{"name":"fdf_set_version","type":"","path":"php/fdf_set_version.html","desc":"Sets version number for a FDF file"}, "feof":{"name":"feof","type":"","path":"php/feof.html","desc":"测试文件指针是否到了文件结束的位置"}, "fflush":{"name":"fflush","type":"","path":"php/fflush.html","desc":"将缓冲内容输出到文件"}, "fgetc":{"name":"fgetc","type":"","path":"php/fgetc.html","desc":"从文件指针中读取字符"}, "fgetcsv":{"name":"fgetcsv","type":"","path":"php/fgetcsv.html","desc":"从文件指针中读入一行并解析 CSV 字段"}, "fgets":{"name":"fgets","type":"","path":"php/fgets.html","desc":"从文件指针中读取一行"}, "fgetss":{"name":"fgetss","type":"","path":"php/fgetss.html","desc":"从文件指针中读取一行并过滤掉 HTML 标记"}, "file":{"name":"file","type":"","path":"php/file.html","desc":"把整个文件读入一个数组中"}, "fileatime":{"name":"fileatime","type":"","path":"php/fileatime.html","desc":"取得文件的上次访问时间"}, "filectime":{"name":"filectime","type":"","path":"php/filectime.html","desc":"取得文件的 inode 修改时间"}, "filegroup":{"name":"filegroup","type":"","path":"php/filegroup.html","desc":"取得文件的组"}, "fileinode":{"name":"fileinode","type":"","path":"php/fileinode.html","desc":"取得文件的 inode"}, "filemtime":{"name":"filemtime","type":"","path":"php/filemtime.html","desc":"取得文件修改时间"}, "fileowner":{"name":"fileowner","type":"","path":"php/fileowner.html","desc":"取得文件的所有者"}, "fileperms":{"name":"fileperms","type":"","path":"php/fileperms.html","desc":"取得文件的权限"}, "filepro":{"name":"filepro","type":"","path":"php/filepro.html","desc":"Read and verify the map file"}, "filepro_fieldcount":{"name":"filepro_fieldcount","type":"","path":"php/filepro_fieldcount.html","desc":"Find out how many fields are in a filePro database"}, "filepro_fieldname":{"name":"filepro_fieldname","type":"","path":"php/filepro_fieldname.html","desc":"Gets the name of a field"}, "filepro_fieldtype":{"name":"filepro_fieldtype","type":"","path":"php/filepro_fieldtype.html","desc":"Gets the type of a field"}, "filepro_fieldwidth":{"name":"filepro_fieldwidth","type":"","path":"php/filepro_fieldwidth.html","desc":"Gets the width of a field"}, "filepro_retrieve":{"name":"filepro_retrieve","type":"","path":"php/filepro_retrieve.html","desc":"Retrieves data from a filePro database"}, "filepro_rowcount":{"name":"filepro_rowcount","type":"","path":"php/filepro_rowcount.html","desc":"Find out how many rows are in a filePro database"}, "filesize":{"name":"filesize","type":"","path":"php/filesize.html","desc":"取得文件大小"}, "filetype":{"name":"filetype","type":"","path":"php/filetype.html","desc":"取得文件类型"}, "file_exists":{"name":"file_exists","type":"","path":"php/file_exists.html","desc":"检查文件或目录是否存在"}, "file_get_contents":{"name":"file_get_contents","type":"","path":"php/file_get_contents.html","desc":"将整个文件读入一个字符串"}, "file_put_contents":{"name":"file_put_contents","type":"","path":"php/file_put_contents.html","desc":"将一个字符串写入文件"}, "filter_has_var":{"name":"filter_has_var","type":"","path":"php/filter_has_var.html","desc":"检测是否存在指定类型的变量"}, "filter_id":{"name":"filter_id","type":"","path":"php/filter_id.html","desc":"返回与某个特定名称的过滤器相关联的id"}, "filter_input":{"name":"filter_input","type":"","path":"php/filter_input.html","desc":"通过名称获取特定的外部变量,并且可以通过过滤器处理它"}, "filter_input_array":{"name":"filter_input_array","type":"","path":"php/filter_input_array.html","desc":"获取一系列外部变量,并且可以通过过滤器处理它们"}, "filter_list":{"name":"filter_list","type":"","path":"php/filter_list.html","desc":"返回所支持的过滤器列表"}, "filter_var":{"name":"filter_var","type":"","path":"php/filter_var.html","desc":"使用特定的过滤器过滤一个变量"}, "filter_var_array":{"name":"filter_var_array","type":"","path":"php/filter_var_array.html","desc":"获取多个变量并且过滤它们"}, "finfo_buffer":{"name":"finfo_buffer","type":"","path":"php/finfo_buffer.html","desc":"返回一个字符串缓冲区的信息"}, "finfo_close":{"name":"finfo_close","type":"","path":"php/finfo_close.html","desc":"关闭 fileinfo 资源"}, "finfo_file":{"name":"finfo_file","type":"","path":"php/finfo_file.html","desc":"返回一个文件的信息"}, "finfo_open":{"name":"finfo_open","type":"","path":"php/finfo_open.html","desc":"创建一个 fileinfo 资源"}, "finfo_set_flags":{"name":"finfo_set_flags","type":"","path":"php/finfo_set_flags.html","desc":"设置 libmagic 配置选项"}, "floatval":{"name":"floatval","type":"","path":"php/floatval.html","desc":"获取变量的浮点值"}, "flock":{"name":"flock","type":"","path":"php/flock.html","desc":"轻便的咨询文件锁定"}, "floor":{"name":"floor","type":"","path":"php/floor.html","desc":"舍去法取整"}, "flush":{"name":"flush","type":"","path":"php/flush.html","desc":"刷新输出缓冲"}, "fmod":{"name":"fmod","type":"","path":"php/fmod.html","desc":"返回除法的浮点数余数"}, "fnmatch":{"name":"fnmatch","type":"","path":"php/fnmatch.html","desc":"用模式匹配文件名"}, "fopen":{"name":"fopen","type":"","path":"php/fopen.html","desc":"打开文件或者 URL"}, "forward_static_call":{"name":"forward_static_call","type":"","path":"php/forward_static_call.html","desc":"Call a static method"}, "forward_static_call_array":{"name":"forward_static_call_array","type":"","path":"php/forward_static_call_array.html","desc":"Call a static method and pass the arguments as array"}, "fpassthru":{"name":"fpassthru","type":"","path":"php/fpassthru.html","desc":"输出文件指针处的所有剩余数据"}, "fprintf":{"name":"fprintf","type":"","path":"php/fprintf.html","desc":"将格式化后的字符串写入到流"}, "fputcsv":{"name":"fputcsv","type":"","path":"php/fputcsv.html","desc":"将行格式化为 CSV 并写入文件指针"}, "fputs":{"name":"fputs","type":"","path":"php/fputs.html","desc":"fwrite 的别名"}, "fread":{"name":"fread","type":"","path":"php/fread.html","desc":"读取文件(可安全用于二进制文件)"}, "frenchtojd":{"name":"frenchtojd","type":"","path":"php/frenchtojd.html","desc":"从一个French Republican历法的日期得到Julian Day计数。"}, "fribidi_log2vis":{"name":"fribidi_log2vis","type":"","path":"php/fribidi_log2vis.html","desc":"Convert a logical string to a visual one"}, "fscanf":{"name":"fscanf","type":"","path":"php/fscanf.html","desc":"从文件中格式化输入"}, "fseek":{"name":"fseek","type":"","path":"php/fseek.html","desc":"在文件指针中定位"}, "fsockopen":{"name":"fsockopen","type":"","path":"php/fsockopen.html","desc":"打开一个网络连接或者一个Unix套接字连接"}, "fstat":{"name":"fstat","type":"","path":"php/fstat.html","desc":"通过已打开的文件指针取得文件信息"}, "ftell":{"name":"ftell","type":"","path":"php/ftell.html","desc":"返回文件指针读写的位置"}, "ftok":{"name":"ftok","type":"","path":"php/ftok.html","desc":"Convert a pathname and a project identifier to a System V IPC key"}, "ftp_alloc":{"name":"ftp_alloc","type":"","path":"php/ftp_alloc.html","desc":"为要上传的文件分配空间"}, "ftp_append":{"name":"ftp_append","type":"","path":"php/ftp_append.html","desc":"Append content of a file a another file on the FTP server"}, "ftp_cdup":{"name":"ftp_cdup","type":"","path":"php/ftp_cdup.html","desc":"切换到当前目录的父目录"}, "ftp_chdir":{"name":"ftp_chdir","type":"","path":"php/ftp_chdir.html","desc":"在 FTP 服务器上改变当前目录"}, "ftp_chmod":{"name":"ftp_chmod","type":"","path":"php/ftp_chmod.html","desc":"设置 FTP 服务器上的文件权限"}, "ftp_close":{"name":"ftp_close","type":"","path":"php/ftp_close.html","desc":"关闭一个 FTP 连接"}, "ftp_connect":{"name":"ftp_connect","type":"","path":"php/ftp_connect.html","desc":"建立一个新的 FTP 连接"}, "ftp_delete":{"name":"ftp_delete","type":"","path":"php/ftp_delete.html","desc":"删除 FTP 服务器上的一个文件"}, "ftp_exec":{"name":"ftp_exec","type":"","path":"php/ftp_exec.html","desc":"请求运行一条 FTP 命令"}, "ftp_fget":{"name":"ftp_fget","type":"","path":"php/ftp_fget.html","desc":"从 FTP 服务器上下载一个文件并保存到本地一个已经打开的文件中"}, "ftp_fput":{"name":"ftp_fput","type":"","path":"php/ftp_fput.html","desc":"上传一个已经打开的文件到 FTP 服务器"}, "ftp_get":{"name":"ftp_get","type":"","path":"php/ftp_get.html","desc":"从 FTP 服务器上下载一个文件"}, "ftp_get_option":{"name":"ftp_get_option","type":"","path":"php/ftp_get_option.html","desc":"返回当前 FTP 连接的各种不同的选项设置"}, "ftp_login":{"name":"ftp_login","type":"","path":"php/ftp_login.html","desc":"登录 FTP 服务器"}, "ftp_mdtm":{"name":"ftp_mdtm","type":"","path":"php/ftp_mdtm.html","desc":"返回指定文件的最后修改时间"}, "ftp_mkdir":{"name":"ftp_mkdir","type":"","path":"php/ftp_mkdir.html","desc":"建立新目录"}, "ftp_mlsd":{"name":"ftp_mlsd","type":"","path":"php/ftp_mlsd.html","desc":"Returns a list of files in the given directory"}, "ftp_nb_continue":{"name":"ftp_nb_continue","type":"","path":"php/ftp_nb_continue.html","desc":"连续获取/发送文件(non-blocking)"}, "ftp_nb_fget":{"name":"ftp_nb_fget","type":"","path":"php/ftp_nb_fget.html","desc":"从 FTP 服务器获取文件并写入到一个打开的文件(非阻塞)"}, "ftp_nb_fput":{"name":"ftp_nb_fput","type":"","path":"php/ftp_nb_fput.html","desc":"将文件存储到 FTP 服务器 (非阻塞)"}, "ftp_nb_get":{"name":"ftp_nb_get","type":"","path":"php/ftp_nb_get.html","desc":"从 FTP 服务器上获取文件并写入本地文件(non-blocking)"}, "ftp_nb_put":{"name":"ftp_nb_put","type":"","path":"php/ftp_nb_put.html","desc":"存储一个文件至 FTP 服务器(non-blocking)"}, "ftp_nlist":{"name":"ftp_nlist","type":"","path":"php/ftp_nlist.html","desc":"返回给定目录的文件列表"}, "ftp_pasv":{"name":"ftp_pasv","type":"","path":"php/ftp_pasv.html","desc":"返回当前 FTP 被动模式是否打开"}, "ftp_put":{"name":"ftp_put","type":"","path":"php/ftp_put.html","desc":"上传文件到 FTP 服务器"}, "ftp_pwd":{"name":"ftp_pwd","type":"","path":"php/ftp_pwd.html","desc":"返回当前目录名"}, "ftp_quit":{"name":"ftp_quit","type":"","path":"php/ftp_quit.html","desc":"ftp_close 的 别名"}, "ftp_raw":{"name":"ftp_raw","type":"","path":"php/ftp_raw.html","desc":"向 FTP 服务器发送命令"}, "ftp_rawlist":{"name":"ftp_rawlist","type":"","path":"php/ftp_rawlist.html","desc":"返回指定目录下文件的详细列表"}, "ftp_rename":{"name":"ftp_rename","type":"","path":"php/ftp_rename.html","desc":"更改 FTP 服务器上的文件或目录名"}, "ftp_rmdir":{"name":"ftp_rmdir","type":"","path":"php/ftp_rmdir.html","desc":"删除 FTP 服务器上的一个目录"}, "ftp_set_option":{"name":"ftp_set_option","type":"","path":"php/ftp_set_option.html","desc":"设置各种 FTP 运行时选项"}, "ftp_site":{"name":"ftp_site","type":"","path":"php/ftp_site.html","desc":"向服务器发送 SITE 命令"}, "ftp_size":{"name":"ftp_size","type":"","path":"php/ftp_size.html","desc":"返回指定文件的大小"}, "ftp_ssl_connect":{"name":"ftp_ssl_connect","type":"","path":"php/ftp_ssl_connect.html","desc":"打开 SSL-FTP 连接"}, "ftp_systype":{"name":"ftp_systype","type":"","path":"php/ftp_systype.html","desc":"返回远程 FTP 服务器的操作系统类型"}, "ftruncate":{"name":"ftruncate","type":"","path":"php/ftruncate.html","desc":"将文件截断到给定的长度"}, "function_exists":{"name":"function_exists","type":"","path":"php/function_exists.html","desc":"如果给定的函数已经被定义就返回 TRUE"}, "func_get_arg":{"name":"func_get_arg","type":"","path":"php/func_get_arg.html","desc":"返回参数列表的某一项"}, "func_get_args":{"name":"func_get_args","type":"","path":"php/func_get_args.html","desc":"返回一个包含函数参数列表的数组"}, "func_num_args":{"name":"func_num_args","type":"","path":"php/func_num_args.html","desc":"Returns the number of arguments passed to the function"}, "fwrite":{"name":"fwrite","type":"","path":"php/fwrite.html","desc":"写入文件(可安全用于二进制文件)"}, "gc_collect_cycles":{"name":"gc_collect_cycles","type":"","path":"php/gc_collect_cycles.html","desc":"强制收集所有现存的垃圾循环周期"}, "gc_disable":{"name":"gc_disable","type":"","path":"php/gc_disable.html","desc":"停用循环引用收集器"}, "gc_enable":{"name":"gc_enable","type":"","path":"php/gc_enable.html","desc":"激活循环引用收集器"}, "gc_enabled":{"name":"gc_enabled","type":"","path":"php/gc_enabled.html","desc":"返回循环引用计数器的状态"}, "gc_mem_caches":{"name":"gc_mem_caches","type":"","path":"php/gc_mem_caches.html","desc":"Reclaims memory used by the Zend Engine memory manager"}, "gc_status":{"name":"gc_status","type":"","path":"php/gc_status.html","desc":"Gets information about the garbage collector"}, "gd_info":{"name":"gd_info","type":"","path":"php/gd_info.html","desc":"取得当前安装的 GD 库的信息"}, "geoip_asnum_by_name":{"name":"geoip_asnum_by_name","type":"","path":"php/geoip_asnum_by_name.html","desc":"获取自治系统号(ASN)"}, "geoip_continent_code_by_name":{"name":"geoip_continent_code_by_name","type":"","path":"php/geoip_continent_code_by_name.html","desc":"获取七大洲的大写字母简称"}, "geoip_country_code3_by_name":{"name":"geoip_country_code3_by_name","type":"","path":"php/geoip_country_code3_by_name.html","desc":"获取三个字母组成的国家简称"}, "geoip_country_code_by_name":{"name":"geoip_country_code_by_name","type":"","path":"php/geoip_country_code_by_name.html","desc":"获取国家代码"}, "geoip_country_name_by_name":{"name":"geoip_country_name_by_name","type":"","path":"php/geoip_country_name_by_name.html","desc":"获取国家的全称"}, "geoip_database_info":{"name":"geoip_database_info","type":"","path":"php/geoip_database_info.html","desc":"获取 GeoIP 数据库的信息"}, "geoip_db_avail":{"name":"geoip_db_avail","type":"","path":"php/geoip_db_avail.html","desc":"GeoIP 数据库是否可用"}, "geoip_db_filename":{"name":"geoip_db_filename","type":"","path":"php/geoip_db_filename.html","desc":"返回 GeoIP 数据库相对应的文件名"}, "geoip_db_get_all_info":{"name":"geoip_db_get_all_info","type":"","path":"php/geoip_db_get_all_info.html","desc":"返回所有 GeoIP 数据库类型的详细信息"}, "geoip_domain_by_name":{"name":"geoip_domain_by_name","type":"","path":"php/geoip_domain_by_name.html","desc":"获取二级域名"}, "geoip_id_by_name":{"name":"geoip_id_by_name","type":"","path":"php/geoip_id_by_name.html","desc":"获取网络连接类型"}, "geoip_isp_by_name":{"name":"geoip_isp_by_name","type":"","path":"php/geoip_isp_by_name.html","desc":"获取 ISP (网络服务提供商)的名称"}, "geoip_netspeedcell_by_name":{"name":"geoip_netspeedcell_by_name","type":"","path":"php/geoip_netspeedcell_by_name.html","desc":"获取网络连接速度"}, "geoip_org_by_name":{"name":"geoip_org_by_name","type":"","path":"php/geoip_org_by_name.html","desc":"获取机构的名称"}, "geoip_record_by_name":{"name":"geoip_record_by_name","type":"","path":"php/geoip_record_by_name.html","desc":"返回 GeoIP 数据库中详细的城市信息"}, "geoip_region_by_name":{"name":"geoip_region_by_name","type":"","path":"php/geoip_region_by_name.html","desc":"获取国家和地区代码"}, "geoip_region_name_by_code":{"name":"geoip_region_name_by_code","type":"","path":"php/geoip_region_name_by_code.html","desc":"返回给定的国家和地区代码组合所对应的地区名称"}, "geoip_setup_custom_directory":{"name":"geoip_setup_custom_directory","type":"","path":"php/geoip_setup_custom_directory.html","desc":"自定义 GeoIP 数据库的目录"}, "geoip_time_zone_by_country_and_region":{"name":"geoip_time_zone_by_country_and_region","type":"","path":"php/geoip_time_zone_by_country_and_region.html","desc":"返回国家和地区的时区"}, "getallheaders":{"name":"getallheaders","type":"","path":"php/getallheaders.html","desc":"获取全部 HTTP 请求头信息"}, "getcwd":{"name":"getcwd","type":"","path":"php/getcwd.html","desc":"取得当前工作目录"}, "getdate":{"name":"getdate","type":"","path":"php/getdate.html","desc":"取得日期/时间信息"}, "getenv":{"name":"getenv","type":"","path":"php/getenv.html","desc":"获取一个环境变量的值"}, "gethostbyaddr":{"name":"gethostbyaddr","type":"","path":"php/gethostbyaddr.html","desc":"获取指定的IP地址对应的主机名"}, "gethostbyname":{"name":"gethostbyname","type":"","path":"php/gethostbyname.html","desc":"返回主机名对应的 IPv4地址。"}, "gethostbynamel":{"name":"gethostbynamel","type":"","path":"php/gethostbynamel.html","desc":"获取互联网主机名对应的 IPv4 地址列表"}, "gethostname":{"name":"gethostname","type":"","path":"php/gethostname.html","desc":"获取主机名"}, "getimagesize":{"name":"getimagesize","type":"","path":"php/getimagesize.html","desc":"取得图像大小"}, "getimagesizefromstring":{"name":"getimagesizefromstring","type":"","path":"php/getimagesizefromstring.html","desc":"从字符串中获取图像尺寸信息"}, "getlastmod":{"name":"getlastmod","type":"","path":"php/getlastmod.html","desc":"获取页面最后修改的时间"}, "getmxrr":{"name":"getmxrr","type":"","path":"php/getmxrr.html","desc":"获取互联网主机名对应的 MX 记录"}, "getmygid":{"name":"getmygid","type":"","path":"php/getmygid.html","desc":"获取当前 PHP 脚本拥有者的 GID"}, "getmyinode":{"name":"getmyinode","type":"","path":"php/getmyinode.html","desc":"获取当前脚本的索引节点(inode)"}, "getmypid":{"name":"getmypid","type":"","path":"php/getmypid.html","desc":"获取 PHP 进程的 ID"}, "getmyuid":{"name":"getmyuid","type":"","path":"php/getmyuid.html","desc":"获取 PHP 脚本所有者的 UID"}, "getopt":{"name":"getopt","type":"","path":"php/getopt.html","desc":"从命令行参数列表中获取选项"}, "getprotobyname":{"name":"getprotobyname","type":"","path":"php/getprotobyname.html","desc":"Get protocol number associated with protocol name"}, "getprotobynumber":{"name":"getprotobynumber","type":"","path":"php/getprotobynumber.html","desc":"Get protocol name associated with protocol number"}, "getrandmax":{"name":"getrandmax","type":"","path":"php/getrandmax.html","desc":"显示随机数最大的可能值"}, "getrusage":{"name":"getrusage","type":"","path":"php/getrusage.html","desc":"获取当前资源使用状况"}, "getservbyname":{"name":"getservbyname","type":"","path":"php/getservbyname.html","desc":"获取互联网服务协议对应的端口"}, "getservbyport":{"name":"getservbyport","type":"","path":"php/getservbyport.html","desc":"Get Internet service which corresponds to port and protocol"}, "gettext":{"name":"gettext","type":"","path":"php/gettext.html","desc":"Lookup a message in the current domain"}, "gettimeofday":{"name":"gettimeofday","type":"","path":"php/gettimeofday.html","desc":"取得当前时间"}, "gettype":{"name":"gettype","type":"","path":"php/gettype.html","desc":"获取变量的类型"}, "get_browser":{"name":"get_browser","type":"","path":"php/get_browser.html","desc":"获取浏览器具有的功能"}, "get_called_class":{"name":"get_called_class","type":"","path":"php/get_called_class.html","desc":"后期静态绑定("Late Static Binding")类的名称"}, "get_cfg_var":{"name":"get_cfg_var","type":"","path":"php/get_cfg_var.html","desc":"获取 PHP 配置选项的值"}, "get_class":{"name":"get_class","type":"","path":"php/get_class.html","desc":"返回对象的类名"}, "get_class_methods":{"name":"get_class_methods","type":"","path":"php/get_class_methods.html","desc":"返回由类的方法名组成的数组"}, "get_class_vars":{"name":"get_class_vars","type":"","path":"php/get_class_vars.html","desc":"返回由类的默认属性组成的数组"}, "get_current_user":{"name":"get_current_user","type":"","path":"php/get_current_user.html","desc":"获取当前 PHP 脚本所有者名称"}, "get_declared_classes":{"name":"get_declared_classes","type":"","path":"php/get_declared_classes.html","desc":"返回由已定义类的名字所组成的数组"}, "get_declared_interfaces":{"name":"get_declared_interfaces","type":"","path":"php/get_declared_interfaces.html","desc":"返回一个数组包含所有已声明的接口"}, "get_declared_traits":{"name":"get_declared_traits","type":"","path":"php/get_declared_traits.html","desc":"返回所有已定义的 traits 的数组"}, "get_defined_constants":{"name":"get_defined_constants","type":"","path":"php/get_defined_constants.html","desc":"返回所有常量的关联数组,键是常量名,值是常量值"}, "get_defined_functions":{"name":"get_defined_functions","type":"","path":"php/get_defined_functions.html","desc":"返回所有已定义函数的数组"}, "get_defined_vars":{"name":"get_defined_vars","type":"","path":"php/get_defined_vars.html","desc":"返回由所有已定义变量所组成的数组"}, "get_extension_funcs":{"name":"get_extension_funcs","type":"","path":"php/get_extension_funcs.html","desc":"返回模块函数名称的数组"}, "get_function_translation_table":{"name":"get_function_translation_table","type":"","path":"php/get_function_translation_table.html","desc":"返回使用 htmlspecialchars 和 htmlentities 后的转换表"}, "get_headers":{"name":"get_headers","type":"","path":"php/get_headers.html","desc":"取得服务器响应一个 HTTP 请求所发送的所有标头"}, "get_included_files":{"name":"get_included_files","type":"","path":"php/get_included_files.html","desc":"返回被 include 和 require 文件名的 array"}, "get_include_path":{"name":"get_include_path","type":"","path":"php/get_include_path.html","desc":"获取当前的 include_path 配置选项"}, "get_loaded_extensions":{"name":"get_loaded_extensions","type":"","path":"php/get_loaded_extensions.html","desc":"返回所有编译并加载模块名的 array"}, "get_magic_quotes_gpc":{"name":"get_magic_quotes_gpc","type":"","path":"php/get_magic_quotes_gpc.html","desc":"获取当前 magic_quotes_gpc 的配置选项设置"}, "get_magic_quotes_runtime":{"name":"get_magic_quotes_runtime","type":"","path":"php/get_magic_quotes_runtime.html","desc":"获取当前 magic_quotes_runtime 配置选项的激活状态"}, "get_meta_tags":{"name":"get_meta_tags","type":"","path":"php/get_meta_tags.html","desc":"从一个文件中提取所有的 meta 标签 content 属性,返回一个数组"}, "get_object_vars":{"name":"get_object_vars","type":"","path":"php/get_object_vars.html","desc":"返回由对象属性组成的关联数组"}, "get_parent_class":{"name":"get_parent_class","type":"","path":"php/get_parent_class.html","desc":"返回对象或类的父类名"}, "get_required_files":{"name":"get_required_files","type":"","path":"php/get_required_files.html","desc":"别名 get_included_files"}, "get_resources":{"name":"get_resources","type":"","path":"php/get_resources.html","desc":"Returns active resources"}, "get_resource_type":{"name":"get_resource_type","type":"","path":"php/get_resource_type.html","desc":"返回资源(resource)类型"}, "glob":{"name":"glob","type":"","path":"php/glob.html","desc":"寻找与模式匹配的文件路径"}, "gmdate":{"name":"gmdate","type":"","path":"php/gmdate.html","desc":"格式化一个 GMTUTC 日期/时间"}, "gmmktime":{"name":"gmmktime","type":"","path":"php/gmmktime.html","desc":"取得 GMT 日期的 UNIX 时间戳"}, "gmp_abs":{"name":"gmp_abs","type":"","path":"php/gmp_abs.html","desc":"Absolute value"}, "gmp_add":{"name":"gmp_add","type":"","path":"php/gmp_add.html","desc":"Add numbers"}, "gmp_and":{"name":"gmp_and","type":"","path":"php/gmp_and.html","desc":"Bitwise AND"}, "gmp_binomial":{"name":"gmp_binomial","type":"","path":"php/gmp_binomial.html","desc":"Calculates binomial coefficient"}, "gmp_clrbit":{"name":"gmp_clrbit","type":"","path":"php/gmp_clrbit.html","desc":"Clear bit"}, "gmp_cmp":{"name":"gmp_cmp","type":"","path":"php/gmp_cmp.html","desc":"Compare numbers"}, "gmp_com":{"name":"gmp_com","type":"","path":"php/gmp_com.html","desc":"Calculates one's complement"}, "gmp_div":{"name":"gmp_div","type":"","path":"php/gmp_div.html","desc":"别名 gmp_div_q"}, "gmp_divexact":{"name":"gmp_divexact","type":"","path":"php/gmp_divexact.html","desc":"Exact division of numbers"}, "gmp_div_q":{"name":"gmp_div_q","type":"","path":"php/gmp_div_q.html","desc":"Divide numbers"}, "gmp_div_qr":{"name":"gmp_div_qr","type":"","path":"php/gmp_div_qr.html","desc":"Divide numbers and get quotient and remainder"}, "gmp_div_r":{"name":"gmp_div_r","type":"","path":"php/gmp_div_r.html","desc":"Remainder of the division of numbers"}, "gmp_export":{"name":"gmp_export","type":"","path":"php/gmp_export.html","desc":"Export to a binary string"}, "gmp_fact":{"name":"gmp_fact","type":"","path":"php/gmp_fact.html","desc":"Factorial"}, "gmp_gcd":{"name":"gmp_gcd","type":"","path":"php/gmp_gcd.html","desc":"Calculate GCD"}, "gmp_gcdext":{"name":"gmp_gcdext","type":"","path":"php/gmp_gcdext.html","desc":"Calculate GCD and multipliers"}, "gmp_hamdist":{"name":"gmp_hamdist","type":"","path":"php/gmp_hamdist.html","desc":"Hamming distance"}, "gmp_import":{"name":"gmp_import","type":"","path":"php/gmp_import.html","desc":"Import from a binary string"}, "gmp_init":{"name":"gmp_init","type":"","path":"php/gmp_init.html","desc":"Create GMP number"}, "gmp_intval":{"name":"gmp_intval","type":"","path":"php/gmp_intval.html","desc":"Convert GMP number to integer"}, "gmp_invert":{"name":"gmp_invert","type":"","path":"php/gmp_invert.html","desc":"Inverse by modulo"}, "gmp_jacobi":{"name":"gmp_jacobi","type":"","path":"php/gmp_jacobi.html","desc":"Jacobi symbol"}, "gmp_kronecker":{"name":"gmp_kronecker","type":"","path":"php/gmp_kronecker.html","desc":"Kronecker symbol"}, "gmp_lcm":{"name":"gmp_lcm","type":"","path":"php/gmp_lcm.html","desc":"Calculate GCD"}, "gmp_legendre":{"name":"gmp_legendre","type":"","path":"php/gmp_legendre.html","desc":"Legendre symbol"}, "gmp_mod":{"name":"gmp_mod","type":"","path":"php/gmp_mod.html","desc":"Modulo operation"}, "gmp_mul":{"name":"gmp_mul","type":"","path":"php/gmp_mul.html","desc":"Multiply numbers"}, "gmp_neg":{"name":"gmp_neg","type":"","path":"php/gmp_neg.html","desc":"Negate number"}, "gmp_nextprime":{"name":"gmp_nextprime","type":"","path":"php/gmp_nextprime.html","desc":"Find next prime number"}, "gmp_or":{"name":"gmp_or","type":"","path":"php/gmp_or.html","desc":"Bitwise OR"}, "gmp_perfect_power":{"name":"gmp_perfect_power","type":"","path":"php/gmp_perfect_power.html","desc":"Perfect power check"}, "gmp_perfect_square":{"name":"gmp_perfect_square","type":"","path":"php/gmp_perfect_square.html","desc":"Perfect square check"}, "gmp_popcount":{"name":"gmp_popcount","type":"","path":"php/gmp_popcount.html","desc":"Population count"}, "gmp_pow":{"name":"gmp_pow","type":"","path":"php/gmp_pow.html","desc":"Raise number into power"}, "gmp_powm":{"name":"gmp_powm","type":"","path":"php/gmp_powm.html","desc":"Raise number into power with modulo"}, "gmp_prob_prime":{"name":"gmp_prob_prime","type":"","path":"php/gmp_prob_prime.html","desc":"Check if number is "probably prime""}, "gmp_random":{"name":"gmp_random","type":"","path":"php/gmp_random.html","desc":"Random number"}, "gmp_random_bits":{"name":"gmp_random_bits","type":"","path":"php/gmp_random_bits.html","desc":"Random number"}, "gmp_random_range":{"name":"gmp_random_range","type":"","path":"php/gmp_random_range.html","desc":"Random number"}, "gmp_random_seed":{"name":"gmp_random_seed","type":"","path":"php/gmp_random_seed.html","desc":"Sets the RNG seed"}, "gmp_root":{"name":"gmp_root","type":"","path":"php/gmp_root.html","desc":"Take the integer part of nth root"}, "gmp_rootrem":{"name":"gmp_rootrem","type":"","path":"php/gmp_rootrem.html","desc":"Take the integer part and remainder of nth root"}, "gmp_scan0":{"name":"gmp_scan0","type":"","path":"php/gmp_scan0.html","desc":"Scan for 0"}, "gmp_scan1":{"name":"gmp_scan1","type":"","path":"php/gmp_scan1.html","desc":"Scan for 1"}, "gmp_setbit":{"name":"gmp_setbit","type":"","path":"php/gmp_setbit.html","desc":"Set bit"}, "gmp_sign":{"name":"gmp_sign","type":"","path":"php/gmp_sign.html","desc":"Sign of number"}, "gmp_sqrt":{"name":"gmp_sqrt","type":"","path":"php/gmp_sqrt.html","desc":"Calculate square root"}, "gmp_sqrtrem":{"name":"gmp_sqrtrem","type":"","path":"php/gmp_sqrtrem.html","desc":"Square root with remainder"}, "gmp_strval":{"name":"gmp_strval","type":"","path":"php/gmp_strval.html","desc":"Convert GMP number to string"}, "gmp_sub":{"name":"gmp_sub","type":"","path":"php/gmp_sub.html","desc":"Subtract numbers"}, "gmp_testbit":{"name":"gmp_testbit","type":"","path":"php/gmp_testbit.html","desc":"Tests if a bit is set"}, "gmp_xor":{"name":"gmp_xor","type":"","path":"php/gmp_xor.html","desc":"Bitwise XOR"}, "gmstrftime":{"name":"gmstrftime","type":"","path":"php/gmstrftime.html","desc":"根据区域设置格式化 GMTUTC 时间/日期"}, "gnupg_adddecryptkey":{"name":"gnupg_adddecryptkey","type":"","path":"php/gnupg_adddecryptkey.html","desc":"Add a key for decryption"}, "gnupg_addencryptkey":{"name":"gnupg_addencryptkey","type":"","path":"php/gnupg_addencryptkey.html","desc":"Add a key for encryption"}, "gnupg_addsignkey":{"name":"gnupg_addsignkey","type":"","path":"php/gnupg_addsignkey.html","desc":"Add a key for signing"}, "gnupg_cleardecryptkeys":{"name":"gnupg_cleardecryptkeys","type":"","path":"php/gnupg_cleardecryptkeys.html","desc":"Removes all keys which were set for decryption before"}, "gnupg_clearencryptkeys":{"name":"gnupg_clearencryptkeys","type":"","path":"php/gnupg_clearencryptkeys.html","desc":"Removes all keys which were set for encryption before"}, "gnupg_clearsignkeys":{"name":"gnupg_clearsignkeys","type":"","path":"php/gnupg_clearsignkeys.html","desc":"Removes all keys which were set for signing before"}, "gnupg_decrypt":{"name":"gnupg_decrypt","type":"","path":"php/gnupg_decrypt.html","desc":"Decrypts a given text"}, "gnupg_decryptverify":{"name":"gnupg_decryptverify","type":"","path":"php/gnupg_decryptverify.html","desc":"Decrypts and verifies a given text"}, "gnupg_encrypt":{"name":"gnupg_encrypt","type":"","path":"php/gnupg_encrypt.html","desc":"Encrypts a given text"}, "gnupg_encryptsign":{"name":"gnupg_encryptsign","type":"","path":"php/gnupg_encryptsign.html","desc":"Encrypts and signs a given text"}, "gnupg_export":{"name":"gnupg_export","type":"","path":"php/gnupg_export.html","desc":"Exports a key"}, "gnupg_geterror":{"name":"gnupg_geterror","type":"","path":"php/gnupg_geterror.html","desc":"Returns the errortext, if a function fails"}, "gnupg_getprotocol":{"name":"gnupg_getprotocol","type":"","path":"php/gnupg_getprotocol.html","desc":"Returns the currently active protocol for all operations"}, "gnupg_import":{"name":"gnupg_import","type":"","path":"php/gnupg_import.html","desc":"Imports a key"}, "gnupg_init":{"name":"gnupg_init","type":"","path":"php/gnupg_init.html","desc":"Initialize a connection"}, "gnupg_keyinfo":{"name":"gnupg_keyinfo","type":"","path":"php/gnupg_keyinfo.html","desc":"Returns an array with information about all keys that matches the given pattern"}, "gnupg_setarmor":{"name":"gnupg_setarmor","type":"","path":"php/gnupg_setarmor.html","desc":"Toggle armored output"}, "gnupg_seterrormode":{"name":"gnupg_seterrormode","type":"","path":"php/gnupg_seterrormode.html","desc":"Sets the mode for error_reporting"}, "gnupg_setsignmode":{"name":"gnupg_setsignmode","type":"","path":"php/gnupg_setsignmode.html","desc":"Sets the mode for signing"}, "gnupg_sign":{"name":"gnupg_sign","type":"","path":"php/gnupg_sign.html","desc":"Signs a given text"}, "gnupg_verify":{"name":"gnupg_verify","type":"","path":"php/gnupg_verify.html","desc":"Verifies a signed text"}, "gopher_parsedir":{"name":"gopher_parsedir","type":"","path":"php/gopher_parsedir.html","desc":"Translate a gopher formatted directory entry into an associative array"}, "grapheme_extract":{"name":"grapheme_extract","type":"","path":"php/grapheme_extract.html","desc":"Function to extract a sequence of default grapheme clusters from a text buffer, which must be encoded in UTF-8"}, "grapheme_stripos":{"name":"grapheme_stripos","type":"","path":"php/grapheme_stripos.html","desc":"Find position (in grapheme units) of first occurrence of a case-insensitive string"}, "grapheme_stristr":{"name":"grapheme_stristr","type":"","path":"php/grapheme_stristr.html","desc":"Returns part of haystack string from the first occurrence of case-insensitive needle to the end of haystack"}, "grapheme_strlen":{"name":"grapheme_strlen","type":"","path":"php/grapheme_strlen.html","desc":"Get string length in grapheme units"}, "grapheme_strpos":{"name":"grapheme_strpos","type":"","path":"php/grapheme_strpos.html","desc":"Find position (in grapheme units) of first occurrence of a string"}, "grapheme_strripos":{"name":"grapheme_strripos","type":"","path":"php/grapheme_strripos.html","desc":"Find position (in grapheme units) of last occurrence of a case-insensitive string"}, "grapheme_strrpos":{"name":"grapheme_strrpos","type":"","path":"php/grapheme_strrpos.html","desc":"Find position (in grapheme units) of last occurrence of a string"}, "grapheme_strstr":{"name":"grapheme_strstr","type":"","path":"php/grapheme_strstr.html","desc":"Returns part of haystack string from the first occurrence of needle to the end of haystack"}, "grapheme_substr":{"name":"grapheme_substr","type":"","path":"php/grapheme_substr.html","desc":"Return part of a string"}, "gregoriantojd":{"name":"gregoriantojd","type":"","path":"php/gregoriantojd.html","desc":"转变一个Gregorian历法日期到Julian Day计数"}, "gupnp_context_get_host_ip":{"name":"gupnp_context_get_host_ip","type":"","path":"php/gupnp_context_get_host_ip.html","desc":"Get the IP address"}, "gupnp_context_get_port":{"name":"gupnp_context_get_port","type":"","path":"php/gupnp_context_get_port.html","desc":"Get the port"}, "gupnp_context_get_subscription_timeout":{"name":"gupnp_context_get_subscription_timeout","type":"","path":"php/gupnp_context_get_subscription_timeout.html","desc":"Get the event subscription timeout"}, "gupnp_context_host_path":{"name":"gupnp_context_host_path","type":"","path":"php/gupnp_context_host_path.html","desc":"Start hosting"}, "gupnp_context_new":{"name":"gupnp_context_new","type":"","path":"php/gupnp_context_new.html","desc":"Create a new context"}, "gupnp_context_set_subscription_timeout":{"name":"gupnp_context_set_subscription_timeout","type":"","path":"php/gupnp_context_set_subscription_timeout.html","desc":"Sets the event subscription timeout"}, "gupnp_context_timeout_add":{"name":"gupnp_context_timeout_add","type":"","path":"php/gupnp_context_timeout_add.html","desc":"Sets a function to be called at regular intervals"}, "gupnp_context_unhost_path":{"name":"gupnp_context_unhost_path","type":"","path":"php/gupnp_context_unhost_path.html","desc":"Stop hosting"}, "gupnp_control_point_browse_start":{"name":"gupnp_control_point_browse_start","type":"","path":"php/gupnp_control_point_browse_start.html","desc":"Start browsing"}, "gupnp_control_point_browse_stop":{"name":"gupnp_control_point_browse_stop","type":"","path":"php/gupnp_control_point_browse_stop.html","desc":"Stop browsing"}, "gupnp_control_point_callback_set":{"name":"gupnp_control_point_callback_set","type":"","path":"php/gupnp_control_point_callback_set.html","desc":"Set control point callback"}, "gupnp_control_point_new":{"name":"gupnp_control_point_new","type":"","path":"php/gupnp_control_point_new.html","desc":"Create a new control point"}, "gupnp_device_action_callback_set":{"name":"gupnp_device_action_callback_set","type":"","path":"php/gupnp_device_action_callback_set.html","desc":"Set device callback function"}, "gupnp_device_info_get":{"name":"gupnp_device_info_get","type":"","path":"php/gupnp_device_info_get.html","desc":"Get info of root device"}, "gupnp_device_info_get_service":{"name":"gupnp_device_info_get_service","type":"","path":"php/gupnp_device_info_get_service.html","desc":"Get the service with type"}, "gupnp_root_device_get_available":{"name":"gupnp_root_device_get_available","type":"","path":"php/gupnp_root_device_get_available.html","desc":"Check whether root device is available"}, "gupnp_root_device_get_relative_location":{"name":"gupnp_root_device_get_relative_location","type":"","path":"php/gupnp_root_device_get_relative_location.html","desc":"Get the relative location of root device"}, "gupnp_root_device_new":{"name":"gupnp_root_device_new","type":"","path":"php/gupnp_root_device_new.html","desc":"Create a new root device"}, "gupnp_root_device_set_available":{"name":"gupnp_root_device_set_available","type":"","path":"php/gupnp_root_device_set_available.html","desc":"Set whether or not root_device is available"}, "gupnp_root_device_start":{"name":"gupnp_root_device_start","type":"","path":"php/gupnp_root_device_start.html","desc":"Start main loop"}, "gupnp_root_device_stop":{"name":"gupnp_root_device_stop","type":"","path":"php/gupnp_root_device_stop.html","desc":"Stop main loop"}, "gupnp_service_action_get":{"name":"gupnp_service_action_get","type":"","path":"php/gupnp_service_action_get.html","desc":"Retrieves the specified action arguments"}, "gupnp_service_action_return":{"name":"gupnp_service_action_return","type":"","path":"php/gupnp_service_action_return.html","desc":"Return successfully"}, "gupnp_service_action_return_error":{"name":"gupnp_service_action_return_error","type":"","path":"php/gupnp_service_action_return_error.html","desc":"Return error code"}, "gupnp_service_action_set":{"name":"gupnp_service_action_set","type":"","path":"php/gupnp_service_action_set.html","desc":"Sets the specified action return values"}, "gupnp_service_freeze_notify":{"name":"gupnp_service_freeze_notify","type":"","path":"php/gupnp_service_freeze_notify.html","desc":"Freeze new notifications"}, "gupnp_service_info_get":{"name":"gupnp_service_info_get","type":"","path":"php/gupnp_service_info_get.html","desc":"Get full info of service"}, "gupnp_service_info_get_introspection":{"name":"gupnp_service_info_get_introspection","type":"","path":"php/gupnp_service_info_get_introspection.html","desc":"Get resource introspection of service"}, "gupnp_service_introspection_get_state_variable":{"name":"gupnp_service_introspection_get_state_variable","type":"","path":"php/gupnp_service_introspection_get_state_variable.html","desc":"Returns the state variable data"}, "gupnp_service_notify":{"name":"gupnp_service_notify","type":"","path":"php/gupnp_service_notify.html","desc":"Notifies listening clients"}, "gupnp_service_proxy_action_get":{"name":"gupnp_service_proxy_action_get","type":"","path":"php/gupnp_service_proxy_action_get.html","desc":"Send action to the service and get value"}, "gupnp_service_proxy_action_set":{"name":"gupnp_service_proxy_action_set","type":"","path":"php/gupnp_service_proxy_action_set.html","desc":"Send action to the service and set value"}, "gupnp_service_proxy_add_notify":{"name":"gupnp_service_proxy_add_notify","type":"","path":"php/gupnp_service_proxy_add_notify.html","desc":"Sets up callback for variable change notification"}, "gupnp_service_proxy_callback_set":{"name":"gupnp_service_proxy_callback_set","type":"","path":"php/gupnp_service_proxy_callback_set.html","desc":"Set service proxy callback for signal"}, "gupnp_service_proxy_get_subscribed":{"name":"gupnp_service_proxy_get_subscribed","type":"","path":"php/gupnp_service_proxy_get_subscribed.html","desc":"Check whether subscription is valid to the service"}, "gupnp_service_proxy_remove_notify":{"name":"gupnp_service_proxy_remove_notify","type":"","path":"php/gupnp_service_proxy_remove_notify.html","desc":"Cancels the variable change notification"}, "gupnp_service_proxy_set_subscribed":{"name":"gupnp_service_proxy_set_subscribed","type":"","path":"php/gupnp_service_proxy_set_subscribed.html","desc":"(Un)subscribes to the service"}, "gupnp_service_thaw_notify":{"name":"gupnp_service_thaw_notify","type":"","path":"php/gupnp_service_thaw_notify.html","desc":"Sends out any pending notifications and stops queuing of new ones"}, "gzclose":{"name":"gzclose","type":"","path":"php/gzclose.html","desc":"Close an open gz-file pointer"}, "gzcompress":{"name":"gzcompress","type":"","path":"php/gzcompress.html","desc":"Compress a string"}, "gzdecode":{"name":"gzdecode","type":"","path":"php/gzdecode.html","desc":"Decodes a gzip compressed string"}, "gzdeflate":{"name":"gzdeflate","type":"","path":"php/gzdeflate.html","desc":"Deflate a string"}, "gzencode":{"name":"gzencode","type":"","path":"php/gzencode.html","desc":"Create a gzip compressed string"}, "gzeof":{"name":"gzeof","type":"","path":"php/gzeof.html","desc":"Test for EOF on a gz-file pointer"}, "gzfile":{"name":"gzfile","type":"","path":"php/gzfile.html","desc":"Read entire gz-file into an array"}, "gzgetc":{"name":"gzgetc","type":"","path":"php/gzgetc.html","desc":"Get character from gz-file pointer"}, "gzgets":{"name":"gzgets","type":"","path":"php/gzgets.html","desc":"Get line from file pointer"}, "gzgetss":{"name":"gzgetss","type":"","path":"php/gzgetss.html","desc":"Get line from gz-file pointer and strip HTML tags"}, "gzinflate":{"name":"gzinflate","type":"","path":"php/gzinflate.html","desc":"Inflate a deflated string"}, "gzopen":{"name":"gzopen","type":"","path":"php/gzopen.html","desc":"Open gz-file"}, "gzpassthru":{"name":"gzpassthru","type":"","path":"php/gzpassthru.html","desc":"Output all remaining data on a gz-file pointer"}, "gzputs":{"name":"gzputs","type":"","path":"php/gzputs.html","desc":"别名 gzwrite"}, "gzread":{"name":"gzread","type":"","path":"php/gzread.html","desc":"Binary-safe gz-file read"}, "gzrewind":{"name":"gzrewind","type":"","path":"php/gzrewind.html","desc":"Rewind the position of a gz-file pointer"}, "gzseek":{"name":"gzseek","type":"","path":"php/gzseek.html","desc":"Seek on a gz-file pointer"}, "gztell":{"name":"gztell","type":"","path":"php/gztell.html","desc":"Tell gz-file pointer readwrite position"}, "gzuncompress":{"name":"gzuncompress","type":"","path":"php/gzuncompress.html","desc":"Uncompress a compressed string"}, "gzwrite":{"name":"gzwrite","type":"","path":"php/gzwrite.html","desc":"Binary-safe gz-file write"}, "halt_compiler":{"name":"halt_compiler","type":"","path":"php/halt_compiler.html","desc":"中断编译器的执行"}, "hash":{"name":"hash","type":"","path":"php/hash.html","desc":"生成哈希值 (消息摘要)"}, "hash_algos":{"name":"hash_algos","type":"","path":"php/hash_algos.html","desc":"返回已注册的哈希算法列表"}, "hash_copy":{"name":"hash_copy","type":"","path":"php/hash_copy.html","desc":"拷贝哈希运算上下文"}, "hash_equals":{"name":"hash_equals","type":"","path":"php/hash_equals.html","desc":"可防止时序攻击的字符串比较"}, "hash_file":{"name":"hash_file","type":"","path":"php/hash_file.html","desc":"使用给定文件的内容生成哈希值"}, "hash_final":{"name":"hash_final","type":"","path":"php/hash_final.html","desc":"结束增量哈希,并且返回摘要结果"}, "hash_hkdf":{"name":"hash_hkdf","type":"","path":"php/hash_hkdf.html","desc":"Generate a HKDF key derivation of a supplied key input"}, "hash_hmac":{"name":"hash_hmac","type":"","path":"php/hash_hmac.html","desc":"使用 HMAC 方法生成带有密钥的哈希值"}, "hash_hmac_algos":{"name":"hash_hmac_algos","type":"","path":"php/hash_hmac_algos.html","desc":"Return a list of registered hashing algorithms suitable for hash_hmac"}, "hash_hmac_file":{"name":"hash_hmac_file","type":"","path":"php/hash_hmac_file.html","desc":"使用 HMAC 方法和给定文件的内容生成带密钥的哈希值"}, "hash_init":{"name":"hash_init","type":"","path":"php/hash_init.html","desc":"初始化增量哈希运算上下文"}, "hash_pbkdf2":{"name":"hash_pbkdf2","type":"","path":"php/hash_pbkdf2.html","desc":"生成所提供密码的 PBKDF2 密钥导出"}, "hash_update":{"name":"hash_update","type":"","path":"php/hash_update.html","desc":"向活跃的哈希运算上下文中填充数据"}, "hash_update_file":{"name":"hash_update_file","type":"","path":"php/hash_update_file.html","desc":"从文件向活跃的哈希运算上下文中填充数据"}, "hash_update_stream":{"name":"hash_update_stream","type":"","path":"php/hash_update_stream.html","desc":"从打开的流向活跃的哈希运算上下文中填充数据"}, "header":{"name":"header","type":"","path":"php/header.html","desc":"发送原生 HTTP 头"}, "headers_list":{"name":"headers_list","type":"","path":"php/headers_list.html","desc":"返回已发送的 HTTP 响应头(或准备发送的)"}, "headers_sent":{"name":"headers_sent","type":"","path":"php/headers_sent.html","desc":"检测 HTTP 头是否已经发送"}, "header_register_callback":{"name":"header_register_callback","type":"","path":"php/header_register_callback.html","desc":"调用一个 header 函数"}, "header_remove":{"name":"header_remove","type":"","path":"php/header_remove.html","desc":"删除之前设置的 HTTP 头"}, "hebrev":{"name":"hebrev","type":"","path":"php/hebrev.html","desc":"将逻辑顺序希伯来文(logical-Hebrew)转换为视觉顺序希伯来文(visual-Hebrew)"}, "hebrevc":{"name":"hebrevc","type":"","path":"php/hebrevc.html","desc":"将逻辑顺序希伯来文(logical-Hebrew)转换为视觉顺序希伯来文(visual-Hebrew),并且转换换行符"}, "hex2bin":{"name":"hex2bin","type":"","path":"php/hex2bin.html","desc":"转换十六进制字符串为二进制字符串"}, "hexdec":{"name":"hexdec","type":"","path":"php/hexdec.html","desc":"十六进制转换为十进制"}, "highlight_file":{"name":"highlight_file","type":"","path":"php/highlight_file.html","desc":"语法高亮一个文件"}, "highlight_string":{"name":"highlight_string","type":"","path":"php/highlight_string.html","desc":"字符串的语法高亮"}, "hrtime":{"name":"hrtime","type":"","path":"php/hrtime.html","desc":"Get the system's high resolution time"}, "htmlentities":{"name":"htmlentities","type":"","path":"php/htmlentities.html","desc":"将字符转换为 HTML 转义字符"}, "htmlspecialchars":{"name":"htmlspecialchars","type":"","path":"php/htmlspecialchars.html","desc":"将特殊字符转换为 HTML 实体"}, "htmlspecialchars_decode":{"name":"htmlspecialchars_decode","type":"","path":"php/htmlspecialchars_decode.html","desc":"将特殊的 HTML 实体转换回普通字符"}, "html_entity_decode":{"name":"html_entity_decode","type":"","path":"php/html_entity_decode.html","desc":"Convert HTML entities to their corresponding characters"}, "http_build_query":{"name":"http_build_query","type":"","path":"php/http_build_query.html","desc":"生成 URL-encode 之后的请求字符串"}, "http_response_code":{"name":"http_response_code","type":"","path":"php/http_response_code.html","desc":"获取设置响应的 HTTP 状态码"}, "hwapi_attribute_new":{"name":"hwapi_attribute_new","type":"","path":"php/hwapi_attribute_new.html","desc":"Creates instance of class hw_api_attribute"}, "hwapi_content_new":{"name":"hwapi_content_new","type":"","path":"php/hwapi_content_new.html","desc":"Create new instance of class hw_api_content"}, "hwapi_hgcsp":{"name":"hwapi_hgcsp","type":"","path":"php/hwapi_hgcsp.html","desc":"Returns object of class hw_api"}, "hwapi_object_new":{"name":"hwapi_object_new","type":"","path":"php/hwapi_object_new.html","desc":"Creates a new instance of class hwapi_object_new"}, "hypot":{"name":"hypot","type":"","path":"php/hypot.html","desc":"计算一直角三角形的斜边长度"}, "ibase_add_user":{"name":"ibase_add_user","type":"","path":"php/ibase_add_user.html","desc":"Add a user to a security database"}, "ibase_affected_rows":{"name":"ibase_affected_rows","type":"","path":"php/ibase_affected_rows.html","desc":"Return the number of rows that were affected by the previous query"}, "ibase_backup":{"name":"ibase_backup","type":"","path":"php/ibase_backup.html","desc":"Initiates a backup task in the service manager and returns immediately"}, "ibase_blob_add":{"name":"ibase_blob_add","type":"","path":"php/ibase_blob_add.html","desc":"Add data into a newly created blob"}, "ibase_blob_cancel":{"name":"ibase_blob_cancel","type":"","path":"php/ibase_blob_cancel.html","desc":"Cancel creating blob"}, "ibase_blob_close":{"name":"ibase_blob_close","type":"","path":"php/ibase_blob_close.html","desc":"Close blob"}, "ibase_blob_create":{"name":"ibase_blob_create","type":"","path":"php/ibase_blob_create.html","desc":"Create a new blob for adding data"}, "ibase_blob_echo":{"name":"ibase_blob_echo","type":"","path":"php/ibase_blob_echo.html","desc":"Output blob contents to browser"}, "ibase_blob_get":{"name":"ibase_blob_get","type":"","path":"php/ibase_blob_get.html","desc":"Get len bytes data from open blob"}, "ibase_blob_import":{"name":"ibase_blob_import","type":"","path":"php/ibase_blob_import.html","desc":"Create blob, copy file in it, and close it"}, "ibase_blob_info":{"name":"ibase_blob_info","type":"","path":"php/ibase_blob_info.html","desc":"Return blob length and other useful info"}, "ibase_blob_open":{"name":"ibase_blob_open","type":"","path":"php/ibase_blob_open.html","desc":"Open blob for retrieving data parts"}, "ibase_close":{"name":"ibase_close","type":"","path":"php/ibase_close.html","desc":"Close a connection to an InterBase database"}, "ibase_commit":{"name":"ibase_commit","type":"","path":"php/ibase_commit.html","desc":"Commit a transaction"}, "ibase_commit_ret":{"name":"ibase_commit_ret","type":"","path":"php/ibase_commit_ret.html","desc":"Commit a transaction without closing it"}, "ibase_connect":{"name":"ibase_connect","type":"","path":"php/ibase_connect.html","desc":"Open a connection to a database"}, "ibase_db_info":{"name":"ibase_db_info","type":"","path":"php/ibase_db_info.html","desc":"Request statistics about a database"}, "ibase_delete_user":{"name":"ibase_delete_user","type":"","path":"php/ibase_delete_user.html","desc":"Delete a user from a security database"}, "ibase_drop_db":{"name":"ibase_drop_db","type":"","path":"php/ibase_drop_db.html","desc":"Drops a database"}, "ibase_errcode":{"name":"ibase_errcode","type":"","path":"php/ibase_errcode.html","desc":"Return an error code"}, "ibase_errmsg":{"name":"ibase_errmsg","type":"","path":"php/ibase_errmsg.html","desc":"Return error messages"}, "ibase_execute":{"name":"ibase_execute","type":"","path":"php/ibase_execute.html","desc":"Execute a previously prepared query"}, "ibase_fetch_assoc":{"name":"ibase_fetch_assoc","type":"","path":"php/ibase_fetch_assoc.html","desc":"Fetch a result row from a query as an associative array"}, "ibase_fetch_object":{"name":"ibase_fetch_object","type":"","path":"php/ibase_fetch_object.html","desc":"Get an object from a InterBase database"}, "ibase_fetch_row":{"name":"ibase_fetch_row","type":"","path":"php/ibase_fetch_row.html","desc":"Fetch a row from an InterBase database"}, "ibase_field_info":{"name":"ibase_field_info","type":"","path":"php/ibase_field_info.html","desc":"Get information about a field"}, "ibase_free_event_handler":{"name":"ibase_free_event_handler","type":"","path":"php/ibase_free_event_handler.html","desc":"Cancels a registered event handler"}, "ibase_free_query":{"name":"ibase_free_query","type":"","path":"php/ibase_free_query.html","desc":"Free memory allocated by a prepared query"}, "ibase_free_result":{"name":"ibase_free_result","type":"","path":"php/ibase_free_result.html","desc":"Free a result set"}, "ibase_gen_id":{"name":"ibase_gen_id","type":"","path":"php/ibase_gen_id.html","desc":"Increments the named generator and returns its new value"}, "ibase_maintain_db":{"name":"ibase_maintain_db","type":"","path":"php/ibase_maintain_db.html","desc":"Execute a maintenance command on the database server"}, "ibase_modify_user":{"name":"ibase_modify_user","type":"","path":"php/ibase_modify_user.html","desc":"Modify a user to a security database"}, "ibase_name_result":{"name":"ibase_name_result","type":"","path":"php/ibase_name_result.html","desc":"Assigns a name to a result set"}, "ibase_num_fields":{"name":"ibase_num_fields","type":"","path":"php/ibase_num_fields.html","desc":"Get the number of fields in a result set"}, "ibase_num_params":{"name":"ibase_num_params","type":"","path":"php/ibase_num_params.html","desc":"Return the number of parameters in a prepared query"}, "ibase_param_info":{"name":"ibase_param_info","type":"","path":"php/ibase_param_info.html","desc":"Return information about a parameter in a prepared query"}, "ibase_pconnect":{"name":"ibase_pconnect","type":"","path":"php/ibase_pconnect.html","desc":"Open a persistent connection to an InterBase database"}, "ibase_prepare":{"name":"ibase_prepare","type":"","path":"php/ibase_prepare.html","desc":"Prepare a query for later binding of parameter placeholders and execution"}, "ibase_query":{"name":"ibase_query","type":"","path":"php/ibase_query.html","desc":"Execute a query on an InterBase database"}, "ibase_restore":{"name":"ibase_restore","type":"","path":"php/ibase_restore.html","desc":"Initiates a restore task in the service manager and returns immediately"}, "ibase_rollback":{"name":"ibase_rollback","type":"","path":"php/ibase_rollback.html","desc":"Roll back a transaction"}, "ibase_rollback_ret":{"name":"ibase_rollback_ret","type":"","path":"php/ibase_rollback_ret.html","desc":"Roll back a transaction without closing it"}, "ibase_server_info":{"name":"ibase_server_info","type":"","path":"php/ibase_server_info.html","desc":"Request information about a database server"}, "ibase_service_attach":{"name":"ibase_service_attach","type":"","path":"php/ibase_service_attach.html","desc":"Connect to the service manager"}, "ibase_service_detach":{"name":"ibase_service_detach","type":"","path":"php/ibase_service_detach.html","desc":"Disconnect from the service manager"}, "ibase_set_event_handler":{"name":"ibase_set_event_handler","type":"","path":"php/ibase_set_event_handler.html","desc":"Register a callback function to be called when events are posted"}, "ibase_trans":{"name":"ibase_trans","type":"","path":"php/ibase_trans.html","desc":"Begin a transaction"}, "ibase_wait_event":{"name":"ibase_wait_event","type":"","path":"php/ibase_wait_event.html","desc":"Wait for an event to be posted by the database"}, "iconv":{"name":"iconv","type":"","path":"php/iconv.html","desc":"字符串按要求的字符编码来转换"}, "iconv_get_encoding":{"name":"iconv_get_encoding","type":"","path":"php/iconv_get_encoding.html","desc":"获取 iconv 扩展的内部配置变量"}, "iconv_mime_decode":{"name":"iconv_mime_decode","type":"","path":"php/iconv_mime_decode.html","desc":"解码一个MIME头字段"}, "iconv_mime_decode_headers":{"name":"iconv_mime_decode_headers","type":"","path":"php/iconv_mime_decode_headers.html","desc":"一次性解码多个 MIME 头字段"}, "iconv_mime_encode":{"name":"iconv_mime_encode","type":"","path":"php/iconv_mime_encode.html","desc":"Composes a MIME header field"}, "iconv_set_encoding":{"name":"iconv_set_encoding","type":"","path":"php/iconv_set_encoding.html","desc":"为字符编码转换设定当前设置"}, "iconv_strlen":{"name":"iconv_strlen","type":"","path":"php/iconv_strlen.html","desc":"返回字符串的字符数统计"}, "iconv_strpos":{"name":"iconv_strpos","type":"","path":"php/iconv_strpos.html","desc":"Finds position of first occurrence of a needle within a haystack"}, "iconv_strrpos":{"name":"iconv_strrpos","type":"","path":"php/iconv_strrpos.html","desc":"Finds the last occurrence of a needle within a haystack"}, "iconv_substr":{"name":"iconv_substr","type":"","path":"php/iconv_substr.html","desc":"截取字符串的部分"}, "id3_get_frame_long_name":{"name":"id3_get_frame_long_name","type":"","path":"php/id3_get_frame_long_name.html","desc":"Get the long name of an ID3v2 frame"}, "id3_get_frame_short_name":{"name":"id3_get_frame_short_name","type":"","path":"php/id3_get_frame_short_name.html","desc":"Get the short name of an ID3v2 frame"}, "id3_get_genre_id":{"name":"id3_get_genre_id","type":"","path":"php/id3_get_genre_id.html","desc":"Get the id for a genre"}, "id3_get_genre_list":{"name":"id3_get_genre_list","type":"","path":"php/id3_get_genre_list.html","desc":"Get all possible genre values"}, "id3_get_genre_name":{"name":"id3_get_genre_name","type":"","path":"php/id3_get_genre_name.html","desc":"Get the name for a genre id"}, "id3_get_tag":{"name":"id3_get_tag","type":"","path":"php/id3_get_tag.html","desc":"Get all information stored in an ID3 tag"}, "id3_get_version":{"name":"id3_get_version","type":"","path":"php/id3_get_version.html","desc":"Get version of an ID3 tag"}, "id3_remove_tag":{"name":"id3_remove_tag","type":"","path":"php/id3_remove_tag.html","desc":"Remove an existing ID3 tag"}, "id3_set_tag":{"name":"id3_set_tag","type":"","path":"php/id3_set_tag.html","desc":"Update information stored in an ID3 tag"}, "idate":{"name":"idate","type":"","path":"php/idate.html","desc":"将本地时间日期格式化为整数"}, "idn_to_ascii":{"name":"idn_to_ascii","type":"","path":"php/idn_to_ascii.html","desc":"Convert domain name to IDNA ASCII form"}, "idn_to_utf8":{"name":"idn_to_utf8","type":"","path":"php/idn_to_utf8.html","desc":"Convert domain name from IDNA ASCII to Unicode"}, "ifxus_close_slob":{"name":"ifxus_close_slob","type":"","path":"php/ifxus_close_slob.html","desc":"Deletes the slob object"}, "ifxus_create_slob":{"name":"ifxus_create_slob","type":"","path":"php/ifxus_create_slob.html","desc":"Creates an slob object and opens it"}, "ifxus_free_slob":{"name":"ifxus_free_slob","type":"","path":"php/ifxus_free_slob.html","desc":"Deletes the slob object"}, "ifxus_open_slob":{"name":"ifxus_open_slob","type":"","path":"php/ifxus_open_slob.html","desc":"Opens an slob object"}, "ifxus_read_slob":{"name":"ifxus_read_slob","type":"","path":"php/ifxus_read_slob.html","desc":"Reads nbytes of the slob object"}, "ifxus_seek_slob":{"name":"ifxus_seek_slob","type":"","path":"php/ifxus_seek_slob.html","desc":"Sets the current file or seek position"}, "ifxus_tell_slob":{"name":"ifxus_tell_slob","type":"","path":"php/ifxus_tell_slob.html","desc":"Returns the current file or seek position"}, "ifxus_write_slob":{"name":"ifxus_write_slob","type":"","path":"php/ifxus_write_slob.html","desc":"Writes a string into the slob object"}, "ifx_affected_rows":{"name":"ifx_affected_rows","type":"","path":"php/ifx_affected_rows.html","desc":"Get number of rows affected by a query"}, "ifx_blobinfile_mode":{"name":"ifx_blobinfile_mode","type":"","path":"php/ifx_blobinfile_mode.html","desc":"Set the default blob mode for all select queries"}, "ifx_byteasvarchar":{"name":"ifx_byteasvarchar","type":"","path":"php/ifx_byteasvarchar.html","desc":"Set the default byte mode"}, "ifx_close":{"name":"ifx_close","type":"","path":"php/ifx_close.html","desc":"Close Informix connection"}, "ifx_connect":{"name":"ifx_connect","type":"","path":"php/ifx_connect.html","desc":"Open Informix server connection"}, "ifx_copy_blob":{"name":"ifx_copy_blob","type":"","path":"php/ifx_copy_blob.html","desc":"Duplicates the given blob object"}, "ifx_create_blob":{"name":"ifx_create_blob","type":"","path":"php/ifx_create_blob.html","desc":"Creates an blob object"}, "ifx_create_char":{"name":"ifx_create_char","type":"","path":"php/ifx_create_char.html","desc":"Creates an char object"}, "ifx_do":{"name":"ifx_do","type":"","path":"php/ifx_do.html","desc":"Execute a previously prepared SQL-statement"}, "ifx_error":{"name":"ifx_error","type":"","path":"php/ifx_error.html","desc":"Returns error code of last Informix call"}, "ifx_errormsg":{"name":"ifx_errormsg","type":"","path":"php/ifx_errormsg.html","desc":"Returns error message of last Informix call"}, "ifx_fetch_row":{"name":"ifx_fetch_row","type":"","path":"php/ifx_fetch_row.html","desc":"Get row as an associative array"}, "ifx_fieldproperties":{"name":"ifx_fieldproperties","type":"","path":"php/ifx_fieldproperties.html","desc":"List of SQL fieldproperties"}, "ifx_fieldtypes":{"name":"ifx_fieldtypes","type":"","path":"php/ifx_fieldtypes.html","desc":"List of Informix SQL fields"}, "ifx_free_blob":{"name":"ifx_free_blob","type":"","path":"php/ifx_free_blob.html","desc":"Deletes the blob object"}, "ifx_free_char":{"name":"ifx_free_char","type":"","path":"php/ifx_free_char.html","desc":"Deletes the char object"}, "ifx_free_result":{"name":"ifx_free_result","type":"","path":"php/ifx_free_result.html","desc":"Releases resources for the query"}, "ifx_functiontbl_result":{"name":"ifx_functiontbl_result","type":"","path":"php/ifx_functiontbl_result.html","desc":"Formats all rows of a query into a HTML table"}, "ifx_getsqlca":{"name":"ifx_getsqlca","type":"","path":"php/ifx_getsqlca.html","desc":"Get the contents of sqlca.sqlerrd[0..5] after a query"}, "ifx_get_blob":{"name":"ifx_get_blob","type":"","path":"php/ifx_get_blob.html","desc":"Return the content of a blob object"}, "ifx_get_char":{"name":"ifx_get_char","type":"","path":"php/ifx_get_char.html","desc":"Return the content of the char object"}, "ifx_nullformat":{"name":"ifx_nullformat","type":"","path":"php/ifx_nullformat.html","desc":"Sets the default return value on a fetch row"}, "ifx_num_fields":{"name":"ifx_num_fields","type":"","path":"php/ifx_num_fields.html","desc":"Returns the number of columns in the query"}, "ifx_num_rows":{"name":"ifx_num_rows","type":"","path":"php/ifx_num_rows.html","desc":"Count the rows already fetched from a query"}, "ifx_pconnect":{"name":"ifx_pconnect","type":"","path":"php/ifx_pconnect.html","desc":"Open persistent Informix connection"}, "ifx_prepare":{"name":"ifx_prepare","type":"","path":"php/ifx_prepare.html","desc":"Prepare an SQL-statement for execution"}, "ifx_query":{"name":"ifx_query","type":"","path":"php/ifx_query.html","desc":"Send Informix query"}, "ifx_textasvarchar":{"name":"ifx_textasvarchar","type":"","path":"php/ifx_textasvarchar.html","desc":"Set the default text mode"}, "ifx_update_blob":{"name":"ifx_update_blob","type":"","path":"php/ifx_update_blob.html","desc":"Updates the content of the blob object"}, "ifx_update_char":{"name":"ifx_update_char","type":"","path":"php/ifx_update_char.html","desc":"Updates the content of the char object"}, "ignore_user_abort":{"name":"ignore_user_abort","type":"","path":"php/ignore_user_abort.html","desc":"设置客户端断开连接时是否中断脚本的执行"}, "iis_add_server":{"name":"iis_add_server","type":"","path":"php/iis_add_server.html","desc":"Creates a new virtual web server"}, "iis_get_dir_security":{"name":"iis_get_dir_security","type":"","path":"php/iis_get_dir_security.html","desc":"Gets Directory Security"}, "iis_get_script_map":{"name":"iis_get_script_map","type":"","path":"php/iis_get_script_map.html","desc":"Gets script mapping on a virtual directory for a specific extension"}, "iis_get_server_by_comment":{"name":"iis_get_server_by_comment","type":"","path":"php/iis_get_server_by_comment.html","desc":"Return the instance number associated with the Comment"}, "iis_get_server_by_path":{"name":"iis_get_server_by_path","type":"","path":"php/iis_get_server_by_path.html","desc":"Return the instance number associated with the Path"}, "iis_get_server_rights":{"name":"iis_get_server_rights","type":"","path":"php/iis_get_server_rights.html","desc":"Gets server rights"}, "iis_get_service_state":{"name":"iis_get_service_state","type":"","path":"php/iis_get_service_state.html","desc":"Returns the state for the service defined by ServiceId"}, "iis_remove_server":{"name":"iis_remove_server","type":"","path":"php/iis_remove_server.html","desc":"Removes the virtual web server indicated by ServerInstance"}, "iis_set_app_settings":{"name":"iis_set_app_settings","type":"","path":"php/iis_set_app_settings.html","desc":"Creates application scope for a virtual directory"}, "iis_set_dir_security":{"name":"iis_set_dir_security","type":"","path":"php/iis_set_dir_security.html","desc":"Sets Directory Security"}, "iis_set_script_map":{"name":"iis_set_script_map","type":"","path":"php/iis_set_script_map.html","desc":"Sets script mapping on a virtual directory"}, "iis_set_server_rights":{"name":"iis_set_server_rights","type":"","path":"php/iis_set_server_rights.html","desc":"Sets server rights"}, "iis_start_server":{"name":"iis_start_server","type":"","path":"php/iis_start_server.html","desc":"Starts the virtual web server"}, "iis_start_service":{"name":"iis_start_service","type":"","path":"php/iis_start_service.html","desc":"Starts the service defined by ServiceId"}, "iis_stop_server":{"name":"iis_stop_server","type":"","path":"php/iis_stop_server.html","desc":"Stops the virtual web server"}, "iis_stop_service":{"name":"iis_stop_service","type":"","path":"php/iis_stop_service.html","desc":"Stops the service defined by ServiceId"}, "image2wbmp":{"name":"image2wbmp","type":"","path":"php/image2wbmp.html","desc":"以 WBMP 格式将图像输出到浏览器或文件"}, "imageaffine":{"name":"imageaffine","type":"","path":"php/imageaffine.html","desc":"返回经过仿射变换后的图像,剪切区域可选"}, "imageaffinematrixconcat":{"name":"imageaffinematrixconcat","type":"","path":"php/imageaffinematrixconcat.html","desc":"Concatenate two affine transformation matrices"}, "imageaffinematrixget":{"name":"imageaffinematrixget","type":"","path":"php/imageaffinematrixget.html","desc":"Get an affine transformation matrix"}, "imagealphablending":{"name":"imagealphablending","type":"","path":"php/imagealphablending.html","desc":"设定图像的混色模式"}, "imageantialias":{"name":"imageantialias","type":"","path":"php/imageantialias.html","desc":"是否使用抗锯齿(antialias)功能"}, "imagearc":{"name":"imagearc","type":"","path":"php/imagearc.html","desc":"画椭圆弧"}, "imagebmp":{"name":"imagebmp","type":"","path":"php/imagebmp.html","desc":"Output a BMP image to browser or file"}, "imagechar":{"name":"imagechar","type":"","path":"php/imagechar.html","desc":"水平地画一个字符"}, "imagecharup":{"name":"imagecharup","type":"","path":"php/imagecharup.html","desc":"垂直地画一个字符"}, "imagecolorallocate":{"name":"imagecolorallocate","type":"","path":"php/imagecolorallocate.html","desc":"为一幅图像分配颜色"}, "imagecolorallocatealpha":{"name":"imagecolorallocatealpha","type":"","path":"php/imagecolorallocatealpha.html","desc":"为一幅图像分配颜色 + alpha"}, "imagecolorat":{"name":"imagecolorat","type":"","path":"php/imagecolorat.html","desc":"取得某像素的颜色索引值"}, "imagecolorclosest":{"name":"imagecolorclosest","type":"","path":"php/imagecolorclosest.html","desc":"取得与指定的颜色最接近的颜色的索引值"}, "imagecolorclosestalpha":{"name":"imagecolorclosestalpha","type":"","path":"php/imagecolorclosestalpha.html","desc":"取得与指定的颜色加透明度最接近的颜色"}, "imagecolorclosesthwb":{"name":"imagecolorclosesthwb","type":"","path":"php/imagecolorclosesthwb.html","desc":"取得与给定颜色最接近的色度的黑白色的索引"}, "imagecolordeallocate":{"name":"imagecolordeallocate","type":"","path":"php/imagecolordeallocate.html","desc":"取消图像颜色的分配"}, "imagecolorexact":{"name":"imagecolorexact","type":"","path":"php/imagecolorexact.html","desc":"取得指定颜色的索引值"}, "imagecolorexactalpha":{"name":"imagecolorexactalpha","type":"","path":"php/imagecolorexactalpha.html","desc":"取得指定的颜色加透明度的索引值"}, "imagecolormatch":{"name":"imagecolormatch","type":"","path":"php/imagecolormatch.html","desc":"使一个图像中调色板版本的颜色与真彩色版本更能匹配"}, "imagecolorresolve":{"name":"imagecolorresolve","type":"","path":"php/imagecolorresolve.html","desc":"取得指定颜色的索引值或有可能得到的最接近的替代值"}, "imagecolorresolvealpha":{"name":"imagecolorresolvealpha","type":"","path":"php/imagecolorresolvealpha.html","desc":"取得指定颜色 + alpha 的索引值或有可能得到的最接近的替代值"}, "imagecolorset":{"name":"imagecolorset","type":"","path":"php/imagecolorset.html","desc":"给指定调色板索引设定颜色"}, "imagecolorsforindex":{"name":"imagecolorsforindex","type":"","path":"php/imagecolorsforindex.html","desc":"取得某索引的颜色"}, "imagecolorstotal":{"name":"imagecolorstotal","type":"","path":"php/imagecolorstotal.html","desc":"取得一幅图像的调色板中颜色的数目"}, "imagecolortransparent":{"name":"imagecolortransparent","type":"","path":"php/imagecolortransparent.html","desc":"将某个颜色定义为透明色"}, "imageconvolution":{"name":"imageconvolution","type":"","path":"php/imageconvolution.html","desc":"用系数 div 和 offset 申请一个 3x3 的卷积矩阵"}, "imagecopy":{"name":"imagecopy","type":"","path":"php/imagecopy.html","desc":"拷贝图像的一部分"}, "imagecopymerge":{"name":"imagecopymerge","type":"","path":"php/imagecopymerge.html","desc":"拷贝并合并图像的一部分"}, "imagecopymergegray":{"name":"imagecopymergegray","type":"","path":"php/imagecopymergegray.html","desc":"用灰度拷贝并合并图像的一部分"}, "imagecopyresampled":{"name":"imagecopyresampled","type":"","path":"php/imagecopyresampled.html","desc":"重采样拷贝部分图像并调整大小"}, "imagecopyresized":{"name":"imagecopyresized","type":"","path":"php/imagecopyresized.html","desc":"拷贝部分图像并调整大小"}, "imagecreate":{"name":"imagecreate","type":"","path":"php/imagecreate.html","desc":"新建一个基于调色板的图像"}, "imagecreatefrombmp":{"name":"imagecreatefrombmp","type":"","path":"php/imagecreatefrombmp.html","desc":"由文件或 URL 创建一个新图象。"}, "imagecreatefromgd":{"name":"imagecreatefromgd","type":"","path":"php/imagecreatefromgd.html","desc":"从 GD 文件或 URL 新建一图像"}, "imagecreatefromgd2":{"name":"imagecreatefromgd2","type":"","path":"php/imagecreatefromgd2.html","desc":"从 GD2 文件或 URL 新建一图像"}, "imagecreatefromgd2part":{"name":"imagecreatefromgd2part","type":"","path":"php/imagecreatefromgd2part.html","desc":"从给定的 GD2 文件或 URL 中的部分新建一图像"}, "imagecreatefromgif":{"name":"imagecreatefromgif","type":"","path":"php/imagecreatefromgif.html","desc":"由文件或 URL 创建一个新图象。"}, "imagecreatefromjpeg":{"name":"imagecreatefromjpeg","type":"","path":"php/imagecreatefromjpeg.html","desc":"由文件或 URL 创建一个新图象。"}, "imagecreatefrompng":{"name":"imagecreatefrompng","type":"","path":"php/imagecreatefrompng.html","desc":"由文件或 URL 创建一个新图象。"}, "imagecreatefromstring":{"name":"imagecreatefromstring","type":"","path":"php/imagecreatefromstring.html","desc":"从字符串中的图像流新建一图像"}, "imagecreatefromwbmp":{"name":"imagecreatefromwbmp","type":"","path":"php/imagecreatefromwbmp.html","desc":"由文件或 URL 创建一个新图象。"}, "imagecreatefromwebp":{"name":"imagecreatefromwebp","type":"","path":"php/imagecreatefromwebp.html","desc":"由文件或 URL 创建一个新图象。"}, "imagecreatefromxbm":{"name":"imagecreatefromxbm","type":"","path":"php/imagecreatefromxbm.html","desc":"由文件或 URL 创建一个新图象。"}, "imagecreatefromxpm":{"name":"imagecreatefromxpm","type":"","path":"php/imagecreatefromxpm.html","desc":"由文件或 URL 创建一个新图象。"}, "imagecreatetruecolor":{"name":"imagecreatetruecolor","type":"","path":"php/imagecreatetruecolor.html","desc":"新建一个真彩色图像"}, "imagecrop":{"name":"imagecrop","type":"","path":"php/imagecrop.html","desc":"Crop an image to the given rectangle"}, "imagecropauto":{"name":"imagecropauto","type":"","path":"php/imagecropauto.html","desc":"Crop an image automatically using one of the available modes"}, "imagedashedline":{"name":"imagedashedline","type":"","path":"php/imagedashedline.html","desc":"画一虚线"}, "imagedestroy":{"name":"imagedestroy","type":"","path":"php/imagedestroy.html","desc":"销毁一图像"}, "imageellipse":{"name":"imageellipse","type":"","path":"php/imageellipse.html","desc":"画一个椭圆"}, "imagefill":{"name":"imagefill","type":"","path":"php/imagefill.html","desc":"区域填充"}, "imagefilledarc":{"name":"imagefilledarc","type":"","path":"php/imagefilledarc.html","desc":"画一椭圆弧且填充"}, "imagefilledellipse":{"name":"imagefilledellipse","type":"","path":"php/imagefilledellipse.html","desc":"画一椭圆并填充"}, "imagefilledpolygon":{"name":"imagefilledpolygon","type":"","path":"php/imagefilledpolygon.html","desc":"画一多边形并填充"}, "imagefilledrectangle":{"name":"imagefilledrectangle","type":"","path":"php/imagefilledrectangle.html","desc":"画一矩形并填充"}, "imagefilltoborder":{"name":"imagefilltoborder","type":"","path":"php/imagefilltoborder.html","desc":"区域填充到指定颜色的边界为止"}, "imagefilter":{"name":"imagefilter","type":"","path":"php/imagefilter.html","desc":"对图像使用过滤器"}, "imageflip":{"name":"imageflip","type":"","path":"php/imageflip.html","desc":"Flips an image using a given mode"}, "imagefontheight":{"name":"imagefontheight","type":"","path":"php/imagefontheight.html","desc":"取得字体高度"}, "imagefontwidth":{"name":"imagefontwidth","type":"","path":"php/imagefontwidth.html","desc":"取得字体宽度"}, "imageftbbox":{"name":"imageftbbox","type":"","path":"php/imageftbbox.html","desc":"给出一个使用 FreeType 2 字体的文本框"}, "imagefttext":{"name":"imagefttext","type":"","path":"php/imagefttext.html","desc":"使用 FreeType 2 字体将文本写入图像"}, "imagegammacorrect":{"name":"imagegammacorrect","type":"","path":"php/imagegammacorrect.html","desc":"对 GD 图像应用 gamma 修正"}, "imagegd":{"name":"imagegd","type":"","path":"php/imagegd.html","desc":"将 GD 图像输出到浏览器或文件"}, "imagegd2":{"name":"imagegd2","type":"","path":"php/imagegd2.html","desc":"将 GD2 图像输出到浏览器或文件"}, "imagegetclip":{"name":"imagegetclip","type":"","path":"php/imagegetclip.html","desc":"Get the clipping rectangle"}, "imagegif":{"name":"imagegif","type":"","path":"php/imagegif.html","desc":"输出图象到浏览器或文件。"}, "imagegrabscreen":{"name":"imagegrabscreen","type":"","path":"php/imagegrabscreen.html","desc":"Captures the whole screen"}, "imagegrabwindow":{"name":"imagegrabwindow","type":"","path":"php/imagegrabwindow.html","desc":"Captures a window"}, "imageinterlace":{"name":"imageinterlace","type":"","path":"php/imageinterlace.html","desc":"激活或禁止隔行扫描"}, "imageistruecolor":{"name":"imageistruecolor","type":"","path":"php/imageistruecolor.html","desc":"检查图像是否为真彩色图像"}, "imagejpeg":{"name":"imagejpeg","type":"","path":"php/imagejpeg.html","desc":"输出图象到浏览器或文件。"}, "imagelayereffect":{"name":"imagelayereffect","type":"","path":"php/imagelayereffect.html","desc":"设定 alpha 混色标志以使用绑定的 libgd 分层效果"}, "imageline":{"name":"imageline","type":"","path":"php/imageline.html","desc":"画一条线段"}, "imageloadfont":{"name":"imageloadfont","type":"","path":"php/imageloadfont.html","desc":"载入一新字体"}, "imageopenpolygon":{"name":"imageopenpolygon","type":"","path":"php/imageopenpolygon.html","desc":"Draws an open polygon"}, "imagepalettecopy":{"name":"imagepalettecopy","type":"","path":"php/imagepalettecopy.html","desc":"将调色板从一幅图像拷贝到另一幅"}, "imagepalettetotruecolor":{"name":"imagepalettetotruecolor","type":"","path":"php/imagepalettetotruecolor.html","desc":"Converts a palette based image to true color"}, "imagepng":{"name":"imagepng","type":"","path":"php/imagepng.html","desc":"以 PNG 格式将图像输出到浏览器或文件"}, "imagepolygon":{"name":"imagepolygon","type":"","path":"php/imagepolygon.html","desc":"画一个多边形"}, "imagepsbbox":{"name":"imagepsbbox","type":"","path":"php/imagepsbbox.html","desc":"给出一个使用 PostScript Type1 字体的文本方框"}, "imagepsencodefont":{"name":"imagepsencodefont","type":"","path":"php/imagepsencodefont.html","desc":"改变字体中的字符编码矢量"}, "imagepsextendfont":{"name":"imagepsextendfont","type":"","path":"php/imagepsextendfont.html","desc":"扩充或精简字体"}, "imagepsfreefont":{"name":"imagepsfreefont","type":"","path":"php/imagepsfreefont.html","desc":"释放一个 PostScript Type 1 字体所占用的内存"}, "imagepsloadfont":{"name":"imagepsloadfont","type":"","path":"php/imagepsloadfont.html","desc":"从文件中加载一个 PostScript Type 1 字体"}, "imagepsslantfont":{"name":"imagepsslantfont","type":"","path":"php/imagepsslantfont.html","desc":"倾斜某字体"}, "imagepstext":{"name":"imagepstext","type":"","path":"php/imagepstext.html","desc":"用 PostScript Type1 字体把文本字符串画在图像上"}, "imagerectangle":{"name":"imagerectangle","type":"","path":"php/imagerectangle.html","desc":"画一个矩形"}, "imageresolution":{"name":"imageresolution","type":"","path":"php/imageresolution.html","desc":"Get or set the resolution of the image"}, "imagerotate":{"name":"imagerotate","type":"","path":"php/imagerotate.html","desc":"用给定角度旋转图像"}, "imagesavealpha":{"name":"imagesavealpha","type":"","path":"php/imagesavealpha.html","desc":"设置标记以在保存 PNG 图像时保存完整的 alpha 通道信息(与单一透明色相反)"}, "imagescale":{"name":"imagescale","type":"","path":"php/imagescale.html","desc":"Scale an image using the given new width and height"}, "imagesetbrush":{"name":"imagesetbrush","type":"","path":"php/imagesetbrush.html","desc":"设定画线用的画笔图像"}, "imagesetclip":{"name":"imagesetclip","type":"","path":"php/imagesetclip.html","desc":"Set the clipping rectangle"}, "imagesetinterpolation":{"name":"imagesetinterpolation","type":"","path":"php/imagesetinterpolation.html","desc":"Set the interpolation method"}, "imagesetpixel":{"name":"imagesetpixel","type":"","path":"php/imagesetpixel.html","desc":"画一个单一像素"}, "imagesetstyle":{"name":"imagesetstyle","type":"","path":"php/imagesetstyle.html","desc":"设定画线的风格"}, "imagesetthickness":{"name":"imagesetthickness","type":"","path":"php/imagesetthickness.html","desc":"设定画线的宽度"}, "imagesettile":{"name":"imagesettile","type":"","path":"php/imagesettile.html","desc":"设定用于填充的贴图"}, "imagestring":{"name":"imagestring","type":"","path":"php/imagestring.html","desc":"水平地画一行字符串"}, "imagestringup":{"name":"imagestringup","type":"","path":"php/imagestringup.html","desc":"垂直地画一行字符串"}, "imagesx":{"name":"imagesx","type":"","path":"php/imagesx.html","desc":"取得图像宽度"}, "imagesy":{"name":"imagesy","type":"","path":"php/imagesy.html","desc":"取得图像高度"}, "imagetruecolortopalette":{"name":"imagetruecolortopalette","type":"","path":"php/imagetruecolortopalette.html","desc":"将真彩色图像转换为调色板图像"}, "imagettfbbox":{"name":"imagettfbbox","type":"","path":"php/imagettfbbox.html","desc":"取得使用 TrueType 字体的文本的范围"}, "imagettftext":{"name":"imagettftext","type":"","path":"php/imagettftext.html","desc":"用 TrueType 字体向图像写入文本"}, "imagetypes":{"name":"imagetypes","type":"","path":"php/imagetypes.html","desc":"返回当前 PHP 版本所支持的图像类型"}, "imagewbmp":{"name":"imagewbmp","type":"","path":"php/imagewbmp.html","desc":"以 WBMP 格式将图像输出到浏览器或文件"}, "imagewebp":{"name":"imagewebp","type":"","path":"php/imagewebp.html","desc":"将 WebP 格式的图像输出到浏览器或文件"}, "imagexbm":{"name":"imagexbm","type":"","path":"php/imagexbm.html","desc":"将 XBM 图像输出到浏览器或文件"}, "image_type_to_extension":{"name":"image_type_to_extension","type":"","path":"php/image_type_to_extension.html","desc":"取得图像类型的文件后缀"}, "image_type_to_mime_type":{"name":"image_type_to_mime_type","type":"","path":"php/image_type_to_mime_type.html","desc":"取得 getimagesize,exif_read_data,exif_thumbnail,exif_i"}, "imap_8bit":{"name":"imap_8bit","type":"","path":"php/imap_8bit.html","desc":"Convert an 8bit string to a quoted-printable string"}, "imap_alerts":{"name":"imap_alerts","type":"","path":"php/imap_alerts.html","desc":"Returns all IMAP alert messages that have occurred"}, "imap_append":{"name":"imap_append","type":"","path":"php/imap_append.html","desc":"Append a string message to a specified mailbox"}, "imap_base64":{"name":"imap_base64","type":"","path":"php/imap_base64.html","desc":"Decode BASE64 encoded text"}, "imap_binary":{"name":"imap_binary","type":"","path":"php/imap_binary.html","desc":"Convert an 8bit string to a base64 string"}, "imap_body":{"name":"imap_body","type":"","path":"php/imap_body.html","desc":"Read the message body"}, "imap_bodystruct":{"name":"imap_bodystruct","type":"","path":"php/imap_bodystruct.html","desc":"Read the structure of a specified body section of a specific message"}, "imap_check":{"name":"imap_check","type":"","path":"php/imap_check.html","desc":"Check current mailbox"}, "imap_clearflag_full":{"name":"imap_clearflag_full","type":"","path":"php/imap_clearflag_full.html","desc":"Clears flags on messages"}, "imap_close":{"name":"imap_close","type":"","path":"php/imap_close.html","desc":"Close an IMAP stream"}, "imap_create":{"name":"imap_create","type":"","path":"php/imap_create.html","desc":"别名 imap_createmailbox"}, "imap_createmailbox":{"name":"imap_createmailbox","type":"","path":"php/imap_createmailbox.html","desc":"Create a new mailbox"}, "imap_delete":{"name":"imap_delete","type":"","path":"php/imap_delete.html","desc":"Mark a message for deletion from current mailbox"}, "imap_deletemailbox":{"name":"imap_deletemailbox","type":"","path":"php/imap_deletemailbox.html","desc":"Delete a mailbox"}, "imap_errors":{"name":"imap_errors","type":"","path":"php/imap_errors.html","desc":"Returns all of the IMAP errors that have occurred"}, "imap_expunge":{"name":"imap_expunge","type":"","path":"php/imap_expunge.html","desc":"Delete all messages marked for deletion"}, "imap_fetchbody":{"name":"imap_fetchbody","type":"","path":"php/imap_fetchbody.html","desc":"Fetch a particular section of the body of the message"}, "imap_fetchheader":{"name":"imap_fetchheader","type":"","path":"php/imap_fetchheader.html","desc":"Returns header for a message"}, "imap_fetchmime":{"name":"imap_fetchmime","type":"","path":"php/imap_fetchmime.html","desc":"Fetch MIME headers for a particular section of the message"}, "imap_fetchstructure":{"name":"imap_fetchstructure","type":"","path":"php/imap_fetchstructure.html","desc":"Read the structure of a particular message"}, "imap_fetchtext":{"name":"imap_fetchtext","type":"","path":"php/imap_fetchtext.html","desc":"别名 imap_body"}, "imap_fetch_overview":{"name":"imap_fetch_overview","type":"","path":"php/imap_fetch_overview.html","desc":"Read an overview of the information in the headers of the given message"}, "imap_gc":{"name":"imap_gc","type":"","path":"php/imap_gc.html","desc":"Clears IMAP cache"}, "imap_getacl":{"name":"imap_getacl","type":"","path":"php/imap_getacl.html","desc":"Gets the ACL for a given mailbox"}, "imap_getmailboxes":{"name":"imap_getmailboxes","type":"","path":"php/imap_getmailboxes.html","desc":"Read the list of mailboxes, returning detailed information on each one"}, "imap_getsubscribed":{"name":"imap_getsubscribed","type":"","path":"php/imap_getsubscribed.html","desc":"List all the subscribed mailboxes"}, "imap_get_quota":{"name":"imap_get_quota","type":"","path":"php/imap_get_quota.html","desc":"Retrieve the quota level settings, and usage statics per mailbox"}, "imap_get_quotaroot":{"name":"imap_get_quotaroot","type":"","path":"php/imap_get_quotaroot.html","desc":"Retrieve the quota settings per user"}, "imap_header":{"name":"imap_header","type":"","path":"php/imap_header.html","desc":"别名 imap_headerinfo"}, "imap_headerinfo":{"name":"imap_headerinfo","type":"","path":"php/imap_headerinfo.html","desc":"Read the header of the message"}, "imap_headers":{"name":"imap_headers","type":"","path":"php/imap_headers.html","desc":"Returns headers for all messages in a mailbox"}, "imap_last_error":{"name":"imap_last_error","type":"","path":"php/imap_last_error.html","desc":"Gets the last IMAP error that occurred during this page request"}, "imap_list":{"name":"imap_list","type":"","path":"php/imap_list.html","desc":"Read the list of mailboxes"}, "imap_listmailbox":{"name":"imap_listmailbox","type":"","path":"php/imap_listmailbox.html","desc":"别名 imap_list"}, "imap_listscan":{"name":"imap_listscan","type":"","path":"php/imap_listscan.html","desc":"Returns the list of mailboxes that matches the given text"}, "imap_listsubscribed":{"name":"imap_listsubscribed","type":"","path":"php/imap_listsubscribed.html","desc":"别名 imap_lsub"}, "imap_lsub":{"name":"imap_lsub","type":"","path":"php/imap_lsub.html","desc":"List all the subscribed mailboxes"}, "imap_mail":{"name":"imap_mail","type":"","path":"php/imap_mail.html","desc":"Send an email message"}, "imap_mailboxmsginfo":{"name":"imap_mailboxmsginfo","type":"","path":"php/imap_mailboxmsginfo.html","desc":"Get information about the current mailbox"}, "imap_mail_compose":{"name":"imap_mail_compose","type":"","path":"php/imap_mail_compose.html","desc":"Create a MIME message based on given envelope and body sections"}, "imap_mail_copy":{"name":"imap_mail_copy","type":"","path":"php/imap_mail_copy.html","desc":"Copy specified messages to a mailbox"}, "imap_mail_move":{"name":"imap_mail_move","type":"","path":"php/imap_mail_move.html","desc":"Move specified messages to a mailbox"}, "imap_mime_header_decode":{"name":"imap_mime_header_decode","type":"","path":"php/imap_mime_header_decode.html","desc":"Decode MIME header elements"}, "imap_msgno":{"name":"imap_msgno","type":"","path":"php/imap_msgno.html","desc":"Gets the message sequence number for the given UID"}, "imap_mutf7_to_utf8":{"name":"imap_mutf7_to_utf8","type":"","path":"php/imap_mutf7_to_utf8.html","desc":"Decode a modified UTF-7 string to UTF-8"}, "imap_num_msg":{"name":"imap_num_msg","type":"","path":"php/imap_num_msg.html","desc":"Gets the number of messages in the current mailbox"}, "imap_num_recent":{"name":"imap_num_recent","type":"","path":"php/imap_num_recent.html","desc":"Gets the number of recent messages in current mailbox"}, "imap_open":{"name":"imap_open","type":"","path":"php/imap_open.html","desc":"Open an IMAP stream to a mailbox"}, "imap_ping":{"name":"imap_ping","type":"","path":"php/imap_ping.html","desc":"Check if the IMAP stream is still active"}, "imap_qprint":{"name":"imap_qprint","type":"","path":"php/imap_qprint.html","desc":"Convert a quoted-printable string to an 8 bit string"}, "imap_rename":{"name":"imap_rename","type":"","path":"php/imap_rename.html","desc":"别名 imap_renamemailbox"}, "imap_renamemailbox":{"name":"imap_renamemailbox","type":"","path":"php/imap_renamemailbox.html","desc":"Rename an old mailbox to new mailbox"}, "imap_reopen":{"name":"imap_reopen","type":"","path":"php/imap_reopen.html","desc":"Reopen IMAP stream to new mailbox"}, "imap_rfc822_parse_adrlist":{"name":"imap_rfc822_parse_adrlist","type":"","path":"php/imap_rfc822_parse_adrlist.html","desc":"Parses an address string"}, "imap_rfc822_parse_headers":{"name":"imap_rfc822_parse_headers","type":"","path":"php/imap_rfc822_parse_headers.html","desc":"Parse mail headers from a string"}, "imap_rfc822_write_address":{"name":"imap_rfc822_write_address","type":"","path":"php/imap_rfc822_write_address.html","desc":"Returns a properly formatted email address given the mailbox, host, and personal info"}, "imap_savebody":{"name":"imap_savebody","type":"","path":"php/imap_savebody.html","desc":"Save a specific body section to a file"}, "imap_scan":{"name":"imap_scan","type":"","path":"php/imap_scan.html","desc":"别名 imap_listscan"}, "imap_scanmailbox":{"name":"imap_scanmailbox","type":"","path":"php/imap_scanmailbox.html","desc":"别名 imap_listscan"}, "imap_search":{"name":"imap_search","type":"","path":"php/imap_search.html","desc":"This function returns an array of messages matching the given search criteria"}, "imap_setacl":{"name":"imap_setacl","type":"","path":"php/imap_setacl.html","desc":"Sets the ACL for a given mailbox"}, "imap_setflag_full":{"name":"imap_setflag_full","type":"","path":"php/imap_setflag_full.html","desc":"Sets flags on messages"}, "imap_set_quota":{"name":"imap_set_quota","type":"","path":"php/imap_set_quota.html","desc":"Sets a quota for a given mailbox"}, "imap_sort":{"name":"imap_sort","type":"","path":"php/imap_sort.html","desc":"Gets and sort messages"}, "imap_status":{"name":"imap_status","type":"","path":"php/imap_status.html","desc":"Returns status information on a mailbox"}, "imap_subscribe":{"name":"imap_subscribe","type":"","path":"php/imap_subscribe.html","desc":"Subscribe to a mailbox"}, "imap_thread":{"name":"imap_thread","type":"","path":"php/imap_thread.html","desc":"Returns a tree of threaded message"}, "imap_timeout":{"name":"imap_timeout","type":"","path":"php/imap_timeout.html","desc":"Set or fetch imap timeout"}, "imap_uid":{"name":"imap_uid","type":"","path":"php/imap_uid.html","desc":"This function returns the UID for the given message sequence number"}, "imap_undelete":{"name":"imap_undelete","type":"","path":"php/imap_undelete.html","desc":"Unmark the message which is marked deleted"}, "imap_unsubscribe":{"name":"imap_unsubscribe","type":"","path":"php/imap_unsubscribe.html","desc":"Unsubscribe from a mailbox"}, "imap_utf7_decode":{"name":"imap_utf7_decode","type":"","path":"php/imap_utf7_decode.html","desc":"Decodes a modified UTF-7 encoded string"}, "imap_utf7_encode":{"name":"imap_utf7_encode","type":"","path":"php/imap_utf7_encode.html","desc":"Converts ISO-8859-1 string to modified UTF-7 text"}, "imap_utf8":{"name":"imap_utf8","type":"","path":"php/imap_utf8.html","desc":"Converts MIME-encoded text to UTF-8"}, "imap_utf8_to_mutf7":{"name":"imap_utf8_to_mutf7","type":"","path":"php/imap_utf8_to_mutf7.html","desc":"Encode a UTF-8 string to modified UTF-7"}, "implode":{"name":"implode","type":"","path":"php/implode.html","desc":"将一个一维数组的值转化为字符串"}, "import_request_variables":{"name":"import_request_variables","type":"","path":"php/import_request_variables.html","desc":"将 GET/POST/Cookie 变量导入到全局作用域中"}, "include":{"name":"include","type":"","path":"php/include.html","desc":"include"}, "include_once":{"name":"include_once","type":"","path":"php/include_once.html","desc":"include_once"}, "inclued_get_data":{"name":"inclued_get_data","type":"","path":"php/inclued_get_data.html","desc":"Get the inclued data"}, "inet_ntop":{"name":"inet_ntop","type":"","path":"php/inet_ntop.html","desc":"Converts a packed internet address to a human readable representation"}, "inet_pton":{"name":"inet_pton","type":"","path":"php/inet_pton.html","desc":"Converts a human readable IP address to its packed in_addr representation"}, "inflate_add":{"name":"inflate_add","type":"","path":"php/inflate_add.html","desc":"Incrementally inflate encoded data"}, "inflate_get_read_len":{"name":"inflate_get_read_len","type":"","path":"php/inflate_get_read_len.html","desc":"Get number of bytes read so far"}, "inflate_get_status":{"name":"inflate_get_status","type":"","path":"php/inflate_get_status.html","desc":"Get decompression status"}, "inflate_init":{"name":"inflate_init","type":"","path":"php/inflate_init.html","desc":"Initialize an incremental inflate context"}, "ingres_autocommit":{"name":"ingres_autocommit","type":"","path":"php/ingres_autocommit.html","desc":"Switch autocommit on or off"}, "ingres_autocommit_state":{"name":"ingres_autocommit_state","type":"","path":"php/ingres_autocommit_state.html","desc":"Test if the connection is using autocommit"}, "ingres_charset":{"name":"ingres_charset","type":"","path":"php/ingres_charset.html","desc":"Returns the installation character set"}, "ingres_close":{"name":"ingres_close","type":"","path":"php/ingres_close.html","desc":"Close an Ingres database connection"}, "ingres_commit":{"name":"ingres_commit","type":"","path":"php/ingres_commit.html","desc":"Commit a transaction"}, "ingres_connect":{"name":"ingres_connect","type":"","path":"php/ingres_connect.html","desc":"Open a connection to an Ingres database"}, "ingres_cursor":{"name":"ingres_cursor","type":"","path":"php/ingres_cursor.html","desc":"Get a cursor name for a given result resource"}, "ingres_errno":{"name":"ingres_errno","type":"","path":"php/ingres_errno.html","desc":"Get the last Ingres error number generated"}, "ingres_error":{"name":"ingres_error","type":"","path":"php/ingres_error.html","desc":"Get a meaningful error message for the last error generated"}, "ingres_errsqlstate":{"name":"ingres_errsqlstate","type":"","path":"php/ingres_errsqlstate.html","desc":"Get the last SQLSTATE error code generated"}, "ingres_escape_string":{"name":"ingres_escape_string","type":"","path":"php/ingres_escape_string.html","desc":"Escape special characters for use in a query"}, "ingres_execute":{"name":"ingres_execute","type":"","path":"php/ingres_execute.html","desc":"Execute a prepared query"}, "ingres_fetch_array":{"name":"ingres_fetch_array","type":"","path":"php/ingres_fetch_array.html","desc":"Fetch a row of result into an array"}, "ingres_fetch_assoc":{"name":"ingres_fetch_assoc","type":"","path":"php/ingres_fetch_assoc.html","desc":"Fetch a row of result into an associative array"}, "ingres_fetch_object":{"name":"ingres_fetch_object","type":"","path":"php/ingres_fetch_object.html","desc":"Fetch a row of result into an object"}, "ingres_fetch_proc_return":{"name":"ingres_fetch_proc_return","type":"","path":"php/ingres_fetch_proc_return.html","desc":"Get the return value from a procedure call"}, "ingres_fetch_row":{"name":"ingres_fetch_row","type":"","path":"php/ingres_fetch_row.html","desc":"Fetch a row of result into an enumerated array"}, "ingres_field_length":{"name":"ingres_field_length","type":"","path":"php/ingres_field_length.html","desc":"Get the length of a field"}, "ingres_field_name":{"name":"ingres_field_name","type":"","path":"php/ingres_field_name.html","desc":"Get the name of a field in a query result"}, "ingres_field_nullable":{"name":"ingres_field_nullable","type":"","path":"php/ingres_field_nullable.html","desc":"Test if a field is nullable"}, "ingres_field_precision":{"name":"ingres_field_precision","type":"","path":"php/ingres_field_precision.html","desc":"Get the precision of a field"}, "ingres_field_scale":{"name":"ingres_field_scale","type":"","path":"php/ingres_field_scale.html","desc":"Get the scale of a field"}, "ingres_field_type":{"name":"ingres_field_type","type":"","path":"php/ingres_field_type.html","desc":"Get the type of a field in a query result"}, "ingres_free_result":{"name":"ingres_free_result","type":"","path":"php/ingres_free_result.html","desc":"Free the resources associated with a result identifier"}, "ingres_next_error":{"name":"ingres_next_error","type":"","path":"php/ingres_next_error.html","desc":"Get the next Ingres error"}, "ingres_num_fields":{"name":"ingres_num_fields","type":"","path":"php/ingres_num_fields.html","desc":"Get the number of fields returned by the last query"}, "ingres_num_rows":{"name":"ingres_num_rows","type":"","path":"php/ingres_num_rows.html","desc":"Get the number of rows affected or returned by a query"}, "ingres_pconnect":{"name":"ingres_pconnect","type":"","path":"php/ingres_pconnect.html","desc":"Open a persistent connection to an Ingres database"}, "ingres_prepare":{"name":"ingres_prepare","type":"","path":"php/ingres_prepare.html","desc":"Prepare a query for later execution"}, "ingres_query":{"name":"ingres_query","type":"","path":"php/ingres_query.html","desc":"Send an SQL query to Ingres"}, "ingres_result_seek":{"name":"ingres_result_seek","type":"","path":"php/ingres_result_seek.html","desc":"Set the row position before fetching data"}, "ingres_rollback":{"name":"ingres_rollback","type":"","path":"php/ingres_rollback.html","desc":"Roll back a transaction"}, "ingres_set_environment":{"name":"ingres_set_environment","type":"","path":"php/ingres_set_environment.html","desc":"Set environment features controlling output options"}, "ingres_unbuffered_query":{"name":"ingres_unbuffered_query","type":"","path":"php/ingres_unbuffered_query.html","desc":"Send an unbuffered SQL query to Ingres"}, "ini_alter":{"name":"ini_alter","type":"","path":"php/ini_alter.html","desc":"别名 ini_set"}, "ini_get":{"name":"ini_get","type":"","path":"php/ini_get.html","desc":"获取一个配置选项的值"}, "ini_get_all":{"name":"ini_get_all","type":"","path":"php/ini_get_all.html","desc":"获取所有配置选项"}, "ini_restore":{"name":"ini_restore","type":"","path":"php/ini_restore.html","desc":"恢复配置选项的值"}, "ini_set":{"name":"ini_set","type":"","path":"php/ini_set.html","desc":"为一个配置选项设置值"}, "inotify_add_watch":{"name":"inotify_add_watch","type":"","path":"php/inotify_add_watch.html","desc":"Add a watch to an initialized inotify instance"}, "inotify_init":{"name":"inotify_init","type":"","path":"php/inotify_init.html","desc":"Initialize an inotify instance"}, "inotify_queue_len":{"name":"inotify_queue_len","type":"","path":"php/inotify_queue_len.html","desc":"Return a number upper than zero if there are pending events"}, "inotify_read":{"name":"inotify_read","type":"","path":"php/inotify_read.html","desc":"Read events from an inotify instance"}, "inotify_rm_watch":{"name":"inotify_rm_watch","type":"","path":"php/inotify_rm_watch.html","desc":"Remove an existing watch from an inotify instance"}, "intdiv":{"name":"intdiv","type":"","path":"php/intdiv.html","desc":"对除法结果取整"}, "interface_exists":{"name":"interface_exists","type":"","path":"php/interface_exists.html","desc":"检查接口是否已被定义"}, "intl_error_name":{"name":"intl_error_name","type":"","path":"php/intl_error_name.html","desc":"Get symbolic name for a given error code"}, "intl_get_error_code":{"name":"intl_get_error_code","type":"","path":"php/intl_get_error_code.html","desc":"Get the last error code"}, "intl_get_error_message":{"name":"intl_get_error_message","type":"","path":"php/intl_get_error_message.html","desc":"Get description of the last error"}, "intl_is_failure":{"name":"intl_is_failure","type":"","path":"php/intl_is_failure.html","desc":"Check whether the given error code indicates failure"}, "intval":{"name":"intval","type":"","path":"php/intval.html","desc":"获取变量的整数值"}, "in_array":{"name":"in_array","type":"","path":"php/in_array.html","desc":"检查数组中是否存在某个值"}, "ip2long":{"name":"ip2long","type":"","path":"php/ip2long.html","desc":"将 IPV4 的字符串互联网协议转换成长整型数字"}, "iptcembed":{"name":"iptcembed","type":"","path":"php/iptcembed.html","desc":"将二进制 IPTC 数据嵌入到一幅 JPEG 图像中"}, "iptcparse":{"name":"iptcparse","type":"","path":"php/iptcparse.html","desc":"将二进制 IPTC 块解析为单个标记"}, "isset":{"name":"isset","type":"","path":"php/isset.html","desc":"检测变量是否已设置并且非 NULL"}, "is_a":{"name":"is_a","type":"","path":"php/is_a.html","desc":"如果对象属于该类或该类是此对象的父类则返回 TRUE"}, "is_array":{"name":"is_array","type":"","path":"php/is_array.html","desc":"检测变量是否是数组"}, "is_bool":{"name":"is_bool","type":"","path":"php/is_bool.html","desc":"检测变量是否是布尔型"}, "is_callable":{"name":"is_callable","type":"","path":"php/is_callable.html","desc":"检测参数是否为合法的可调用结构"}, "is_countable":{"name":"is_countable","type":"","path":"php/is_countable.html","desc":"Verify that the contents of a variable is a countable value"}, "is_dir":{"name":"is_dir","type":"","path":"php/is_dir.html","desc":"判断给定文件名是否是一个目录"}, "is_double":{"name":"is_double","type":"","path":"php/is_double.html","desc":"is_float 的别名"}, "is_executable":{"name":"is_executable","type":"","path":"php/is_executable.html","desc":"判断给定文件名是否可执行"}, "is_file":{"name":"is_file","type":"","path":"php/is_file.html","desc":"判断给定文件名是否为一个正常的文件"}, "is_finite":{"name":"is_finite","type":"","path":"php/is_finite.html","desc":"判断是否为有限值"}, "is_float":{"name":"is_float","type":"","path":"php/is_float.html","desc":"检测变量是否是浮点型"}, "is_infinite":{"name":"is_infinite","type":"","path":"php/is_infinite.html","desc":"判断是否为无限值"}, "is_int":{"name":"is_int","type":"","path":"php/is_int.html","desc":"检测变量是否是整数"}, "is_integer":{"name":"is_integer","type":"","path":"php/is_integer.html","desc":"is_int 的别名"}, "is_iterable":{"name":"is_iterable","type":"","path":"php/is_iterable.html","desc":"Verify that the contents of a variable is an iterable value"}, "is_link":{"name":"is_link","type":"","path":"php/is_link.html","desc":"判断给定文件名是否为一个符号连接"}, "is_long":{"name":"is_long","type":"","path":"php/is_long.html","desc":"is_int 的别名"}, "is_nan":{"name":"is_nan","type":"","path":"php/is_nan.html","desc":"判断是否为合法数值"}, "is_null":{"name":"is_null","type":"","path":"php/is_null.html","desc":"检测变量是否为 NULL"}, "is_numeric":{"name":"is_numeric","type":"","path":"php/is_numeric.html","desc":"检测变量是否为数字或数字字符串"}, "is_object":{"name":"is_object","type":"","path":"php/is_object.html","desc":"检测变量是否是一个对象"}, "is_readable":{"name":"is_readable","type":"","path":"php/is_readable.html","desc":"判断给定文件名是否可读"}, "is_real":{"name":"is_real","type":"","path":"php/is_real.html","desc":"is_float 的别名"}, "is_resource":{"name":"is_resource","type":"","path":"php/is_resource.html","desc":"检测变量是否为资源类型"}, "is_scalar":{"name":"is_scalar","type":"","path":"php/is_scalar.html","desc":"检测变量是否是一个标量"}, "is_soap_fault":{"name":"is_soap_fault","type":"","path":"php/is_soap_fault.html","desc":"Checks if a SOAP call has failed"}, "is_string":{"name":"is_string","type":"","path":"php/is_string.html","desc":"检测变量是否是字符串"}, "is_subclass_of":{"name":"is_subclass_of","type":"","path":"php/is_subclass_of.html","desc":"如果此对象是该类的子类,则返回 TRUE"}, "is_tainted":{"name":"is_tainted","type":"","path":"php/is_tainted.html","desc":"Checks whether a string is tainted"}, "is_uploaded_file":{"name":"is_uploaded_file","type":"","path":"php/is_uploaded_file.html","desc":"判断文件是否是通过 HTTP POST 上传的"}, "is_writable":{"name":"is_writable","type":"","path":"php/is_writable.html","desc":"判断给定的文件名是否可写"}, "is_writeable":{"name":"is_writeable","type":"","path":"php/is_writeable.html","desc":"is_writable 的别名"}, "iterator_apply":{"name":"iterator_apply","type":"","path":"php/iterator_apply.html","desc":"为迭代器中每个元素调用一个用户自定义函数"}, "iterator_count":{"name":"iterator_count","type":"","path":"php/iterator_count.html","desc":"计算迭代器中元素的个数"}, "iterator_to_array":{"name":"iterator_to_array","type":"","path":"php/iterator_to_array.html","desc":"将迭代器中的元素拷贝到数组"}, "jddayofweek":{"name":"jddayofweek","type":"","path":"php/jddayofweek.html","desc":"返回星期的日期"}, "jdmonthname":{"name":"jdmonthname","type":"","path":"php/jdmonthname.html","desc":"返回月份的名称"}, "jdtofrench":{"name":"jdtofrench","type":"","path":"php/jdtofrench.html","desc":"转变一个Julian Day计数到French Republican历法的日期"}, "jdtogregorian":{"name":"jdtogregorian","type":"","path":"php/jdtogregorian.html","desc":"转变一个Julian Day计数为Gregorian历法日期"}, "jdtojewish":{"name":"jdtojewish","type":"","path":"php/jdtojewish.html","desc":"转换一个julian天数为Jewish历法的日期"}, "jdtojulian":{"name":"jdtojulian","type":"","path":"php/jdtojulian.html","desc":"转变一个Julian Day计数到Julian历法的日期"}, "jdtounix":{"name":"jdtounix","type":"","path":"php/jdtounix.html","desc":"转变Julian Day计数为一个Unix时间戳"}, "jewishtojd":{"name":"jewishtojd","type":"","path":"php/jewishtojd.html","desc":"转变一个Jewish历法的日期为一个Julian Day计数"}, "join":{"name":"join","type":"","path":"php/join.html","desc":"别名 implode"}, "jpeg2wbmp":{"name":"jpeg2wbmp","type":"","path":"php/jpeg2wbmp.html","desc":"将 JPEG 图像文件转换为 WBMP 图像文件"}, "json_decode":{"name":"json_decode","type":"","path":"php/json_decode.html","desc":"对 JSON 格式的字符串进行解码"}, "json_encode":{"name":"json_encode","type":"","path":"php/json_encode.html","desc":"对变量进行 JSON 编码"}, "json_last_error":{"name":"json_last_error","type":"","path":"php/json_last_error.html","desc":"返回最后发生的错误"}, "json_last_error_msg":{"name":"json_last_error_msg","type":"","path":"php/json_last_error_msg.html","desc":"Returns the error string of the last json_encode() or json_decode() call"}, "judy_type":{"name":"judy_type","type":"","path":"php/judy_type.html","desc":"Return the type of a Judy array"}, "judy_version":{"name":"judy_version","type":"","path":"php/judy_version.html","desc":"Return or print the current PHP Judy version"}, "juliantojd":{"name":"juliantojd","type":"","path":"php/juliantojd.html","desc":"转变一个Julian历法的日期为Julian Day计数"}, "kadm5_chpass_principal":{"name":"kadm5_chpass_principal","type":"","path":"php/kadm5_chpass_principal.html","desc":"Changes the principal's password"}, "kadm5_create_principal":{"name":"kadm5_create_principal","type":"","path":"php/kadm5_create_principal.html","desc":"Creates a kerberos principal with the given parameters"}, "kadm5_delete_principal":{"name":"kadm5_delete_principal","type":"","path":"php/kadm5_delete_principal.html","desc":"Deletes a kerberos principal"}, "kadm5_destroy":{"name":"kadm5_destroy","type":"","path":"php/kadm5_destroy.html","desc":"Closes the connection to the admin server and releases all related resources"}, "kadm5_flush":{"name":"kadm5_flush","type":"","path":"php/kadm5_flush.html","desc":"Flush all changes to the Kerberos database"}, "kadm5_get_policies":{"name":"kadm5_get_policies","type":"","path":"php/kadm5_get_policies.html","desc":"Gets all policies from the Kerberos database"}, "kadm5_get_principal":{"name":"kadm5_get_principal","type":"","path":"php/kadm5_get_principal.html","desc":"Gets the principal's entries from the Kerberos database"}, "kadm5_get_principals":{"name":"kadm5_get_principals","type":"","path":"php/kadm5_get_principals.html","desc":"Gets all principals from the Kerberos database"}, "kadm5_init_with_password":{"name":"kadm5_init_with_password","type":"","path":"php/kadm5_init_with_password.html","desc":"Opens a connection to the KADM5 library"}, "kadm5_modify_principal":{"name":"kadm5_modify_principal","type":"","path":"php/kadm5_modify_principal.html","desc":"Modifies a kerberos principal with the given parameters"}, "key":{"name":"key","type":"","path":"php/key.html","desc":"从关联数组中取得键名"}, "key_exists":{"name":"key_exists","type":"","path":"php/key_exists.html","desc":"别名 array_key_exists"}, "krsort":{"name":"krsort","type":"","path":"php/krsort.html","desc":"对数组按照键名逆向排序"}, "ksort":{"name":"ksort","type":"","path":"php/ksort.html","desc":"对数组按照键名排序"}, "lcfirst":{"name":"lcfirst","type":"","path":"php/lcfirst.html","desc":"使一个字符串的第一个字符小写"}, "lcg_value":{"name":"lcg_value","type":"","path":"php/lcg_value.html","desc":"组合线性同余发生器"}, "lchgrp":{"name":"lchgrp","type":"","path":"php/lchgrp.html","desc":"修改符号链接的所有组"}, "lchown":{"name":"lchown","type":"","path":"php/lchown.html","desc":"修改符号链接的所有者"}, "ldap_8859_to_t61":{"name":"ldap_8859_to_t61","type":"","path":"php/ldap_8859_to_t61.html","desc":"Translate 8859 characters to t61 characters"}, "ldap_add":{"name":"ldap_add","type":"","path":"php/ldap_add.html","desc":"Add entries to LDAP directory"}, "ldap_add_ext":{"name":"ldap_add_ext","type":"","path":"php/ldap_add_ext.html","desc":"Add entries to LDAP directory"}, "ldap_bind":{"name":"ldap_bind","type":"","path":"php/ldap_bind.html","desc":"绑定 LDAP 目录"}, "ldap_bind_ext":{"name":"ldap_bind_ext","type":"","path":"php/ldap_bind_ext.html","desc":"Bind to LDAP directory"}, "ldap_close":{"name":"ldap_close","type":"","path":"php/ldap_close.html","desc":"别名 ldap_unbind"}, "ldap_compare":{"name":"ldap_compare","type":"","path":"php/ldap_compare.html","desc":"Compare value of attribute found in entry specified with DN"}, "ldap_connect":{"name":"ldap_connect","type":"","path":"php/ldap_connect.html","desc":"Connect to an LDAP server"}, "ldap_control_paged_result":{"name":"ldap_control_paged_result","type":"","path":"php/ldap_control_paged_result.html","desc":"Send LDAP pagination control"}, "ldap_control_paged_result_response":{"name":"ldap_control_paged_result_response","type":"","path":"php/ldap_control_paged_result_response.html","desc":"Retrieve the LDAP pagination cookie"}, "ldap_count_entries":{"name":"ldap_count_entries","type":"","path":"php/ldap_count_entries.html","desc":"Count the number of entries in a search"}, "ldap_delete":{"name":"ldap_delete","type":"","path":"php/ldap_delete.html","desc":"Delete an entry from a directory"}, "ldap_delete_ext":{"name":"ldap_delete_ext","type":"","path":"php/ldap_delete_ext.html","desc":"Delete an entry from a directory"}, "ldap_dn2ufn":{"name":"ldap_dn2ufn","type":"","path":"php/ldap_dn2ufn.html","desc":"Convert DN to User Friendly Naming format"}, "ldap_err2str":{"name":"ldap_err2str","type":"","path":"php/ldap_err2str.html","desc":"Convert LDAP error number into string error message"}, "ldap_errno":{"name":"ldap_errno","type":"","path":"php/ldap_errno.html","desc":"Return the LDAP error number of the last LDAP command"}, "ldap_error":{"name":"ldap_error","type":"","path":"php/ldap_error.html","desc":"Return the LDAP error message of the last LDAP command"}, "ldap_escape":{"name":"ldap_escape","type":"","path":"php/ldap_escape.html","desc":"Escape a string for use in an LDAP filter or DN"}, "ldap_exop":{"name":"ldap_exop","type":"","path":"php/ldap_exop.html","desc":"Performs an extended operation"}, "ldap_exop_passwd":{"name":"ldap_exop_passwd","type":"","path":"php/ldap_exop_passwd.html","desc":"PASSWD extended operation helper"}, "ldap_exop_refresh":{"name":"ldap_exop_refresh","type":"","path":"php/ldap_exop_refresh.html","desc":"Refresh extended operation helper"}, "ldap_exop_whoami":{"name":"ldap_exop_whoami","type":"","path":"php/ldap_exop_whoami.html","desc":"WHOAMI extended operation helper"}, "ldap_explode_dn":{"name":"ldap_explode_dn","type":"","path":"php/ldap_explode_dn.html","desc":"Splits DN into its component parts"}, "ldap_first_attribute":{"name":"ldap_first_attribute","type":"","path":"php/ldap_first_attribute.html","desc":"Return first attribute"}, "ldap_first_entry":{"name":"ldap_first_entry","type":"","path":"php/ldap_first_entry.html","desc":"Return first result id"}, "ldap_first_reference":{"name":"ldap_first_reference","type":"","path":"php/ldap_first_reference.html","desc":"Return first reference"}, "ldap_free_result":{"name":"ldap_free_result","type":"","path":"php/ldap_free_result.html","desc":"Free result memory"}, "ldap_get_attributes":{"name":"ldap_get_attributes","type":"","path":"php/ldap_get_attributes.html","desc":"Get attributes from a search result entry"}, "ldap_get_dn":{"name":"ldap_get_dn","type":"","path":"php/ldap_get_dn.html","desc":"Get the DN of a result entry"}, "ldap_get_entries":{"name":"ldap_get_entries","type":"","path":"php/ldap_get_entries.html","desc":"Get all result entries"}, "ldap_get_option":{"name":"ldap_get_option","type":"","path":"php/ldap_get_option.html","desc":"Get the current value for given option"}, "ldap_get_values":{"name":"ldap_get_values","type":"","path":"php/ldap_get_values.html","desc":"Get all values from a result entry"}, "ldap_get_values_len":{"name":"ldap_get_values_len","type":"","path":"php/ldap_get_values_len.html","desc":"Get all binary values from a result entry"}, "ldap_list":{"name":"ldap_list","type":"","path":"php/ldap_list.html","desc":"Single-level search"}, "ldap_modify":{"name":"ldap_modify","type":"","path":"php/ldap_modify.html","desc":"别名 ldap_mod_replace"}, "ldap_modify_batch":{"name":"ldap_modify_batch","type":"","path":"php/ldap_modify_batch.html","desc":"Batch and execute modifications on an LDAP entry"}, "ldap_mod_add":{"name":"ldap_mod_add","type":"","path":"php/ldap_mod_add.html","desc":"Add attribute values to current attributes"}, "ldap_mod_add_ext":{"name":"ldap_mod_add_ext","type":"","path":"php/ldap_mod_add_ext.html","desc":"Add attribute values to current attributes"}, "ldap_mod_del":{"name":"ldap_mod_del","type":"","path":"php/ldap_mod_del.html","desc":"Delete attribute values from current attributes"}, "ldap_mod_del_ext":{"name":"ldap_mod_del_ext","type":"","path":"php/ldap_mod_del_ext.html","desc":"Delete attribute values from current attributes"}, "ldap_mod_replace":{"name":"ldap_mod_replace","type":"","path":"php/ldap_mod_replace.html","desc":"Replace attribute values with new ones"}, "ldap_mod_replace_ext":{"name":"ldap_mod_replace_ext","type":"","path":"php/ldap_mod_replace_ext.html","desc":"Replace attribute values with new ones"}, "ldap_next_attribute":{"name":"ldap_next_attribute","type":"","path":"php/ldap_next_attribute.html","desc":"Get the next attribute in result"}, "ldap_next_entry":{"name":"ldap_next_entry","type":"","path":"php/ldap_next_entry.html","desc":"Get next result entry"}, "ldap_next_reference":{"name":"ldap_next_reference","type":"","path":"php/ldap_next_reference.html","desc":"Get next reference"}, "ldap_parse_exop":{"name":"ldap_parse_exop","type":"","path":"php/ldap_parse_exop.html","desc":"Parse result object from an LDAP extended operation"}, "ldap_parse_reference":{"name":"ldap_parse_reference","type":"","path":"php/ldap_parse_reference.html","desc":"Extract information from reference entry"}, "ldap_parse_result":{"name":"ldap_parse_result","type":"","path":"php/ldap_parse_result.html","desc":"Extract information from result"}, "ldap_read":{"name":"ldap_read","type":"","path":"php/ldap_read.html","desc":"Read an entry"}, "ldap_rename":{"name":"ldap_rename","type":"","path":"php/ldap_rename.html","desc":"Modify the name of an entry"}, "ldap_rename_ext":{"name":"ldap_rename_ext","type":"","path":"php/ldap_rename_ext.html","desc":"Modify the name of an entry"}, "ldap_sasl_bind":{"name":"ldap_sasl_bind","type":"","path":"php/ldap_sasl_bind.html","desc":"Bind to LDAP directory using SASL"}, "ldap_search":{"name":"ldap_search","type":"","path":"php/ldap_search.html","desc":"Search LDAP tree"}, "ldap_set_option":{"name":"ldap_set_option","type":"","path":"php/ldap_set_option.html","desc":"Set the value of the given option"}, "ldap_set_rebind_proc":{"name":"ldap_set_rebind_proc","type":"","path":"php/ldap_set_rebind_proc.html","desc":"Set a callback function to do re-binds on referral chasing"}, "ldap_sort":{"name":"ldap_sort","type":"","path":"php/ldap_sort.html","desc":"Sort LDAP result entries on the client side"}, "ldap_start_tls":{"name":"ldap_start_tls","type":"","path":"php/ldap_start_tls.html","desc":"Start TLS"}, "ldap_t61_to_8859":{"name":"ldap_t61_to_8859","type":"","path":"php/ldap_t61_to_8859.html","desc":"Translate t61 characters to 8859 characters"}, "ldap_unbind":{"name":"ldap_unbind","type":"","path":"php/ldap_unbind.html","desc":"Unbind from LDAP directory"}, "levenshtein":{"name":"levenshtein","type":"","path":"php/levenshtein.html","desc":"计算两个字符串之间的编辑距离"}, "libxml_clear_errors":{"name":"libxml_clear_errors","type":"","path":"php/libxml_clear_errors.html","desc":"Clear libxml error buffer"}, "libxml_disable_entity_loader":{"name":"libxml_disable_entity_loader","type":"","path":"php/libxml_disable_entity_loader.html","desc":"Disable the ability to load external entities"}, "libxml_get_errors":{"name":"libxml_get_errors","type":"","path":"php/libxml_get_errors.html","desc":"Retrieve array of errors"}, "libxml_get_last_error":{"name":"libxml_get_last_error","type":"","path":"php/libxml_get_last_error.html","desc":"Retrieve last error from libxml"}, "libxml_set_external_entity_loader":{"name":"libxml_set_external_entity_loader","type":"","path":"php/libxml_set_external_entity_loader.html","desc":"Changes the default external entity loader"}, "libxml_set_streams_context":{"name":"libxml_set_streams_context","type":"","path":"php/libxml_set_streams_context.html","desc":"Set the streams context for the next libxml document load or write"}, "libxml_use_internal_errors":{"name":"libxml_use_internal_errors","type":"","path":"php/libxml_use_internal_errors.html","desc":"Disable libxml errors and allow user to fetch error information as needed"}, "link":{"name":"link","type":"","path":"php/link.html","desc":"建立一个硬连接"}, "linkinfo":{"name":"linkinfo","type":"","path":"php/linkinfo.html","desc":"获取一个连接的信息"}, "list":{"name":"list","type":"","path":"php/list.html","desc":"把数组中的值赋给一组变量"}, "localeconv":{"name":"localeconv","type":"","path":"php/localeconv.html","desc":"Get numeric formatting information"}, "localtime":{"name":"localtime","type":"","path":"php/localtime.html","desc":"取得本地时间"}, "log":{"name":"log","type":"","path":"php/log.html","desc":"自然对数"}, "log10":{"name":"log10","type":"","path":"php/log10.html","desc":"以 10 为底的对数"}, "log1p":{"name":"log1p","type":"","path":"php/log1p.html","desc":"返回 log(1 + number),甚至当 number 的值接近零也能计算出准确结果"}, "log_cmd_delete":{"name":"log_cmd_delete","type":"","path":"php/log_cmd_delete.html","desc":"Callback When Deleting Documents"}, "log_cmd_insert":{"name":"log_cmd_insert","type":"","path":"php/log_cmd_insert.html","desc":"Callback When Inserting Documents"}, "log_cmd_update":{"name":"log_cmd_update","type":"","path":"php/log_cmd_update.html","desc":"Callback When Updating Documents"}, "log_getmore":{"name":"log_getmore","type":"","path":"php/log_getmore.html","desc":"Callback When Retrieving Next Cursor Batch"}, "log_killcursor":{"name":"log_killcursor","type":"","path":"php/log_killcursor.html","desc":"Callback When Executing KILLCURSOR operations"}, "log_reply":{"name":"log_reply","type":"","path":"php/log_reply.html","desc":"Callback When Reading the MongoDB reply"}, "log_write_batch":{"name":"log_write_batch","type":"","path":"php/log_write_batch.html","desc":"Callback When Writing Batches"}, "long2ip":{"name":"long2ip","type":"","path":"php/long2ip.html","desc":"将长整型转化为字符串形式带点的互联网标准格式地址(IPV4)"}, "lstat":{"name":"lstat","type":"","path":"php/lstat.html","desc":"给出一个文件或符号连接的信息"}, "ltrim":{"name":"ltrim","type":"","path":"php/ltrim.html","desc":"删除字符串开头的空白字符(或其他字符)"}, "lzf_compress":{"name":"lzf_compress","type":"","path":"php/lzf_compress.html","desc":"LZF compression"}, "lzf_decompress":{"name":"lzf_decompress","type":"","path":"php/lzf_decompress.html","desc":"LZF decompression"}, "lzf_optimized_for":{"name":"lzf_optimized_for","type":"","path":"php/lzf_optimized_for.html","desc":"Determines what LZF extension was optimized for"}, "magic_quotes_runtime":{"name":"magic_quotes_runtime","type":"","path":"php/magic_quotes_runtime.html","desc":"别名 set_magic_quotes_runtime"}, "mail":{"name":"mail","type":"","path":"php/mail.html","desc":"发送邮件"}, "mailparse_determine_best_xfer_encoding":{"name":"mailparse_determine_best_xfer_encoding","type":"","path":"php/mailparse_determine_best_xfer_encoding.html","desc":"Gets the best way of encoding"}, "mailparse_msg_create":{"name":"mailparse_msg_create","type":"","path":"php/mailparse_msg_create.html","desc":"Create a mime mail resource"}, "mailparse_msg_extract_part":{"name":"mailparse_msg_extract_part","type":"","path":"php/mailparse_msg_extract_part.html","desc":"Extractsdecodes a message section"}, "mailparse_msg_extract_part_file":{"name":"mailparse_msg_extract_part_file","type":"","path":"php/mailparse_msg_extract_part_file.html","desc":"Extractsdecodes a message section"}, "mailparse_msg_extract_whole_part_file":{"name":"mailparse_msg_extract_whole_part_file","type":"","path":"php/mailparse_msg_extract_whole_part_file.html","desc":"Extracts a message section including headers without decoding the transfer encoding"}, "mailparse_msg_free":{"name":"mailparse_msg_free","type":"","path":"php/mailparse_msg_free.html","desc":"Frees a MIME resource"}, "mailparse_msg_get_part":{"name":"mailparse_msg_get_part","type":"","path":"php/mailparse_msg_get_part.html","desc":"Returns a handle on a given section in a mimemessage"}, "mailparse_msg_get_part_data":{"name":"mailparse_msg_get_part_data","type":"","path":"php/mailparse_msg_get_part_data.html","desc":"Returns an associative array of info about the message"}, "mailparse_msg_get_structure":{"name":"mailparse_msg_get_structure","type":"","path":"php/mailparse_msg_get_structure.html","desc":"Returns an array of mime section names in the supplied message"}, "mailparse_msg_parse":{"name":"mailparse_msg_parse","type":"","path":"php/mailparse_msg_parse.html","desc":"Incrementally parse data into buffer"}, "mailparse_msg_parse_file":{"name":"mailparse_msg_parse_file","type":"","path":"php/mailparse_msg_parse_file.html","desc":"Parses a file"}, "mailparse_rfc822_parse_addresses":{"name":"mailparse_rfc822_parse_addresses","type":"","path":"php/mailparse_rfc822_parse_addresses.html","desc":"Parse RFC 822 compliant addresses"}, "mailparse_stream_encode":{"name":"mailparse_stream_encode","type":"","path":"php/mailparse_stream_encode.html","desc":"Streams data from source file pointer, apply encoding and write to destfp"}, "mailparse_uudecode_all":{"name":"mailparse_uudecode_all","type":"","path":"php/mailparse_uudecode_all.html","desc":"Scans the data from fp and extract each embedded uuencoded file"}, "main":{"name":"main","type":"","path":"php/main.html","desc":"虚拟的main"}, "max":{"name":"max","type":"","path":"php/max.html","desc":"找出最大值"}, "maxdb_affected_rows":{"name":"maxdb_affected_rows","type":"","path":"php/maxdb_affected_rows.html","desc":"Gets the number of affected rows in a previous MaxDB operation"}, "maxdb_autocommit":{"name":"maxdb_autocommit","type":"","path":"php/maxdb_autocommit.html","desc":"Turns on or off auto-commiting database modifications"}, "maxdb_bind_param":{"name":"maxdb_bind_param","type":"","path":"php/maxdb_bind_param.html","desc":"别名 maxdb_stmt_bind_param"}, "maxdb_bind_result":{"name":"maxdb_bind_result","type":"","path":"php/maxdb_bind_result.html","desc":"别名 maxdb_stmt_bind_result"}, "maxdb_change_user":{"name":"maxdb_change_user","type":"","path":"php/maxdb_change_user.html","desc":"Changes the user of the specified database connection"}, "maxdb_character_set_name":{"name":"maxdb_character_set_name","type":"","path":"php/maxdb_character_set_name.html","desc":"Returns the default character set for the database connection"}, "maxdb_client_encoding":{"name":"maxdb_client_encoding","type":"","path":"php/maxdb_client_encoding.html","desc":"别名 maxdb_character_set_name"}, "maxdb_close":{"name":"maxdb_close","type":"","path":"php/maxdb_close.html","desc":"Closes a previously opened database connection"}, "maxdb_close_long_data":{"name":"maxdb_close_long_data","type":"","path":"php/maxdb_close_long_data.html","desc":"别名 maxdb_stmt_close_long_data"}, "maxdb_commit":{"name":"maxdb_commit","type":"","path":"php/maxdb_commit.html","desc":"Commits the current transaction"}, "maxdb_connect":{"name":"maxdb_connect","type":"","path":"php/maxdb_connect.html","desc":"Open a new connection to the MaxDB server"}, "maxdb_connect_errno":{"name":"maxdb_connect_errno","type":"","path":"php/maxdb_connect_errno.html","desc":"Returns the error code from last connect call"}, "maxdb_connect_error":{"name":"maxdb_connect_error","type":"","path":"php/maxdb_connect_error.html","desc":"Returns a string description of the last connect error"}, "maxdb_data_seek":{"name":"maxdb_data_seek","type":"","path":"php/maxdb_data_seek.html","desc":"Adjusts the result pointer to an arbitary row in the result"}, "maxdb_debug":{"name":"maxdb_debug","type":"","path":"php/maxdb_debug.html","desc":"Performs debugging operations"}, "maxdb_disable_reads_from_master":{"name":"maxdb_disable_reads_from_master","type":"","path":"php/maxdb_disable_reads_from_master.html","desc":"Disable reads from master"}, "maxdb_disable_rpl_parse":{"name":"maxdb_disable_rpl_parse","type":"","path":"php/maxdb_disable_rpl_parse.html","desc":"Disable RPL parse"}, "maxdb_dump_debug_info":{"name":"maxdb_dump_debug_info","type":"","path":"php/maxdb_dump_debug_info.html","desc":"Dump debugging information into the log"}, "maxdb_embedded_connect":{"name":"maxdb_embedded_connect","type":"","path":"php/maxdb_embedded_connect.html","desc":"Open a connection to an embedded MaxDB server"}, "maxdb_enable_reads_from_master":{"name":"maxdb_enable_reads_from_master","type":"","path":"php/maxdb_enable_reads_from_master.html","desc":"Enable reads from master"}, "maxdb_enable_rpl_parse":{"name":"maxdb_enable_rpl_parse","type":"","path":"php/maxdb_enable_rpl_parse.html","desc":"Enable RPL parse"}, "maxdb_errno":{"name":"maxdb_errno","type":"","path":"php/maxdb_errno.html","desc":"Returns the error code for the most recent function call"}, "maxdb_error":{"name":"maxdb_error","type":"","path":"php/maxdb_error.html","desc":"Returns a string description of the last error"}, "maxdb_escape_string":{"name":"maxdb_escape_string","type":"","path":"php/maxdb_escape_string.html","desc":"别名 maxdb_real_escape_string"}, "maxdb_execute":{"name":"maxdb_execute","type":"","path":"php/maxdb_execute.html","desc":"别名 maxdb_stmt_execute"}, "maxdb_fetch":{"name":"maxdb_fetch","type":"","path":"php/maxdb_fetch.html","desc":"别名 maxdb_stmt_fetch"}, "maxdb_fetch_array":{"name":"maxdb_fetch_array","type":"","path":"php/maxdb_fetch_array.html","desc":"Fetch a result row as an associative, a numeric array, or both"}, "maxdb_fetch_assoc":{"name":"maxdb_fetch_assoc","type":"","path":"php/maxdb_fetch_assoc.html","desc":"Fetch a result row as an associative array"}, "maxdb_fetch_field":{"name":"maxdb_fetch_field","type":"","path":"php/maxdb_fetch_field.html","desc":"Returns the next field in the result set"}, "maxdb_fetch_fields":{"name":"maxdb_fetch_fields","type":"","path":"php/maxdb_fetch_fields.html","desc":"Returns an array of resources representing the fields in a result set"}, "maxdb_fetch_field_direct":{"name":"maxdb_fetch_field_direct","type":"","path":"php/maxdb_fetch_field_direct.html","desc":"Fetch meta-data for a single field"}, "maxdb_fetch_lengths":{"name":"maxdb_fetch_lengths","type":"","path":"php/maxdb_fetch_lengths.html","desc":"Returns the lengths of the columns of the current row in the result set"}, "maxdb_fetch_object":{"name":"maxdb_fetch_object","type":"","path":"php/maxdb_fetch_object.html","desc":"Returns the current row of a result set as an object"}, "maxdb_fetch_row":{"name":"maxdb_fetch_row","type":"","path":"php/maxdb_fetch_row.html","desc":"Get a result row as an enumerated array"}, "maxdb_field_count":{"name":"maxdb_field_count","type":"","path":"php/maxdb_field_count.html","desc":"Returns the number of columns for the most recent query"}, "maxdb_field_seek":{"name":"maxdb_field_seek","type":"","path":"php/maxdb_field_seek.html","desc":"Set result pointer to a specified field offset"}, "maxdb_field_tell":{"name":"maxdb_field_tell","type":"","path":"php/maxdb_field_tell.html","desc":"Get current field offset of a result pointer"}, "maxdb_free_result":{"name":"maxdb_free_result","type":"","path":"php/maxdb_free_result.html","desc":"Frees the memory associated with a result"}, "maxdb_get_client_info":{"name":"maxdb_get_client_info","type":"","path":"php/maxdb_get_client_info.html","desc":"Returns the MaxDB client version as a string"}, "maxdb_get_client_version":{"name":"maxdb_get_client_version","type":"","path":"php/maxdb_get_client_version.html","desc":"Get MaxDB client info"}, "maxdb_get_host_info":{"name":"maxdb_get_host_info","type":"","path":"php/maxdb_get_host_info.html","desc":"Returns a string representing the type of connection used"}, "maxdb_get_metadata":{"name":"maxdb_get_metadata","type":"","path":"php/maxdb_get_metadata.html","desc":"别名 maxdb_stmt_result_metadata"}, "maxdb_get_proto_info":{"name":"maxdb_get_proto_info","type":"","path":"php/maxdb_get_proto_info.html","desc":"Returns the version of the MaxDB protocol used"}, "maxdb_get_server_info":{"name":"maxdb_get_server_info","type":"","path":"php/maxdb_get_server_info.html","desc":"Returns the version of the MaxDB server"}, "maxdb_get_server_version":{"name":"maxdb_get_server_version","type":"","path":"php/maxdb_get_server_version.html","desc":"Returns the version of the MaxDB server as an integer"}, "maxdb_info":{"name":"maxdb_info","type":"","path":"php/maxdb_info.html","desc":"Retrieves information about the most recently executed query"}, "maxdb_init":{"name":"maxdb_init","type":"","path":"php/maxdb_init.html","desc":"Initializes MaxDB and returns an resource for use with maxdb_real_connect"}, "maxdb_insert_id":{"name":"maxdb_insert_id","type":"","path":"php/maxdb_insert_id.html","desc":"Returns the auto generated id used in the last query"}, "maxdb_kill":{"name":"maxdb_kill","type":"","path":"php/maxdb_kill.html","desc":"Disconnects from a MaxDB server"}, "maxdb_master_query":{"name":"maxdb_master_query","type":"","path":"php/maxdb_master_query.html","desc":"Enforce execution of a query on the master in a masterslave setup"}, "maxdb_more_results":{"name":"maxdb_more_results","type":"","path":"php/maxdb_more_results.html","desc":"Check if there any more query results from a multi query"}, "maxdb_multi_query":{"name":"maxdb_multi_query","type":"","path":"php/maxdb_multi_query.html","desc":"Performs a query on the database"}, "maxdb_next_result":{"name":"maxdb_next_result","type":"","path":"php/maxdb_next_result.html","desc":"Prepare next result from multi_query"}, "maxdb_num_fields":{"name":"maxdb_num_fields","type":"","path":"php/maxdb_num_fields.html","desc":"Get the number of fields in a result"}, "maxdb_num_rows":{"name":"maxdb_num_rows","type":"","path":"php/maxdb_num_rows.html","desc":"Gets the number of rows in a result"}, "maxdb_options":{"name":"maxdb_options","type":"","path":"php/maxdb_options.html","desc":"Set options"}, "maxdb_param_count":{"name":"maxdb_param_count","type":"","path":"php/maxdb_param_count.html","desc":"别名 maxdb_stmt_param_count"}, "maxdb_ping":{"name":"maxdb_ping","type":"","path":"php/maxdb_ping.html","desc":"Pings a server connection, or tries to reconnect if the connection has gone down"}, "maxdb_prepare":{"name":"maxdb_prepare","type":"","path":"php/maxdb_prepare.html","desc":"Prepare an SQL statement for execution"}, "maxdb_query":{"name":"maxdb_query","type":"","path":"php/maxdb_query.html","desc":"Performs a query on the database"}, "maxdb_real_connect":{"name":"maxdb_real_connect","type":"","path":"php/maxdb_real_connect.html","desc":"Opens a connection to a MaxDB server"}, "maxdb_real_escape_string":{"name":"maxdb_real_escape_string","type":"","path":"php/maxdb_real_escape_string.html","desc":"Escapes special characters in a string for use in an SQL statement, taking into account the current charset of the connection"}, "maxdb_real_query":{"name":"maxdb_real_query","type":"","path":"php/maxdb_real_query.html","desc":"Execute an SQL query"}, "maxdb_report":{"name":"maxdb_report","type":"","path":"php/maxdb_report.html","desc":"Enables or disables internal report functions"}, "maxdb_rollback":{"name":"maxdb_rollback","type":"","path":"php/maxdb_rollback.html","desc":"Rolls back current transaction"}, "maxdb_rpl_parse_enabled":{"name":"maxdb_rpl_parse_enabled","type":"","path":"php/maxdb_rpl_parse_enabled.html","desc":"Check if RPL parse is enabled"}, "maxdb_rpl_probe":{"name":"maxdb_rpl_probe","type":"","path":"php/maxdb_rpl_probe.html","desc":"RPL probe"}, "maxdb_rpl_query_type":{"name":"maxdb_rpl_query_type","type":"","path":"php/maxdb_rpl_query_type.html","desc":"Returns RPL query type"}, "maxdb_select_db":{"name":"maxdb_select_db","type":"","path":"php/maxdb_select_db.html","desc":"Selects the default database for database queries"}, "maxdb_send_long_data":{"name":"maxdb_send_long_data","type":"","path":"php/maxdb_send_long_data.html","desc":"别名 maxdb_stmt_send_long_data"}, "maxdb_send_query":{"name":"maxdb_send_query","type":"","path":"php/maxdb_send_query.html","desc":"Send the query and return"}, "maxdb_server_end":{"name":"maxdb_server_end","type":"","path":"php/maxdb_server_end.html","desc":"Shut down the embedded server"}, "maxdb_server_init":{"name":"maxdb_server_init","type":"","path":"php/maxdb_server_init.html","desc":"Initialize embedded server"}, "maxdb_set_opt":{"name":"maxdb_set_opt","type":"","path":"php/maxdb_set_opt.html","desc":"别名 maxdb_options"}, "maxdb_sqlstate":{"name":"maxdb_sqlstate","type":"","path":"php/maxdb_sqlstate.html","desc":"Returns the SQLSTATE error from previous MaxDB operation"}, "maxdb_ssl_set":{"name":"maxdb_ssl_set","type":"","path":"php/maxdb_ssl_set.html","desc":"Used for establishing secure connections using SSL"}, "maxdb_stat":{"name":"maxdb_stat","type":"","path":"php/maxdb_stat.html","desc":"Gets the current system status"}, "maxdb_stmt_affected_rows":{"name":"maxdb_stmt_affected_rows","type":"","path":"php/maxdb_stmt_affected_rows.html","desc":"Returns the total number of rows changed, del"}, "maxdb_stmt_bind_param":{"name":"maxdb_stmt_bind_param","type":"","path":"php/maxdb_stmt_bind_param.html","desc":"Binds variables to a prepared statement as parameters"}, "maxdb_stmt_bind_result":{"name":"maxdb_stmt_bind_result","type":"","path":"php/maxdb_stmt_bind_result.html","desc":"Binds variables to a prepared statement for result storage"}, "maxdb_stmt_close":{"name":"maxdb_stmt_close","type":"","path":"php/maxdb_stmt_close.html","desc":"Closes a prepared statement"}, "maxdb_stmt_close_long_data":{"name":"maxdb_stmt_close_long_data","type":"","path":"php/maxdb_stmt_close_long_data.html","desc":"Ends a sequence of maxdb_stmt_send_long_data"}, "maxdb_stmt_data_seek":{"name":"maxdb_stmt_data_seek","type":"","path":"php/maxdb_stmt_data_seek.html","desc":"Seeks to an arbitray row in statement result set"}, "maxdb_stmt_errno":{"name":"maxdb_stmt_errno","type":"","path":"php/maxdb_stmt_errno.html","desc":"Returns the error code for the most recent statement call"}, "maxdb_stmt_error":{"name":"maxdb_stmt_error","type":"","path":"php/maxdb_stmt_error.html","desc":"Returns a string description for last statement error"}, "maxdb_stmt_execute":{"name":"maxdb_stmt_execute","type":"","path":"php/maxdb_stmt_execute.html","desc":"Executes a prepared Query"}, "maxdb_stmt_fetch":{"name":"maxdb_stmt_fetch","type":"","path":"php/maxdb_stmt_fetch.html","desc":"Fetch results from a prepared statement into the bound variables"}, "maxdb_stmt_free_result":{"name":"maxdb_stmt_free_result","type":"","path":"php/maxdb_stmt_free_result.html","desc":"Frees stored result memory for the given statement handle"}, "maxdb_stmt_init":{"name":"maxdb_stmt_init","type":"","path":"php/maxdb_stmt_init.html","desc":"Initializes a statement and returns an resource for use with maxdb_stmt_prepare"}, "maxdb_stmt_num_rows":{"name":"maxdb_stmt_num_rows","type":"","path":"php/maxdb_stmt_num_rows.html","desc":"Return the number of rows in statements result set"}, "maxdb_stmt_param_count":{"name":"maxdb_stmt_param_count","type":"","path":"php/maxdb_stmt_param_count.html","desc":"Returns the number of parameter for the given statement"}, "maxdb_stmt_prepare":{"name":"maxdb_stmt_prepare","type":"","path":"php/maxdb_stmt_prepare.html","desc":"Prepare an SQL statement for execution"}, "maxdb_stmt_reset":{"name":"maxdb_stmt_reset","type":"","path":"php/maxdb_stmt_reset.html","desc":"Resets a prepared statement"}, "maxdb_stmt_result_metadata":{"name":"maxdb_stmt_result_metadata","type":"","path":"php/maxdb_stmt_result_metadata.html","desc":"Returns result set metadata from a prepared statement"}, "maxdb_stmt_send_long_data":{"name":"maxdb_stmt_send_long_data","type":"","path":"php/maxdb_stmt_send_long_data.html","desc":"Send data in blocks"}, "maxdb_stmt_sqlstate":{"name":"maxdb_stmt_sqlstate","type":"","path":"php/maxdb_stmt_sqlstate.html","desc":"Returns SQLSTATE error from previous statement operation"}, "maxdb_stmt_store_result":{"name":"maxdb_stmt_store_result","type":"","path":"php/maxdb_stmt_store_result.html","desc":"Transfers a result set from a prepared statement"}, "maxdb_store_result":{"name":"maxdb_store_result","type":"","path":"php/maxdb_store_result.html","desc":"Transfers a result set from the last query"}, "maxdb_thread_id":{"name":"maxdb_thread_id","type":"","path":"php/maxdb_thread_id.html","desc":"Returns the thread ID for the current connection"}, "maxdb_thread_safe":{"name":"maxdb_thread_safe","type":"","path":"php/maxdb_thread_safe.html","desc":"Returns whether thread safety is given or not"}, "maxdb_use_result":{"name":"maxdb_use_result","type":"","path":"php/maxdb_use_result.html","desc":"Initiate a result set retrieval"}, "maxdb_warning_count":{"name":"maxdb_warning_count","type":"","path":"php/maxdb_warning_count.html","desc":"Returns the number of warnings from the last query for the given link"}, "mb_check_encoding":{"name":"mb_check_encoding","type":"","path":"php/mb_check_encoding.html","desc":"检查字符串在指定的编码里是否有效"}, "mb_chr":{"name":"mb_chr","type":"","path":"php/mb_chr.html","desc":"Get a specific character"}, "mb_convert_case":{"name":"mb_convert_case","type":"","path":"php/mb_convert_case.html","desc":"对字符串进行大小写转换"}, "mb_convert_encoding":{"name":"mb_convert_encoding","type":"","path":"php/mb_convert_encoding.html","desc":"转换字符的编码"}, "mb_convert_kana":{"name":"mb_convert_kana","type":"","path":"php/mb_convert_kana.html","desc":"Convert "kana" one from another ("zen-kaku", "han-kaku" and more)"}, "mb_convert_variables":{"name":"mb_convert_variables","type":"","path":"php/mb_convert_variables.html","desc":"转换一个或多个变量的字符编码"}, "mb_decode_mimeheader":{"name":"mb_decode_mimeheader","type":"","path":"php/mb_decode_mimeheader.html","desc":"解码 MIME 头字段中的字符串"}, "mb_decode_numericentity":{"name":"mb_decode_numericentity","type":"","path":"php/mb_decode_numericentity.html","desc":"根据 HTML 数字字符串解码成字符"}, "mb_detect_encoding":{"name":"mb_detect_encoding","type":"","path":"php/mb_detect_encoding.html","desc":"检测字符的编码"}, "mb_detect_order":{"name":"mb_detect_order","type":"","path":"php/mb_detect_order.html","desc":"设置获取 字符编码的检测顺序"}, "mb_encode_mimeheader":{"name":"mb_encode_mimeheader","type":"","path":"php/mb_encode_mimeheader.html","desc":"为 MIME 头编码字符串"}, "mb_encode_numericentity":{"name":"mb_encode_numericentity","type":"","path":"php/mb_encode_numericentity.html","desc":"Encode character to HTML numeric string reference"}, "mb_encoding_aliases":{"name":"mb_encoding_aliases","type":"","path":"php/mb_encoding_aliases.html","desc":"Get aliases of a known encoding type"}, "mb_ereg":{"name":"mb_ereg","type":"","path":"php/mb_ereg.html","desc":"Regular expression match with multibyte support"}, "mb_eregi":{"name":"mb_eregi","type":"","path":"php/mb_eregi.html","desc":"Regular expression match ignoring case with multibyte support"}, "mb_eregi_replace":{"name":"mb_eregi_replace","type":"","path":"php/mb_eregi_replace.html","desc":"Replace regular expression with multibyte support ignoring case"}, "mb_ereg_match":{"name":"mb_ereg_match","type":"","path":"php/mb_ereg_match.html","desc":"Regular expression match for multibyte string"}, "mb_ereg_replace":{"name":"mb_ereg_replace","type":"","path":"php/mb_ereg_replace.html","desc":"Replace regular expression with multibyte support"}, "mb_ereg_replace_callback":{"name":"mb_ereg_replace_callback","type":"","path":"php/mb_ereg_replace_callback.html","desc":"Perform a regular expression search and replace with multibyte support using a callback"}, "mb_ereg_search":{"name":"mb_ereg_search","type":"","path":"php/mb_ereg_search.html","desc":"Multibyte regular expression match for predefined multibyte string"}, "mb_ereg_search_getpos":{"name":"mb_ereg_search_getpos","type":"","path":"php/mb_ereg_search_getpos.html","desc":"Returns start point for next regular expression match"}, "mb_ereg_search_getregs":{"name":"mb_ereg_search_getregs","type":"","path":"php/mb_ereg_search_getregs.html","desc":"Retrieve the result from the last multibyte regular expression match"}, "mb_ereg_search_init":{"name":"mb_ereg_search_init","type":"","path":"php/mb_ereg_search_init.html","desc":"Setup string and regular expression for a multibyte regular expression match"}, "mb_ereg_search_pos":{"name":"mb_ereg_search_pos","type":"","path":"php/mb_ereg_search_pos.html","desc":"Returns position and length of a matched part of the multibyte regular expression for a predefined multibyte string"}, "mb_ereg_search_regs":{"name":"mb_ereg_search_regs","type":"","path":"php/mb_ereg_search_regs.html","desc":"Returns the matched part of a multibyte regular expression"}, "mb_ereg_search_setpos":{"name":"mb_ereg_search_setpos","type":"","path":"php/mb_ereg_search_setpos.html","desc":"Set start point of next regular expression match"}, "mb_get_info":{"name":"mb_get_info","type":"","path":"php/mb_get_info.html","desc":"获取 mbstring 的内部设置"}, "mb_http_input":{"name":"mb_http_input","type":"","path":"php/mb_http_input.html","desc":"检测 HTTP 输入字符编码"}, "mb_http_output":{"name":"mb_http_output","type":"","path":"php/mb_http_output.html","desc":"设置获取 HTTP 输出字符编码"}, "mb_internal_encoding":{"name":"mb_internal_encoding","type":"","path":"php/mb_internal_encoding.html","desc":"设置获取内部字符编码"}, "mb_language":{"name":"mb_language","type":"","path":"php/mb_language.html","desc":"设置获取当前的语言"}, "mb_list_encodings":{"name":"mb_list_encodings","type":"","path":"php/mb_list_encodings.html","desc":"返回所有支持编码的数组"}, "mb_ord":{"name":"mb_ord","type":"","path":"php/mb_ord.html","desc":"Get code point of character"}, "mb_output_handler":{"name":"mb_output_handler","type":"","path":"php/mb_output_handler.html","desc":"在输出缓冲中转换字符编码的回调函数"}, "mb_parse_str":{"name":"mb_parse_str","type":"","path":"php/mb_parse_str.html","desc":"解析 GETPOSTCOOKIE 数据并设置全局变量"}, "mb_preferred_mime_name":{"name":"mb_preferred_mime_name","type":"","path":"php/mb_preferred_mime_name.html","desc":"获取 MIME 字符串"}, "mb_regex_encoding":{"name":"mb_regex_encoding","type":"","path":"php/mb_regex_encoding.html","desc":"SetGet character encoding for multibyte regex"}, "mb_regex_set_options":{"name":"mb_regex_set_options","type":"","path":"php/mb_regex_set_options.html","desc":"SetGet the default options for mbregex functions"}, "mb_send_mail":{"name":"mb_send_mail","type":"","path":"php/mb_send_mail.html","desc":"发送编码过的邮件"}, "mb_split":{"name":"mb_split","type":"","path":"php/mb_split.html","desc":"使用正则表达式分割多字节字符串"}, "mb_strcut":{"name":"mb_strcut","type":"","path":"php/mb_strcut.html","desc":"获取字符的一部分"}, "mb_strimwidth":{"name":"mb_strimwidth","type":"","path":"php/mb_strimwidth.html","desc":"获取按指定宽度截断的字符串"}, "mb_stripos":{"name":"mb_stripos","type":"","path":"php/mb_stripos.html","desc":"大小写不敏感地查找字符串在另一个字符串中首次出现的位置"}, "mb_stristr":{"name":"mb_stristr","type":"","path":"php/mb_stristr.html","desc":"大小写不敏感地查找字符串在另一个字符串里的首次出现"}, "mb_strlen":{"name":"mb_strlen","type":"","path":"php/mb_strlen.html","desc":"获取字符串的长度"}, "mb_strpos":{"name":"mb_strpos","type":"","path":"php/mb_strpos.html","desc":"查找字符串在另一个字符串中首次出现的位置"}, "mb_strrchr":{"name":"mb_strrchr","type":"","path":"php/mb_strrchr.html","desc":"查找指定字符在另一个字符串中最后一次的出现"}, "mb_strrichr":{"name":"mb_strrichr","type":"","path":"php/mb_strrichr.html","desc":"大小写不敏感地查找指定字符在另一个字符串中最后一次的出现"}, "mb_strripos":{"name":"mb_strripos","type":"","path":"php/mb_strripos.html","desc":"大小写不敏感地在字符串中查找一个字符串最后出现的位置"}, "mb_strrpos":{"name":"mb_strrpos","type":"","path":"php/mb_strrpos.html","desc":"查找字符串在一个字符串中最后出现的位置"}, "mb_strstr":{"name":"mb_strstr","type":"","path":"php/mb_strstr.html","desc":"查找字符串在另一个字符串里的首次出现"}, "mb_strtolower":{"name":"mb_strtolower","type":"","path":"php/mb_strtolower.html","desc":"使字符串小写"}, "mb_strtoupper":{"name":"mb_strtoupper","type":"","path":"php/mb_strtoupper.html","desc":"使字符串大写"}, "mb_strwidth":{"name":"mb_strwidth","type":"","path":"php/mb_strwidth.html","desc":"返回字符串的宽度"}, "mb_substitute_character":{"name":"mb_substitute_character","type":"","path":"php/mb_substitute_character.html","desc":"设置获取替代字符"}, "mb_substr":{"name":"mb_substr","type":"","path":"php/mb_substr.html","desc":"获取部分字符串"}, "mb_substr_count":{"name":"mb_substr_count","type":"","path":"php/mb_substr_count.html","desc":"统计字符串出现的次数"}, "mcrypt_cbc":{"name":"mcrypt_cbc","type":"","path":"php/mcrypt_cbc.html","desc":"以 CBC 模式加解密数据"}, "mcrypt_cfb":{"name":"mcrypt_cfb","type":"","path":"php/mcrypt_cfb.html","desc":"以 CFB 模式加解密数据"}, "mcrypt_create_iv":{"name":"mcrypt_create_iv","type":"","path":"php/mcrypt_create_iv.html","desc":"从随机源创建初始向量"}, "mcrypt_decrypt":{"name":"mcrypt_decrypt","type":"","path":"php/mcrypt_decrypt.html","desc":"使用给定参数解密密文"}, "mcrypt_ecb":{"name":"mcrypt_ecb","type":"","path":"php/mcrypt_ecb.html","desc":"已废弃:使用 ECB 模式加解密数据"}, "mcrypt_encrypt":{"name":"mcrypt_encrypt","type":"","path":"php/mcrypt_encrypt.html","desc":"使用给定参数加密明文"}, "mcrypt_enc_get_algorithms_name":{"name":"mcrypt_enc_get_algorithms_name","type":"","path":"php/mcrypt_enc_get_algorithms_name.html","desc":"返回打开的算法名称"}, "mcrypt_enc_get_block_size":{"name":"mcrypt_enc_get_block_size","type":"","path":"php/mcrypt_enc_get_block_size.html","desc":"返回打开的算法的分组大小"}, "mcrypt_enc_get_iv_size":{"name":"mcrypt_enc_get_iv_size","type":"","path":"php/mcrypt_enc_get_iv_size.html","desc":"返回打开的算法的初始向量大小"}, "mcrypt_enc_get_key_size":{"name":"mcrypt_enc_get_key_size","type":"","path":"php/mcrypt_enc_get_key_size.html","desc":"返回打开的模式所能支持的最长密钥"}, "mcrypt_enc_get_modes_name":{"name":"mcrypt_enc_get_modes_name","type":"","path":"php/mcrypt_enc_get_modes_name.html","desc":"返回打开的模式的名称"}, "mcrypt_enc_get_supported_key_sizes":{"name":"mcrypt_enc_get_supported_key_sizes","type":"","path":"php/mcrypt_enc_get_supported_key_sizes.html","desc":"以数组方式返回打开的算法所支持的密钥长度"}, "mcrypt_enc_is_block_algorithm":{"name":"mcrypt_enc_is_block_algorithm","type":"","path":"php/mcrypt_enc_is_block_algorithm.html","desc":"检测打开模式的算法是否为分组算法"}, "mcrypt_enc_is_block_algorithm_mode":{"name":"mcrypt_enc_is_block_algorithm_mode","type":"","path":"php/mcrypt_enc_is_block_algorithm_mode.html","desc":"检测打开的模式是否支持分组加密"}, "mcrypt_enc_is_block_mode":{"name":"mcrypt_enc_is_block_mode","type":"","path":"php/mcrypt_enc_is_block_mode.html","desc":"检测打开的模式是否以分组方式输出"}, "mcrypt_enc_self_test":{"name":"mcrypt_enc_self_test","type":"","path":"php/mcrypt_enc_self_test.html","desc":"在打开的模块上进行自检"}, "mcrypt_generic":{"name":"mcrypt_generic","type":"","path":"php/mcrypt_generic.html","desc":"加密数据"}, "mcrypt_generic_deinit":{"name":"mcrypt_generic_deinit","type":"","path":"php/mcrypt_generic_deinit.html","desc":"对加密模块进行清理工作"}, "mcrypt_generic_end":{"name":"mcrypt_generic_end","type":"","path":"php/mcrypt_generic_end.html","desc":"终止加密"}, "mcrypt_generic_init":{"name":"mcrypt_generic_init","type":"","path":"php/mcrypt_generic_init.html","desc":"初始化加密所需的缓冲区"}, "mcrypt_get_block_size":{"name":"mcrypt_get_block_size","type":"","path":"php/mcrypt_get_block_size.html","desc":"获得加密算法的分组大小"}, "mcrypt_get_cipher_name":{"name":"mcrypt_get_cipher_name","type":"","path":"php/mcrypt_get_cipher_name.html","desc":"获取加密算法名称"}, "mcrypt_get_iv_size":{"name":"mcrypt_get_iv_size","type":"","path":"php/mcrypt_get_iv_size.html","desc":"返回指定算法模式组合的初始向量大小"}, "mcrypt_get_key_size":{"name":"mcrypt_get_key_size","type":"","path":"php/mcrypt_get_key_size.html","desc":"获取指定加密算法的密钥大小"}, "mcrypt_list_algorithms":{"name":"mcrypt_list_algorithms","type":"","path":"php/mcrypt_list_algorithms.html","desc":"获取支持的加密算法"}, "mcrypt_list_modes":{"name":"mcrypt_list_modes","type":"","path":"php/mcrypt_list_modes.html","desc":"获取所支持的模式"}, "mcrypt_module_close":{"name":"mcrypt_module_close","type":"","path":"php/mcrypt_module_close.html","desc":"关闭加密模块"}, "mcrypt_module_get_algo_block_size":{"name":"mcrypt_module_get_algo_block_size","type":"","path":"php/mcrypt_module_get_algo_block_size.html","desc":"返回指定算法的分组大小"}, "mcrypt_module_get_algo_key_size":{"name":"mcrypt_module_get_algo_key_size","type":"","path":"php/mcrypt_module_get_algo_key_size.html","desc":"获取打开模式所支持的最大密钥大小"}, "mcrypt_module_get_supported_key_sizes":{"name":"mcrypt_module_get_supported_key_sizes","type":"","path":"php/mcrypt_module_get_supported_key_sizes.html","desc":"以数组形式返回打开的算法所支持的密钥大小"}, "mcrypt_module_is_block_algorithm":{"name":"mcrypt_module_is_block_algorithm","type":"","path":"php/mcrypt_module_is_block_algorithm.html","desc":"检测指定算法是否为分组加密算法"}, "mcrypt_module_is_block_algorithm_mode":{"name":"mcrypt_module_is_block_algorithm_mode","type":"","path":"php/mcrypt_module_is_block_algorithm_mode.html","desc":"返回指定模块是否是分组加密模式"}, "mcrypt_module_is_block_mode":{"name":"mcrypt_module_is_block_mode","type":"","path":"php/mcrypt_module_is_block_mode.html","desc":"检测指定模式是否以分组方式输出"}, "mcrypt_module_open":{"name":"mcrypt_module_open","type":"","path":"php/mcrypt_module_open.html","desc":"打开算法和模式对应的模块"}, "mcrypt_module_self_test":{"name":"mcrypt_module_self_test","type":"","path":"php/mcrypt_module_self_test.html","desc":"在指定模块上执行自检"}, "mcrypt_ofb":{"name":"mcrypt_ofb","type":"","path":"php/mcrypt_ofb.html","desc":"使用 OFB 模式加密解密数据"}, "md5":{"name":"md5","type":"","path":"php/md5.html","desc":"计算字符串的 MD5 散列值"}, "md5_file":{"name":"md5_file","type":"","path":"php/md5_file.html","desc":"计算指定文件的 MD5 散列值"}, "mdecrypt_generic":{"name":"mdecrypt_generic","type":"","path":"php/mdecrypt_generic.html","desc":"解密数据"}, "memcache_debug":{"name":"memcache_debug","type":"","path":"php/memcache_debug.html","desc":"转换调试输出的开关"}, "memory_get_peak_usage":{"name":"memory_get_peak_usage","type":"","path":"php/memory_get_peak_usage.html","desc":"返回分配给 PHP 内存的峰值"}, "memory_get_usage":{"name":"memory_get_usage","type":"","path":"php/memory_get_usage.html","desc":"返回分配给 PHP 的内存量"}, "metaphone":{"name":"metaphone","type":"","path":"php/metaphone.html","desc":"Calculate the metaphone key of a string"}, "method_exists":{"name":"method_exists","type":"","path":"php/method_exists.html","desc":"检查类的方法是否存在"}, "mhash":{"name":"mhash","type":"","path":"php/mhash.html","desc":"Computes hash"}, "mhash_count":{"name":"mhash_count","type":"","path":"php/mhash_count.html","desc":"Gets the highest available hash ID"}, "mhash_get_block_size":{"name":"mhash_get_block_size","type":"","path":"php/mhash_get_block_size.html","desc":"Gets the block size of the specified hash"}, "mhash_get_hash_name":{"name":"mhash_get_hash_name","type":"","path":"php/mhash_get_hash_name.html","desc":"Gets the name of the specified hash"}, "mhash_keygen_s2k":{"name":"mhash_keygen_s2k","type":"","path":"php/mhash_keygen_s2k.html","desc":"Generates a key"}, "microtime":{"name":"microtime","type":"","path":"php/microtime.html","desc":"返回当前 Unix 时间戳和微秒数"}, "mime_content_type":{"name":"mime_content_type","type":"","path":"php/mime_content_type.html","desc":"检测文件的 MIME 类型"}, "min":{"name":"min","type":"","path":"php/min.html","desc":"找出最小值"}, "ming_keypress":{"name":"ming_keypress","type":"","path":"php/ming_keypress.html","desc":"Returns the action flag for keyPress(char)"}, "ming_setcubicthreshold":{"name":"ming_setcubicthreshold","type":"","path":"php/ming_setcubicthreshold.html","desc":"Set cubic threshold"}, "ming_setscale":{"name":"ming_setscale","type":"","path":"php/ming_setscale.html","desc":"Set the global scaling factor"}, "ming_setswfcompression":{"name":"ming_setswfcompression","type":"","path":"php/ming_setswfcompression.html","desc":"Sets the SWF output compression"}, "ming_useconstants":{"name":"ming_useconstants","type":"","path":"php/ming_useconstants.html","desc":"Use constant pool"}, "ming_useswfversion":{"name":"ming_useswfversion","type":"","path":"php/ming_useswfversion.html","desc":"Sets the SWF version"}, "mkdir":{"name":"mkdir","type":"","path":"php/mkdir.html","desc":"新建目录"}, "mktime":{"name":"mktime","type":"","path":"php/mktime.html","desc":"取得一个日期的 Unix 时间戳"}, "money_format":{"name":"money_format","type":"","path":"php/money_format.html","desc":"将数字格式化成货币字符串"}, "mongodb.bson_fromjson":{"name":"mongodb.bson_fromjson","type":"","path":"php/mongodb.bson_fromjson.html","desc":"Returns the BSON representation of a JSON value"}, "mongodb.bson_fromphp":{"name":"mongodb.bson_fromphp","type":"","path":"php/mongodb.bson_fromphp.html","desc":"Returns the BSON representation of a PHP value"}, "mongodb.bson_tocanonicalextendedjson":{"name":"mongodb.bson_tocanonicalextendedjson","type":"","path":"php/mongodb.bson_tocanonicalextendedjson.html","desc":"Returns the Canonical Extended JSON representation of a BSON value"}, "mongodb.bson_tojson":{"name":"mongodb.bson_tojson","type":"","path":"php/mongodb.bson_tojson.html","desc":"Returns the Legacy Extended JSON representation of a BSON value"}, "mongodb.bson_tophp":{"name":"mongodb.bson_tophp","type":"","path":"php/mongodb.bson_tophp.html","desc":"Returns the PHP representation of a BSON value"}, "mongodb.bson_torelaxedextendedjson":{"name":"mongodb.bson_torelaxedextendedjson","type":"","path":"php/mongodb.bson_torelaxedextendedjson.html","desc":"Returns the Relaxed Extended JSON representation of a BSON value"}, "mongodb.driver.monitoring.addsubscriber":{"name":"mongodb.driver.monitoring.addsubscriber","type":"","path":"php/mongodb.driver.monitoring.addsubscriber.html","desc":"Registers a new monitoring event subscriber"}, "mongodb.driver.monitoring.removesubscriber":{"name":"mongodb.driver.monitoring.removesubscriber","type":"","path":"php/mongodb.driver.monitoring.removesubscriber.html","desc":"Unregisters an existing monitoring event subscriber"}, "move_uploaded_file":{"name":"move_uploaded_file","type":"","path":"php/move_uploaded_file.html","desc":"将上传的文件移动到新位置"}, "mqseries_back":{"name":"mqseries_back","type":"","path":"php/mqseries_back.html","desc":"MQSeries MQBACK"}, "mqseries_begin":{"name":"mqseries_begin","type":"","path":"php/mqseries_begin.html","desc":"MQseries MQBEGIN"}, "mqseries_close":{"name":"mqseries_close","type":"","path":"php/mqseries_close.html","desc":"MQSeries MQCLOSE"}, "mqseries_cmit":{"name":"mqseries_cmit","type":"","path":"php/mqseries_cmit.html","desc":"MQSeries MQCMIT"}, "mqseries_conn":{"name":"mqseries_conn","type":"","path":"php/mqseries_conn.html","desc":"MQSeries MQCONN"}, "mqseries_connx":{"name":"mqseries_connx","type":"","path":"php/mqseries_connx.html","desc":"MQSeries MQCONNX"}, "mqseries_disc":{"name":"mqseries_disc","type":"","path":"php/mqseries_disc.html","desc":"MQSeries MQDISC"}, "mqseries_get":{"name":"mqseries_get","type":"","path":"php/mqseries_get.html","desc":"MQSeries MQGET"}, "mqseries_inq":{"name":"mqseries_inq","type":"","path":"php/mqseries_inq.html","desc":"MQSeries MQINQ"}, "mqseries_open":{"name":"mqseries_open","type":"","path":"php/mqseries_open.html","desc":"MQSeries MQOPEN"}, "mqseries_put":{"name":"mqseries_put","type":"","path":"php/mqseries_put.html","desc":"MQSeries MQPUT"}, "mqseries_put1":{"name":"mqseries_put1","type":"","path":"php/mqseries_put1.html","desc":"MQSeries MQPUT1"}, "mqseries_set":{"name":"mqseries_set","type":"","path":"php/mqseries_set.html","desc":"MQSeries MQSET"}, "mqseries_strerror":{"name":"mqseries_strerror","type":"","path":"php/mqseries_strerror.html","desc":"Returns the error message corresponding to a result code (MQRC)"}, "msession_connect":{"name":"msession_connect","type":"","path":"php/msession_connect.html","desc":"Connect to msession server"}, "msession_count":{"name":"msession_count","type":"","path":"php/msession_count.html","desc":"Get session count"}, "msession_create":{"name":"msession_create","type":"","path":"php/msession_create.html","desc":"Create a session"}, "msession_destroy":{"name":"msession_destroy","type":"","path":"php/msession_destroy.html","desc":"Destroy a session"}, "msession_disconnect":{"name":"msession_disconnect","type":"","path":"php/msession_disconnect.html","desc":"Close connection to msession server"}, "msession_find":{"name":"msession_find","type":"","path":"php/msession_find.html","desc":"Find all sessions with name and value"}, "msession_get":{"name":"msession_get","type":"","path":"php/msession_get.html","desc":"Get value from session"}, "msession_get_array":{"name":"msession_get_array","type":"","path":"php/msession_get_array.html","desc":"Get array of msession variables"}, "msession_get_data":{"name":"msession_get_data","type":"","path":"php/msession_get_data.html","desc":"Get data session unstructured data"}, "msession_inc":{"name":"msession_inc","type":"","path":"php/msession_inc.html","desc":"Increment value in session"}, "msession_list":{"name":"msession_list","type":"","path":"php/msession_list.html","desc":"List all sessions"}, "msession_listvar":{"name":"msession_listvar","type":"","path":"php/msession_listvar.html","desc":"List sessions with variable"}, "msession_lock":{"name":"msession_lock","type":"","path":"php/msession_lock.html","desc":"Lock a session"}, "msession_plugin":{"name":"msession_plugin","type":"","path":"php/msession_plugin.html","desc":"Call an escape function within the msession personality plugin"}, "msession_randstr":{"name":"msession_randstr","type":"","path":"php/msession_randstr.html","desc":"Get random string"}, "msession_set":{"name":"msession_set","type":"","path":"php/msession_set.html","desc":"Set value in session"}, "msession_set_array":{"name":"msession_set_array","type":"","path":"php/msession_set_array.html","desc":"Set msession variables from an array"}, "msession_set_data":{"name":"msession_set_data","type":"","path":"php/msession_set_data.html","desc":"Set data session unstructured data"}, "msession_timeout":{"name":"msession_timeout","type":"","path":"php/msession_timeout.html","desc":"Setget session timeout"}, "msession_uniq":{"name":"msession_uniq","type":"","path":"php/msession_uniq.html","desc":"Get unique id"}, "msession_unlock":{"name":"msession_unlock","type":"","path":"php/msession_unlock.html","desc":"Unlock a session"}, "msg_get_queue":{"name":"msg_get_queue","type":"","path":"php/msg_get_queue.html","desc":"Create or attach to a message queue"}, "msg_queue_exists":{"name":"msg_queue_exists","type":"","path":"php/msg_queue_exists.html","desc":"Check whether a message queue exists"}, "msg_receive":{"name":"msg_receive","type":"","path":"php/msg_receive.html","desc":"Receive a message from a message queue"}, "msg_remove_queue":{"name":"msg_remove_queue","type":"","path":"php/msg_remove_queue.html","desc":"Destroy a message queue"}, "msg_send":{"name":"msg_send","type":"","path":"php/msg_send.html","desc":"Send a message to a message queue"}, "msg_set_queue":{"name":"msg_set_queue","type":"","path":"php/msg_set_queue.html","desc":"Set information in the message queue data structure"}, "msg_stat_queue":{"name":"msg_stat_queue","type":"","path":"php/msg_stat_queue.html","desc":"Returns information from the message queue data structure"}, "msql":{"name":"msql","type":"","path":"php/msql.html","desc":"Alias of msql_db_query"}, "msql_affected_rows":{"name":"msql_affected_rows","type":"","path":"php/msql_affected_rows.html","desc":"Returns number of affected rows"}, "msql_close":{"name":"msql_close","type":"","path":"php/msql_close.html","desc":"Close mSQL connection"}, "msql_connect":{"name":"msql_connect","type":"","path":"php/msql_connect.html","desc":"Open mSQL connection"}, "msql_createdb":{"name":"msql_createdb","type":"","path":"php/msql_createdb.html","desc":"别名 msql_create_db"}, "msql_create_db":{"name":"msql_create_db","type":"","path":"php/msql_create_db.html","desc":"Create mSQL database"}, "msql_data_seek":{"name":"msql_data_seek","type":"","path":"php/msql_data_seek.html","desc":"Move internal row pointer"}, "msql_dbname":{"name":"msql_dbname","type":"","path":"php/msql_dbname.html","desc":"别名 msql_result"}, "msql_db_query":{"name":"msql_db_query","type":"","path":"php/msql_db_query.html","desc":"Send mSQL query"}, "msql_drop_db":{"name":"msql_drop_db","type":"","path":"php/msql_drop_db.html","desc":"Drop (delete) mSQL database"}, "msql_error":{"name":"msql_error","type":"","path":"php/msql_error.html","desc":"Returns error message of last msql call"}, "msql_fetch_array":{"name":"msql_fetch_array","type":"","path":"php/msql_fetch_array.html","desc":"Fetch row as array"}, "msql_fetch_field":{"name":"msql_fetch_field","type":"","path":"php/msql_fetch_field.html","desc":"Get field information"}, "msql_fetch_object":{"name":"msql_fetch_object","type":"","path":"php/msql_fetch_object.html","desc":"Fetch row as object"}, "msql_fetch_row":{"name":"msql_fetch_row","type":"","path":"php/msql_fetch_row.html","desc":"Get row as enumerated array"}, "msql_fieldflags":{"name":"msql_fieldflags","type":"","path":"php/msql_fieldflags.html","desc":"Alias of msql_field_flags"}, "msql_fieldlen":{"name":"msql_fieldlen","type":"","path":"php/msql_fieldlen.html","desc":"Alias of msql_field_len"}, "msql_fieldname":{"name":"msql_fieldname","type":"","path":"php/msql_fieldname.html","desc":"Alias of msql_field_name"}, "msql_fieldtable":{"name":"msql_fieldtable","type":"","path":"php/msql_fieldtable.html","desc":"Alias of msql_field_table"}, "msql_fieldtype":{"name":"msql_fieldtype","type":"","path":"php/msql_fieldtype.html","desc":"Alias of msql_field_type"}, "msql_field_flags":{"name":"msql_field_flags","type":"","path":"php/msql_field_flags.html","desc":"Get field flags"}, "msql_field_len":{"name":"msql_field_len","type":"","path":"php/msql_field_len.html","desc":"Get field length"}, "msql_field_name":{"name":"msql_field_name","type":"","path":"php/msql_field_name.html","desc":"Get the name of the specified field in a result"}, "msql_field_seek":{"name":"msql_field_seek","type":"","path":"php/msql_field_seek.html","desc":"Set field offset"}, "msql_field_table":{"name":"msql_field_table","type":"","path":"php/msql_field_table.html","desc":"Get table name for field"}, "msql_field_type":{"name":"msql_field_type","type":"","path":"php/msql_field_type.html","desc":"Get field type"}, "msql_free_result":{"name":"msql_free_result","type":"","path":"php/msql_free_result.html","desc":"Free result memory"}, "msql_list_dbs":{"name":"msql_list_dbs","type":"","path":"php/msql_list_dbs.html","desc":"List mSQL databases on server"}, "msql_list_fields":{"name":"msql_list_fields","type":"","path":"php/msql_list_fields.html","desc":"List result fields"}, "msql_list_tables":{"name":"msql_list_tables","type":"","path":"php/msql_list_tables.html","desc":"List tables in an mSQL database"}, "msql_numfields":{"name":"msql_numfields","type":"","path":"php/msql_numfields.html","desc":"Alias of msql_num_fields"}, "msql_numrows":{"name":"msql_numrows","type":"","path":"php/msql_numrows.html","desc":"Alias of msql_num_rows"}, "msql_num_fields":{"name":"msql_num_fields","type":"","path":"php/msql_num_fields.html","desc":"Get number of fields in result"}, "msql_num_rows":{"name":"msql_num_rows","type":"","path":"php/msql_num_rows.html","desc":"Get number of rows in result"}, "msql_pconnect":{"name":"msql_pconnect","type":"","path":"php/msql_pconnect.html","desc":"Open persistent mSQL connection"}, "msql_query":{"name":"msql_query","type":"","path":"php/msql_query.html","desc":"Send mSQL query"}, "msql_regcase":{"name":"msql_regcase","type":"","path":"php/msql_regcase.html","desc":"Alias of sql_regcase"}, "msql_result":{"name":"msql_result","type":"","path":"php/msql_result.html","desc":"Get result data"}, "msql_select_db":{"name":"msql_select_db","type":"","path":"php/msql_select_db.html","desc":"Select mSQL database"}, "msql_tablename":{"name":"msql_tablename","type":"","path":"php/msql_tablename.html","desc":"Alias of msql_result"}, "mssql_bind":{"name":"mssql_bind","type":"","path":"php/mssql_bind.html","desc":"Adds a parameter to a stored procedure or a remote stored procedure"}, "mssql_close":{"name":"mssql_close","type":"","path":"php/mssql_close.html","desc":"关闭MS SQL Server链接"}, "mssql_connect":{"name":"mssql_connect","type":"","path":"php/mssql_connect.html","desc":"打开MS SQL server链接"}, "mssql_data_seek":{"name":"mssql_data_seek","type":"","path":"php/mssql_data_seek.html","desc":"Moves internal row pointer"}, "mssql_execute":{"name":"mssql_execute","type":"","path":"php/mssql_execute.html","desc":"Executes a stored procedure on a MS SQL server database"}, "mssql_fetch_array":{"name":"mssql_fetch_array","type":"","path":"php/mssql_fetch_array.html","desc":"Fetch a result row as an associative array, a numeric array, or both"}, "mssql_fetch_assoc":{"name":"mssql_fetch_assoc","type":"","path":"php/mssql_fetch_assoc.html","desc":"Returns an associative array of the current row in the result"}, "mssql_fetch_batch":{"name":"mssql_fetch_batch","type":"","path":"php/mssql_fetch_batch.html","desc":"Returns the next batch of records"}, "mssql_fetch_field":{"name":"mssql_fetch_field","type":"","path":"php/mssql_fetch_field.html","desc":"Get field information"}, "mssql_fetch_object":{"name":"mssql_fetch_object","type":"","path":"php/mssql_fetch_object.html","desc":"Fetch row as object"}, "mssql_fetch_row":{"name":"mssql_fetch_row","type":"","path":"php/mssql_fetch_row.html","desc":"Get row as enumerated array"}, "mssql_field_length":{"name":"mssql_field_length","type":"","path":"php/mssql_field_length.html","desc":"Get the length of a field"}, "mssql_field_name":{"name":"mssql_field_name","type":"","path":"php/mssql_field_name.html","desc":"Get the name of a field"}, "mssql_field_seek":{"name":"mssql_field_seek","type":"","path":"php/mssql_field_seek.html","desc":"Seeks to the specified field offset"}, "mssql_field_type":{"name":"mssql_field_type","type":"","path":"php/mssql_field_type.html","desc":"Gets the type of a field"}, "mssql_free_result":{"name":"mssql_free_result","type":"","path":"php/mssql_free_result.html","desc":"Free result memory"}, "mssql_free_statement":{"name":"mssql_free_statement","type":"","path":"php/mssql_free_statement.html","desc":"Free statement memory"}, "mssql_get_last_message":{"name":"mssql_get_last_message","type":"","path":"php/mssql_get_last_message.html","desc":"Returns the last message from the server"}, "mssql_guid_string":{"name":"mssql_guid_string","type":"","path":"php/mssql_guid_string.html","desc":"Converts a 16 byte binary GUID to a string"}, "mssql_init":{"name":"mssql_init","type":"","path":"php/mssql_init.html","desc":"Initializes a stored procedure or a remote stored procedure"}, "mssql_min_error_severity":{"name":"mssql_min_error_severity","type":"","path":"php/mssql_min_error_severity.html","desc":"Sets the minimum error severity"}, "mssql_min_message_severity":{"name":"mssql_min_message_severity","type":"","path":"php/mssql_min_message_severity.html","desc":"Sets the minimum message severity"}, "mssql_next_result":{"name":"mssql_next_result","type":"","path":"php/mssql_next_result.html","desc":"Move the internal result pointer to the next result"}, "mssql_num_fields":{"name":"mssql_num_fields","type":"","path":"php/mssql_num_fields.html","desc":"Gets the number of fields in result"}, "mssql_num_rows":{"name":"mssql_num_rows","type":"","path":"php/mssql_num_rows.html","desc":"Gets the number of rows in result"}, "mssql_pconnect":{"name":"mssql_pconnect","type":"","path":"php/mssql_pconnect.html","desc":"Open persistent MS SQL connection"}, "mssql_query":{"name":"mssql_query","type":"","path":"php/mssql_query.html","desc":"Send MS SQL query"}, "mssql_result":{"name":"mssql_result","type":"","path":"php/mssql_result.html","desc":"Get result data"}, "mssql_rows_affected":{"name":"mssql_rows_affected","type":"","path":"php/mssql_rows_affected.html","desc":"Returns the number of records affected by the query"}, "mssql_select_db":{"name":"mssql_select_db","type":"","path":"php/mssql_select_db.html","desc":"Select MS SQL database"}, "mt_getrandmax":{"name":"mt_getrandmax","type":"","path":"php/mt_getrandmax.html","desc":"显示随机数的最大可能值"}, "mt_rand":{"name":"mt_rand","type":"","path":"php/mt_rand.html","desc":"生成更好的随机数"}, "mt_srand":{"name":"mt_srand","type":"","path":"php/mt_srand.html","desc":"播下一个更好的随机数发生器种子"}, "mysqli_bind_param":{"name":"mysqli_bind_param","type":"","path":"php/mysqli_bind_param.html","desc":"mysqli_stmt_bind_param 的别名"}, "mysqli_bind_result":{"name":"mysqli_bind_result","type":"","path":"php/mysqli_bind_result.html","desc":"mysqli_stmt_bind_result 的别名"}, "mysqli_client_encoding":{"name":"mysqli_client_encoding","type":"","path":"php/mysqli_client_encoding.html","desc":"mysqli_character_set_name 的别名"}, "mysqli_connect":{"name":"mysqli_connect","type":"","path":"php/mysqli_connect.html","desc":"别名 mysqli__construct"}, "mysqli_disable_reads_from_master":{"name":"mysqli_disable_reads_from_master","type":"","path":"php/mysqli_disable_reads_from_master.html","desc":"在主从服务器结构中,禁用从主机读取数据"}, "mysqli_disable_rpl_parse":{"name":"mysqli_disable_rpl_parse","type":"","path":"php/mysqli_disable_rpl_parse.html","desc":"禁用RPL解析"}, "mysqli_enable_reads_from_master":{"name":"mysqli_enable_reads_from_master","type":"","path":"php/mysqli_enable_reads_from_master.html","desc":"开启从主机读取"}, "mysqli_enable_rpl_parse":{"name":"mysqli_enable_rpl_parse","type":"","path":"php/mysqli_enable_rpl_parse.html","desc":"开启RPL解析"}, "mysqli_escape_string":{"name":"mysqli_escape_string","type":"","path":"php/mysqli_escape_string.html","desc":"别名 mysqli_real_escape_string"}, "mysqli_execute":{"name":"mysqli_execute","type":"","path":"php/mysqli_execute.html","desc":"mysqli_stmt_execute 的别名"}, "mysqli_fetch":{"name":"mysqli_fetch","type":"","path":"php/mysqli_fetch.html","desc":"mysqli_stmt_fetch 的别名。"}, "mysqli_get_cache_stats":{"name":"mysqli_get_cache_stats","type":"","path":"php/mysqli_get_cache_stats.html","desc":"返回客户端Zval缓存统计信息"}, "mysqli_get_client_stats":{"name":"mysqli_get_client_stats","type":"","path":"php/mysqli_get_client_stats.html","desc":"返回客户端进程统计信息"}, "mysqli_get_links_stats":{"name":"mysqli_get_links_stats","type":"","path":"php/mysqli_get_links_stats.html","desc":"返回打开和缓存的链接相关信息"}, "mysqli_get_metadata":{"name":"mysqli_get_metadata","type":"","path":"php/mysqli_get_metadata.html","desc":"mysqli_stmt_result_metadata 的别名"}, "mysqli_master_query":{"name":"mysqli_master_query","type":"","path":"php/mysqli_master_query.html","desc":"在主从机制中强制在主机中执行一个查询"}, "mysqli_param_count":{"name":"mysqli_param_count","type":"","path":"php/mysqli_param_count.html","desc":"mysqli_stmt_param_count 的别名"}, "mysqli_report":{"name":"mysqli_report","type":"","path":"php/mysqli_report.html","desc":"别名 mysqli_driver->report_mode"}, "mysqli_rpl_parse_enabled":{"name":"mysqli_rpl_parse_enabled","type":"","path":"php/mysqli_rpl_parse_enabled.html","desc":"检查是否开启了 RPL 解析"}, "mysqli_rpl_probe":{"name":"mysqli_rpl_probe","type":"","path":"php/mysqli_rpl_probe.html","desc":"RPL 探测"}, "mysqli_send_long_data":{"name":"mysqli_send_long_data","type":"","path":"php/mysqli_send_long_data.html","desc":"mysqli_stmt_send_long_data 的别名"}, "mysqli_set_opt":{"name":"mysqli_set_opt","type":"","path":"php/mysqli_set_opt.html","desc":"mysqli_options 的别名"}, "mysqli_slave_query":{"name":"mysqli_slave_query","type":"","path":"php/mysqli_slave_query.html","desc":"在主从机制中强制在从机上执行一个查询"}, "mysqlnd_memcache_get_config":{"name":"mysqlnd_memcache_get_config","type":"","path":"php/mysqlnd_memcache_get_config.html","desc":"Returns information about the plugin configuration"}, "mysqlnd_memcache_set":{"name":"mysqlnd_memcache_set","type":"","path":"php/mysqlnd_memcache_set.html","desc":"Associate a MySQL connection with a Memcache connection"}, "mysqlnd_ms_dump_servers":{"name":"mysqlnd_ms_dump_servers","type":"","path":"php/mysqlnd_ms_dump_servers.html","desc":"Returns a list of currently configured servers"}, "mysqlnd_ms_fabric_select_global":{"name":"mysqlnd_ms_fabric_select_global","type":"","path":"php/mysqlnd_ms_fabric_select_global.html","desc":"Switch to global sharding server for a given table"}, "mysqlnd_ms_fabric_select_shard":{"name":"mysqlnd_ms_fabric_select_shard","type":"","path":"php/mysqlnd_ms_fabric_select_shard.html","desc":"Switch to shard"}, "mysqlnd_ms_get_last_gtid":{"name":"mysqlnd_ms_get_last_gtid","type":"","path":"php/mysqlnd_ms_get_last_gtid.html","desc":"返回最后的全局同步 ID (GTID)"}, "mysqlnd_ms_get_last_used_connection":{"name":"mysqlnd_ms_get_last_used_connection","type":"","path":"php/mysqlnd_ms_get_last_used_connection.html","desc":"Returns an array which describes the last used connection"}, "mysqlnd_ms_get_stats":{"name":"mysqlnd_ms_get_stats","type":"","path":"php/mysqlnd_ms_get_stats.html","desc":"Returns query distribution and connection statistics"}, "mysqlnd_ms_match_wild":{"name":"mysqlnd_ms_match_wild","type":"","path":"php/mysqlnd_ms_match_wild.html","desc":"Finds whether a table name matches a wildcard pattern or not"}, "mysqlnd_ms_query_is_select":{"name":"mysqlnd_ms_query_is_select","type":"","path":"php/mysqlnd_ms_query_is_select.html","desc":"查询给定的 SQL 会发送给 master、slave 还是最后使用的 MySQL server 执行。"}, "mysqlnd_ms_set_qos":{"name":"mysqlnd_ms_set_qos","type":"","path":"php/mysqlnd_ms_set_qos.html","desc":"Sets the quality of service needed from the cluster"}, "mysqlnd_ms_set_user_pick_server":{"name":"mysqlnd_ms_set_user_pick_server","type":"","path":"php/mysqlnd_ms_set_user_pick_server.html","desc":"Sets a callback for user-defined readwrite splitting"}, "mysqlnd_ms_xa_begin":{"name":"mysqlnd_ms_xa_begin","type":"","path":"php/mysqlnd_ms_xa_begin.html","desc":"Starts a distributedXA transaction among MySQL servers"}, "mysqlnd_ms_xa_commit":{"name":"mysqlnd_ms_xa_commit","type":"","path":"php/mysqlnd_ms_xa_commit.html","desc":"Commits a distributedXA transaction among MySQL servers"}, "mysqlnd_ms_xa_gc":{"name":"mysqlnd_ms_xa_gc","type":"","path":"php/mysqlnd_ms_xa_gc.html","desc":"Garbage collects unfinished XA transactions after severe errors"}, "mysqlnd_ms_xa_rollback":{"name":"mysqlnd_ms_xa_rollback","type":"","path":"php/mysqlnd_ms_xa_rollback.html","desc":"Rolls back a distributedXA transaction among MySQL servers"}, "mysqlnd_qc_clear_cache":{"name":"mysqlnd_qc_clear_cache","type":"","path":"php/mysqlnd_qc_clear_cache.html","desc":"Flush all cache contents"}, "mysqlnd_qc_get_available_handlers":{"name":"mysqlnd_qc_get_available_handlers","type":"","path":"php/mysqlnd_qc_get_available_handlers.html","desc":"Returns a list of available storage handler"}, "mysqlnd_qc_get_cache_info":{"name":"mysqlnd_qc_get_cache_info","type":"","path":"php/mysqlnd_qc_get_cache_info.html","desc":"Returns information on the current handler, the number of cache entries and cache entries, if available"}, "mysqlnd_qc_get_core_stats":{"name":"mysqlnd_qc_get_core_stats","type":"","path":"php/mysqlnd_qc_get_core_stats.html","desc":"Statistics collected by the core of the query cache"}, "mysqlnd_qc_get_normalized_query_trace_log":{"name":"mysqlnd_qc_get_normalized_query_trace_log","type":"","path":"php/mysqlnd_qc_get_normalized_query_trace_log.html","desc":"Returns a normalized query trace log for each query inspected by the query cache"}, "mysqlnd_qc_get_query_trace_log":{"name":"mysqlnd_qc_get_query_trace_log","type":"","path":"php/mysqlnd_qc_get_query_trace_log.html","desc":"Returns a backtrace for each query inspected by the query cache"}, "mysqlnd_qc_set_cache_condition":{"name":"mysqlnd_qc_set_cache_condition","type":"","path":"php/mysqlnd_qc_set_cache_condition.html","desc":"Set conditions for automatic caching"}, "mysqlnd_qc_set_is_select":{"name":"mysqlnd_qc_set_is_select","type":"","path":"php/mysqlnd_qc_set_is_select.html","desc":"Installs a callback which decides whether a statement is cached"}, "mysqlnd_qc_set_storage_handler":{"name":"mysqlnd_qc_set_storage_handler","type":"","path":"php/mysqlnd_qc_set_storage_handler.html","desc":"Change current storage handler"}, "mysqlnd_qc_set_user_handlers":{"name":"mysqlnd_qc_set_user_handlers","type":"","path":"php/mysqlnd_qc_set_user_handlers.html","desc":"Sets the callback functions for a user-defined procedural storage handler"}, "mysqlnd_uh_convert_to_mysqlnd":{"name":"mysqlnd_uh_convert_to_mysqlnd","type":"","path":"php/mysqlnd_uh_convert_to_mysqlnd.html","desc":"Converts a MySQL connection handle into a mysqlnd connection handle"}, "mysqlnd_uh_set_connection_proxy":{"name":"mysqlnd_uh_set_connection_proxy","type":"","path":"php/mysqlnd_uh_set_connection_proxy.html","desc":"Installs a proxy for mysqlnd connections"}, "mysqlnd_uh_set_statement_proxy":{"name":"mysqlnd_uh_set_statement_proxy","type":"","path":"php/mysqlnd_uh_set_statement_proxy.html","desc":"Installs a proxy for mysqlnd statements"}, "mysql_affected_rows":{"name":"mysql_affected_rows","type":"","path":"php/mysql_affected_rows.html","desc":"取得前一次 MySQL 操作所影响的记录行数"}, "mysql_client_encoding":{"name":"mysql_client_encoding","type":"","path":"php/mysql_client_encoding.html","desc":"返回字符集的名称"}, "mysql_close":{"name":"mysql_close","type":"","path":"php/mysql_close.html","desc":"关闭 MySQL 连接"}, "mysql_connect":{"name":"mysql_connect","type":"","path":"php/mysql_connect.html","desc":"打开一个到 MySQL 服务器的连接"}, "mysql_create_db":{"name":"mysql_create_db","type":"","path":"php/mysql_create_db.html","desc":"新建一个 MySQL 数据库"}, "mysql_data_seek":{"name":"mysql_data_seek","type":"","path":"php/mysql_data_seek.html","desc":"移动内部结果的指针"}, "mysql_db_name":{"name":"mysql_db_name","type":"","path":"php/mysql_db_name.html","desc":"取得结果数据"}, "mysql_db_query":{"name":"mysql_db_query","type":"","path":"php/mysql_db_query.html","desc":"发送一条 MySQL 查询"}, "mysql_drop_db":{"name":"mysql_drop_db","type":"","path":"php/mysql_drop_db.html","desc":"丢弃(删除)一个 MySQL 数据库"}, "mysql_errno":{"name":"mysql_errno","type":"","path":"php/mysql_errno.html","desc":"返回上一个 MySQL 操作中的错误信息的数字编码"}, "mysql_error":{"name":"mysql_error","type":"","path":"php/mysql_error.html","desc":"返回上一个 MySQL 操作产生的文本错误信息"}, "mysql_escape_string":{"name":"mysql_escape_string","type":"","path":"php/mysql_escape_string.html","desc":"转义一个字符串用于 mysql_query"}, "mysql_fetch_array":{"name":"mysql_fetch_array","type":"","path":"php/mysql_fetch_array.html","desc":"从结果集中取得一行作为关联数组,或数字数组,或二者兼有"}, "mysql_fetch_assoc":{"name":"mysql_fetch_assoc","type":"","path":"php/mysql_fetch_assoc.html","desc":"从结果集中取得一行作为关联数组"}, "mysql_fetch_field":{"name":"mysql_fetch_field","type":"","path":"php/mysql_fetch_field.html","desc":"从结果集中取得列信息并作为对象返回"}, "mysql_fetch_lengths":{"name":"mysql_fetch_lengths","type":"","path":"php/mysql_fetch_lengths.html","desc":"取得结果集中每个输出的长度"}, "mysql_fetch_object":{"name":"mysql_fetch_object","type":"","path":"php/mysql_fetch_object.html","desc":"从结果集中取得一行作为对象"}, "mysql_fetch_row":{"name":"mysql_fetch_row","type":"","path":"php/mysql_fetch_row.html","desc":"从结果集中取得一行作为枚举数组"}, "mysql_field_flags":{"name":"mysql_field_flags","type":"","path":"php/mysql_field_flags.html","desc":"从结果中取得和指定字段关联的标志"}, "mysql_field_len":{"name":"mysql_field_len","type":"","path":"php/mysql_field_len.html","desc":"返回指定字段的长度"}, "mysql_field_name":{"name":"mysql_field_name","type":"","path":"php/mysql_field_name.html","desc":"取得结果中指定字段的字段名"}, "mysql_field_seek":{"name":"mysql_field_seek","type":"","path":"php/mysql_field_seek.html","desc":"将结果集中的指针设定为制定的字段偏移量"}, "mysql_field_table":{"name":"mysql_field_table","type":"","path":"php/mysql_field_table.html","desc":"取得指定字段所在的表名"}, "mysql_field_type":{"name":"mysql_field_type","type":"","path":"php/mysql_field_type.html","desc":"取得结果集中指定字段的类型"}, "mysql_free_result":{"name":"mysql_free_result","type":"","path":"php/mysql_free_result.html","desc":"释放结果内存"}, "mysql_get_client_info":{"name":"mysql_get_client_info","type":"","path":"php/mysql_get_client_info.html","desc":"取得 MySQL 客户端信息"}, "mysql_get_host_info":{"name":"mysql_get_host_info","type":"","path":"php/mysql_get_host_info.html","desc":"取得 MySQL 主机信息"}, "mysql_get_proto_info":{"name":"mysql_get_proto_info","type":"","path":"php/mysql_get_proto_info.html","desc":"取得 MySQL 协议信息"}, "mysql_get_server_info":{"name":"mysql_get_server_info","type":"","path":"php/mysql_get_server_info.html","desc":"取得 MySQL 服务器信息"}, "mysql_info":{"name":"mysql_info","type":"","path":"php/mysql_info.html","desc":"取得最近一条查询的信息"}, "mysql_insert_id":{"name":"mysql_insert_id","type":"","path":"php/mysql_insert_id.html","desc":"取得上一步 INSERT 操作产生的 ID"}, "mysql_list_dbs":{"name":"mysql_list_dbs","type":"","path":"php/mysql_list_dbs.html","desc":"列出 MySQL 服务器中所有的数据库"}, "mysql_list_fields":{"name":"mysql_list_fields","type":"","path":"php/mysql_list_fields.html","desc":"列出 MySQL 结果中的字段"}, "mysql_list_processes":{"name":"mysql_list_processes","type":"","path":"php/mysql_list_processes.html","desc":"列出 MySQL 进程"}, "mysql_list_tables":{"name":"mysql_list_tables","type":"","path":"php/mysql_list_tables.html","desc":"列出 MySQL 数据库中的表"}, "mysql_num_fields":{"name":"mysql_num_fields","type":"","path":"php/mysql_num_fields.html","desc":"取得结果集中字段的数目"}, "mysql_num_rows":{"name":"mysql_num_rows","type":"","path":"php/mysql_num_rows.html","desc":"取得结果集中行的数目"}, "mysql_pconnect":{"name":"mysql_pconnect","type":"","path":"php/mysql_pconnect.html","desc":"打开一个到 MySQL 服务器的持久连接"}, "mysql_ping":{"name":"mysql_ping","type":"","path":"php/mysql_ping.html","desc":"Ping 一个服务器连接,如果没有连接则重新连接"}, "mysql_query":{"name":"mysql_query","type":"","path":"php/mysql_query.html","desc":"发送一条 MySQL 查询"}, "mysql_real_escape_string":{"name":"mysql_real_escape_string","type":"","path":"php/mysql_real_escape_string.html","desc":"转义 SQL 语句中使用的字符串中的特殊字符,并考虑到连接的当前字符集"}, "mysql_result":{"name":"mysql_result","type":"","path":"php/mysql_result.html","desc":"取得结果数据"}, "mysql_select_db":{"name":"mysql_select_db","type":"","path":"php/mysql_select_db.html","desc":"选择 MySQL 数据库"}, "mysql_set_charset":{"name":"mysql_set_charset","type":"","path":"php/mysql_set_charset.html","desc":"设置客户端的字符集"}, "mysql_stat":{"name":"mysql_stat","type":"","path":"php/mysql_stat.html","desc":"取得当前系统状态"}, "mysql_tablename":{"name":"mysql_tablename","type":"","path":"php/mysql_tablename.html","desc":"取得表名"}, "mysql_thread_id":{"name":"mysql_thread_id","type":"","path":"php/mysql_thread_id.html","desc":"返回当前线程的 ID"}, "mysql_unbuffered_query":{"name":"mysql_unbuffered_query","type":"","path":"php/mysql_unbuffered_query.html","desc":"向 MySQL 发送一条 SQL 查询,并不获取和缓存结果的行"}, "mysql_xdevapi_expression":{"name":"mysql_xdevapi_expression","type":"","path":"php/mysql_xdevapi_expression.html","desc":"Bind prepared statement variables as parameters"}, "mysql_xdevapi_getsession":{"name":"mysql_xdevapi_getsession","type":"","path":"php/mysql_xdevapi_getsession.html","desc":"Connect to a MySQL server"}, "m_checkstatus":{"name":"m_checkstatus","type":"","path":"php/m_checkstatus.html","desc":"Check to see if a transaction has completed"}, "m_completeauthorizations":{"name":"m_completeauthorizations","type":"","path":"php/m_completeauthorizations.html","desc":"Number of complete authorizations in queue, returning an array of their identifiers"}, "m_connect":{"name":"m_connect","type":"","path":"php/m_connect.html","desc":"Establish the connection to MCVE"}, "m_connectionerror":{"name":"m_connectionerror","type":"","path":"php/m_connectionerror.html","desc":"Get a textual representation of why a connection failed"}, "m_deletetrans":{"name":"m_deletetrans","type":"","path":"php/m_deletetrans.html","desc":"Delete specified transaction from MCVE_CONN structure"}, "m_destroyconn":{"name":"m_destroyconn","type":"","path":"php/m_destroyconn.html","desc":"Destroy the connection and MCVE_CONN structure"}, "m_destroyengine":{"name":"m_destroyengine","type":"","path":"php/m_destroyengine.html","desc":"Free memory associated with IPSSL connectivity"}, "m_getcell":{"name":"m_getcell","type":"","path":"php/m_getcell.html","desc":"Get a specific cell from a comma delimited response by column name"}, "m_getcellbynum":{"name":"m_getcellbynum","type":"","path":"php/m_getcellbynum.html","desc":"Get a specific cell from a comma delimited response by column number"}, "m_getcommadelimited":{"name":"m_getcommadelimited","type":"","path":"php/m_getcommadelimited.html","desc":"Get the RAW comma delimited data returned from MCVE"}, "m_getheader":{"name":"m_getheader","type":"","path":"php/m_getheader.html","desc":"Get the name of the column in a comma-delimited response"}, "m_initconn":{"name":"m_initconn","type":"","path":"php/m_initconn.html","desc":"Create and initialize an MCVE_CONN structure"}, "m_initengine":{"name":"m_initengine","type":"","path":"php/m_initengine.html","desc":"Ready the client for IPSSL Communication"}, "m_iscommadelimited":{"name":"m_iscommadelimited","type":"","path":"php/m_iscommadelimited.html","desc":"Checks to see if response is comma delimited"}, "m_maxconntimeout":{"name":"m_maxconntimeout","type":"","path":"php/m_maxconntimeout.html","desc":"The maximum amount of time the API will attempt a connection to MCVE"}, "m_monitor":{"name":"m_monitor","type":"","path":"php/m_monitor.html","desc":"Perform communication with MCVE (sendreceive data) Non-blocking"}, "m_numcolumns":{"name":"m_numcolumns","type":"","path":"php/m_numcolumns.html","desc":"Number of columns returned in a comma delimited response"}, "m_numrows":{"name":"m_numrows","type":"","path":"php/m_numrows.html","desc":"Number of rows returned in a comma delimited response"}, "m_parsecommadelimited":{"name":"m_parsecommadelimited","type":"","path":"php/m_parsecommadelimited.html","desc":"Parse the comma delimited response so m_getcell, etc will work"}, "m_responsekeys":{"name":"m_responsekeys","type":"","path":"php/m_responsekeys.html","desc":"Returns array of strings which represents the keys that can"}, "m_responseparam":{"name":"m_responseparam","type":"","path":"php/m_responseparam.html","desc":"Get a custom response parameter"}, "m_returnstatus":{"name":"m_returnstatus","type":"","path":"php/m_returnstatus.html","desc":"Check to see if the transaction was successful"}, "m_setblocking":{"name":"m_setblocking","type":"","path":"php/m_setblocking.html","desc":"Set blockingnon-blocking mode for connection"}, "m_setdropfile":{"name":"m_setdropfile","type":"","path":"php/m_setdropfile.html","desc":"Set the connection method to Drop-File"}, "m_setip":{"name":"m_setip","type":"","path":"php/m_setip.html","desc":"Set the connection method to IP"}, "m_setssl":{"name":"m_setssl","type":"","path":"php/m_setssl.html","desc":"Set the connection method to SSL"}, "m_setssl_cafile":{"name":"m_setssl_cafile","type":"","path":"php/m_setssl_cafile.html","desc":"Set SSL CA (Certificate Authority) file for verification o"}, "m_setssl_files":{"name":"m_setssl_files","type":"","path":"php/m_setssl_files.html","desc":"Set certificate key files and certificates if server requires client cer"}, "m_settimeout":{"name":"m_settimeout","type":"","path":"php/m_settimeout.html","desc":"Set maximum transaction time (per trans)"}, "m_sslcert_gen_hash":{"name":"m_sslcert_gen_hash","type":"","path":"php/m_sslcert_gen_hash.html","desc":"Generate hash for SSL client certificate verification"}, "m_transactionssent":{"name":"m_transactionssent","type":"","path":"php/m_transactionssent.html","desc":"Check to see if outgoing buffer is clear"}, "m_transinqueue":{"name":"m_transinqueue","type":"","path":"php/m_transinqueue.html","desc":"Number of transactions in client-queue"}, "m_transkeyval":{"name":"m_transkeyval","type":"","path":"php/m_transkeyval.html","desc":"Add keyvalue pair to a transaction. Replaces deprecated transparam()"}, "m_transnew":{"name":"m_transnew","type":"","path":"php/m_transnew.html","desc":"Start a new transaction"}, "m_transsend":{"name":"m_transsend","type":"","path":"php/m_transsend.html","desc":"Finalize and send the transaction"}, "m_uwait":{"name":"m_uwait","type":"","path":"php/m_uwait.html","desc":"Wait x microsecs"}, "m_validateidentifier":{"name":"m_validateidentifier","type":"","path":"php/m_validateidentifier.html","desc":"Whether or not to validate the passed identifier on any transaction it is passed to"}, "m_verifyconnection":{"name":"m_verifyconnection","type":"","path":"php/m_verifyconnection.html","desc":"Set whether or not to PING upon connect to verify connection"}, "m_verifysslcert":{"name":"m_verifysslcert","type":"","path":"php/m_verifysslcert.html","desc":"Set whether or not to verify the server ssl certificate"}, "natcasesort":{"name":"natcasesort","type":"","path":"php/natcasesort.html","desc":"用“自然排序”算法对数组进行不区分大小写字母的排序"}, "natsort":{"name":"natsort","type":"","path":"php/natsort.html","desc":"用“自然排序”算法对数组排序"}, "ncurses_addch":{"name":"ncurses_addch","type":"","path":"php/ncurses_addch.html","desc":"Add character at current position and advance cursor"}, "ncurses_addchnstr":{"name":"ncurses_addchnstr","type":"","path":"php/ncurses_addchnstr.html","desc":"Add attributed string with specified length at current position"}, "ncurses_addchstr":{"name":"ncurses_addchstr","type":"","path":"php/ncurses_addchstr.html","desc":"Add attributed string at current position"}, "ncurses_addnstr":{"name":"ncurses_addnstr","type":"","path":"php/ncurses_addnstr.html","desc":"Add string with specified length at current position"}, "ncurses_addstr":{"name":"ncurses_addstr","type":"","path":"php/ncurses_addstr.html","desc":"Output text at current position"}, "ncurses_assume_default_colors":{"name":"ncurses_assume_default_colors","type":"","path":"php/ncurses_assume_default_colors.html","desc":"Define default colors for color 0"}, "ncurses_attroff":{"name":"ncurses_attroff","type":"","path":"php/ncurses_attroff.html","desc":"Turn off the given attributes"}, "ncurses_attron":{"name":"ncurses_attron","type":"","path":"php/ncurses_attron.html","desc":"Turn on the given attributes"}, "ncurses_attrset":{"name":"ncurses_attrset","type":"","path":"php/ncurses_attrset.html","desc":"Set given attributes"}, "ncurses_baudrate":{"name":"ncurses_baudrate","type":"","path":"php/ncurses_baudrate.html","desc":"Returns baudrate of terminal"}, "ncurses_beep":{"name":"ncurses_beep","type":"","path":"php/ncurses_beep.html","desc":"Let the terminal beep"}, "ncurses_bkgd":{"name":"ncurses_bkgd","type":"","path":"php/ncurses_bkgd.html","desc":"Set background property for terminal screen"}, "ncurses_bkgdset":{"name":"ncurses_bkgdset","type":"","path":"php/ncurses_bkgdset.html","desc":"Control screen background"}, "ncurses_border":{"name":"ncurses_border","type":"","path":"php/ncurses_border.html","desc":"Draw a border around the screen using attributed characters"}, "ncurses_bottom_panel":{"name":"ncurses_bottom_panel","type":"","path":"php/ncurses_bottom_panel.html","desc":"Moves a visible panel to the bottom of the stack"}, "ncurses_can_change_color":{"name":"ncurses_can_change_color","type":"","path":"php/ncurses_can_change_color.html","desc":"Checks if terminal color definitions can be changed"}, "ncurses_cbreak":{"name":"ncurses_cbreak","type":"","path":"php/ncurses_cbreak.html","desc":"Switch off input buffering"}, "ncurses_clear":{"name":"ncurses_clear","type":"","path":"php/ncurses_clear.html","desc":"Clear screen"}, "ncurses_clrtobot":{"name":"ncurses_clrtobot","type":"","path":"php/ncurses_clrtobot.html","desc":"Clear screen from current position to bottom"}, "ncurses_clrtoeol":{"name":"ncurses_clrtoeol","type":"","path":"php/ncurses_clrtoeol.html","desc":"Clear screen from current position to end of line"}, "ncurses_color_content":{"name":"ncurses_color_content","type":"","path":"php/ncurses_color_content.html","desc":"Retrieves RGB components of a color"}, "ncurses_color_set":{"name":"ncurses_color_set","type":"","path":"php/ncurses_color_set.html","desc":"Set active foreground and background colors"}, "ncurses_curs_set":{"name":"ncurses_curs_set","type":"","path":"php/ncurses_curs_set.html","desc":"Set cursor state"}, "ncurses_define_key":{"name":"ncurses_define_key","type":"","path":"php/ncurses_define_key.html","desc":"Define a keycode"}, "ncurses_def_prog_mode":{"name":"ncurses_def_prog_mode","type":"","path":"php/ncurses_def_prog_mode.html","desc":"Saves terminals (program) mode"}, "ncurses_def_shell_mode":{"name":"ncurses_def_shell_mode","type":"","path":"php/ncurses_def_shell_mode.html","desc":"Saves terminals (shell) mode"}, "ncurses_delay_output":{"name":"ncurses_delay_output","type":"","path":"php/ncurses_delay_output.html","desc":"Delay output on terminal using padding characters"}, "ncurses_delch":{"name":"ncurses_delch","type":"","path":"php/ncurses_delch.html","desc":"Delete character at current position, move rest of line left"}, "ncurses_deleteln":{"name":"ncurses_deleteln","type":"","path":"php/ncurses_deleteln.html","desc":"Delete line at current position, move rest of screen up"}, "ncurses_delwin":{"name":"ncurses_delwin","type":"","path":"php/ncurses_delwin.html","desc":"Delete a ncurses window"}, "ncurses_del_panel":{"name":"ncurses_del_panel","type":"","path":"php/ncurses_del_panel.html","desc":"Remove panel from the stack and delete it (but not the associated window)"}, "ncurses_doupdate":{"name":"ncurses_doupdate","type":"","path":"php/ncurses_doupdate.html","desc":"Write all prepared refreshes to terminal"}, "ncurses_echo":{"name":"ncurses_echo","type":"","path":"php/ncurses_echo.html","desc":"Activate keyboard input echo"}, "ncurses_echochar":{"name":"ncurses_echochar","type":"","path":"php/ncurses_echochar.html","desc":"Single character output including refresh"}, "ncurses_end":{"name":"ncurses_end","type":"","path":"php/ncurses_end.html","desc":"Stop using ncurses, clean up the screen"}, "ncurses_erase":{"name":"ncurses_erase","type":"","path":"php/ncurses_erase.html","desc":"Erase terminal screen"}, "ncurses_erasechar":{"name":"ncurses_erasechar","type":"","path":"php/ncurses_erasechar.html","desc":"Returns current erase character"}, "ncurses_filter":{"name":"ncurses_filter","type":"","path":"php/ncurses_filter.html","desc":"Set LINES for iniscr() and newterm() to 1"}, "ncurses_flash":{"name":"ncurses_flash","type":"","path":"php/ncurses_flash.html","desc":"Flash terminal screen (visual bell)"}, "ncurses_flushinp":{"name":"ncurses_flushinp","type":"","path":"php/ncurses_flushinp.html","desc":"Flush keyboard input buffer"}, "ncurses_getch":{"name":"ncurses_getch","type":"","path":"php/ncurses_getch.html","desc":"Read a character from keyboard"}, "ncurses_getmaxyx":{"name":"ncurses_getmaxyx","type":"","path":"php/ncurses_getmaxyx.html","desc":"Returns the size of a window"}, "ncurses_getmouse":{"name":"ncurses_getmouse","type":"","path":"php/ncurses_getmouse.html","desc":"Reads mouse event"}, "ncurses_getyx":{"name":"ncurses_getyx","type":"","path":"php/ncurses_getyx.html","desc":"Returns the current cursor position for a window"}, "ncurses_halfdelay":{"name":"ncurses_halfdelay","type":"","path":"php/ncurses_halfdelay.html","desc":"Put terminal into halfdelay mode"}, "ncurses_has_colors":{"name":"ncurses_has_colors","type":"","path":"php/ncurses_has_colors.html","desc":"Checks if terminal has color capabilities"}, "ncurses_has_ic":{"name":"ncurses_has_ic","type":"","path":"php/ncurses_has_ic.html","desc":"Check for insert- and delete-capabilities"}, "ncurses_has_il":{"name":"ncurses_has_il","type":"","path":"php/ncurses_has_il.html","desc":"Check for line insert- and delete-capabilities"}, "ncurses_has_key":{"name":"ncurses_has_key","type":"","path":"php/ncurses_has_key.html","desc":"Check for presence of a function key on terminal keyboard"}, "ncurses_hide_panel":{"name":"ncurses_hide_panel","type":"","path":"php/ncurses_hide_panel.html","desc":"Remove panel from the stack, making it invisible"}, "ncurses_hline":{"name":"ncurses_hline","type":"","path":"php/ncurses_hline.html","desc":"Draw a horizontal line at current position using an attributed character and max. n characters long"}, "ncurses_inch":{"name":"ncurses_inch","type":"","path":"php/ncurses_inch.html","desc":"Get character and attribute at current position"}, "ncurses_init":{"name":"ncurses_init","type":"","path":"php/ncurses_init.html","desc":"Initialize ncurses"}, "ncurses_init_color":{"name":"ncurses_init_color","type":"","path":"php/ncurses_init_color.html","desc":"Define a terminal color"}, "ncurses_init_pair":{"name":"ncurses_init_pair","type":"","path":"php/ncurses_init_pair.html","desc":"Define a color pair"}, "ncurses_insch":{"name":"ncurses_insch","type":"","path":"php/ncurses_insch.html","desc":"Insert character moving rest of line including character at current position"}, "ncurses_insdelln":{"name":"ncurses_insdelln","type":"","path":"php/ncurses_insdelln.html","desc":"Insert lines before current line scrolling down (negative numbers delete and scroll up)"}, "ncurses_insertln":{"name":"ncurses_insertln","type":"","path":"php/ncurses_insertln.html","desc":"Insert a line, move rest of screen down"}, "ncurses_insstr":{"name":"ncurses_insstr","type":"","path":"php/ncurses_insstr.html","desc":"Insert string at current position, moving rest of line right"}, "ncurses_instr":{"name":"ncurses_instr","type":"","path":"php/ncurses_instr.html","desc":"Reads string from terminal screen"}, "ncurses_isendwin":{"name":"ncurses_isendwin","type":"","path":"php/ncurses_isendwin.html","desc":"Ncurses is in endwin mode, normal screen output may be performed"}, "ncurses_keyok":{"name":"ncurses_keyok","type":"","path":"php/ncurses_keyok.html","desc":"Enable or disable a keycode"}, "ncurses_keypad":{"name":"ncurses_keypad","type":"","path":"php/ncurses_keypad.html","desc":"Turns keypad on or off"}, "ncurses_killchar":{"name":"ncurses_killchar","type":"","path":"php/ncurses_killchar.html","desc":"Returns current line kill character"}, "ncurses_meta":{"name":"ncurses_meta","type":"","path":"php/ncurses_meta.html","desc":"EnablesDisable 8-bit meta key information"}, "ncurses_mouseinterval":{"name":"ncurses_mouseinterval","type":"","path":"php/ncurses_mouseinterval.html","desc":"Set timeout for mouse button clicks"}, "ncurses_mousemask":{"name":"ncurses_mousemask","type":"","path":"php/ncurses_mousemask.html","desc":"Sets mouse options"}, "ncurses_mouse_trafo":{"name":"ncurses_mouse_trafo","type":"","path":"php/ncurses_mouse_trafo.html","desc":"Transforms coordinates"}, "ncurses_move":{"name":"ncurses_move","type":"","path":"php/ncurses_move.html","desc":"Move output position"}, "ncurses_move_panel":{"name":"ncurses_move_panel","type":"","path":"php/ncurses_move_panel.html","desc":"Moves a panel so that its upper-left corner is at [startx, starty]"}, "ncurses_mvaddch":{"name":"ncurses_mvaddch","type":"","path":"php/ncurses_mvaddch.html","desc":"Move current position and add character"}, "ncurses_mvaddchnstr":{"name":"ncurses_mvaddchnstr","type":"","path":"php/ncurses_mvaddchnstr.html","desc":"Move position and add attributed string with specified length"}, "ncurses_mvaddchstr":{"name":"ncurses_mvaddchstr","type":"","path":"php/ncurses_mvaddchstr.html","desc":"Move position and add attributed string"}, "ncurses_mvaddnstr":{"name":"ncurses_mvaddnstr","type":"","path":"php/ncurses_mvaddnstr.html","desc":"Move position and add string with specified length"}, "ncurses_mvaddstr":{"name":"ncurses_mvaddstr","type":"","path":"php/ncurses_mvaddstr.html","desc":"Move position and add string"}, "ncurses_mvcur":{"name":"ncurses_mvcur","type":"","path":"php/ncurses_mvcur.html","desc":"Move cursor immediately"}, "ncurses_mvdelch":{"name":"ncurses_mvdelch","type":"","path":"php/ncurses_mvdelch.html","desc":"Move position and delete character, shift rest of line left"}, "ncurses_mvgetch":{"name":"ncurses_mvgetch","type":"","path":"php/ncurses_mvgetch.html","desc":"Move position and get character at new position"}, "ncurses_mvhline":{"name":"ncurses_mvhline","type":"","path":"php/ncurses_mvhline.html","desc":"Set new position and draw a horizontal line using an attributed character and max. n characters long"}, "ncurses_mvinch":{"name":"ncurses_mvinch","type":"","path":"php/ncurses_mvinch.html","desc":"Move position and get attributed character at new position"}, "ncurses_mvvline":{"name":"ncurses_mvvline","type":"","path":"php/ncurses_mvvline.html","desc":"Set new position and draw a vertical line using an attributed character and max. n characters long"}, "ncurses_mvwaddstr":{"name":"ncurses_mvwaddstr","type":"","path":"php/ncurses_mvwaddstr.html","desc":"Add string at new position in window"}, "ncurses_napms":{"name":"ncurses_napms","type":"","path":"php/ncurses_napms.html","desc":"Sleep"}, "ncurses_newpad":{"name":"ncurses_newpad","type":"","path":"php/ncurses_newpad.html","desc":"Creates a new pad (window)"}, "ncurses_newwin":{"name":"ncurses_newwin","type":"","path":"php/ncurses_newwin.html","desc":"Create a new window"}, "ncurses_new_panel":{"name":"ncurses_new_panel","type":"","path":"php/ncurses_new_panel.html","desc":"Create a new panel and associate it with window"}, "ncurses_nl":{"name":"ncurses_nl","type":"","path":"php/ncurses_nl.html","desc":"Translate newline and carriage return line feed"}, "ncurses_nocbreak":{"name":"ncurses_nocbreak","type":"","path":"php/ncurses_nocbreak.html","desc":"Switch terminal to cooked mode"}, "ncurses_noecho":{"name":"ncurses_noecho","type":"","path":"php/ncurses_noecho.html","desc":"Switch off keyboard input echo"}, "ncurses_nonl":{"name":"ncurses_nonl","type":"","path":"php/ncurses_nonl.html","desc":"Do not translate newline and carriage return line feed"}, "ncurses_noqiflush":{"name":"ncurses_noqiflush","type":"","path":"php/ncurses_noqiflush.html","desc":"Do not flush on signal characters"}, "ncurses_noraw":{"name":"ncurses_noraw","type":"","path":"php/ncurses_noraw.html","desc":"Switch terminal out of raw mode"}, "ncurses_pair_content":{"name":"ncurses_pair_content","type":"","path":"php/ncurses_pair_content.html","desc":"Retrieves foreground and background colors of a color pair"}, "ncurses_panel_above":{"name":"ncurses_panel_above","type":"","path":"php/ncurses_panel_above.html","desc":"Returns the panel above panel"}, "ncurses_panel_below":{"name":"ncurses_panel_below","type":"","path":"php/ncurses_panel_below.html","desc":"Returns the panel below panel"}, "ncurses_panel_window":{"name":"ncurses_panel_window","type":"","path":"php/ncurses_panel_window.html","desc":"Returns the window associated with panel"}, "ncurses_pnoutrefresh":{"name":"ncurses_pnoutrefresh","type":"","path":"php/ncurses_pnoutrefresh.html","desc":"Copies a region from a pad into the virtual screen"}, "ncurses_prefresh":{"name":"ncurses_prefresh","type":"","path":"php/ncurses_prefresh.html","desc":"Copies a region from a pad into the virtual screen"}, "ncurses_putp":{"name":"ncurses_putp","type":"","path":"php/ncurses_putp.html","desc":"Apply padding information to the string and output it"}, "ncurses_qiflush":{"name":"ncurses_qiflush","type":"","path":"php/ncurses_qiflush.html","desc":"Flush on signal characters"}, "ncurses_raw":{"name":"ncurses_raw","type":"","path":"php/ncurses_raw.html","desc":"Switch terminal into raw mode"}, "ncurses_refresh":{"name":"ncurses_refresh","type":"","path":"php/ncurses_refresh.html","desc":"Refresh screen"}, "ncurses_replace_panel":{"name":"ncurses_replace_panel","type":"","path":"php/ncurses_replace_panel.html","desc":"Replaces the window associated with panel"}, "ncurses_resetty":{"name":"ncurses_resetty","type":"","path":"php/ncurses_resetty.html","desc":"Restores saved terminal state"}, "ncurses_reset_prog_mode":{"name":"ncurses_reset_prog_mode","type":"","path":"php/ncurses_reset_prog_mode.html","desc":"Resets the prog mode saved by def_prog_mode"}, "ncurses_reset_shell_mode":{"name":"ncurses_reset_shell_mode","type":"","path":"php/ncurses_reset_shell_mode.html","desc":"Resets the shell mode saved by def_shell_mode"}, "ncurses_savetty":{"name":"ncurses_savetty","type":"","path":"php/ncurses_savetty.html","desc":"Saves terminal state"}, "ncurses_scrl":{"name":"ncurses_scrl","type":"","path":"php/ncurses_scrl.html","desc":"Scroll window content up or down without changing current position"}, "ncurses_scr_dump":{"name":"ncurses_scr_dump","type":"","path":"php/ncurses_scr_dump.html","desc":"Dump screen content to file"}, "ncurses_scr_init":{"name":"ncurses_scr_init","type":"","path":"php/ncurses_scr_init.html","desc":"Initialize screen from file dump"}, "ncurses_scr_restore":{"name":"ncurses_scr_restore","type":"","path":"php/ncurses_scr_restore.html","desc":"Restore screen from file dump"}, "ncurses_scr_set":{"name":"ncurses_scr_set","type":"","path":"php/ncurses_scr_set.html","desc":"Inherit screen from file dump"}, "ncurses_show_panel":{"name":"ncurses_show_panel","type":"","path":"php/ncurses_show_panel.html","desc":"Places an invisible panel on top of the stack, making it visible"}, "ncurses_slk_attr":{"name":"ncurses_slk_attr","type":"","path":"php/ncurses_slk_attr.html","desc":"Returns current soft label key attribute"}, "ncurses_slk_attroff":{"name":"ncurses_slk_attroff","type":"","path":"php/ncurses_slk_attroff.html","desc":"Turn off the given attributes for soft function-key labels"}, "ncurses_slk_attron":{"name":"ncurses_slk_attron","type":"","path":"php/ncurses_slk_attron.html","desc":"Turn on the given attributes for soft function-key labels"}, "ncurses_slk_attrset":{"name":"ncurses_slk_attrset","type":"","path":"php/ncurses_slk_attrset.html","desc":"Set given attributes for soft function-key labels"}, "ncurses_slk_clear":{"name":"ncurses_slk_clear","type":"","path":"php/ncurses_slk_clear.html","desc":"Clears soft labels from screen"}, "ncurses_slk_color":{"name":"ncurses_slk_color","type":"","path":"php/ncurses_slk_color.html","desc":"Sets color for soft label keys"}, "ncurses_slk_init":{"name":"ncurses_slk_init","type":"","path":"php/ncurses_slk_init.html","desc":"Initializes soft label key functions"}, "ncurses_slk_noutrefresh":{"name":"ncurses_slk_noutrefresh","type":"","path":"php/ncurses_slk_noutrefresh.html","desc":"Copies soft label keys to virtual screen"}, "ncurses_slk_refresh":{"name":"ncurses_slk_refresh","type":"","path":"php/ncurses_slk_refresh.html","desc":"Copies soft label keys to screen"}, "ncurses_slk_restore":{"name":"ncurses_slk_restore","type":"","path":"php/ncurses_slk_restore.html","desc":"Restores soft label keys"}, "ncurses_slk_set":{"name":"ncurses_slk_set","type":"","path":"php/ncurses_slk_set.html","desc":"Sets function key labels"}, "ncurses_slk_touch":{"name":"ncurses_slk_touch","type":"","path":"php/ncurses_slk_touch.html","desc":"Forces output when ncurses_slk_noutrefresh is performed"}, "ncurses_standend":{"name":"ncurses_standend","type":"","path":"php/ncurses_standend.html","desc":"Stop using 'standout' attribute"}, "ncurses_standout":{"name":"ncurses_standout","type":"","path":"php/ncurses_standout.html","desc":"Start using 'standout' attribute"}, "ncurses_start_color":{"name":"ncurses_start_color","type":"","path":"php/ncurses_start_color.html","desc":"Initializes color functionality"}, "ncurses_termattrs":{"name":"ncurses_termattrs","type":"","path":"php/ncurses_termattrs.html","desc":"Returns a logical OR of all attribute flags supported by terminal"}, "ncurses_termname":{"name":"ncurses_termname","type":"","path":"php/ncurses_termname.html","desc":"Returns terminals (short)-name"}, "ncurses_timeout":{"name":"ncurses_timeout","type":"","path":"php/ncurses_timeout.html","desc":"Set timeout for special key sequences"}, "ncurses_top_panel":{"name":"ncurses_top_panel","type":"","path":"php/ncurses_top_panel.html","desc":"Moves a visible panel to the top of the stack"}, "ncurses_typeahead":{"name":"ncurses_typeahead","type":"","path":"php/ncurses_typeahead.html","desc":"Specify different filedescriptor for typeahead checking"}, "ncurses_ungetch":{"name":"ncurses_ungetch","type":"","path":"php/ncurses_ungetch.html","desc":"Put a character back into the input stream"}, "ncurses_ungetmouse":{"name":"ncurses_ungetmouse","type":"","path":"php/ncurses_ungetmouse.html","desc":"Pushes mouse event to queue"}, "ncurses_update_panels":{"name":"ncurses_update_panels","type":"","path":"php/ncurses_update_panels.html","desc":"Refreshes the virtual screen to reflect the relations between panels in the stack"}, "ncurses_use_default_colors":{"name":"ncurses_use_default_colors","type":"","path":"php/ncurses_use_default_colors.html","desc":"Assign terminal default colors to color id -1"}, "ncurses_use_env":{"name":"ncurses_use_env","type":"","path":"php/ncurses_use_env.html","desc":"Control use of environment information about terminal size"}, "ncurses_use_extended_names":{"name":"ncurses_use_extended_names","type":"","path":"php/ncurses_use_extended_names.html","desc":"Control use of extended names in terminfo descriptions"}, "ncurses_vidattr":{"name":"ncurses_vidattr","type":"","path":"php/ncurses_vidattr.html","desc":"Display the string on the terminal in the video attribute mode"}, "ncurses_vline":{"name":"ncurses_vline","type":"","path":"php/ncurses_vline.html","desc":"Draw a vertical line at current position using an attributed character and max. n characters long"}, "ncurses_waddch":{"name":"ncurses_waddch","type":"","path":"php/ncurses_waddch.html","desc":"Adds character at current position in a window and advance cursor"}, "ncurses_waddstr":{"name":"ncurses_waddstr","type":"","path":"php/ncurses_waddstr.html","desc":"Outputs text at current postion in window"}, "ncurses_wattroff":{"name":"ncurses_wattroff","type":"","path":"php/ncurses_wattroff.html","desc":"Turns off attributes for a window"}, "ncurses_wattron":{"name":"ncurses_wattron","type":"","path":"php/ncurses_wattron.html","desc":"Turns on attributes for a window"}, "ncurses_wattrset":{"name":"ncurses_wattrset","type":"","path":"php/ncurses_wattrset.html","desc":"Set the attributes for a window"}, "ncurses_wborder":{"name":"ncurses_wborder","type":"","path":"php/ncurses_wborder.html","desc":"Draws a border around the window using attributed characters"}, "ncurses_wclear":{"name":"ncurses_wclear","type":"","path":"php/ncurses_wclear.html","desc":"Clears window"}, "ncurses_wcolor_set":{"name":"ncurses_wcolor_set","type":"","path":"php/ncurses_wcolor_set.html","desc":"Sets windows color pairings"}, "ncurses_werase":{"name":"ncurses_werase","type":"","path":"php/ncurses_werase.html","desc":"Erase window contents"}, "ncurses_wgetch":{"name":"ncurses_wgetch","type":"","path":"php/ncurses_wgetch.html","desc":"Reads a character from keyboard (window)"}, "ncurses_whline":{"name":"ncurses_whline","type":"","path":"php/ncurses_whline.html","desc":"Draws a horizontal line in a window at current position using an attributed character and max. n characters long"}, "ncurses_wmouse_trafo":{"name":"ncurses_wmouse_trafo","type":"","path":"php/ncurses_wmouse_trafo.html","desc":"Transforms windowstdscr coordinates"}, "ncurses_wmove":{"name":"ncurses_wmove","type":"","path":"php/ncurses_wmove.html","desc":"Moves windows output position"}, "ncurses_wnoutrefresh":{"name":"ncurses_wnoutrefresh","type":"","path":"php/ncurses_wnoutrefresh.html","desc":"Copies window to virtual screen"}, "ncurses_wrefresh":{"name":"ncurses_wrefresh","type":"","path":"php/ncurses_wrefresh.html","desc":"Refresh window on terminal screen"}, "ncurses_wstandend":{"name":"ncurses_wstandend","type":"","path":"php/ncurses_wstandend.html","desc":"End standout mode for a window"}, "ncurses_wstandout":{"name":"ncurses_wstandout","type":"","path":"php/ncurses_wstandout.html","desc":"Enter standout mode for a window"}, "ncurses_wvline":{"name":"ncurses_wvline","type":"","path":"php/ncurses_wvline.html","desc":"Draws a vertical line in a window at current position using an attributed character and max. n characters long"}, "newt_bell":{"name":"newt_bell","type":"","path":"php/newt_bell.html","desc":"Send a beep to the terminal"}, "newt_button":{"name":"newt_button","type":"","path":"php/newt_button.html","desc":"Create a new button"}, "newt_button_bar":{"name":"newt_button_bar","type":"","path":"php/newt_button_bar.html","desc":"This function returns a grid containing the buttons created"}, "newt_centered_window":{"name":"newt_centered_window","type":"","path":"php/newt_centered_window.html","desc":"Open a centered window of the specified size"}, "newt_checkbox":{"name":"newt_checkbox","type":"","path":"php/newt_checkbox.html","desc":"说明"}, "newt_checkbox_get_value":{"name":"newt_checkbox_get_value","type":"","path":"php/newt_checkbox_get_value.html","desc":"Retreives value of checkox resource"}, "newt_checkbox_set_flags":{"name":"newt_checkbox_set_flags","type":"","path":"php/newt_checkbox_set_flags.html","desc":"Configures checkbox resource"}, "newt_checkbox_set_value":{"name":"newt_checkbox_set_value","type":"","path":"php/newt_checkbox_set_value.html","desc":"Sets the value of the checkbox"}, "newt_checkbox_tree":{"name":"newt_checkbox_tree","type":"","path":"php/newt_checkbox_tree.html","desc":"说明"}, "newt_checkbox_tree_add_item":{"name":"newt_checkbox_tree_add_item","type":"","path":"php/newt_checkbox_tree_add_item.html","desc":"Adds new item to the checkbox tree"}, "newt_checkbox_tree_find_item":{"name":"newt_checkbox_tree_find_item","type":"","path":"php/newt_checkbox_tree_find_item.html","desc":"Finds an item in the checkbox tree"}, "newt_checkbox_tree_get_current":{"name":"newt_checkbox_tree_get_current","type":"","path":"php/newt_checkbox_tree_get_current.html","desc":"Returns checkbox tree selected item"}, "newt_checkbox_tree_get_entry_value":{"name":"newt_checkbox_tree_get_entry_value","type":"","path":"php/newt_checkbox_tree_get_entry_value.html","desc":"说明"}, "newt_checkbox_tree_get_multi_selection":{"name":"newt_checkbox_tree_get_multi_selection","type":"","path":"php/newt_checkbox_tree_get_multi_selection.html","desc":"说明"}, "newt_checkbox_tree_get_selection":{"name":"newt_checkbox_tree_get_selection","type":"","path":"php/newt_checkbox_tree_get_selection.html","desc":"说明"}, "newt_checkbox_tree_multi":{"name":"newt_checkbox_tree_multi","type":"","path":"php/newt_checkbox_tree_multi.html","desc":"说明"}, "newt_checkbox_tree_set_current":{"name":"newt_checkbox_tree_set_current","type":"","path":"php/newt_checkbox_tree_set_current.html","desc":"说明"}, "newt_checkbox_tree_set_entry":{"name":"newt_checkbox_tree_set_entry","type":"","path":"php/newt_checkbox_tree_set_entry.html","desc":"说明"}, "newt_checkbox_tree_set_entry_value":{"name":"newt_checkbox_tree_set_entry_value","type":"","path":"php/newt_checkbox_tree_set_entry_value.html","desc":"说明"}, "newt_checkbox_tree_set_width":{"name":"newt_checkbox_tree_set_width","type":"","path":"php/newt_checkbox_tree_set_width.html","desc":"说明"}, "newt_clear_key_buffer":{"name":"newt_clear_key_buffer","type":"","path":"php/newt_clear_key_buffer.html","desc":"Discards the contents of the terminal's input buffer"}, "newt_cls":{"name":"newt_cls","type":"","path":"php/newt_cls.html","desc":"说明"}, "newt_compact_button":{"name":"newt_compact_button","type":"","path":"php/newt_compact_button.html","desc":"说明"}, "newt_component_add_callback":{"name":"newt_component_add_callback","type":"","path":"php/newt_component_add_callback.html","desc":"说明"}, "newt_component_takes_focus":{"name":"newt_component_takes_focus","type":"","path":"php/newt_component_takes_focus.html","desc":"说明"}, "newt_create_grid":{"name":"newt_create_grid","type":"","path":"php/newt_create_grid.html","desc":"说明"}, "newt_cursor_off":{"name":"newt_cursor_off","type":"","path":"php/newt_cursor_off.html","desc":"说明"}, "newt_cursor_on":{"name":"newt_cursor_on","type":"","path":"php/newt_cursor_on.html","desc":"说明"}, "newt_delay":{"name":"newt_delay","type":"","path":"php/newt_delay.html","desc":"说明"}, "newt_draw_form":{"name":"newt_draw_form","type":"","path":"php/newt_draw_form.html","desc":"说明"}, "newt_draw_root_text":{"name":"newt_draw_root_text","type":"","path":"php/newt_draw_root_text.html","desc":"Displays the string text at the position indicated"}, "newt_entry":{"name":"newt_entry","type":"","path":"php/newt_entry.html","desc":"说明"}, "newt_entry_get_value":{"name":"newt_entry_get_value","type":"","path":"php/newt_entry_get_value.html","desc":"说明"}, "newt_entry_set":{"name":"newt_entry_set","type":"","path":"php/newt_entry_set.html","desc":"说明"}, "newt_entry_set_filter":{"name":"newt_entry_set_filter","type":"","path":"php/newt_entry_set_filter.html","desc":"说明"}, "newt_entry_set_flags":{"name":"newt_entry_set_flags","type":"","path":"php/newt_entry_set_flags.html","desc":"说明"}, "newt_finished":{"name":"newt_finished","type":"","path":"php/newt_finished.html","desc":"Uninitializes newt interface"}, "newt_form":{"name":"newt_form","type":"","path":"php/newt_form.html","desc":"Create a form"}, "newt_form_add_component":{"name":"newt_form_add_component","type":"","path":"php/newt_form_add_component.html","desc":"Adds a single component to the form"}, "newt_form_add_components":{"name":"newt_form_add_components","type":"","path":"php/newt_form_add_components.html","desc":"Add several components to the form"}, "newt_form_add_hot_key":{"name":"newt_form_add_hot_key","type":"","path":"php/newt_form_add_hot_key.html","desc":"说明"}, "newt_form_destroy":{"name":"newt_form_destroy","type":"","path":"php/newt_form_destroy.html","desc":"Destroys a form"}, "newt_form_get_current":{"name":"newt_form_get_current","type":"","path":"php/newt_form_get_current.html","desc":"说明"}, "newt_form_run":{"name":"newt_form_run","type":"","path":"php/newt_form_run.html","desc":"Runs a form"}, "newt_form_set_background":{"name":"newt_form_set_background","type":"","path":"php/newt_form_set_background.html","desc":"说明"}, "newt_form_set_height":{"name":"newt_form_set_height","type":"","path":"php/newt_form_set_height.html","desc":"说明"}, "newt_form_set_size":{"name":"newt_form_set_size","type":"","path":"php/newt_form_set_size.html","desc":"说明"}, "newt_form_set_timer":{"name":"newt_form_set_timer","type":"","path":"php/newt_form_set_timer.html","desc":"说明"}, "newt_form_set_width":{"name":"newt_form_set_width","type":"","path":"php/newt_form_set_width.html","desc":"说明"}, "newt_form_watch_fd":{"name":"newt_form_watch_fd","type":"","path":"php/newt_form_watch_fd.html","desc":"说明"}, "newt_get_screen_size":{"name":"newt_get_screen_size","type":"","path":"php/newt_get_screen_size.html","desc":"Fills in the passed references with the current siz"}, "newt_grid_add_components_to_form":{"name":"newt_grid_add_components_to_form","type":"","path":"php/newt_grid_add_components_to_form.html","desc":"说明"}, "newt_grid_basic_window":{"name":"newt_grid_basic_window","type":"","path":"php/newt_grid_basic_window.html","desc":"说明"}, "newt_grid_free":{"name":"newt_grid_free","type":"","path":"php/newt_grid_free.html","desc":"说明"}, "newt_grid_get_size":{"name":"newt_grid_get_size","type":"","path":"php/newt_grid_get_size.html","desc":"说明"}, "newt_grid_h_close_stacked":{"name":"newt_grid_h_close_stacked","type":"","path":"php/newt_grid_h_close_stacked.html","desc":"说明"}, "newt_grid_h_stacked":{"name":"newt_grid_h_stacked","type":"","path":"php/newt_grid_h_stacked.html","desc":"说明"}, "newt_grid_place":{"name":"newt_grid_place","type":"","path":"php/newt_grid_place.html","desc":"说明"}, "newt_grid_set_field":{"name":"newt_grid_set_field","type":"","path":"php/newt_grid_set_field.html","desc":"说明"}, "newt_grid_simple_window":{"name":"newt_grid_simple_window","type":"","path":"php/newt_grid_simple_window.html","desc":"说明"}, "newt_grid_v_close_stacked":{"name":"newt_grid_v_close_stacked","type":"","path":"php/newt_grid_v_close_stacked.html","desc":"说明"}, "newt_grid_v_stacked":{"name":"newt_grid_v_stacked","type":"","path":"php/newt_grid_v_stacked.html","desc":"说明"}, "newt_grid_wrapped_window":{"name":"newt_grid_wrapped_window","type":"","path":"php/newt_grid_wrapped_window.html","desc":"说明"}, "newt_grid_wrapped_window_at":{"name":"newt_grid_wrapped_window_at","type":"","path":"php/newt_grid_wrapped_window_at.html","desc":"说明"}, "newt_init":{"name":"newt_init","type":"","path":"php/newt_init.html","desc":"Initialize newt"}, "newt_label":{"name":"newt_label","type":"","path":"php/newt_label.html","desc":"说明"}, "newt_label_set_text":{"name":"newt_label_set_text","type":"","path":"php/newt_label_set_text.html","desc":"说明"}, "newt_listbox":{"name":"newt_listbox","type":"","path":"php/newt_listbox.html","desc":"说明"}, "newt_listbox_append_entry":{"name":"newt_listbox_append_entry","type":"","path":"php/newt_listbox_append_entry.html","desc":"说明"}, "newt_listbox_clear":{"name":"newt_listbox_clear","type":"","path":"php/newt_listbox_clear.html","desc":"说明"}, "newt_listbox_clear_selection":{"name":"newt_listbox_clear_selection","type":"","path":"php/newt_listbox_clear_selection.html","desc":"说明"}, "newt_listbox_delete_entry":{"name":"newt_listbox_delete_entry","type":"","path":"php/newt_listbox_delete_entry.html","desc":"说明"}, "newt_listbox_get_current":{"name":"newt_listbox_get_current","type":"","path":"php/newt_listbox_get_current.html","desc":"说明"}, "newt_listbox_get_selection":{"name":"newt_listbox_get_selection","type":"","path":"php/newt_listbox_get_selection.html","desc":"说明"}, "newt_listbox_insert_entry":{"name":"newt_listbox_insert_entry","type":"","path":"php/newt_listbox_insert_entry.html","desc":"说明"}, "newt_listbox_item_count":{"name":"newt_listbox_item_count","type":"","path":"php/newt_listbox_item_count.html","desc":"说明"}, "newt_listbox_select_item":{"name":"newt_listbox_select_item","type":"","path":"php/newt_listbox_select_item.html","desc":"说明"}, "newt_listbox_set_current":{"name":"newt_listbox_set_current","type":"","path":"php/newt_listbox_set_current.html","desc":"说明"}, "newt_listbox_set_current_by_key":{"name":"newt_listbox_set_current_by_key","type":"","path":"php/newt_listbox_set_current_by_key.html","desc":"说明"}, "newt_listbox_set_data":{"name":"newt_listbox_set_data","type":"","path":"php/newt_listbox_set_data.html","desc":"说明"}, "newt_listbox_set_entry":{"name":"newt_listbox_set_entry","type":"","path":"php/newt_listbox_set_entry.html","desc":"说明"}, "newt_listbox_set_width":{"name":"newt_listbox_set_width","type":"","path":"php/newt_listbox_set_width.html","desc":"说明"}, "newt_listitem":{"name":"newt_listitem","type":"","path":"php/newt_listitem.html","desc":"说明"}, "newt_listitem_get_data":{"name":"newt_listitem_get_data","type":"","path":"php/newt_listitem_get_data.html","desc":"说明"}, "newt_listitem_set":{"name":"newt_listitem_set","type":"","path":"php/newt_listitem_set.html","desc":"说明"}, "newt_open_window":{"name":"newt_open_window","type":"","path":"php/newt_open_window.html","desc":"Open a window of the specified size and position"}, "newt_pop_help_line":{"name":"newt_pop_help_line","type":"","path":"php/newt_pop_help_line.html","desc":"Replaces the current help line with the one from the stack"}, "newt_pop_window":{"name":"newt_pop_window","type":"","path":"php/newt_pop_window.html","desc":"Removes the top window from the display"}, "newt_push_help_line":{"name":"newt_push_help_line","type":"","path":"php/newt_push_help_line.html","desc":"Saves the current help line on a stack, and displays the new line"}, "newt_radiobutton":{"name":"newt_radiobutton","type":"","path":"php/newt_radiobutton.html","desc":"说明"}, "newt_radio_get_current":{"name":"newt_radio_get_current","type":"","path":"php/newt_radio_get_current.html","desc":"说明"}, "newt_redraw_help_line":{"name":"newt_redraw_help_line","type":"","path":"php/newt_redraw_help_line.html","desc":"说明"}, "newt_reflow_text":{"name":"newt_reflow_text","type":"","path":"php/newt_reflow_text.html","desc":"说明"}, "newt_refresh":{"name":"newt_refresh","type":"","path":"php/newt_refresh.html","desc":"Updates modified portions of the screen"}, "newt_resize_screen":{"name":"newt_resize_screen","type":"","path":"php/newt_resize_screen.html","desc":"说明"}, "newt_resume":{"name":"newt_resume","type":"","path":"php/newt_resume.html","desc":"Resume using the newt interface after"}, "newt_run_form":{"name":"newt_run_form","type":"","path":"php/newt_run_form.html","desc":"Runs a form"}, "newt_scale":{"name":"newt_scale","type":"","path":"php/newt_scale.html","desc":"说明"}, "newt_scale_set":{"name":"newt_scale_set","type":"","path":"php/newt_scale_set.html","desc":"说明"}, "newt_scrollbar_set":{"name":"newt_scrollbar_set","type":"","path":"php/newt_scrollbar_set.html","desc":"说明"}, "newt_set_help_callback":{"name":"newt_set_help_callback","type":"","path":"php/newt_set_help_callback.html","desc":"说明"}, "newt_set_suspend_callback":{"name":"newt_set_suspend_callback","type":"","path":"php/newt_set_suspend_callback.html","desc":"Set a callback function which gets invoked w"}, "newt_suspend":{"name":"newt_suspend","type":"","path":"php/newt_suspend.html","desc":"Tells newt to return the terminal to its initial state"}, "newt_textbox":{"name":"newt_textbox","type":"","path":"php/newt_textbox.html","desc":"说明"}, "newt_textbox_get_num_lines":{"name":"newt_textbox_get_num_lines","type":"","path":"php/newt_textbox_get_num_lines.html","desc":"说明"}, "newt_textbox_reflowed":{"name":"newt_textbox_reflowed","type":"","path":"php/newt_textbox_reflowed.html","desc":"说明"}, "newt_textbox_set_height":{"name":"newt_textbox_set_height","type":"","path":"php/newt_textbox_set_height.html","desc":"说明"}, "newt_textbox_set_text":{"name":"newt_textbox_set_text","type":"","path":"php/newt_textbox_set_text.html","desc":"说明"}, "newt_vertical_scrollbar":{"name":"newt_vertical_scrollbar","type":"","path":"php/newt_vertical_scrollbar.html","desc":"说明"}, "newt_wait_for_key":{"name":"newt_wait_for_key","type":"","path":"php/newt_wait_for_key.html","desc":"Doesn't return until a key has been pressed"}, "newt_win_choice":{"name":"newt_win_choice","type":"","path":"php/newt_win_choice.html","desc":"说明"}, "newt_win_entries":{"name":"newt_win_entries","type":"","path":"php/newt_win_entries.html","desc":"说明"}, "newt_win_menu":{"name":"newt_win_menu","type":"","path":"php/newt_win_menu.html","desc":"说明"}, "newt_win_message":{"name":"newt_win_message","type":"","path":"php/newt_win_message.html","desc":"说明"}, "newt_win_messagev":{"name":"newt_win_messagev","type":"","path":"php/newt_win_messagev.html","desc":"说明"}, "newt_win_ternary":{"name":"newt_win_ternary","type":"","path":"php/newt_win_ternary.html","desc":"说明"}, "next":{"name":"next","type":"","path":"php/next.html","desc":"将数组中的内部指针向前移动一位"}, "ngettext":{"name":"ngettext","type":"","path":"php/ngettext.html","desc":"Plural version of gettext"}, "nl2br":{"name":"nl2br","type":"","path":"php/nl2br.html","desc":"在字符串所有新行之前插入 HTML 换行标记"}, "nl_langinfo":{"name":"nl_langinfo","type":"","path":"php/nl_langinfo.html","desc":"Query language and locale information"}, "nsapi_request_headers":{"name":"nsapi_request_headers","type":"","path":"php/nsapi_request_headers.html","desc":"Fetch all HTTP request headers"}, "nsapi_response_headers":{"name":"nsapi_response_headers","type":"","path":"php/nsapi_response_headers.html","desc":"Fetch all HTTP response headers"}, "nsapi_virtual":{"name":"nsapi_virtual","type":"","path":"php/nsapi_virtual.html","desc":"Perform an NSAPI sub-request"}, "number_format":{"name":"number_format","type":"","path":"php/number_format.html","desc":"以千位分隔符方式格式化一个数字"}, "oauth_get_sbs":{"name":"oauth_get_sbs","type":"","path":"php/oauth_get_sbs.html","desc":"生成一个签名字符基串"}, "oauth_urlencode":{"name":"oauth_urlencode","type":"","path":"php/oauth_urlencode.html","desc":"将 URI 编码为 RFC 3986 规范"}, "ob_clean":{"name":"ob_clean","type":"","path":"php/ob_clean.html","desc":"清空(擦掉)输出缓冲区"}, "ob_end_clean":{"name":"ob_end_clean","type":"","path":"php/ob_end_clean.html","desc":"清空(擦除)缓冲区并关闭输出缓冲"}, "ob_end_flush":{"name":"ob_end_flush","type":"","path":"php/ob_end_flush.html","desc":"冲刷出(送出)输出缓冲区内容并关闭缓冲"}, "ob_flush":{"name":"ob_flush","type":"","path":"php/ob_flush.html","desc":"冲刷出(送出)输出缓冲区中的内容"}, "ob_get_clean":{"name":"ob_get_clean","type":"","path":"php/ob_get_clean.html","desc":"得到当前缓冲区的内容并删除当前输出缓。"}, "ob_get_contents":{"name":"ob_get_contents","type":"","path":"php/ob_get_contents.html","desc":"返回输出缓冲区的内容"}, "ob_get_flush":{"name":"ob_get_flush","type":"","path":"php/ob_get_flush.html","desc":"刷出(送出)缓冲区内容,以字符串形式返回内容,并关闭输出缓冲区。"}, "ob_get_length":{"name":"ob_get_length","type":"","path":"php/ob_get_length.html","desc":"返回输出缓冲区内容的长度"}, "ob_get_level":{"name":"ob_get_level","type":"","path":"php/ob_get_level.html","desc":"返回输出缓冲机制的嵌套级别"}, "ob_get_status":{"name":"ob_get_status","type":"","path":"php/ob_get_status.html","desc":"得到所有输出缓冲区的状态"}, "ob_gzhandler":{"name":"ob_gzhandler","type":"","path":"php/ob_gzhandler.html","desc":"在ob_start中使用的用来压缩输出缓冲区中内容的回调函数。ob_start callback function to gzip output buffer"}, "ob_iconv_handler":{"name":"ob_iconv_handler","type":"","path":"php/ob_iconv_handler.html","desc":"以输出缓冲处理程序转换字符编码"}, "ob_implicit_flush":{"name":"ob_implicit_flush","type":"","path":"php/ob_implicit_flush.html","desc":"打开关闭绝对刷送"}, "ob_list_handlers":{"name":"ob_list_handlers","type":"","path":"php/ob_list_handlers.html","desc":"列出所有使用中的输出处理程序。"}, "ob_start":{"name":"ob_start","type":"","path":"php/ob_start.html","desc":"打开输出控制缓冲"}, "ob_tidyhandler":{"name":"ob_tidyhandler","type":"","path":"php/ob_tidyhandler.html","desc":"ob_start callback function to repair the buffer"}, "ocibindbyname":{"name":"ocibindbyname","type":"","path":"php/ocibindbyname.html","desc":"别名 oci_bind_by_name"}, "ocicancel":{"name":"ocicancel","type":"","path":"php/ocicancel.html","desc":"别名 oci_cancel"}, "ocicloselob":{"name":"ocicloselob","type":"","path":"php/ocicloselob.html","desc":"别名 OCI-Lobclose"}, "ocicollappend":{"name":"ocicollappend","type":"","path":"php/ocicollappend.html","desc":"别名 OCI-Collectionappend"}, "ocicollassign":{"name":"ocicollassign","type":"","path":"php/ocicollassign.html","desc":"别名 OCI-Collectionassign"}, "ocicollassignelem":{"name":"ocicollassignelem","type":"","path":"php/ocicollassignelem.html","desc":"别名 OCI-CollectionassignElem"}, "ocicollgetelem":{"name":"ocicollgetelem","type":"","path":"php/ocicollgetelem.html","desc":"别名 OCI-CollectiongetElem"}, "ocicollmax":{"name":"ocicollmax","type":"","path":"php/ocicollmax.html","desc":"别名 OCI-Collectionmax"}, "ocicollsize":{"name":"ocicollsize","type":"","path":"php/ocicollsize.html","desc":"别名 OCI-Collectionsize"}, "ocicolltrim":{"name":"ocicolltrim","type":"","path":"php/ocicolltrim.html","desc":"别名 OCI-Collectiontrim"}, "ocicolumnisnull":{"name":"ocicolumnisnull","type":"","path":"php/ocicolumnisnull.html","desc":"别名 oci_field_is_null"}, "ocicolumnname":{"name":"ocicolumnname","type":"","path":"php/ocicolumnname.html","desc":"别名 oci_field_name"}, "ocicolumnprecision":{"name":"ocicolumnprecision","type":"","path":"php/ocicolumnprecision.html","desc":"别名 oci_field_precision"}, "ocicolumnscale":{"name":"ocicolumnscale","type":"","path":"php/ocicolumnscale.html","desc":"别名 oci_field_scale"}, "ocicolumnsize":{"name":"ocicolumnsize","type":"","path":"php/ocicolumnsize.html","desc":"别名 oci_field_size"}, "ocicolumntype":{"name":"ocicolumntype","type":"","path":"php/ocicolumntype.html","desc":"别名 oci_field_type"}, "ocicolumntyperaw":{"name":"ocicolumntyperaw","type":"","path":"php/ocicolumntyperaw.html","desc":"别名 oci_field_type_raw"}, "ocicommit":{"name":"ocicommit","type":"","path":"php/ocicommit.html","desc":"别名 oci_commit"}, "ocidefinebyname":{"name":"ocidefinebyname","type":"","path":"php/ocidefinebyname.html","desc":"别名 oci_define_by_name"}, "ocierror":{"name":"ocierror","type":"","path":"php/ocierror.html","desc":"别名 oci_error"}, "ociexecute":{"name":"ociexecute","type":"","path":"php/ociexecute.html","desc":"别名 oci_execute"}, "ocifetch":{"name":"ocifetch","type":"","path":"php/ocifetch.html","desc":"别名 oci_fetch"}, "ocifetchinto":{"name":"ocifetchinto","type":"","path":"php/ocifetchinto.html","desc":"Obsolete variant of oci_fetch_array, oci_fetch"}, "ocifetchstatement":{"name":"ocifetchstatement","type":"","path":"php/ocifetchstatement.html","desc":"别名 oci_fetch_all"}, "ocifreecollection":{"name":"ocifreecollection","type":"","path":"php/ocifreecollection.html","desc":"别名 OCI-Collectionfree"}, "ocifreecursor":{"name":"ocifreecursor","type":"","path":"php/ocifreecursor.html","desc":"别名 oci_free_statement"}, "ocifreedesc":{"name":"ocifreedesc","type":"","path":"php/ocifreedesc.html","desc":"别名 OCI-Lobfree"}, "ocifreestatement":{"name":"ocifreestatement","type":"","path":"php/ocifreestatement.html","desc":"别名 oci_free_statement"}, "ociinternaldebug":{"name":"ociinternaldebug","type":"","path":"php/ociinternaldebug.html","desc":"别名 oci_internal_debug"}, "ociloadlob":{"name":"ociloadlob","type":"","path":"php/ociloadlob.html","desc":"别名 OCI-Lobload"}, "ocilogoff":{"name":"ocilogoff","type":"","path":"php/ocilogoff.html","desc":"别名 oci_close"}, "ocilogon":{"name":"ocilogon","type":"","path":"php/ocilogon.html","desc":"别名 oci_connect"}, "ocinewcollection":{"name":"ocinewcollection","type":"","path":"php/ocinewcollection.html","desc":"别名 oci_new_collection"}, "ocinewcursor":{"name":"ocinewcursor","type":"","path":"php/ocinewcursor.html","desc":"别名 oci_new_cursor"}, "ocinewdescriptor":{"name":"ocinewdescriptor","type":"","path":"php/ocinewdescriptor.html","desc":"别名 oci_new_descriptor"}, "ocinlogon":{"name":"ocinlogon","type":"","path":"php/ocinlogon.html","desc":"别名 oci_new_connect"}, "ocinumcols":{"name":"ocinumcols","type":"","path":"php/ocinumcols.html","desc":"别名 oci_num_fields"}, "ociparse":{"name":"ociparse","type":"","path":"php/ociparse.html","desc":"别名 oci_parse"}, "ociplogon":{"name":"ociplogon","type":"","path":"php/ociplogon.html","desc":"别名 oci_pconnect"}, "ociresult":{"name":"ociresult","type":"","path":"php/ociresult.html","desc":"别名 oci_result"}, "ocirollback":{"name":"ocirollback","type":"","path":"php/ocirollback.html","desc":"别名 oci_rollback"}, "ocirowcount":{"name":"ocirowcount","type":"","path":"php/ocirowcount.html","desc":"别名 oci_num_rows"}, "ocisavelob":{"name":"ocisavelob","type":"","path":"php/ocisavelob.html","desc":"别名 OCI-Lobsave"}, "ocisavelobfile":{"name":"ocisavelobfile","type":"","path":"php/ocisavelobfile.html","desc":"别名 OCI-Lobimport"}, "ociserverversion":{"name":"ociserverversion","type":"","path":"php/ociserverversion.html","desc":"别名 oci_server_version"}, "ocisetprefetch":{"name":"ocisetprefetch","type":"","path":"php/ocisetprefetch.html","desc":"别名 oci_set_prefetch"}, "ocistatementtype":{"name":"ocistatementtype","type":"","path":"php/ocistatementtype.html","desc":"别名 oci_statement_type"}, "ociwritelobtofile":{"name":"ociwritelobtofile","type":"","path":"php/ociwritelobtofile.html","desc":"别名 OCI-Lobexport"}, "ociwritetemporarylob":{"name":"ociwritetemporarylob","type":"","path":"php/ociwritetemporarylob.html","desc":"别名 OCI-LobwriteTemporary"}, "oci_bind_array_by_name":{"name":"oci_bind_array_by_name","type":"","path":"php/oci_bind_array_by_name.html","desc":"Binds a PHP array to an Oracle PLSQL array parameter"}, "oci_bind_by_name":{"name":"oci_bind_by_name","type":"","path":"php/oci_bind_by_name.html","desc":"绑定一个 PHP 变量到一个 Oracle 位置标志符"}, "oci_cancel":{"name":"oci_cancel","type":"","path":"php/oci_cancel.html","desc":"中断游标读取数据"}, "oci_client_version":{"name":"oci_client_version","type":"","path":"php/oci_client_version.html","desc":"Returns the Oracle client library version"}, "oci_close":{"name":"oci_close","type":"","path":"php/oci_close.html","desc":"关闭 Oracle 连接"}, "oci_commit":{"name":"oci_commit","type":"","path":"php/oci_commit.html","desc":"提交未执行的事务处理"}, "oci_connect":{"name":"oci_connect","type":"","path":"php/oci_connect.html","desc":"建立一个到 Oracle 服务器的连接"}, "oci_define_by_name":{"name":"oci_define_by_name","type":"","path":"php/oci_define_by_name.html","desc":"在 SELECT 中使用 PHP 变量作为定义的步骤"}, "oci_error":{"name":"oci_error","type":"","path":"php/oci_error.html","desc":"返回上一个错误"}, "oci_execute":{"name":"oci_execute","type":"","path":"php/oci_execute.html","desc":"执行一条语句"}, "oci_fetch":{"name":"oci_fetch","type":"","path":"php/oci_fetch.html","desc":"Fetches the next row into result-buffer"}, "oci_fetch_all":{"name":"oci_fetch_all","type":"","path":"php/oci_fetch_all.html","desc":"获取结果数据的所有行到一个数组"}, "oci_fetch_array":{"name":"oci_fetch_array","type":"","path":"php/oci_fetch_array.html","desc":"Returns the next row from a query as an associative or numeric array"}, "oci_fetch_assoc":{"name":"oci_fetch_assoc","type":"","path":"php/oci_fetch_assoc.html","desc":"Returns the next row from a query as an associative array"}, "oci_fetch_object":{"name":"oci_fetch_object","type":"","path":"php/oci_fetch_object.html","desc":"Returns the next row from a query as an object"}, "oci_fetch_row":{"name":"oci_fetch_row","type":"","path":"php/oci_fetch_row.html","desc":"Returns the next row from a query as a numeric array"}, "oci_field_is_null":{"name":"oci_field_is_null","type":"","path":"php/oci_field_is_null.html","desc":"检查字段是否为 NULL"}, "oci_field_name":{"name":"oci_field_name","type":"","path":"php/oci_field_name.html","desc":"返回字段名"}, "oci_field_precision":{"name":"oci_field_precision","type":"","path":"php/oci_field_precision.html","desc":"返回字段精度"}, "oci_field_scale":{"name":"oci_field_scale","type":"","path":"php/oci_field_scale.html","desc":"返回字段范围"}, "oci_field_size":{"name":"oci_field_size","type":"","path":"php/oci_field_size.html","desc":"返回字段大小"}, "oci_field_type":{"name":"oci_field_type","type":"","path":"php/oci_field_type.html","desc":"返回字段的数据类型"}, "oci_field_type_raw":{"name":"oci_field_type_raw","type":"","path":"php/oci_field_type_raw.html","desc":"返回字段的原始 Oracle 数据类型"}, "oci_free_descriptor":{"name":"oci_free_descriptor","type":"","path":"php/oci_free_descriptor.html","desc":"Frees a descriptor"}, "oci_free_statement":{"name":"oci_free_statement","type":"","path":"php/oci_free_statement.html","desc":"释放关联于语句或游标的所有资源"}, "oci_get_implicit_resultset":{"name":"oci_get_implicit_resultset","type":"","path":"php/oci_get_implicit_resultset.html","desc":"Returns the next child statement resource from a parent statement resource that has Oracle Database 12c Implicit Result Sets"}, "oci_internal_debug":{"name":"oci_internal_debug","type":"","path":"php/oci_internal_debug.html","desc":"打开或关闭内部调试输出"}, "oci_lob_copy":{"name":"oci_lob_copy","type":"","path":"php/oci_lob_copy.html","desc":"Copies large object"}, "oci_lob_is_equal":{"name":"oci_lob_is_equal","type":"","path":"php/oci_lob_is_equal.html","desc":"Compares two LOBFILE locators for equality"}, "oci_new_collection":{"name":"oci_new_collection","type":"","path":"php/oci_new_collection.html","desc":"分配新的 collection 对象"}, "oci_new_connect":{"name":"oci_new_connect","type":"","path":"php/oci_new_connect.html","desc":"建定一个到 Oracle 服务器的新连接"}, "oci_new_cursor":{"name":"oci_new_cursor","type":"","path":"php/oci_new_cursor.html","desc":"分配并返回一个新的游标(语句句柄)"}, "oci_new_descriptor":{"name":"oci_new_descriptor","type":"","path":"php/oci_new_descriptor.html","desc":"初始化一个新的空 LOB 或 FILE 描述符"}, "oci_num_fields":{"name":"oci_num_fields","type":"","path":"php/oci_num_fields.html","desc":"返回结果列的数目"}, "oci_num_rows":{"name":"oci_num_rows","type":"","path":"php/oci_num_rows.html","desc":"返回语句执行后受影响的行数"}, "oci_parse":{"name":"oci_parse","type":"","path":"php/oci_parse.html","desc":"配置 Oracle 语句预备执行"}, "oci_password_change":{"name":"oci_password_change","type":"","path":"php/oci_password_change.html","desc":"修改 Oracle 用户的密码"}, "oci_pconnect":{"name":"oci_pconnect","type":"","path":"php/oci_pconnect.html","desc":"使用一个持久连接连到 Oracle 数据库"}, "oci_register_taf_callback":{"name":"oci_register_taf_callback","type":"","path":"php/oci_register_taf_callback.html","desc":"Register a user-defined callback function for Oracle Database TAF"}, "oci_result":{"name":"oci_result","type":"","path":"php/oci_result.html","desc":"返回所取得行中字段的值"}, "oci_rollback":{"name":"oci_rollback","type":"","path":"php/oci_rollback.html","desc":"回滚未提交的事务"}, "oci_server_version":{"name":"oci_server_version","type":"","path":"php/oci_server_version.html","desc":"返回服务器版本信息"}, "oci_set_action":{"name":"oci_set_action","type":"","path":"php/oci_set_action.html","desc":"Sets the action name"}, "oci_set_call_timout":{"name":"oci_set_call_timout","type":"","path":"php/oci_set_call_timout.html","desc":"Sets a millisecond timeout for database calls"}, "oci_set_client_identifier":{"name":"oci_set_client_identifier","type":"","path":"php/oci_set_client_identifier.html","desc":"Sets the client identifier"}, "oci_set_client_info":{"name":"oci_set_client_info","type":"","path":"php/oci_set_client_info.html","desc":"Sets the client information"}, "oci_set_db_operation":{"name":"oci_set_db_operation","type":"","path":"php/oci_set_db_operation.html","desc":"Sets the database operation"}, "oci_set_edition":{"name":"oci_set_edition","type":"","path":"php/oci_set_edition.html","desc":"Sets the database edition"}, "oci_set_module_name":{"name":"oci_set_module_name","type":"","path":"php/oci_set_module_name.html","desc":"Sets the module name"}, "oci_set_prefetch":{"name":"oci_set_prefetch","type":"","path":"php/oci_set_prefetch.html","desc":"设置预提取行数"}, "oci_statement_type":{"name":"oci_statement_type","type":"","path":"php/oci_statement_type.html","desc":"返回 OCI 语句的类型"}, "oci_unregister_taf_callback":{"name":"oci_unregister_taf_callback","type":"","path":"php/oci_unregister_taf_callback.html","desc":"Unregister a user-defined callback function for Oracle Database TAF"}, "octdec":{"name":"octdec","type":"","path":"php/octdec.html","desc":"八进制转换为十进制"}, "odbc_autocommit":{"name":"odbc_autocommit","type":"","path":"php/odbc_autocommit.html","desc":"Toggle autocommit behaviour"}, "odbc_binmode":{"name":"odbc_binmode","type":"","path":"php/odbc_binmode.html","desc":"Handling of binary column data"}, "odbc_close":{"name":"odbc_close","type":"","path":"php/odbc_close.html","desc":"Close an ODBC connection"}, "odbc_close_all":{"name":"odbc_close_all","type":"","path":"php/odbc_close_all.html","desc":"Close all ODBC connections"}, "odbc_columnprivileges":{"name":"odbc_columnprivileges","type":"","path":"php/odbc_columnprivileges.html","desc":"Lists columns and associated privileges for the given table"}, "odbc_columns":{"name":"odbc_columns","type":"","path":"php/odbc_columns.html","desc":"Lists the column names in specified tables"}, "odbc_commit":{"name":"odbc_commit","type":"","path":"php/odbc_commit.html","desc":"Commit an ODBC transaction"}, "odbc_connect":{"name":"odbc_connect","type":"","path":"php/odbc_connect.html","desc":"Connect to a datasource"}, "odbc_cursor":{"name":"odbc_cursor","type":"","path":"php/odbc_cursor.html","desc":"Get cursorname"}, "odbc_data_source":{"name":"odbc_data_source","type":"","path":"php/odbc_data_source.html","desc":"Returns information about a current connection"}, "odbc_do":{"name":"odbc_do","type":"","path":"php/odbc_do.html","desc":"别名 odbc_exec"}, "odbc_error":{"name":"odbc_error","type":"","path":"php/odbc_error.html","desc":"Get the last error code"}, "odbc_errormsg":{"name":"odbc_errormsg","type":"","path":"php/odbc_errormsg.html","desc":"Get the last error message"}, "odbc_exec":{"name":"odbc_exec","type":"","path":"php/odbc_exec.html","desc":"Prepare and execute an SQL statement"}, "odbc_execute":{"name":"odbc_execute","type":"","path":"php/odbc_execute.html","desc":"Execute a prepared statement"}, "odbc_fetch_array":{"name":"odbc_fetch_array","type":"","path":"php/odbc_fetch_array.html","desc":"Fetch a result row as an associative array"}, "odbc_fetch_into":{"name":"odbc_fetch_into","type":"","path":"php/odbc_fetch_into.html","desc":"Fetch one result row into array"}, "odbc_fetch_object":{"name":"odbc_fetch_object","type":"","path":"php/odbc_fetch_object.html","desc":"Fetch a result row as an object"}, "odbc_fetch_row":{"name":"odbc_fetch_row","type":"","path":"php/odbc_fetch_row.html","desc":"Fetch a row"}, "odbc_field_len":{"name":"odbc_field_len","type":"","path":"php/odbc_field_len.html","desc":"Get the length (precision) of a field"}, "odbc_field_name":{"name":"odbc_field_name","type":"","path":"php/odbc_field_name.html","desc":"Get the columnname"}, "odbc_field_num":{"name":"odbc_field_num","type":"","path":"php/odbc_field_num.html","desc":"Return column number"}, "odbc_field_precision":{"name":"odbc_field_precision","type":"","path":"php/odbc_field_precision.html","desc":"别名 odbc_field_len"}, "odbc_field_scale":{"name":"odbc_field_scale","type":"","path":"php/odbc_field_scale.html","desc":"Get the scale of a field"}, "odbc_field_type":{"name":"odbc_field_type","type":"","path":"php/odbc_field_type.html","desc":"Datatype of a field"}, "odbc_foreignkeys":{"name":"odbc_foreignkeys","type":"","path":"php/odbc_foreignkeys.html","desc":"Retrieves a list of foreign keys"}, "odbc_free_result":{"name":"odbc_free_result","type":"","path":"php/odbc_free_result.html","desc":"Free resources associated with a result"}, "odbc_gettypeinfo":{"name":"odbc_gettypeinfo","type":"","path":"php/odbc_gettypeinfo.html","desc":"Retrieves information about data types supported by the data source"}, "odbc_longreadlen":{"name":"odbc_longreadlen","type":"","path":"php/odbc_longreadlen.html","desc":"Handling of LONG columns"}, "odbc_next_result":{"name":"odbc_next_result","type":"","path":"php/odbc_next_result.html","desc":"Checks if multiple results are available"}, "odbc_num_fields":{"name":"odbc_num_fields","type":"","path":"php/odbc_num_fields.html","desc":"Number of columns in a result"}, "odbc_num_rows":{"name":"odbc_num_rows","type":"","path":"php/odbc_num_rows.html","desc":"Number of rows in a result"}, "odbc_pconnect":{"name":"odbc_pconnect","type":"","path":"php/odbc_pconnect.html","desc":"Open a persistent database connection"}, "odbc_prepare":{"name":"odbc_prepare","type":"","path":"php/odbc_prepare.html","desc":"Prepares a statement for execution"}, "odbc_primarykeys":{"name":"odbc_primarykeys","type":"","path":"php/odbc_primarykeys.html","desc":"Gets the primary keys for a table"}, "odbc_procedurecolumns":{"name":"odbc_procedurecolumns","type":"","path":"php/odbc_procedurecolumns.html","desc":"Retrieve information about parameters to procedures"}, "odbc_procedures":{"name":"odbc_procedures","type":"","path":"php/odbc_procedures.html","desc":"Get the list of procedures stored in a specific data source"}, "odbc_result":{"name":"odbc_result","type":"","path":"php/odbc_result.html","desc":"Get result data"}, "odbc_result_all":{"name":"odbc_result_all","type":"","path":"php/odbc_result_all.html","desc":"Print result as HTML table"}, "odbc_rollback":{"name":"odbc_rollback","type":"","path":"php/odbc_rollback.html","desc":"Rollback a transaction"}, "odbc_setoption":{"name":"odbc_setoption","type":"","path":"php/odbc_setoption.html","desc":"Adjust ODBC settings"}, "odbc_specialcolumns":{"name":"odbc_specialcolumns","type":"","path":"php/odbc_specialcolumns.html","desc":"Retrieves special columns"}, "odbc_statistics":{"name":"odbc_statistics","type":"","path":"php/odbc_statistics.html","desc":"Retrieve statistics about a table"}, "odbc_tableprivileges":{"name":"odbc_tableprivileges","type":"","path":"php/odbc_tableprivileges.html","desc":"Lists tables and the privileges associated with each table"}, "odbc_tables":{"name":"odbc_tables","type":"","path":"php/odbc_tables.html","desc":"Get the list of table names stored in a specific data source"}, "opcache_compile_file":{"name":"opcache_compile_file","type":"","path":"php/opcache_compile_file.html","desc":"无需运行,即可编译并缓存 PHP 脚本"}, "opcache_get_configuration":{"name":"opcache_get_configuration","type":"","path":"php/opcache_get_configuration.html","desc":"获取缓存的配置信息"}, "opcache_get_status":{"name":"opcache_get_status","type":"","path":"php/opcache_get_status.html","desc":"获取缓存的状态信息"}, "opcache_invalidate":{"name":"opcache_invalidate","type":"","path":"php/opcache_invalidate.html","desc":"废除脚本缓存"}, "opcache_is_script_cached":{"name":"opcache_is_script_cached","type":"","path":"php/opcache_is_script_cached.html","desc":"Tells whether a script is cached in OPCache"}, "opcache_reset":{"name":"opcache_reset","type":"","path":"php/opcache_reset.html","desc":"重置字节码缓存的内容"}, "openal_buffer_create":{"name":"openal_buffer_create","type":"","path":"php/openal_buffer_create.html","desc":"Generate OpenAL buffer"}, "openal_buffer_data":{"name":"openal_buffer_data","type":"","path":"php/openal_buffer_data.html","desc":"Load a buffer with data"}, "openal_buffer_destroy":{"name":"openal_buffer_destroy","type":"","path":"php/openal_buffer_destroy.html","desc":"Destroys an OpenAL buffer"}, "openal_buffer_get":{"name":"openal_buffer_get","type":"","path":"php/openal_buffer_get.html","desc":"Retrieve an OpenAL buffer property"}, "openal_buffer_loadwav":{"name":"openal_buffer_loadwav","type":"","path":"php/openal_buffer_loadwav.html","desc":"Load a .wav file into a buffer"}, "openal_context_create":{"name":"openal_context_create","type":"","path":"php/openal_context_create.html","desc":"Create an audio processing context"}, "openal_context_current":{"name":"openal_context_current","type":"","path":"php/openal_context_current.html","desc":"Make the specified context current"}, "openal_context_destroy":{"name":"openal_context_destroy","type":"","path":"php/openal_context_destroy.html","desc":"Destroys a context"}, "openal_context_process":{"name":"openal_context_process","type":"","path":"php/openal_context_process.html","desc":"Process the specified context"}, "openal_context_suspend":{"name":"openal_context_suspend","type":"","path":"php/openal_context_suspend.html","desc":"Suspend the specified context"}, "openal_device_close":{"name":"openal_device_close","type":"","path":"php/openal_device_close.html","desc":"Close an OpenAL device"}, "openal_device_open":{"name":"openal_device_open","type":"","path":"php/openal_device_open.html","desc":"Initialize the OpenAL audio layer"}, "openal_listener_get":{"name":"openal_listener_get","type":"","path":"php/openal_listener_get.html","desc":"Retrieve a listener property"}, "openal_listener_set":{"name":"openal_listener_set","type":"","path":"php/openal_listener_set.html","desc":"Set a listener property"}, "openal_source_create":{"name":"openal_source_create","type":"","path":"php/openal_source_create.html","desc":"Generate a source resource"}, "openal_source_destroy":{"name":"openal_source_destroy","type":"","path":"php/openal_source_destroy.html","desc":"Destroy a source resource"}, "openal_source_get":{"name":"openal_source_get","type":"","path":"php/openal_source_get.html","desc":"Retrieve an OpenAL source property"}, "openal_source_pause":{"name":"openal_source_pause","type":"","path":"php/openal_source_pause.html","desc":"Pause the source"}, "openal_source_play":{"name":"openal_source_play","type":"","path":"php/openal_source_play.html","desc":"Start playing the source"}, "openal_source_rewind":{"name":"openal_source_rewind","type":"","path":"php/openal_source_rewind.html","desc":"Rewind the source"}, "openal_source_set":{"name":"openal_source_set","type":"","path":"php/openal_source_set.html","desc":"Set source property"}, "openal_source_stop":{"name":"openal_source_stop","type":"","path":"php/openal_source_stop.html","desc":"Stop playing the source"}, "openal_stream":{"name":"openal_stream","type":"","path":"php/openal_stream.html","desc":"Begin streaming on a source"}, "opendir":{"name":"opendir","type":"","path":"php/opendir.html","desc":"打开目录句柄"}, "openlog":{"name":"openlog","type":"","path":"php/openlog.html","desc":"Open connection to system logger"}, "openssl_cipher_iv_length":{"name":"openssl_cipher_iv_length","type":"","path":"php/openssl_cipher_iv_length.html","desc":"获取密码iv长度"}, "openssl_csr_export":{"name":"openssl_csr_export","type":"","path":"php/openssl_csr_export.html","desc":"将CSR作为字符串导出"}, "openssl_csr_export_to_file":{"name":"openssl_csr_export_to_file","type":"","path":"php/openssl_csr_export_to_file.html","desc":"将CSR导出到文件"}, "openssl_csr_get_public_key":{"name":"openssl_csr_get_public_key","type":"","path":"php/openssl_csr_get_public_key.html","desc":"返回CSR的公钥"}, "openssl_csr_get_subject":{"name":"openssl_csr_get_subject","type":"","path":"php/openssl_csr_get_subject.html","desc":"返回CSR的主题"}, "openssl_csr_new":{"name":"openssl_csr_new","type":"","path":"php/openssl_csr_new.html","desc":"生成一个 CSR"}, "openssl_csr_sign":{"name":"openssl_csr_sign","type":"","path":"php/openssl_csr_sign.html","desc":"用另一个证书签署 CSR (或者本身) 并且生成一个证书"}, "openssl_decrypt":{"name":"openssl_decrypt","type":"","path":"php/openssl_decrypt.html","desc":"解密数据"}, "openssl_dh_compute_key":{"name":"openssl_dh_compute_key","type":"","path":"php/openssl_dh_compute_key.html","desc":"计算远程DH密钥(公钥)和本地DH密钥的共享密钥"}, "openssl_digest":{"name":"openssl_digest","type":"","path":"php/openssl_digest.html","desc":"计算摘要"}, "openssl_encrypt":{"name":"openssl_encrypt","type":"","path":"php/openssl_encrypt.html","desc":"加密数据"}, "openssl_error_string":{"name":"openssl_error_string","type":"","path":"php/openssl_error_string.html","desc":"返回 openSSL 错误消息"}, "openssl_free_key":{"name":"openssl_free_key","type":"","path":"php/openssl_free_key.html","desc":"释放密钥资源"}, "openssl_get_cert_locations":{"name":"openssl_get_cert_locations","type":"","path":"php/openssl_get_cert_locations.html","desc":"检索可用的证书位置"}, "openssl_get_cipher_methods":{"name":"openssl_get_cipher_methods","type":"","path":"php/openssl_get_cipher_methods.html","desc":"获取可用的加密算法"}, "openssl_get_curve_names":{"name":"openssl_get_curve_names","type":"","path":"php/openssl_get_curve_names.html","desc":"获得ECC的可用曲线名称列表"}, "openssl_get_md_methods":{"name":"openssl_get_md_methods","type":"","path":"php/openssl_get_md_methods.html","desc":"获取可用的摘要算法"}, "openssl_get_privatekey":{"name":"openssl_get_privatekey","type":"","path":"php/openssl_get_privatekey.html","desc":"别名 openssl_pkey_get_private"}, "openssl_get_publickey":{"name":"openssl_get_publickey","type":"","path":"php/openssl_get_publickey.html","desc":"别名 openssl_pkey_get_public"}, "openssl_open":{"name":"openssl_open","type":"","path":"php/openssl_open.html","desc":"打开密封的数据"}, "openssl_pbkdf2":{"name":"openssl_pbkdf2","type":"","path":"php/openssl_pbkdf2.html","desc":"生成一个 PKCS5 v2 PBKDF2 字符串"}, "openssl_pkcs12_export":{"name":"openssl_pkcs12_export","type":"","path":"php/openssl_pkcs12_export.html","desc":"将 PKCS#12 兼容证书存储文件导出到变量"}, "openssl_pkcs12_export_to_file":{"name":"openssl_pkcs12_export_to_file","type":"","path":"php/openssl_pkcs12_export_to_file.html","desc":"输出一个 PKCS#12 兼容的证书存储文件"}, "openssl_pkcs12_read":{"name":"openssl_pkcs12_read","type":"","path":"php/openssl_pkcs12_read.html","desc":"将 PKCS#12 证书存储区解析到数组中"}, "openssl_pkcs7_decrypt":{"name":"openssl_pkcs7_decrypt","type":"","path":"php/openssl_pkcs7_decrypt.html","desc":"解密一个 SMIME 加密的消息"}, "openssl_pkcs7_encrypt":{"name":"openssl_pkcs7_encrypt","type":"","path":"php/openssl_pkcs7_encrypt.html","desc":"加密一个 SMIME 消息"}, "openssl_pkcs7_read":{"name":"openssl_pkcs7_read","type":"","path":"php/openssl_pkcs7_read.html","desc":"将PKCS7文件导出为PEM格式证书的数组"}, "openssl_pkcs7_sign":{"name":"openssl_pkcs7_sign","type":"","path":"php/openssl_pkcs7_sign.html","desc":"对一个 SMIME 消息进行签名"}, "openssl_pkcs7_verify":{"name":"openssl_pkcs7_verify","type":"","path":"php/openssl_pkcs7_verify.html","desc":"校验一个已签名的 SMIME 消息的签名"}, "openssl_pkey_export":{"name":"openssl_pkey_export","type":"","path":"php/openssl_pkey_export.html","desc":"将一个密钥的可输出表示转换为字符串"}, "openssl_pkey_export_to_file":{"name":"openssl_pkey_export_to_file","type":"","path":"php/openssl_pkey_export_to_file.html","desc":"将密钥导出到文件中"}, "openssl_pkey_free":{"name":"openssl_pkey_free","type":"","path":"php/openssl_pkey_free.html","desc":"释放一个私钥"}, "openssl_pkey_get_details":{"name":"openssl_pkey_get_details","type":"","path":"php/openssl_pkey_get_details.html","desc":"返回包含密钥详情的数组"}, "openssl_pkey_get_private":{"name":"openssl_pkey_get_private","type":"","path":"php/openssl_pkey_get_private.html","desc":"获取私钥"}, "openssl_pkey_get_public":{"name":"openssl_pkey_get_public","type":"","path":"php/openssl_pkey_get_public.html","desc":"从证书中解析公钥,以供使用。"}, "openssl_pkey_new":{"name":"openssl_pkey_new","type":"","path":"php/openssl_pkey_new.html","desc":"生成一个新的私钥"}, "openssl_private_decrypt":{"name":"openssl_private_decrypt","type":"","path":"php/openssl_private_decrypt.html","desc":"使用私钥解密数据"}, "openssl_private_encrypt":{"name":"openssl_private_encrypt","type":"","path":"php/openssl_private_encrypt.html","desc":"使用私钥加密数据"}, "openssl_public_decrypt":{"name":"openssl_public_decrypt","type":"","path":"php/openssl_public_decrypt.html","desc":"使用公钥解密数据"}, "openssl_public_encrypt":{"name":"openssl_public_encrypt","type":"","path":"php/openssl_public_encrypt.html","desc":"使用公钥加密数据"}, "openssl_random_pseudo_bytes":{"name":"openssl_random_pseudo_bytes","type":"","path":"php/openssl_random_pseudo_bytes.html","desc":"生成一个伪随机字节串"}, "openssl_seal":{"name":"openssl_seal","type":"","path":"php/openssl_seal.html","desc":"密封 (加密) 数据"}, "openssl_sign":{"name":"openssl_sign","type":"","path":"php/openssl_sign.html","desc":"Generate signature"}, "openssl_spki_export":{"name":"openssl_spki_export","type":"","path":"php/openssl_spki_export.html","desc":"通过签名公钥和挑战导出一个可用的PEM格式的公钥"}, "openssl_spki_export_challenge":{"name":"openssl_spki_export_challenge","type":"","path":"php/openssl_spki_export_challenge.html","desc":"导出与签名公钥和挑战相关的挑战字符串"}, "openssl_spki_new":{"name":"openssl_spki_new","type":"","path":"php/openssl_spki_new.html","desc":"生成一个新的签名公钥和挑战"}, "openssl_spki_verify":{"name":"openssl_spki_verify","type":"","path":"php/openssl_spki_verify.html","desc":"验证签名公钥和挑战。"}, "openssl_verify":{"name":"openssl_verify","type":"","path":"php/openssl_verify.html","desc":"验证签名"}, "openssl_x509_checkpurpose":{"name":"openssl_x509_checkpurpose","type":"","path":"php/openssl_x509_checkpurpose.html","desc":"验证是否可以为特定目的使用证书"}, "openssl_x509_check_private_key":{"name":"openssl_x509_check_private_key","type":"","path":"php/openssl_x509_check_private_key.html","desc":"检查私钥是否对应于证书"}, "openssl_x509_export":{"name":"openssl_x509_export","type":"","path":"php/openssl_x509_export.html","desc":"以字符串格式导出证书"}, "openssl_x509_export_to_file":{"name":"openssl_x509_export_to_file","type":"","path":"php/openssl_x509_export_to_file.html","desc":"导出证书至文件"}, "openssl_x509_fingerprint":{"name":"openssl_x509_fingerprint","type":"","path":"php/openssl_x509_fingerprint.html","desc":"计算一个给定的x.509证书的指纹或摘要"}, "openssl_x509_free":{"name":"openssl_x509_free","type":"","path":"php/openssl_x509_free.html","desc":"释放证书资源"}, "openssl_x509_parse":{"name":"openssl_x509_parse","type":"","path":"php/openssl_x509_parse.html","desc":"解析一个X509证书并作为一个数组返回信息"}, "openssl_x509_read":{"name":"openssl_x509_read","type":"","path":"php/openssl_x509_read.html","desc":"解析一个x.509证书并返回一个资源标识符"}, "ord":{"name":"ord","type":"","path":"php/ord.html","desc":"转换字符串第一个字节为 0-255 之间的值"}, "output_add_rewrite_var":{"name":"output_add_rewrite_var","type":"","path":"php/output_add_rewrite_var.html","desc":"添加URL重写器的值(Add URL rewriter values)"}, "output_reset_rewrite_vars":{"name":"output_reset_rewrite_vars","type":"","path":"php/output_reset_rewrite_vars.html","desc":"重设URL重写器的值(Reset URL rewriter values)"}, "override_function":{"name":"override_function","type":"","path":"php/override_function.html","desc":"Overrides built-in functions"}, "pack":{"name":"pack","type":"","path":"php/pack.html","desc":"将数据打包成二进制字符串"}, "parsekit_compile_file":{"name":"parsekit_compile_file","type":"","path":"php/parsekit_compile_file.html","desc":"Compile a PHP file and return the resulting op array"}, "parsekit_compile_string":{"name":"parsekit_compile_string","type":"","path":"php/parsekit_compile_string.html","desc":"Compile a string of PHP code and return the resulting op array"}, "parsekit_func_arginfo":{"name":"parsekit_func_arginfo","type":"","path":"php/parsekit_func_arginfo.html","desc":"Return information regarding function argument(s)"}, "parse_ini_file":{"name":"parse_ini_file","type":"","path":"php/parse_ini_file.html","desc":"解析一个配置文件"}, "parse_ini_string":{"name":"parse_ini_string","type":"","path":"php/parse_ini_string.html","desc":"解析配置字符串"}, "parse_str":{"name":"parse_str","type":"","path":"php/parse_str.html","desc":"将字符串解析成多个变量"}, "parse_url":{"name":"parse_url","type":"","path":"php/parse_url.html","desc":"解析 URL,返回其组成部分"}, "passthru":{"name":"passthru","type":"","path":"php/passthru.html","desc":"执行外部程序并且显示原始输出"}, "password_get_info":{"name":"password_get_info","type":"","path":"php/password_get_info.html","desc":"返回指定散列(hash)的相关信息"}, "password_hash":{"name":"password_hash","type":"","path":"php/password_hash.html","desc":"创建密码的散列(hash)"}, "password_needs_rehash":{"name":"password_needs_rehash","type":"","path":"php/password_needs_rehash.html","desc":"检测散列值是否匹配指定的选项"}, "password_verify":{"name":"password_verify","type":"","path":"php/password_verify.html","desc":"验证密码是否和散列值匹配"}, "pathinfo":{"name":"pathinfo","type":"","path":"php/pathinfo.html","desc":"返回文件路径的信息"}, "pclose":{"name":"pclose","type":"","path":"php/pclose.html","desc":"关闭进程文件指针"}, "pcntl_alarm":{"name":"pcntl_alarm","type":"","path":"php/pcntl_alarm.html","desc":"为进程设置一个alarm闹钟信号"}, "pcntl_async_signals":{"name":"pcntl_async_signals","type":"","path":"php/pcntl_async_signals.html","desc":"Enabledisable asynchronous signal handling or return the old setting"}, "pcntl_errno":{"name":"pcntl_errno","type":"","path":"php/pcntl_errno.html","desc":"别名 pcntl_get_last_error"}, "pcntl_exec":{"name":"pcntl_exec","type":"","path":"php/pcntl_exec.html","desc":"在当前进程空间执行指定程序"}, "pcntl_fork":{"name":"pcntl_fork","type":"","path":"php/pcntl_fork.html","desc":"在当前进程当前位置产生分支(子进程)。译注:fork是创建了一个子进程,父进程和"}, "pcntl_getpriority":{"name":"pcntl_getpriority","type":"","path":"php/pcntl_getpriority.html","desc":"获取任意进程的优先级"}, "pcntl_get_last_error":{"name":"pcntl_get_last_error","type":"","path":"php/pcntl_get_last_error.html","desc":"Retrieve the error number set by the last pcntl function which failed"}, "pcntl_setpriority":{"name":"pcntl_setpriority","type":"","path":"php/pcntl_setpriority.html","desc":"修改任意进程的优先级"}, "pcntl_signal":{"name":"pcntl_signal","type":"","path":"php/pcntl_signal.html","desc":"安装一个信号处理器"}, "pcntl_signal_dispatch":{"name":"pcntl_signal_dispatch","type":"","path":"php/pcntl_signal_dispatch.html","desc":"调用等待信号的处理器"}, "pcntl_signal_get_handler":{"name":"pcntl_signal_get_handler","type":"","path":"php/pcntl_signal_get_handler.html","desc":"Get the current handler for specified signal"}, "pcntl_sigprocmask":{"name":"pcntl_sigprocmask","type":"","path":"php/pcntl_sigprocmask.html","desc":"设置或检索阻塞信号"}, "pcntl_sigtimedwait":{"name":"pcntl_sigtimedwait","type":"","path":"php/pcntl_sigtimedwait.html","desc":"带超时机制的信号等待"}, "pcntl_sigwaitinfo":{"name":"pcntl_sigwaitinfo","type":"","path":"php/pcntl_sigwaitinfo.html","desc":"等待信号"}, "pcntl_strerror":{"name":"pcntl_strerror","type":"","path":"php/pcntl_strerror.html","desc":"Retrieve the system error message associated with the given errno"}, "pcntl_wait":{"name":"pcntl_wait","type":"","path":"php/pcntl_wait.html","desc":"等待或返回fork的子进程状态"}, "pcntl_waitpid":{"name":"pcntl_waitpid","type":"","path":"php/pcntl_waitpid.html","desc":"等待或返回fork的子进程状态"}, "pcntl_wexitstatus":{"name":"pcntl_wexitstatus","type":"","path":"php/pcntl_wexitstatus.html","desc":"返回一个中断的子进程的返回代码"}, "pcntl_wifexited":{"name":"pcntl_wifexited","type":"","path":"php/pcntl_wifexited.html","desc":"检查状态代码是否代表一个正常的退出。"}, "pcntl_wifsignaled":{"name":"pcntl_wifsignaled","type":"","path":"php/pcntl_wifsignaled.html","desc":"检查子进程状态码是否代表由于某个信号而中断"}, "pcntl_wifstopped":{"name":"pcntl_wifstopped","type":"","path":"php/pcntl_wifstopped.html","desc":"检查子进程当前是否已经停止"}, "pcntl_wstopsig":{"name":"pcntl_wstopsig","type":"","path":"php/pcntl_wstopsig.html","desc":"返回导致子进程停止的信号"}, "pcntl_wtermsig":{"name":"pcntl_wtermsig","type":"","path":"php/pcntl_wtermsig.html","desc":"返回导致子进程中断的信号"}, "pdf_activate_item":{"name":"pdf_activate_item","type":"","path":"php/pdf_activate_item.html","desc":"Activate structure element or other content item"}, "pdf_add_annotation":{"name":"pdf_add_annotation","type":"","path":"php/pdf_add_annotation.html","desc":"Add annotation [deprecated]"}, "pdf_add_bookmark":{"name":"pdf_add_bookmark","type":"","path":"php/pdf_add_bookmark.html","desc":"Add bookmark for current page [deprecated]"}, "pdf_add_launchlink":{"name":"pdf_add_launchlink","type":"","path":"php/pdf_add_launchlink.html","desc":"Add launch annotation for current page [deprecated]"}, "pdf_add_locallink":{"name":"pdf_add_locallink","type":"","path":"php/pdf_add_locallink.html","desc":"Add link annotation for current page [deprecated]"}, "pdf_add_nameddest":{"name":"pdf_add_nameddest","type":"","path":"php/pdf_add_nameddest.html","desc":"Create named destination"}, "pdf_add_note":{"name":"pdf_add_note","type":"","path":"php/pdf_add_note.html","desc":"Set annotation for current page [deprecated]"}, "pdf_add_outline":{"name":"pdf_add_outline","type":"","path":"php/pdf_add_outline.html","desc":"Add bookmark for current page [deprecated]"}, "pdf_add_pdflink":{"name":"pdf_add_pdflink","type":"","path":"php/pdf_add_pdflink.html","desc":"Add file link annotation for current page [deprecated]"}, "pdf_add_table_cell":{"name":"pdf_add_table_cell","type":"","path":"php/pdf_add_table_cell.html","desc":"Add a cell to a new or existing table"}, "pdf_add_textflow":{"name":"pdf_add_textflow","type":"","path":"php/pdf_add_textflow.html","desc":"Create Textflow or add text to existing Textflow"}, "pdf_add_thumbnail":{"name":"pdf_add_thumbnail","type":"","path":"php/pdf_add_thumbnail.html","desc":"Add thumbnail for current page"}, "pdf_add_weblink":{"name":"pdf_add_weblink","type":"","path":"php/pdf_add_weblink.html","desc":"Add weblink for current page [deprecated]"}, "pdf_arc":{"name":"pdf_arc","type":"","path":"php/pdf_arc.html","desc":"Draw a counterclockwise circular arc segment"}, "pdf_arcn":{"name":"pdf_arcn","type":"","path":"php/pdf_arcn.html","desc":"Draw a clockwise circular arc segment"}, "pdf_attach_file":{"name":"pdf_attach_file","type":"","path":"php/pdf_attach_file.html","desc":"Add file attachment for current page [deprecated]"}, "pdf_begin_document":{"name":"pdf_begin_document","type":"","path":"php/pdf_begin_document.html","desc":"Create new PDF file"}, "pdf_begin_font":{"name":"pdf_begin_font","type":"","path":"php/pdf_begin_font.html","desc":"Start a Type 3 font definition"}, "pdf_begin_glyph":{"name":"pdf_begin_glyph","type":"","path":"php/pdf_begin_glyph.html","desc":"Start glyph definition for Type 3 font"}, "pdf_begin_item":{"name":"pdf_begin_item","type":"","path":"php/pdf_begin_item.html","desc":"Open structure element or other content item"}, "pdf_begin_layer":{"name":"pdf_begin_layer","type":"","path":"php/pdf_begin_layer.html","desc":"Start layer"}, "pdf_begin_page":{"name":"pdf_begin_page","type":"","path":"php/pdf_begin_page.html","desc":"Start new page [deprecated]"}, "pdf_begin_page_ext":{"name":"pdf_begin_page_ext","type":"","path":"php/pdf_begin_page_ext.html","desc":"Start new page"}, "pdf_begin_pattern":{"name":"pdf_begin_pattern","type":"","path":"php/pdf_begin_pattern.html","desc":"Start pattern definition"}, "pdf_begin_template":{"name":"pdf_begin_template","type":"","path":"php/pdf_begin_template.html","desc":"Start template definition [deprecated]"}, "pdf_begin_template_ext":{"name":"pdf_begin_template_ext","type":"","path":"php/pdf_begin_template_ext.html","desc":"Start template definition"}, "pdf_circle":{"name":"pdf_circle","type":"","path":"php/pdf_circle.html","desc":"Draw a circle"}, "pdf_clip":{"name":"pdf_clip","type":"","path":"php/pdf_clip.html","desc":"Clip to current path"}, "pdf_close":{"name":"pdf_close","type":"","path":"php/pdf_close.html","desc":"Close pdf resource [deprecated]"}, "pdf_closepath":{"name":"pdf_closepath","type":"","path":"php/pdf_closepath.html","desc":"Close current path"}, "pdf_closepath_fill_stroke":{"name":"pdf_closepath_fill_stroke","type":"","path":"php/pdf_closepath_fill_stroke.html","desc":"Close, fill and stroke current path"}, "pdf_closepath_stroke":{"name":"pdf_closepath_stroke","type":"","path":"php/pdf_closepath_stroke.html","desc":"Close and stroke path"}, "pdf_close_image":{"name":"pdf_close_image","type":"","path":"php/pdf_close_image.html","desc":"Close image"}, "pdf_close_pdi":{"name":"pdf_close_pdi","type":"","path":"php/pdf_close_pdi.html","desc":"Close the input PDF document [deprecated]"}, "pdf_close_pdi_page":{"name":"pdf_close_pdi_page","type":"","path":"php/pdf_close_pdi_page.html","desc":"Close the page handle"}, "pdf_concat":{"name":"pdf_concat","type":"","path":"php/pdf_concat.html","desc":"Concatenate a matrix to the CTM"}, "pdf_continue_text":{"name":"pdf_continue_text","type":"","path":"php/pdf_continue_text.html","desc":"Output text in next line"}, "pdf_create_3dview":{"name":"pdf_create_3dview","type":"","path":"php/pdf_create_3dview.html","desc":"Create 3D view"}, "pdf_create_action":{"name":"pdf_create_action","type":"","path":"php/pdf_create_action.html","desc":"Create action for objects or events"}, "pdf_create_annotation":{"name":"pdf_create_annotation","type":"","path":"php/pdf_create_annotation.html","desc":"Create rectangular annotation"}, "pdf_create_bookmark":{"name":"pdf_create_bookmark","type":"","path":"php/pdf_create_bookmark.html","desc":"Create bookmark"}, "pdf_create_field":{"name":"pdf_create_field","type":"","path":"php/pdf_create_field.html","desc":"Create form field"}, "pdf_create_fieldgroup":{"name":"pdf_create_fieldgroup","type":"","path":"php/pdf_create_fieldgroup.html","desc":"Create form field group"}, "pdf_create_gstate":{"name":"pdf_create_gstate","type":"","path":"php/pdf_create_gstate.html","desc":"Create graphics state object"}, "pdf_create_pvf":{"name":"pdf_create_pvf","type":"","path":"php/pdf_create_pvf.html","desc":"Create PDFlib virtual file"}, "pdf_create_textflow":{"name":"pdf_create_textflow","type":"","path":"php/pdf_create_textflow.html","desc":"Create textflow object"}, "pdf_curveto":{"name":"pdf_curveto","type":"","path":"php/pdf_curveto.html","desc":"Draw Bezier curve"}, "pdf_define_layer":{"name":"pdf_define_layer","type":"","path":"php/pdf_define_layer.html","desc":"Create layer definition"}, "pdf_delete":{"name":"pdf_delete","type":"","path":"php/pdf_delete.html","desc":"Delete PDFlib object"}, "pdf_delete_pvf":{"name":"pdf_delete_pvf","type":"","path":"php/pdf_delete_pvf.html","desc":"Delete PDFlib virtual file"}, "pdf_delete_table":{"name":"pdf_delete_table","type":"","path":"php/pdf_delete_table.html","desc":"Delete table object"}, "pdf_delete_textflow":{"name":"pdf_delete_textflow","type":"","path":"php/pdf_delete_textflow.html","desc":"Delete textflow object"}, "pdf_encoding_set_char":{"name":"pdf_encoding_set_char","type":"","path":"php/pdf_encoding_set_char.html","desc":"Add glyph name andor Unicode value"}, "pdf_endpath":{"name":"pdf_endpath","type":"","path":"php/pdf_endpath.html","desc":"End current path"}, "pdf_end_document":{"name":"pdf_end_document","type":"","path":"php/pdf_end_document.html","desc":"关闭 PDF 文件"}, "pdf_end_font":{"name":"pdf_end_font","type":"","path":"php/pdf_end_font.html","desc":"Terminate Type 3 font definition"}, "pdf_end_glyph":{"name":"pdf_end_glyph","type":"","path":"php/pdf_end_glyph.html","desc":"Terminate glyph definition for Type 3 font"}, "pdf_end_item":{"name":"pdf_end_item","type":"","path":"php/pdf_end_item.html","desc":"Close structure element or other content item"}, "pdf_end_layer":{"name":"pdf_end_layer","type":"","path":"php/pdf_end_layer.html","desc":"Deactivate all active layers"}, "pdf_end_page":{"name":"pdf_end_page","type":"","path":"php/pdf_end_page.html","desc":"Finish page"}, "pdf_end_page_ext":{"name":"pdf_end_page_ext","type":"","path":"php/pdf_end_page_ext.html","desc":"Finish page"}, "pdf_end_pattern":{"name":"pdf_end_pattern","type":"","path":"php/pdf_end_pattern.html","desc":"Finish pattern"}, "pdf_end_template":{"name":"pdf_end_template","type":"","path":"php/pdf_end_template.html","desc":"Finish template"}, "pdf_fill":{"name":"pdf_fill","type":"","path":"php/pdf_fill.html","desc":"Fill current path"}, "pdf_fill_imageblock":{"name":"pdf_fill_imageblock","type":"","path":"php/pdf_fill_imageblock.html","desc":"Fill image block with variable data"}, "pdf_fill_pdfblock":{"name":"pdf_fill_pdfblock","type":"","path":"php/pdf_fill_pdfblock.html","desc":"Fill PDF block with variable data"}, "pdf_fill_stroke":{"name":"pdf_fill_stroke","type":"","path":"php/pdf_fill_stroke.html","desc":"Fill and stroke path"}, "pdf_fill_textblock":{"name":"pdf_fill_textblock","type":"","path":"php/pdf_fill_textblock.html","desc":"Fill text block with variable data"}, "pdf_findfont":{"name":"pdf_findfont","type":"","path":"php/pdf_findfont.html","desc":"Prepare font for later use [deprecated]"}, "pdf_fit_image":{"name":"pdf_fit_image","type":"","path":"php/pdf_fit_image.html","desc":"Place image or template"}, "pdf_fit_pdi_page":{"name":"pdf_fit_pdi_page","type":"","path":"php/pdf_fit_pdi_page.html","desc":"Place imported PDF page"}, "pdf_fit_table":{"name":"pdf_fit_table","type":"","path":"php/pdf_fit_table.html","desc":"Place table on page"}, "pdf_fit_textflow":{"name":"pdf_fit_textflow","type":"","path":"php/pdf_fit_textflow.html","desc":"Format textflow in rectangular area"}, "pdf_fit_textline":{"name":"pdf_fit_textline","type":"","path":"php/pdf_fit_textline.html","desc":"Place single line of text"}, "pdf_get_apiname":{"name":"pdf_get_apiname","type":"","path":"php/pdf_get_apiname.html","desc":"Get name of unsuccessfull API function"}, "pdf_get_buffer":{"name":"pdf_get_buffer","type":"","path":"php/pdf_get_buffer.html","desc":"Get PDF output buffer"}, "pdf_get_errmsg":{"name":"pdf_get_errmsg","type":"","path":"php/pdf_get_errmsg.html","desc":"Get error text"}, "pdf_get_errnum":{"name":"pdf_get_errnum","type":"","path":"php/pdf_get_errnum.html","desc":"Get error number"}, "pdf_get_font":{"name":"pdf_get_font","type":"","path":"php/pdf_get_font.html","desc":"Get font [deprecated]"}, "pdf_get_fontname":{"name":"pdf_get_fontname","type":"","path":"php/pdf_get_fontname.html","desc":"Get font name [deprecated]"}, "pdf_get_fontsize":{"name":"pdf_get_fontsize","type":"","path":"php/pdf_get_fontsize.html","desc":"Font handling [deprecated]"}, "pdf_get_image_height":{"name":"pdf_get_image_height","type":"","path":"php/pdf_get_image_height.html","desc":"Get image height [deprecated]"}, "pdf_get_image_width":{"name":"pdf_get_image_width","type":"","path":"php/pdf_get_image_width.html","desc":"Get image width [deprecated]"}, "pdf_get_majorversion":{"name":"pdf_get_majorversion","type":"","path":"php/pdf_get_majorversion.html","desc":"Get major version number [deprecated]"}, "pdf_get_minorversion":{"name":"pdf_get_minorversion","type":"","path":"php/pdf_get_minorversion.html","desc":"Get minor version number [deprecated]"}, "pdf_get_parameter":{"name":"pdf_get_parameter","type":"","path":"php/pdf_get_parameter.html","desc":"Get string parameter"}, "pdf_get_pdi_parameter":{"name":"pdf_get_pdi_parameter","type":"","path":"php/pdf_get_pdi_parameter.html","desc":"Get PDI string parameter [deprecated]"}, "pdf_get_pdi_value":{"name":"pdf_get_pdi_value","type":"","path":"php/pdf_get_pdi_value.html","desc":"Get PDI numerical parameter [deprecated]"}, "pdf_get_value":{"name":"pdf_get_value","type":"","path":"php/pdf_get_value.html","desc":"Get numerical parameter"}, "pdf_info_font":{"name":"pdf_info_font","type":"","path":"php/pdf_info_font.html","desc":"Query detailed information about a loaded font"}, "pdf_info_matchbox":{"name":"pdf_info_matchbox","type":"","path":"php/pdf_info_matchbox.html","desc":"Query matchbox information"}, "pdf_info_table":{"name":"pdf_info_table","type":"","path":"php/pdf_info_table.html","desc":"Retrieve table information"}, "pdf_info_textflow":{"name":"pdf_info_textflow","type":"","path":"php/pdf_info_textflow.html","desc":"Query textflow state"}, "pdf_info_textline":{"name":"pdf_info_textline","type":"","path":"php/pdf_info_textline.html","desc":"Perform textline formatting and query metrics"}, "pdf_initgraphics":{"name":"pdf_initgraphics","type":"","path":"php/pdf_initgraphics.html","desc":"Reset graphic state"}, "pdf_lineto":{"name":"pdf_lineto","type":"","path":"php/pdf_lineto.html","desc":"Draw a line"}, "pdf_load_3ddata":{"name":"pdf_load_3ddata","type":"","path":"php/pdf_load_3ddata.html","desc":"Load 3D model"}, "pdf_load_font":{"name":"pdf_load_font","type":"","path":"php/pdf_load_font.html","desc":"Search and prepare font"}, "pdf_load_iccprofile":{"name":"pdf_load_iccprofile","type":"","path":"php/pdf_load_iccprofile.html","desc":"Search and prepare ICC profile"}, "pdf_load_image":{"name":"pdf_load_image","type":"","path":"php/pdf_load_image.html","desc":"打开一个图像文件"}, "pdf_makespotcolor":{"name":"pdf_makespotcolor","type":"","path":"php/pdf_makespotcolor.html","desc":"Make spot color"}, "pdf_moveto":{"name":"pdf_moveto","type":"","path":"php/pdf_moveto.html","desc":"Set current point"}, "pdf_new":{"name":"pdf_new","type":"","path":"php/pdf_new.html","desc":"Create PDFlib object"}, "pdf_open_ccitt":{"name":"pdf_open_ccitt","type":"","path":"php/pdf_open_ccitt.html","desc":"Open raw CCITT image [deprecated]"}, "pdf_open_file":{"name":"pdf_open_file","type":"","path":"php/pdf_open_file.html","desc":"Create PDF file [deprecated]"}, "pdf_open_gif":{"name":"pdf_open_gif","type":"","path":"php/pdf_open_gif.html","desc":"Open GIF image [deprecated]"}, "pdf_open_image":{"name":"pdf_open_image","type":"","path":"php/pdf_open_image.html","desc":"Use image data [deprecated]"}, "pdf_open_image_file":{"name":"pdf_open_image_file","type":"","path":"php/pdf_open_image_file.html","desc":"Read image from file [deprecated]"}, "pdf_open_jpeg":{"name":"pdf_open_jpeg","type":"","path":"php/pdf_open_jpeg.html","desc":"Open JPEG image [deprecated]"}, "pdf_open_memory_image":{"name":"pdf_open_memory_image","type":"","path":"php/pdf_open_memory_image.html","desc":"Open image created with PHP's image functions [not supported]"}, "pdf_open_pdi":{"name":"pdf_open_pdi","type":"","path":"php/pdf_open_pdi.html","desc":"Open PDF file [deprecated]"}, "pdf_open_pdi_document":{"name":"pdf_open_pdi_document","type":"","path":"php/pdf_open_pdi_document.html","desc":"Prepare a pdi document"}, "pdf_open_pdi_page":{"name":"pdf_open_pdi_page","type":"","path":"php/pdf_open_pdi_page.html","desc":"Prepare a page"}, "pdf_open_tiff":{"name":"pdf_open_tiff","type":"","path":"php/pdf_open_tiff.html","desc":"Open TIFF image [deprecated]"}, "pdf_pcos_get_number":{"name":"pdf_pcos_get_number","type":"","path":"php/pdf_pcos_get_number.html","desc":"Get value of pCOS path with type number or boolean"}, "pdf_pcos_get_stream":{"name":"pdf_pcos_get_stream","type":"","path":"php/pdf_pcos_get_stream.html","desc":"Get contents of pCOS path with type stream, fstream, or string"}, "pdf_pcos_get_string":{"name":"pdf_pcos_get_string","type":"","path":"php/pdf_pcos_get_string.html","desc":"Get value of pCOS path with type name, string, or boolean"}, "pdf_place_image":{"name":"pdf_place_image","type":"","path":"php/pdf_place_image.html","desc":"Place image on the page [deprecated]"}, "pdf_place_pdi_page":{"name":"pdf_place_pdi_page","type":"","path":"php/pdf_place_pdi_page.html","desc":"Place PDF page [deprecated]"}, "pdf_process_pdi":{"name":"pdf_process_pdi","type":"","path":"php/pdf_process_pdi.html","desc":"Process imported PDF document"}, "pdf_rect":{"name":"pdf_rect","type":"","path":"php/pdf_rect.html","desc":"Draw rectangle"}, "pdf_restore":{"name":"pdf_restore","type":"","path":"php/pdf_restore.html","desc":"Restore graphics state"}, "pdf_resume_page":{"name":"pdf_resume_page","type":"","path":"php/pdf_resume_page.html","desc":"Resume page"}, "pdf_rotate":{"name":"pdf_rotate","type":"","path":"php/pdf_rotate.html","desc":"Rotate coordinate system"}, "pdf_save":{"name":"pdf_save","type":"","path":"php/pdf_save.html","desc":"Save graphics state"}, "pdf_scale":{"name":"pdf_scale","type":"","path":"php/pdf_scale.html","desc":"Scale coordinate system"}, "pdf_setcolor":{"name":"pdf_setcolor","type":"","path":"php/pdf_setcolor.html","desc":"Set fill and stroke color"}, "pdf_setdash":{"name":"pdf_setdash","type":"","path":"php/pdf_setdash.html","desc":"Set simple dash pattern"}, "pdf_setdashpattern":{"name":"pdf_setdashpattern","type":"","path":"php/pdf_setdashpattern.html","desc":"Set dash pattern"}, "pdf_setflat":{"name":"pdf_setflat","type":"","path":"php/pdf_setflat.html","desc":"Set flatness"}, "pdf_setfont":{"name":"pdf_setfont","type":"","path":"php/pdf_setfont.html","desc":"Set font"}, "pdf_setgray":{"name":"pdf_setgray","type":"","path":"php/pdf_setgray.html","desc":"Set color to gray [deprecated]"}, "pdf_setgray_fill":{"name":"pdf_setgray_fill","type":"","path":"php/pdf_setgray_fill.html","desc":"Set fill color to gray [deprecated]"}, "pdf_setgray_stroke":{"name":"pdf_setgray_stroke","type":"","path":"php/pdf_setgray_stroke.html","desc":"Set stroke color to gray [deprecated]"}, "pdf_setlinecap":{"name":"pdf_setlinecap","type":"","path":"php/pdf_setlinecap.html","desc":"Set linecap parameter"}, "pdf_setlinejoin":{"name":"pdf_setlinejoin","type":"","path":"php/pdf_setlinejoin.html","desc":"Set linejoin parameter"}, "pdf_setlinewidth":{"name":"pdf_setlinewidth","type":"","path":"php/pdf_setlinewidth.html","desc":"Set line width"}, "pdf_setmatrix":{"name":"pdf_setmatrix","type":"","path":"php/pdf_setmatrix.html","desc":"Set current transformation matrix"}, "pdf_setmiterlimit":{"name":"pdf_setmiterlimit","type":"","path":"php/pdf_setmiterlimit.html","desc":"Set miter limit"}, "pdf_setpolydash":{"name":"pdf_setpolydash","type":"","path":"php/pdf_setpolydash.html","desc":"Set complicated dash pattern [deprecated]"}, "pdf_setrgbcolor":{"name":"pdf_setrgbcolor","type":"","path":"php/pdf_setrgbcolor.html","desc":"Set fill and stroke rgb color values [deprecated]"}, "pdf_setrgbcolor_fill":{"name":"pdf_setrgbcolor_fill","type":"","path":"php/pdf_setrgbcolor_fill.html","desc":"Set fill rgb color values [deprecated]"}, "pdf_setrgbcolor_stroke":{"name":"pdf_setrgbcolor_stroke","type":"","path":"php/pdf_setrgbcolor_stroke.html","desc":"Set stroke rgb color values [deprecated]"}, "pdf_set_border_color":{"name":"pdf_set_border_color","type":"","path":"php/pdf_set_border_color.html","desc":"Set border color of annotations [deprecated]"}, "pdf_set_border_dash":{"name":"pdf_set_border_dash","type":"","path":"php/pdf_set_border_dash.html","desc":"Set border dash style of annotations [deprecated]"}, "pdf_set_border_style":{"name":"pdf_set_border_style","type":"","path":"php/pdf_set_border_style.html","desc":"Set border style of annotations [deprecated]"}, "pdf_set_char_spacing":{"name":"pdf_set_char_spacing","type":"","path":"php/pdf_set_char_spacing.html","desc":"Set character spacing [deprecated]"}, "pdf_set_duration":{"name":"pdf_set_duration","type":"","path":"php/pdf_set_duration.html","desc":"Set duration between pages [deprecated]"}, "pdf_set_gstate":{"name":"pdf_set_gstate","type":"","path":"php/pdf_set_gstate.html","desc":"Activate graphics state object"}, "pdf_set_horiz_scaling":{"name":"pdf_set_horiz_scaling","type":"","path":"php/pdf_set_horiz_scaling.html","desc":"Set horizontal text scaling [deprecated]"}, "pdf_set_info":{"name":"pdf_set_info","type":"","path":"php/pdf_set_info.html","desc":"Fill document info field"}, "pdf_set_info_author":{"name":"pdf_set_info_author","type":"","path":"php/pdf_set_info_author.html","desc":"Fill the author document info field [deprecated]"}, "pdf_set_info_creator":{"name":"pdf_set_info_creator","type":"","path":"php/pdf_set_info_creator.html","desc":"Fill the creator document info field [deprecated]"}, "pdf_set_info_keywords":{"name":"pdf_set_info_keywords","type":"","path":"php/pdf_set_info_keywords.html","desc":"Fill the keywords document info field [deprecated]"}, "pdf_set_info_subject":{"name":"pdf_set_info_subject","type":"","path":"php/pdf_set_info_subject.html","desc":"Fill the subject document info field [deprecated]"}, "pdf_set_info_title":{"name":"pdf_set_info_title","type":"","path":"php/pdf_set_info_title.html","desc":"Fill the title document info field [deprecated]"}, "pdf_set_layer_dependency":{"name":"pdf_set_layer_dependency","type":"","path":"php/pdf_set_layer_dependency.html","desc":"Define relationships among layers"}, "pdf_set_leading":{"name":"pdf_set_leading","type":"","path":"php/pdf_set_leading.html","desc":"Set distance between text lines [deprecated]"}, "pdf_set_parameter":{"name":"pdf_set_parameter","type":"","path":"php/pdf_set_parameter.html","desc":"Set string parameter"}, "pdf_set_text_matrix":{"name":"pdf_set_text_matrix","type":"","path":"php/pdf_set_text_matrix.html","desc":"Set text matrix [deprecated]"}, "pdf_set_text_pos":{"name":"pdf_set_text_pos","type":"","path":"php/pdf_set_text_pos.html","desc":"Set text position"}, "pdf_set_text_rendering":{"name":"pdf_set_text_rendering","type":"","path":"php/pdf_set_text_rendering.html","desc":"Determine text rendering [deprecated]"}, "pdf_set_text_rise":{"name":"pdf_set_text_rise","type":"","path":"php/pdf_set_text_rise.html","desc":"Set text rise [deprecated]"}, "pdf_set_value":{"name":"pdf_set_value","type":"","path":"php/pdf_set_value.html","desc":"Set numerical parameter"}, "pdf_set_word_spacing":{"name":"pdf_set_word_spacing","type":"","path":"php/pdf_set_word_spacing.html","desc":"Set spacing between words [deprecated]"}, "pdf_shading":{"name":"pdf_shading","type":"","path":"php/pdf_shading.html","desc":"Define blend"}, "pdf_shading_pattern":{"name":"pdf_shading_pattern","type":"","path":"php/pdf_shading_pattern.html","desc":"Define shading pattern"}, "pdf_shfill":{"name":"pdf_shfill","type":"","path":"php/pdf_shfill.html","desc":"Fill area with shading"}, "pdf_show":{"name":"pdf_show","type":"","path":"php/pdf_show.html","desc":"Output text at current position"}, "pdf_show_boxed":{"name":"pdf_show_boxed","type":"","path":"php/pdf_show_boxed.html","desc":"Output text in a box [deprecated]"}, "pdf_show_xy":{"name":"pdf_show_xy","type":"","path":"php/pdf_show_xy.html","desc":"Output text at given position"}, "pdf_skew":{"name":"pdf_skew","type":"","path":"php/pdf_skew.html","desc":"Skew the coordinate system"}, "pdf_stringwidth":{"name":"pdf_stringwidth","type":"","path":"php/pdf_stringwidth.html","desc":"Return width of text"}, "pdf_stroke":{"name":"pdf_stroke","type":"","path":"php/pdf_stroke.html","desc":"Stroke path"}, "pdf_suspend_page":{"name":"pdf_suspend_page","type":"","path":"php/pdf_suspend_page.html","desc":"Suspend page"}, "pdf_translate":{"name":"pdf_translate","type":"","path":"php/pdf_translate.html","desc":"Set origin of coordinate system"}, "pdf_utf16_to_utf8":{"name":"pdf_utf16_to_utf8","type":"","path":"php/pdf_utf16_to_utf8.html","desc":"Convert string from UTF-16 to UTF-8"}, "pdf_utf32_to_utf16":{"name":"pdf_utf32_to_utf16","type":"","path":"php/pdf_utf32_to_utf16.html","desc":"Convert string from UTF-32 to UTF-16"}, "pdf_utf8_to_utf16":{"name":"pdf_utf8_to_utf16","type":"","path":"php/pdf_utf8_to_utf16.html","desc":"Convert string from UTF-8 to UTF-16"}, "pfsockopen":{"name":"pfsockopen","type":"","path":"php/pfsockopen.html","desc":"打开一个持久的网络连接或者Unix套接字连接。"}, "pg_affected_rows":{"name":"pg_affected_rows","type":"","path":"php/pg_affected_rows.html","desc":"返回受影响的记录数目"}, "pg_cancel_query":{"name":"pg_cancel_query","type":"","path":"php/pg_cancel_query.html","desc":"取消异步查询"}, "pg_client_encoding":{"name":"pg_client_encoding","type":"","path":"php/pg_client_encoding.html","desc":"取得客户端编码方式"}, "pg_close":{"name":"pg_close","type":"","path":"php/pg_close.html","desc":"关闭一个 PostgreSQL 连接"}, "pg_connect":{"name":"pg_connect","type":"","path":"php/pg_connect.html","desc":"打开一个 PostgreSQL 连接"}, "pg_connection_busy":{"name":"pg_connection_busy","type":"","path":"php/pg_connection_busy.html","desc":"获知连接是否为忙"}, "pg_connection_reset":{"name":"pg_connection_reset","type":"","path":"php/pg_connection_reset.html","desc":"重置连接(再次连接)"}, "pg_connection_status":{"name":"pg_connection_status","type":"","path":"php/pg_connection_status.html","desc":"获得连接状态"}, "pg_connect_poll":{"name":"pg_connect_poll","type":"","path":"php/pg_connect_poll.html","desc":"正在进行尝试轮询 PostgreSQL 链接状态。"}, "pg_consume_input":{"name":"pg_consume_input","type":"","path":"php/pg_consume_input.html","desc":"Reads input on the connection"}, "pg_convert":{"name":"pg_convert","type":"","path":"php/pg_convert.html","desc":"将关联的数组值转换为适合 SQL 语句的格式。"}, "pg_copy_from":{"name":"pg_copy_from","type":"","path":"php/pg_copy_from.html","desc":"根据数组将记录插入表中"}, "pg_copy_to":{"name":"pg_copy_to","type":"","path":"php/pg_copy_to.html","desc":"将一个表拷贝到数组中"}, "pg_dbname":{"name":"pg_dbname","type":"","path":"php/pg_dbname.html","desc":"获得数据库名"}, "pg_delete":{"name":"pg_delete","type":"","path":"php/pg_delete.html","desc":"删除记录"}, "pg_end_copy":{"name":"pg_end_copy","type":"","path":"php/pg_end_copy.html","desc":"与 PostgreSQL 后端同步"}, "pg_escape_bytea":{"name":"pg_escape_bytea","type":"","path":"php/pg_escape_bytea.html","desc":"转义 bytea 类型的二进制数据"}, "pg_escape_identifier":{"name":"pg_escape_identifier","type":"","path":"php/pg_escape_identifier.html","desc":"Escape a identifier for insertion into a text field"}, "pg_escape_literal":{"name":"pg_escape_literal","type":"","path":"php/pg_escape_literal.html","desc":"Escape a literal for insertion into a text field"}, "pg_escape_string":{"name":"pg_escape_string","type":"","path":"php/pg_escape_string.html","desc":"转义 textchar 类型的字符串"}, "pg_execute":{"name":"pg_execute","type":"","path":"php/pg_execute.html","desc":"Sends a request to execute a prepared statement with given parameters, and waits for the result"}, "pg_fetch_all":{"name":"pg_fetch_all","type":"","path":"php/pg_fetch_all.html","desc":"从结果中提取所有行作为一个数组"}, "pg_fetch_all_columns":{"name":"pg_fetch_all_columns","type":"","path":"php/pg_fetch_all_columns.html","desc":"Fetches all rows in a particular result column as an array"}, "pg_fetch_array":{"name":"pg_fetch_array","type":"","path":"php/pg_fetch_array.html","desc":"提取一行作为数组"}, "pg_fetch_assoc":{"name":"pg_fetch_assoc","type":"","path":"php/pg_fetch_assoc.html","desc":"提取一行作为关联数组"}, "pg_fetch_object":{"name":"pg_fetch_object","type":"","path":"php/pg_fetch_object.html","desc":"提取一行作为对象"}, "pg_fetch_result":{"name":"pg_fetch_result","type":"","path":"php/pg_fetch_result.html","desc":"从结果资源中返回值"}, "pg_fetch_row":{"name":"pg_fetch_row","type":"","path":"php/pg_fetch_row.html","desc":"提取一行作为枚举数组"}, "pg_field_is_null":{"name":"pg_field_is_null","type":"","path":"php/pg_field_is_null.html","desc":"测试字段是否为 NULL"}, "pg_field_name":{"name":"pg_field_name","type":"","path":"php/pg_field_name.html","desc":"返回字段的名字"}, "pg_field_num":{"name":"pg_field_num","type":"","path":"php/pg_field_num.html","desc":"返回字段的编号"}, "pg_field_prtlen":{"name":"pg_field_prtlen","type":"","path":"php/pg_field_prtlen.html","desc":"返回打印出来的长度"}, "pg_field_size":{"name":"pg_field_size","type":"","path":"php/pg_field_size.html","desc":"返回指定字段占用内部存储空间的大小"}, "pg_field_table":{"name":"pg_field_table","type":"","path":"php/pg_field_table.html","desc":"Returns the name or oid of the tables field"}, "pg_field_type":{"name":"pg_field_type","type":"","path":"php/pg_field_type.html","desc":"返回相应字段的类型名称"}, "pg_field_type_oid":{"name":"pg_field_type_oid","type":"","path":"php/pg_field_type_oid.html","desc":"Returns the type ID (OID) for the corresponding field number"}, "pg_flush":{"name":"pg_flush","type":"","path":"php/pg_flush.html","desc":"刷新链接中已处理的数据查询"}, "pg_free_result":{"name":"pg_free_result","type":"","path":"php/pg_free_result.html","desc":"释放查询结果占用的内存"}, "pg_get_notify":{"name":"pg_get_notify","type":"","path":"php/pg_get_notify.html","desc":"Ping 数据库连接"}, "pg_get_pid":{"name":"pg_get_pid","type":"","path":"php/pg_get_pid.html","desc":"Ping 数据库连接"}, "pg_get_result":{"name":"pg_get_result","type":"","path":"php/pg_get_result.html","desc":"取得异步查询结果"}, "pg_host":{"name":"pg_host","type":"","path":"php/pg_host.html","desc":"返回和某连接关联的主机名"}, "pg_insert":{"name":"pg_insert","type":"","path":"php/pg_insert.html","desc":"将数组插入到表中"}, "pg_last_error":{"name":"pg_last_error","type":"","path":"php/pg_last_error.html","desc":"得到某连接的最后一条错误信息"}, "pg_last_notice":{"name":"pg_last_notice","type":"","path":"php/pg_last_notice.html","desc":"返回 PostgreSQL 服务器最新一条公告信息"}, "pg_last_oid":{"name":"pg_last_oid","type":"","path":"php/pg_last_oid.html","desc":"返回上一个对象的 oid"}, "pg_lo_close":{"name":"pg_lo_close","type":"","path":"php/pg_lo_close.html","desc":"关闭一个大型对象"}, "pg_lo_create":{"name":"pg_lo_create","type":"","path":"php/pg_lo_create.html","desc":"新建一个大型对象"}, "pg_lo_export":{"name":"pg_lo_export","type":"","path":"php/pg_lo_export.html","desc":"将大型对象导出到文件"}, "pg_lo_import":{"name":"pg_lo_import","type":"","path":"php/pg_lo_import.html","desc":"将文件导入为大型对象"}, "pg_lo_open":{"name":"pg_lo_open","type":"","path":"php/pg_lo_open.html","desc":"打开一个大型对象"}, "pg_lo_read":{"name":"pg_lo_read","type":"","path":"php/pg_lo_read.html","desc":"从大型对象中读入数据"}, "pg_lo_read_all":{"name":"pg_lo_read_all","type":"","path":"php/pg_lo_read_all.html","desc":"读入整个大型对象并直接发送给浏览器"}, "pg_lo_seek":{"name":"pg_lo_seek","type":"","path":"php/pg_lo_seek.html","desc":"移动大型对象中的指针"}, "pg_lo_tell":{"name":"pg_lo_tell","type":"","path":"php/pg_lo_tell.html","desc":"返回大型对象的当前指针位置"}, "pg_lo_truncate":{"name":"pg_lo_truncate","type":"","path":"php/pg_lo_truncate.html","desc":"Truncates a large object"}, "pg_lo_unlink":{"name":"pg_lo_unlink","type":"","path":"php/pg_lo_unlink.html","desc":"删除一个大型对象"}, "pg_lo_write":{"name":"pg_lo_write","type":"","path":"php/pg_lo_write.html","desc":"向大型对象写入数据"}, "pg_meta_data":{"name":"pg_meta_data","type":"","path":"php/pg_meta_data.html","desc":"获得表的元数据"}, "pg_num_fields":{"name":"pg_num_fields","type":"","path":"php/pg_num_fields.html","desc":"返回字段的数目"}, "pg_num_rows":{"name":"pg_num_rows","type":"","path":"php/pg_num_rows.html","desc":"返回行的数目"}, "pg_options":{"name":"pg_options","type":"","path":"php/pg_options.html","desc":"获得和连接有关的选项"}, "pg_parameter_status":{"name":"pg_parameter_status","type":"","path":"php/pg_parameter_status.html","desc":"Looks up a current parameter setting of the server"}, "pg_pconnect":{"name":"pg_pconnect","type":"","path":"php/pg_pconnect.html","desc":"打开一个持久的 PostgreSQL 连接"}, "pg_ping":{"name":"pg_ping","type":"","path":"php/pg_ping.html","desc":"Ping 数据库连接"}, "pg_port":{"name":"pg_port","type":"","path":"php/pg_port.html","desc":"返回该连接的端口号"}, "pg_prepare":{"name":"pg_prepare","type":"","path":"php/pg_prepare.html","desc":"Submits a request to create a prepared statement "}, "pg_put_line":{"name":"pg_put_line","type":"","path":"php/pg_put_line.html","desc":"向 PostgreSQL 后端发送以 NULL 结尾的字符串"}, "pg_query":{"name":"pg_query","type":"","path":"php/pg_query.html","desc":"执行查询"}, "pg_query_params":{"name":"pg_query_params","type":"","path":"php/pg_query_params.html","desc":"Submits a command to the server and waits for the result, with the ability to pass parameters separately from the SQL command text"}, "pg_result_error":{"name":"pg_result_error","type":"","path":"php/pg_result_error.html","desc":"获得查询结果的错误信息"}, "pg_result_error_field":{"name":"pg_result_error_field","type":"","path":"php/pg_result_error_field.html","desc":"Returns an individual field of an error report"}, "pg_result_seek":{"name":"pg_result_seek","type":"","path":"php/pg_result_seek.html","desc":"在结果资源中设定内部行偏移量"}, "pg_result_status":{"name":"pg_result_status","type":"","path":"php/pg_result_status.html","desc":"获得查询结果的状态"}, "pg_select":{"name":"pg_select","type":"","path":"php/pg_select.html","desc":"选择记录"}, "pg_send_execute":{"name":"pg_send_execute","type":"","path":"php/pg_send_execute.html","desc":"Sends a request to execute a prepared statement with given parameters, without waiting for the result(s)"}, "pg_send_prepare":{"name":"pg_send_prepare","type":"","path":"php/pg_send_prepare.html","desc":"Sends a request to create a prepared statement with the given parameters, without waiting for completion"}, "pg_send_query":{"name":"pg_send_query","type":"","path":"php/pg_send_query.html","desc":"发送异步查询"}, "pg_send_query_params":{"name":"pg_send_query_params","type":"","path":"php/pg_send_query_params.html","desc":"Submits a command and separate parameters to the server without waiting for the result(s)"}, "pg_set_client_encoding":{"name":"pg_set_client_encoding","type":"","path":"php/pg_set_client_encoding.html","desc":"设定客户端编码"}, "pg_set_error_verbosity":{"name":"pg_set_error_verbosity","type":"","path":"php/pg_set_error_verbosity.html","desc":"Determines the verbosity of messages returned by pg_la"}, "pg_socket":{"name":"pg_socket","type":"","path":"php/pg_socket.html","desc":"Get a read only handle to the socket underlying a PostgreSQL connection"}, "pg_trace":{"name":"pg_trace","type":"","path":"php/pg_trace.html","desc":"启动一个 PostgreSQL 连接的追踪功能"}, "pg_transaction_status":{"name":"pg_transaction_status","type":"","path":"php/pg_transaction_status.html","desc":"Returns the current in-transaction status of the server"}, "pg_tty":{"name":"pg_tty","type":"","path":"php/pg_tty.html","desc":"返回该连接的 tty 号"}, "pg_unescape_bytea":{"name":"pg_unescape_bytea","type":"","path":"php/pg_unescape_bytea.html","desc":"取消 bytea 类型中的字符串转义"}, "pg_untrace":{"name":"pg_untrace","type":"","path":"php/pg_untrace.html","desc":"关闭 PostgreSQL 连接的追踪功能"}, "pg_update":{"name":"pg_update","type":"","path":"php/pg_update.html","desc":"更新表"}, "pg_version":{"name":"pg_version","type":"","path":"php/pg_version.html","desc":"Returns an array with client, protocol and server version (when available)"}, "phpcredits":{"name":"phpcredits","type":"","path":"php/phpcredits.html","desc":"打印 PHP 贡献者名单"}, "phpdbg_break_file":{"name":"phpdbg_break_file","type":"","path":"php/phpdbg_break_file.html","desc":"Inserts a breakpoint at a line in a file"}, "phpdbg_break_function":{"name":"phpdbg_break_function","type":"","path":"php/phpdbg_break_function.html","desc":"Inserts a breakpoint at entry to a function"}, "phpdbg_break_method":{"name":"phpdbg_break_method","type":"","path":"php/phpdbg_break_method.html","desc":"Inserts a breakpoint at entry to a method"}, "phpdbg_break_next":{"name":"phpdbg_break_next","type":"","path":"php/phpdbg_break_next.html","desc":"Inserts a breakpoint at the next opcode"}, "phpdbg_clear":{"name":"phpdbg_clear","type":"","path":"php/phpdbg_clear.html","desc":"Clears all breakpoints"}, "phpdbg_color":{"name":"phpdbg_color","type":"","path":"php/phpdbg_color.html","desc":"Sets the color of certain elements"}, "phpdbg_end_oplog":{"name":"phpdbg_end_oplog","type":"","path":"php/phpdbg_end_oplog.html","desc":"说明"}, "phpdbg_exec":{"name":"phpdbg_exec","type":"","path":"php/phpdbg_exec.html","desc":"Attempts to set the execution context"}, "phpdbg_get_executable":{"name":"phpdbg_get_executable","type":"","path":"php/phpdbg_get_executable.html","desc":"说明"}, "phpdbg_prompt":{"name":"phpdbg_prompt","type":"","path":"php/phpdbg_prompt.html","desc":"Sets the command prompt"}, "phpdbg_start_oplog":{"name":"phpdbg_start_oplog","type":"","path":"php/phpdbg_start_oplog.html","desc":"说明"}, "phpinfo":{"name":"phpinfo","type":"","path":"php/phpinfo.html","desc":"输出关于 PHP 配置的信息"}, "phpversion":{"name":"phpversion","type":"","path":"php/phpversion.html","desc":"获取当前的PHP版本"}, "php_check_syntax":{"name":"php_check_syntax","type":"","path":"php/php_check_syntax.html","desc":"检查PHP的语法(并执行)指定的文件"}, "php_ini_loaded_file":{"name":"php_ini_loaded_file","type":"","path":"php/php_ini_loaded_file.html","desc":"取得已加载的 php.ini 文件的路径"}, "php_ini_scanned_files":{"name":"php_ini_scanned_files","type":"","path":"php/php_ini_scanned_files.html","desc":"返回从额外 ini 目录里解析的 .ini 文件列表"}, "php_logo_guid":{"name":"php_logo_guid","type":"","path":"php/php_logo_guid.html","desc":"获取 logo 的 guid"}, "php_sapi_name":{"name":"php_sapi_name","type":"","path":"php/php_sapi_name.html","desc":"返回 web 服务器和 PHP 之间的接口类型"}, "php_strip_whitespace":{"name":"php_strip_whitespace","type":"","path":"php/php_strip_whitespace.html","desc":"返回删除注释和空格后的PHP源码"}, "php_uname":{"name":"php_uname","type":"","path":"php/php_uname.html","desc":"返回运行 PHP 的系统的有关信息"}, "pi":{"name":"pi","type":"","path":"php/pi.html","desc":"得到圆周率值"}, "png2wbmp":{"name":"png2wbmp","type":"","path":"php/png2wbmp.html","desc":"将 PNG 图像文件转换为 WBMP 图像文件"}, "popen":{"name":"popen","type":"","path":"php/popen.html","desc":"打开进程文件指针"}, "pos":{"name":"pos","type":"","path":"php/pos.html","desc":"current 的别名"}, "posix_access":{"name":"posix_access","type":"","path":"php/posix_access.html","desc":"Determine accessibility of a file"}, "posix_ctermid":{"name":"posix_ctermid","type":"","path":"php/posix_ctermid.html","desc":"Get path name of controlling terminal"}, "posix_errno":{"name":"posix_errno","type":"","path":"php/posix_errno.html","desc":"别名 posix_get_last_error"}, "posix_getcwd":{"name":"posix_getcwd","type":"","path":"php/posix_getcwd.html","desc":"Pathname of current directory"}, "posix_getegid":{"name":"posix_getegid","type":"","path":"php/posix_getegid.html","desc":"Return the effective group ID of the current process"}, "posix_geteuid":{"name":"posix_geteuid","type":"","path":"php/posix_geteuid.html","desc":"Return the effective user ID of the current process"}, "posix_getgid":{"name":"posix_getgid","type":"","path":"php/posix_getgid.html","desc":"Return the real group ID of the current process"}, "posix_getgrgid":{"name":"posix_getgrgid","type":"","path":"php/posix_getgrgid.html","desc":"Return info about a group by group id"}, "posix_getgrnam":{"name":"posix_getgrnam","type":"","path":"php/posix_getgrnam.html","desc":"Return info about a group by name"}, "posix_getgroups":{"name":"posix_getgroups","type":"","path":"php/posix_getgroups.html","desc":"Return the group set of the current process"}, "posix_getlogin":{"name":"posix_getlogin","type":"","path":"php/posix_getlogin.html","desc":"Return login name"}, "posix_getpgid":{"name":"posix_getpgid","type":"","path":"php/posix_getpgid.html","desc":"Get process group id for job control"}, "posix_getpgrp":{"name":"posix_getpgrp","type":"","path":"php/posix_getpgrp.html","desc":"Return the current process group identifier"}, "posix_getpid":{"name":"posix_getpid","type":"","path":"php/posix_getpid.html","desc":"返回当前进程 id"}, "posix_getppid":{"name":"posix_getppid","type":"","path":"php/posix_getppid.html","desc":"Return the parent process identifier"}, "posix_getpwnam":{"name":"posix_getpwnam","type":"","path":"php/posix_getpwnam.html","desc":"Return info about a user by username"}, "posix_getpwuid":{"name":"posix_getpwuid","type":"","path":"php/posix_getpwuid.html","desc":"Return info about a user by user id"}, "posix_getrlimit":{"name":"posix_getrlimit","type":"","path":"php/posix_getrlimit.html","desc":"Return info about system resource limits"}, "posix_getsid":{"name":"posix_getsid","type":"","path":"php/posix_getsid.html","desc":"Get the current sid of the process"}, "posix_getuid":{"name":"posix_getuid","type":"","path":"php/posix_getuid.html","desc":"Return the real user ID of the current process"}, "posix_get_last_error":{"name":"posix_get_last_error","type":"","path":"php/posix_get_last_error.html","desc":"Retrieve the error number set by the last posix function that failed"}, "posix_initgroups":{"name":"posix_initgroups","type":"","path":"php/posix_initgroups.html","desc":"Calculate the group access list"}, "posix_isatty":{"name":"posix_isatty","type":"","path":"php/posix_isatty.html","desc":"Determine if a file descriptor is an interactive terminal"}, "posix_kill":{"name":"posix_kill","type":"","path":"php/posix_kill.html","desc":"Send a signal to a process"}, "posix_mkfifo":{"name":"posix_mkfifo","type":"","path":"php/posix_mkfifo.html","desc":"Create a fifo special file (a named pipe)"}, "posix_mknod":{"name":"posix_mknod","type":"","path":"php/posix_mknod.html","desc":"Create a special or ordinary file (POSIX.1)"}, "posix_setegid":{"name":"posix_setegid","type":"","path":"php/posix_setegid.html","desc":"Set the effective GID of the current process"}, "posix_seteuid":{"name":"posix_seteuid","type":"","path":"php/posix_seteuid.html","desc":"Set the effective UID of the current process"}, "posix_setgid":{"name":"posix_setgid","type":"","path":"php/posix_setgid.html","desc":"Set the GID of the current process"}, "posix_setpgid":{"name":"posix_setpgid","type":"","path":"php/posix_setpgid.html","desc":"Set process group id for job control"}, "posix_setrlimit":{"name":"posix_setrlimit","type":"","path":"php/posix_setrlimit.html","desc":"Set system resource limits"}, "posix_setsid":{"name":"posix_setsid","type":"","path":"php/posix_setsid.html","desc":"Make the current process a session leader"}, "posix_setuid":{"name":"posix_setuid","type":"","path":"php/posix_setuid.html","desc":"Set the UID of the current process"}, "posix_strerror":{"name":"posix_strerror","type":"","path":"php/posix_strerror.html","desc":"Retrieve the system error message associated with the given errno"}, "posix_times":{"name":"posix_times","type":"","path":"php/posix_times.html","desc":"Get process times"}, "posix_ttyname":{"name":"posix_ttyname","type":"","path":"php/posix_ttyname.html","desc":"Determine terminal device name"}, "posix_uname":{"name":"posix_uname","type":"","path":"php/posix_uname.html","desc":"Get system name"}, "pow":{"name":"pow","type":"","path":"php/pow.html","desc":"指数表达式"}, "preg_filter":{"name":"preg_filter","type":"","path":"php/preg_filter.html","desc":"执行一个正则表达式搜索和替换"}, "preg_grep":{"name":"preg_grep","type":"","path":"php/preg_grep.html","desc":"返回匹配模式的数组条目"}, "preg_last_error":{"name":"preg_last_error","type":"","path":"php/preg_last_error.html","desc":"返回最后一个PCRE正则执行产生的错误代码"}, "preg_match":{"name":"preg_match","type":"","path":"php/preg_match.html","desc":"执行匹配正则表达式"}, "preg_match_all":{"name":"preg_match_all","type":"","path":"php/preg_match_all.html","desc":"执行一个全局正则表达式匹配"}, "preg_quote":{"name":"preg_quote","type":"","path":"php/preg_quote.html","desc":"转义正则表达式字符"}, "preg_replace":{"name":"preg_replace","type":"","path":"php/preg_replace.html","desc":"执行一个正则表达式的搜索和替换"}, "preg_replace_callback":{"name":"preg_replace_callback","type":"","path":"php/preg_replace_callback.html","desc":"执行一个正则表达式搜索并且使用一个回调进行替换"}, "preg_replace_callback_array":{"name":"preg_replace_callback_array","type":"","path":"php/preg_replace_callback_array.html","desc":"Perform a regular expression search and replace using callbacks"}, "preg_split":{"name":"preg_split","type":"","path":"php/preg_split.html","desc":"通过一个正则表达式分隔字符串"}, "prev":{"name":"prev","type":"","path":"php/prev.html","desc":"将数组的内部指针倒回一位"}, "print":{"name":"print","type":"","path":"php/print.html","desc":"输出字符串"}, "printf":{"name":"printf","type":"","path":"php/printf.html","desc":"输出格式化字符串"}, "print_r":{"name":"print_r","type":"","path":"php/print_r.html","desc":"以易于理解的格式打印变量。"}, "proc_close":{"name":"proc_close","type":"","path":"php/proc_close.html","desc":"关闭由 proc_open 打开的进程并且返回进程退出码"}, "proc_get_status":{"name":"proc_get_status","type":"","path":"php/proc_get_status.html","desc":"获取由 proc_open 函数打开的进程的信息"}, "proc_nice":{"name":"proc_nice","type":"","path":"php/proc_nice.html","desc":"修改当前进程的优先级"}, "proc_open":{"name":"proc_open","type":"","path":"php/proc_open.html","desc":"执行一个命令,并且打开用来输入输出的文件指针。"}, "proc_terminate":{"name":"proc_terminate","type":"","path":"php/proc_terminate.html","desc":"杀除由 proc_open 打开的进程"}, "property_exists":{"name":"property_exists","type":"","path":"php/property_exists.html","desc":"检查对象或类是否具有该属性"}, "pspell_add_to_personal":{"name":"pspell_add_to_personal","type":"","path":"php/pspell_add_to_personal.html","desc":"Add the word to a personal wordlist"}, "pspell_add_to_session":{"name":"pspell_add_to_session","type":"","path":"php/pspell_add_to_session.html","desc":"Add the word to the wordlist in the current session"}, "pspell_check":{"name":"pspell_check","type":"","path":"php/pspell_check.html","desc":"Check a word"}, "pspell_clear_session":{"name":"pspell_clear_session","type":"","path":"php/pspell_clear_session.html","desc":"Clear the current session"}, "pspell_config_create":{"name":"pspell_config_create","type":"","path":"php/pspell_config_create.html","desc":"Create a config used to open a dictionary"}, "pspell_config_data_dir":{"name":"pspell_config_data_dir","type":"","path":"php/pspell_config_data_dir.html","desc":"Location of language data files"}, "pspell_config_dict_dir":{"name":"pspell_config_dict_dir","type":"","path":"php/pspell_config_dict_dir.html","desc":"Location of the main word list"}, "pspell_config_ignore":{"name":"pspell_config_ignore","type":"","path":"php/pspell_config_ignore.html","desc":"Ignore words less than N characters long"}, "pspell_config_mode":{"name":"pspell_config_mode","type":"","path":"php/pspell_config_mode.html","desc":"Change the mode number of suggestions returned"}, "pspell_config_personal":{"name":"pspell_config_personal","type":"","path":"php/pspell_config_personal.html","desc":"Set a file that contains personal wordlist"}, "pspell_config_repl":{"name":"pspell_config_repl","type":"","path":"php/pspell_config_repl.html","desc":"Set a file that contains replacement pairs"}, "pspell_config_runtogether":{"name":"pspell_config_runtogether","type":"","path":"php/pspell_config_runtogether.html","desc":"Consider run-together words as valid compounds"}, "pspell_config_save_repl":{"name":"pspell_config_save_repl","type":"","path":"php/pspell_config_save_repl.html","desc":"Determine whether to save a replacement pa"}, "pspell_new":{"name":"pspell_new","type":"","path":"php/pspell_new.html","desc":"Load a new dictionary"}, "pspell_new_config":{"name":"pspell_new_config","type":"","path":"php/pspell_new_config.html","desc":"Load a new dictionary with settings based on a given config"}, "pspell_new_personal":{"name":"pspell_new_personal","type":"","path":"php/pspell_new_personal.html","desc":"Load a new dictionary with personal wordlist"}, "pspell_save_wordlist":{"name":"pspell_save_wordlist","type":"","path":"php/pspell_save_wordlist.html","desc":"Save the personal wordlist to a file"}, "pspell_store_replacement":{"name":"pspell_store_replacement","type":"","path":"php/pspell_store_replacement.html","desc":"Store a replacement pair for a word"}, "pspell_suggest":{"name":"pspell_suggest","type":"","path":"php/pspell_suggest.html","desc":"Suggest spellings of a word"}, "ps_add_bookmark":{"name":"ps_add_bookmark","type":"","path":"php/ps_add_bookmark.html","desc":"Add bookmark to current page"}, "ps_add_launchlink":{"name":"ps_add_launchlink","type":"","path":"php/ps_add_launchlink.html","desc":"Adds link which launches file"}, "ps_add_locallink":{"name":"ps_add_locallink","type":"","path":"php/ps_add_locallink.html","desc":"Adds link to a page in the same document"}, "ps_add_note":{"name":"ps_add_note","type":"","path":"php/ps_add_note.html","desc":"Adds note to current page"}, "ps_add_pdflink":{"name":"ps_add_pdflink","type":"","path":"php/ps_add_pdflink.html","desc":"Adds link to a page in a second pdf document"}, "ps_add_weblink":{"name":"ps_add_weblink","type":"","path":"php/ps_add_weblink.html","desc":"Adds link to a web location"}, "ps_arc":{"name":"ps_arc","type":"","path":"php/ps_arc.html","desc":"Draws an arc counterclockwise"}, "ps_arcn":{"name":"ps_arcn","type":"","path":"php/ps_arcn.html","desc":"Draws an arc clockwise"}, "ps_begin_page":{"name":"ps_begin_page","type":"","path":"php/ps_begin_page.html","desc":"Start a new page"}, "ps_begin_pattern":{"name":"ps_begin_pattern","type":"","path":"php/ps_begin_pattern.html","desc":"Start a new pattern"}, "ps_begin_template":{"name":"ps_begin_template","type":"","path":"php/ps_begin_template.html","desc":"Start a new template"}, "ps_circle":{"name":"ps_circle","type":"","path":"php/ps_circle.html","desc":"Draws a circle"}, "ps_clip":{"name":"ps_clip","type":"","path":"php/ps_clip.html","desc":"Clips drawing to current path"}, "ps_close":{"name":"ps_close","type":"","path":"php/ps_close.html","desc":"Closes a PostScript document"}, "ps_closepath":{"name":"ps_closepath","type":"","path":"php/ps_closepath.html","desc":"Closes path"}, "ps_closepath_stroke":{"name":"ps_closepath_stroke","type":"","path":"php/ps_closepath_stroke.html","desc":"Closes and strokes path"}, "ps_close_image":{"name":"ps_close_image","type":"","path":"php/ps_close_image.html","desc":"Closes image and frees memory"}, "ps_continue_text":{"name":"ps_continue_text","type":"","path":"php/ps_continue_text.html","desc":"Continue text in next line"}, "ps_curveto":{"name":"ps_curveto","type":"","path":"php/ps_curveto.html","desc":"Draws a curve"}, "ps_delete":{"name":"ps_delete","type":"","path":"php/ps_delete.html","desc":"Deletes all resources of a PostScript document"}, "ps_end_page":{"name":"ps_end_page","type":"","path":"php/ps_end_page.html","desc":"End a page"}, "ps_end_pattern":{"name":"ps_end_pattern","type":"","path":"php/ps_end_pattern.html","desc":"End a pattern"}, "ps_end_template":{"name":"ps_end_template","type":"","path":"php/ps_end_template.html","desc":"End a template"}, "ps_fill":{"name":"ps_fill","type":"","path":"php/ps_fill.html","desc":"Fills the current path"}, "ps_fill_stroke":{"name":"ps_fill_stroke","type":"","path":"php/ps_fill_stroke.html","desc":"Fills and strokes the current path"}, "ps_findfont":{"name":"ps_findfont","type":"","path":"php/ps_findfont.html","desc":"Loads a font"}, "ps_get_buffer":{"name":"ps_get_buffer","type":"","path":"php/ps_get_buffer.html","desc":"Fetches the full buffer containig the generated PS data"}, "ps_get_parameter":{"name":"ps_get_parameter","type":"","path":"php/ps_get_parameter.html","desc":"Gets certain parameters"}, "ps_get_value":{"name":"ps_get_value","type":"","path":"php/ps_get_value.html","desc":"Gets certain values"}, "ps_hyphenate":{"name":"ps_hyphenate","type":"","path":"php/ps_hyphenate.html","desc":"Hyphenates a word"}, "ps_include_file":{"name":"ps_include_file","type":"","path":"php/ps_include_file.html","desc":"Reads an external file with raw PostScript code"}, "ps_lineto":{"name":"ps_lineto","type":"","path":"php/ps_lineto.html","desc":"Draws a line"}, "ps_makespotcolor":{"name":"ps_makespotcolor","type":"","path":"php/ps_makespotcolor.html","desc":"Create spot color"}, "ps_moveto":{"name":"ps_moveto","type":"","path":"php/ps_moveto.html","desc":"Sets current point"}, "ps_new":{"name":"ps_new","type":"","path":"php/ps_new.html","desc":"Creates a new PostScript document object"}, "ps_open_file":{"name":"ps_open_file","type":"","path":"php/ps_open_file.html","desc":"Opens a file for output"}, "ps_open_image":{"name":"ps_open_image","type":"","path":"php/ps_open_image.html","desc":"Reads an image for later placement"}, "ps_open_image_file":{"name":"ps_open_image_file","type":"","path":"php/ps_open_image_file.html","desc":"Opens image from file"}, "ps_open_memory_image":{"name":"ps_open_memory_image","type":"","path":"php/ps_open_memory_image.html","desc":"Takes an GD image and returns an image for placement in a PS document"}, "ps_place_image":{"name":"ps_place_image","type":"","path":"php/ps_place_image.html","desc":"Places image on the page"}, "ps_rect":{"name":"ps_rect","type":"","path":"php/ps_rect.html","desc":"Draws a rectangle"}, "ps_restore":{"name":"ps_restore","type":"","path":"php/ps_restore.html","desc":"Restore previously save context"}, "ps_rotate":{"name":"ps_rotate","type":"","path":"php/ps_rotate.html","desc":"Sets rotation factor"}, "ps_save":{"name":"ps_save","type":"","path":"php/ps_save.html","desc":"Save current context"}, "ps_scale":{"name":"ps_scale","type":"","path":"php/ps_scale.html","desc":"Sets scaling factor"}, "ps_setcolor":{"name":"ps_setcolor","type":"","path":"php/ps_setcolor.html","desc":"Sets current color"}, "ps_setdash":{"name":"ps_setdash","type":"","path":"php/ps_setdash.html","desc":"Sets appearance of a dashed line"}, "ps_setflat":{"name":"ps_setflat","type":"","path":"php/ps_setflat.html","desc":"Sets flatness"}, "ps_setfont":{"name":"ps_setfont","type":"","path":"php/ps_setfont.html","desc":"Sets font to use for following output"}, "ps_setgray":{"name":"ps_setgray","type":"","path":"php/ps_setgray.html","desc":"Sets gray value"}, "ps_setlinecap":{"name":"ps_setlinecap","type":"","path":"php/ps_setlinecap.html","desc":"Sets appearance of line ends"}, "ps_setlinejoin":{"name":"ps_setlinejoin","type":"","path":"php/ps_setlinejoin.html","desc":"Sets how contected lines are joined"}, "ps_setlinewidth":{"name":"ps_setlinewidth","type":"","path":"php/ps_setlinewidth.html","desc":"Sets width of a line"}, "ps_setmiterlimit":{"name":"ps_setmiterlimit","type":"","path":"php/ps_setmiterlimit.html","desc":"Sets the miter limit"}, "ps_setoverprintmode":{"name":"ps_setoverprintmode","type":"","path":"php/ps_setoverprintmode.html","desc":"Sets overprint mode"}, "ps_setpolydash":{"name":"ps_setpolydash","type":"","path":"php/ps_setpolydash.html","desc":"Sets appearance of a dashed line"}, "ps_set_border_color":{"name":"ps_set_border_color","type":"","path":"php/ps_set_border_color.html","desc":"Sets color of border for annotations"}, "ps_set_border_dash":{"name":"ps_set_border_dash","type":"","path":"php/ps_set_border_dash.html","desc":"Sets length of dashes for border of annotations"}, "ps_set_border_style":{"name":"ps_set_border_style","type":"","path":"php/ps_set_border_style.html","desc":"Sets border style of annotations"}, "ps_set_info":{"name":"ps_set_info","type":"","path":"php/ps_set_info.html","desc":"Sets information fields of document"}, "ps_set_parameter":{"name":"ps_set_parameter","type":"","path":"php/ps_set_parameter.html","desc":"Sets certain parameters"}, "ps_set_text_pos":{"name":"ps_set_text_pos","type":"","path":"php/ps_set_text_pos.html","desc":"Sets position for text output"}, "ps_set_value":{"name":"ps_set_value","type":"","path":"php/ps_set_value.html","desc":"Sets certain values"}, "ps_shading":{"name":"ps_shading","type":"","path":"php/ps_shading.html","desc":"Creates a shading for later use"}, "ps_shading_pattern":{"name":"ps_shading_pattern","type":"","path":"php/ps_shading_pattern.html","desc":"Creates a pattern based on a shading"}, "ps_shfill":{"name":"ps_shfill","type":"","path":"php/ps_shfill.html","desc":"Fills an area with a shading"}, "ps_show":{"name":"ps_show","type":"","path":"php/ps_show.html","desc":"Output text"}, "ps_show2":{"name":"ps_show2","type":"","path":"php/ps_show2.html","desc":"Output a text at current position"}, "ps_show_boxed":{"name":"ps_show_boxed","type":"","path":"php/ps_show_boxed.html","desc":"Output text in a box"}, "ps_show_xy":{"name":"ps_show_xy","type":"","path":"php/ps_show_xy.html","desc":"Output text at given position"}, "ps_show_xy2":{"name":"ps_show_xy2","type":"","path":"php/ps_show_xy2.html","desc":"Output text at position"}, "ps_stringwidth":{"name":"ps_stringwidth","type":"","path":"php/ps_stringwidth.html","desc":"Gets width of a string"}, "ps_string_geometry":{"name":"ps_string_geometry","type":"","path":"php/ps_string_geometry.html","desc":"Gets geometry of a string"}, "ps_stroke":{"name":"ps_stroke","type":"","path":"php/ps_stroke.html","desc":"Draws the current path"}, "ps_symbol":{"name":"ps_symbol","type":"","path":"php/ps_symbol.html","desc":"Output a glyph"}, "ps_symbol_name":{"name":"ps_symbol_name","type":"","path":"php/ps_symbol_name.html","desc":"Gets name of a glyph"}, "ps_symbol_width":{"name":"ps_symbol_width","type":"","path":"php/ps_symbol_width.html","desc":"Gets width of a glyph"}, "ps_translate":{"name":"ps_translate","type":"","path":"php/ps_translate.html","desc":"Sets translation"}, "putenv":{"name":"putenv","type":"","path":"php/putenv.html","desc":"设置环境变量的值"}, "px_close":{"name":"px_close","type":"","path":"php/px_close.html","desc":"Closes a paradox database"}, "px_create_fp":{"name":"px_create_fp","type":"","path":"php/px_create_fp.html","desc":"Create a new paradox database"}, "px_date2string":{"name":"px_date2string","type":"","path":"php/px_date2string.html","desc":"Converts a date into a string"}, "px_delete":{"name":"px_delete","type":"","path":"php/px_delete.html","desc":"Deletes resource of paradox database"}, "px_delete_record":{"name":"px_delete_record","type":"","path":"php/px_delete_record.html","desc":"Deletes record from paradox database"}, "px_get_field":{"name":"px_get_field","type":"","path":"php/px_get_field.html","desc":"Returns the specification of a single field"}, "px_get_info":{"name":"px_get_info","type":"","path":"php/px_get_info.html","desc":"Return lots of information about a paradox file"}, "px_get_parameter":{"name":"px_get_parameter","type":"","path":"php/px_get_parameter.html","desc":"Gets a parameter"}, "px_get_record":{"name":"px_get_record","type":"","path":"php/px_get_record.html","desc":"Returns record of paradox database"}, "px_get_schema":{"name":"px_get_schema","type":"","path":"php/px_get_schema.html","desc":"Returns the database schema"}, "px_get_value":{"name":"px_get_value","type":"","path":"php/px_get_value.html","desc":"Gets a value"}, "px_insert_record":{"name":"px_insert_record","type":"","path":"php/px_insert_record.html","desc":"Inserts record into paradox database"}, "px_new":{"name":"px_new","type":"","path":"php/px_new.html","desc":"Create a new paradox object"}, "px_numfields":{"name":"px_numfields","type":"","path":"php/px_numfields.html","desc":"Returns number of fields in a database"}, "px_numrecords":{"name":"px_numrecords","type":"","path":"php/px_numrecords.html","desc":"Returns number of records in a database"}, "px_open_fp":{"name":"px_open_fp","type":"","path":"php/px_open_fp.html","desc":"Open paradox database"}, "px_put_record":{"name":"px_put_record","type":"","path":"php/px_put_record.html","desc":"Stores record into paradox database"}, "px_retrieve_record":{"name":"px_retrieve_record","type":"","path":"php/px_retrieve_record.html","desc":"Returns record of paradox database"}, "px_set_blob_file":{"name":"px_set_blob_file","type":"","path":"php/px_set_blob_file.html","desc":"Sets the file where blobs are read from"}, "px_set_parameter":{"name":"px_set_parameter","type":"","path":"php/px_set_parameter.html","desc":"Sets a parameter"}, "px_set_tablename":{"name":"px_set_tablename","type":"","path":"php/px_set_tablename.html","desc":"Sets the name of a table (deprecated)"}, "px_set_targetencoding":{"name":"px_set_targetencoding","type":"","path":"php/px_set_targetencoding.html","desc":"Sets the encoding for character fields (deprecated)"}, "px_set_value":{"name":"px_set_value","type":"","path":"php/px_set_value.html","desc":"Sets a value"}, "px_timestamp2string":{"name":"px_timestamp2string","type":"","path":"php/px_timestamp2string.html","desc":"Converts the timestamp into a string"}, "px_update_record":{"name":"px_update_record","type":"","path":"php/px_update_record.html","desc":"Updates record in paradox database"}, "quoted_printable_decode":{"name":"quoted_printable_decode","type":"","path":"php/quoted_printable_decode.html","desc":"将 quoted-printable 字符串转换为 8-bit 字符串"}, "quoted_printable_encode":{"name":"quoted_printable_encode","type":"","path":"php/quoted_printable_encode.html","desc":"将 8-bit 字符串转换成 quoted-printable 字符串"}, "quotemeta":{"name":"quotemeta","type":"","path":"php/quotemeta.html","desc":"转义元字符集"}, "rad2deg":{"name":"rad2deg","type":"","path":"php/rad2deg.html","desc":"将弧度数转换为相应的角度数"}, "radius_acct_open":{"name":"radius_acct_open","type":"","path":"php/radius_acct_open.html","desc":"Creates a Radius handle for accounting"}, "radius_add_server":{"name":"radius_add_server","type":"","path":"php/radius_add_server.html","desc":"Adds a server"}, "radius_auth_open":{"name":"radius_auth_open","type":"","path":"php/radius_auth_open.html","desc":"Creates a Radius handle for authentication"}, "radius_close":{"name":"radius_close","type":"","path":"php/radius_close.html","desc":"Frees all ressources"}, "radius_config":{"name":"radius_config","type":"","path":"php/radius_config.html","desc":"Causes the library to read the given configuration file"}, "radius_create_request":{"name":"radius_create_request","type":"","path":"php/radius_create_request.html","desc":"Create accounting or authentication request"}, "radius_cvt_addr":{"name":"radius_cvt_addr","type":"","path":"php/radius_cvt_addr.html","desc":"Converts raw data to IP-Address"}, "radius_cvt_int":{"name":"radius_cvt_int","type":"","path":"php/radius_cvt_int.html","desc":"Converts raw data to integer"}, "radius_cvt_string":{"name":"radius_cvt_string","type":"","path":"php/radius_cvt_string.html","desc":"Converts raw data to string"}, "radius_demangle":{"name":"radius_demangle","type":"","path":"php/radius_demangle.html","desc":"Demangles data"}, "radius_demangle_mppe_key":{"name":"radius_demangle_mppe_key","type":"","path":"php/radius_demangle_mppe_key.html","desc":"Derives mppe-keys from mangled data"}, "radius_get_attr":{"name":"radius_get_attr","type":"","path":"php/radius_get_attr.html","desc":"Extracts an attribute"}, "radius_get_tagged_attr_data":{"name":"radius_get_tagged_attr_data","type":"","path":"php/radius_get_tagged_attr_data.html","desc":"Extracts the data from a tagged attribute"}, "radius_get_tagged_attr_tag":{"name":"radius_get_tagged_attr_tag","type":"","path":"php/radius_get_tagged_attr_tag.html","desc":"Extracts the tag from a tagged attribute"}, "radius_get_vendor_attr":{"name":"radius_get_vendor_attr","type":"","path":"php/radius_get_vendor_attr.html","desc":"Extracts a vendor specific attribute"}, "radius_put_addr":{"name":"radius_put_addr","type":"","path":"php/radius_put_addr.html","desc":"Attaches an IP address attribute"}, "radius_put_attr":{"name":"radius_put_attr","type":"","path":"php/radius_put_attr.html","desc":"Attaches a binary attribute"}, "radius_put_int":{"name":"radius_put_int","type":"","path":"php/radius_put_int.html","desc":"Attaches an integer attribute"}, "radius_put_string":{"name":"radius_put_string","type":"","path":"php/radius_put_string.html","desc":"Attaches a string attribute"}, "radius_put_vendor_addr":{"name":"radius_put_vendor_addr","type":"","path":"php/radius_put_vendor_addr.html","desc":"Attaches a vendor specific IP address attribute"}, "radius_put_vendor_attr":{"name":"radius_put_vendor_attr","type":"","path":"php/radius_put_vendor_attr.html","desc":"Attaches a vendor specific binary attribute"}, "radius_put_vendor_int":{"name":"radius_put_vendor_int","type":"","path":"php/radius_put_vendor_int.html","desc":"Attaches a vendor specific integer attribute"}, "radius_put_vendor_string":{"name":"radius_put_vendor_string","type":"","path":"php/radius_put_vendor_string.html","desc":"Attaches a vendor specific string attribute"}, "radius_request_authenticator":{"name":"radius_request_authenticator","type":"","path":"php/radius_request_authenticator.html","desc":"Returns the request authenticator"}, "radius_salt_encrypt_attr":{"name":"radius_salt_encrypt_attr","type":"","path":"php/radius_salt_encrypt_attr.html","desc":"Salt-encrypts a value"}, "radius_send_request":{"name":"radius_send_request","type":"","path":"php/radius_send_request.html","desc":"Sends the request and waits for a reply"}, "radius_server_secret":{"name":"radius_server_secret","type":"","path":"php/radius_server_secret.html","desc":"Returns the shared secret"}, "radius_strerror":{"name":"radius_strerror","type":"","path":"php/radius_strerror.html","desc":"Returns an error message"}, "rand":{"name":"rand","type":"","path":"php/rand.html","desc":"产生一个随机整数"}, "random_bytes":{"name":"random_bytes","type":"","path":"php/random_bytes.html","desc":"Generates cryptographically secure pseudo-random bytes"}, "random_int":{"name":"random_int","type":"","path":"php/random_int.html","desc":"Generates cryptographically secure pseudo-random integers"}, "range":{"name":"range","type":"","path":"php/range.html","desc":"根据范围创建数组,包含指定的元素"}, "rar_wrapper_cache_stats":{"name":"rar_wrapper_cache_stats","type":"","path":"php/rar_wrapper_cache_stats.html","desc":"Cache hits and misses for the URL wrapper"}, "rawurldecode":{"name":"rawurldecode","type":"","path":"php/rawurldecode.html","desc":"对已编码的 URL 字符串进行解码"}, "rawurlencode":{"name":"rawurlencode","type":"","path":"php/rawurlencode.html","desc":"按照 RFC 3986 对 URL 进行编码"}, "readdir":{"name":"readdir","type":"","path":"php/readdir.html","desc":"从目录句柄中读取条目"}, "readfile":{"name":"readfile","type":"","path":"php/readfile.html","desc":"输出文件"}, "readgzfile":{"name":"readgzfile","type":"","path":"php/readgzfile.html","desc":"Output a gz-file"}, "readline":{"name":"readline","type":"","path":"php/readline.html","desc":"读取一行"}, "readline_add_history":{"name":"readline_add_history","type":"","path":"php/readline_add_history.html","desc":"添加一行命令行历史记录"}, "readline_callback_handler_install":{"name":"readline_callback_handler_install","type":"","path":"php/readline_callback_handler_install.html","desc":"初始化一个 readline 回调接口,然后终端输出提示信息并立即返回"}, "readline_callback_handler_remove":{"name":"readline_callback_handler_remove","type":"","path":"php/readline_callback_handler_remove.html","desc":"移除上一个安装的回调函数句柄并且恢复终端设置"}, "readline_callback_read_char":{"name":"readline_callback_read_char","type":"","path":"php/readline_callback_read_char.html","desc":"当一个行被接收时读取一个字符并且通知 readline 调用回调函数"}, "readline_clear_history":{"name":"readline_clear_history","type":"","path":"php/readline_clear_history.html","desc":"清除历史"}, "readline_completion_function":{"name":"readline_completion_function","type":"","path":"php/readline_completion_function.html","desc":"注册一个完成函数"}, "readline_info":{"name":"readline_info","type":"","path":"php/readline_info.html","desc":"获取设置readline内部的各个变量"}, "readline_list_history":{"name":"readline_list_history","type":"","path":"php/readline_list_history.html","desc":"获取命令历史列表"}, "readline_on_new_line":{"name":"readline_on_new_line","type":"","path":"php/readline_on_new_line.html","desc":"通知readline将光标移动到新行"}, "readline_read_history":{"name":"readline_read_history","type":"","path":"php/readline_read_history.html","desc":"读取命令历史"}, "readline_redisplay":{"name":"readline_redisplay","type":"","path":"php/readline_redisplay.html","desc":"重绘显示区"}, "readline_write_history":{"name":"readline_write_history","type":"","path":"php/readline_write_history.html","desc":"写入历史记录"}, "readlink":{"name":"readlink","type":"","path":"php/readlink.html","desc":"返回符号连接指向的目标"}, "read_exif_data":{"name":"read_exif_data","type":"","path":"php/read_exif_data.html","desc":"别名 exif_read_data"}, "realpath":{"name":"realpath","type":"","path":"php/realpath.html","desc":"返回规范化的绝对路径名"}, "realpath_cache_get":{"name":"realpath_cache_get","type":"","path":"php/realpath_cache_get.html","desc":"获取真实目录缓存的详情"}, "realpath_cache_size":{"name":"realpath_cache_size","type":"","path":"php/realpath_cache_size.html","desc":"获取真实路径缓冲区的大小"}, "recode":{"name":"recode","type":"","path":"php/recode.html","desc":"别名 recode_string"}, "recode_file":{"name":"recode_file","type":"","path":"php/recode_file.html","desc":"Recode from file to file according to recode request"}, "recode_string":{"name":"recode_string","type":"","path":"php/recode_string.html","desc":"Recode a string according to a recode request"}, "register_shutdown_function":{"name":"register_shutdown_function","type":"","path":"php/register_shutdown_function.html","desc":"注册一个会在php中止时执行的函数"}, "register_tick_function":{"name":"register_tick_function","type":"","path":"php/register_tick_function.html","desc":"Register a function for execution on each tick"}, "rename":{"name":"rename","type":"","path":"php/rename.html","desc":"重命名一个文件或目录"}, "rename_function":{"name":"rename_function","type":"","path":"php/rename_function.html","desc":"Renames orig_name to new_name in the global function table"}, "require":{"name":"require","type":"","path":"php/require.html","desc":"require"}, "require_once":{"name":"require_once","type":"","path":"php/require_once.html","desc":"require_once"}, "reset":{"name":"reset","type":"","path":"php/reset.html","desc":"将数组的内部指针指向第一个单元"}, "restore_error_handler":{"name":"restore_error_handler","type":"","path":"php/restore_error_handler.html","desc":"还原之前的错误处理函数"}, "restore_exception_handler":{"name":"restore_exception_handler","type":"","path":"php/restore_exception_handler.html","desc":"恢复之前定义过的异常处理函数。"}, "restore_include_path":{"name":"restore_include_path","type":"","path":"php/restore_include_path.html","desc":"还原 include_path 配置选项的值"}, "return":{"name":"return","type":"","path":"php/return.html","desc":"return"}, "rewind":{"name":"rewind","type":"","path":"php/rewind.html","desc":"倒回文件指针的位置"}, "rewinddir":{"name":"rewinddir","type":"","path":"php/rewinddir.html","desc":"倒回目录句柄"}, "rmdir":{"name":"rmdir","type":"","path":"php/rmdir.html","desc":"删除目录"}, "round":{"name":"round","type":"","path":"php/round.html","desc":"对浮点数进行四舍五入"}, "rpm_close":{"name":"rpm_close","type":"","path":"php/rpm_close.html","desc":"Closes an RPM file"}, "rpm_get_tag":{"name":"rpm_get_tag","type":"","path":"php/rpm_get_tag.html","desc":"Retrieves a header tag from an RPM file"}, "rpm_is_valid":{"name":"rpm_is_valid","type":"","path":"php/rpm_is_valid.html","desc":"Tests a filename for validity as an RPM file"}, "rpm_open":{"name":"rpm_open","type":"","path":"php/rpm_open.html","desc":"Opens an RPM file"}, "rpm_version":{"name":"rpm_version","type":"","path":"php/rpm_version.html","desc":"Returns a string representing the current versio"}, "rrdc_disconnect":{"name":"rrdc_disconnect","type":"","path":"php/rrdc_disconnect.html","desc":"Close any outstanding connection to rrd caching daemon"}, "rrd_create":{"name":"rrd_create","type":"","path":"php/rrd_create.html","desc":"Creates rrd database file"}, "rrd_error":{"name":"rrd_error","type":"","path":"php/rrd_error.html","desc":"Gets latest error message"}, "rrd_fetch":{"name":"rrd_fetch","type":"","path":"php/rrd_fetch.html","desc":"Fetch the data for graph as array"}, "rrd_first":{"name":"rrd_first","type":"","path":"php/rrd_first.html","desc":"Gets the timestamp of the first sample from rrd file"}, "rrd_graph":{"name":"rrd_graph","type":"","path":"php/rrd_graph.html","desc":"Creates image from a data"}, "rrd_info":{"name":"rrd_info","type":"","path":"php/rrd_info.html","desc":"Gets information about rrd file"}, "rrd_last":{"name":"rrd_last","type":"","path":"php/rrd_last.html","desc":"Gets unix timestamp of the last sample"}, "rrd_lastupdate":{"name":"rrd_lastupdate","type":"","path":"php/rrd_lastupdate.html","desc":"Gets information about last updated data"}, "rrd_restore":{"name":"rrd_restore","type":"","path":"php/rrd_restore.html","desc":"Restores the RRD file from XML dump"}, "rrd_tune":{"name":"rrd_tune","type":"","path":"php/rrd_tune.html","desc":"Tunes some RRD database file header options"}, "rrd_update":{"name":"rrd_update","type":"","path":"php/rrd_update.html","desc":"Updates the RRD database"}, "rrd_version":{"name":"rrd_version","type":"","path":"php/rrd_version.html","desc":"Gets information about underlying rrdtool library"}, "rrd_xport":{"name":"rrd_xport","type":"","path":"php/rrd_xport.html","desc":"Exports the information about RRD database"}, "rsort":{"name":"rsort","type":"","path":"php/rsort.html","desc":"对数组逆向排序"}, "rtrim":{"name":"rtrim","type":"","path":"php/rtrim.html","desc":"删除字符串末端的空白字符(或者其他字符)"}, "runkit_class_adopt":{"name":"runkit_class_adopt","type":"","path":"php/runkit_class_adopt.html","desc":"Convert a base class to an inherited class, add ancestral methods when appropriate"}, "runkit_class_emancipate":{"name":"runkit_class_emancipate","type":"","path":"php/runkit_class_emancipate.html","desc":"Convert an inherited class to a base class, removes any method whose scope is ancestral"}, "runkit_constant_add":{"name":"runkit_constant_add","type":"","path":"php/runkit_constant_add.html","desc":"Similar to define(), but allows defining in class definitions as well"}, "runkit_constant_redefine":{"name":"runkit_constant_redefine","type":"","path":"php/runkit_constant_redefine.html","desc":"Redefine an already defined constant"}, "runkit_constant_remove":{"name":"runkit_constant_remove","type":"","path":"php/runkit_constant_remove.html","desc":"RemoveDelete an already defined constant"}, "runkit_function_add":{"name":"runkit_function_add","type":"","path":"php/runkit_function_add.html","desc":"Add a new function, similar to create_function"}, "runkit_function_copy":{"name":"runkit_function_copy","type":"","path":"php/runkit_function_copy.html","desc":"Copy a function to a new function name"}, "runkit_function_redefine":{"name":"runkit_function_redefine","type":"","path":"php/runkit_function_redefine.html","desc":"Replace a function definition with a new implementation"}, "runkit_function_remove":{"name":"runkit_function_remove","type":"","path":"php/runkit_function_remove.html","desc":"Remove a function definition"}, "runkit_function_rename":{"name":"runkit_function_rename","type":"","path":"php/runkit_function_rename.html","desc":"Change a function's name"}, "runkit_import":{"name":"runkit_import","type":"","path":"php/runkit_import.html","desc":"Process a PHP file importing function and class definitions, overwriting where appropriate"}, "runkit_lint":{"name":"runkit_lint","type":"","path":"php/runkit_lint.html","desc":"Check the PHP syntax of the specified php code"}, "runkit_lint_file":{"name":"runkit_lint_file","type":"","path":"php/runkit_lint_file.html","desc":"Check the PHP syntax of the specified file"}, "runkit_method_add":{"name":"runkit_method_add","type":"","path":"php/runkit_method_add.html","desc":"Dynamically adds a new method to a given class"}, "runkit_method_copy":{"name":"runkit_method_copy","type":"","path":"php/runkit_method_copy.html","desc":"Copies a method from class to another"}, "runkit_method_redefine":{"name":"runkit_method_redefine","type":"","path":"php/runkit_method_redefine.html","desc":"Dynamically changes the code of the given method"}, "runkit_method_remove":{"name":"runkit_method_remove","type":"","path":"php/runkit_method_remove.html","desc":"Dynamically removes the given method"}, "runkit_method_rename":{"name":"runkit_method_rename","type":"","path":"php/runkit_method_rename.html","desc":"Dynamically changes the name of the given method"}, "runkit_return_value_used":{"name":"runkit_return_value_used","type":"","path":"php/runkit_return_value_used.html","desc":"Determines if the current functions return value will be used"}, "runkit_sandbox_output_handler":{"name":"runkit_sandbox_output_handler","type":"","path":"php/runkit_sandbox_output_handler.html","desc":"Specify a function to capture andor process output from a runkit sandbox"}, "runkit_superglobals":{"name":"runkit_superglobals","type":"","path":"php/runkit_superglobals.html","desc":"Return numerically indexed array of registered superglobals"}, "sapi_windows_cp_conv":{"name":"sapi_windows_cp_conv","type":"","path":"php/sapi_windows_cp_conv.html","desc":"Convert string from one codepage to another"}, "sapi_windows_cp_get":{"name":"sapi_windows_cp_get","type":"","path":"php/sapi_windows_cp_get.html","desc":"Get process codepage"}, "sapi_windows_cp_is_utf8":{"name":"sapi_windows_cp_is_utf8","type":"","path":"php/sapi_windows_cp_is_utf8.html","desc":"Indicates whether the codepage is UTF-8 compatible"}, "sapi_windows_cp_set":{"name":"sapi_windows_cp_set","type":"","path":"php/sapi_windows_cp_set.html","desc":"Set process codepage"}, "sapi_windows_vt100_support":{"name":"sapi_windows_vt100_support","type":"","path":"php/sapi_windows_vt100_support.html","desc":"Get or set VT100 support for the specified stream associated to an output buffer of a Windows console."}, "scandir":{"name":"scandir","type":"","path":"php/scandir.html","desc":"列出指定路径中的文件和目录"}, "seaslog_get_author":{"name":"seaslog_get_author","type":"","path":"php/seaslog_get_author.html","desc":"获取 SeasLog 作者"}, "seaslog_get_version":{"name":"seaslog_get_version","type":"","path":"php/seaslog_get_version.html","desc":"获取 SeasLog 的版本"}, "sem_acquire":{"name":"sem_acquire","type":"","path":"php/sem_acquire.html","desc":"Acquire a semaphore"}, "sem_get":{"name":"sem_get","type":"","path":"php/sem_get.html","desc":"Get a semaphore id"}, "sem_release":{"name":"sem_release","type":"","path":"php/sem_release.html","desc":"Release a semaphore"}, "sem_remove":{"name":"sem_remove","type":"","path":"php/sem_remove.html","desc":"Remove a semaphore"}, "serialize":{"name":"serialize","type":"","path":"php/serialize.html","desc":"产生一个可存储的值的表示"}, "session_abort":{"name":"session_abort","type":"","path":"php/session_abort.html","desc":"Discard session array changes and finish session"}, "session_cache_expire":{"name":"session_cache_expire","type":"","path":"php/session_cache_expire.html","desc":"返回当前缓存的到期时间"}, "session_cache_limiter":{"name":"session_cache_limiter","type":"","path":"php/session_cache_limiter.html","desc":"读取设置缓存限制器"}, "session_commit":{"name":"session_commit","type":"","path":"php/session_commit.html","desc":"session_write_close 的别名"}, "session_create_id":{"name":"session_create_id","type":"","path":"php/session_create_id.html","desc":"Create new session id"}, "session_decode":{"name":"session_decode","type":"","path":"php/session_decode.html","desc":"解码会话数据"}, "session_destroy":{"name":"session_destroy","type":"","path":"php/session_destroy.html","desc":"销毁一个会话中的全部数据"}, "session_encode":{"name":"session_encode","type":"","path":"php/session_encode.html","desc":"将当前会话数据编码为一个字符串"}, "session_gc":{"name":"session_gc","type":"","path":"php/session_gc.html","desc":"Perform session data garbage collection"}, "session_get_cookie_params":{"name":"session_get_cookie_params","type":"","path":"php/session_get_cookie_params.html","desc":"获取会话 cookie 参数"}, "session_id":{"name":"session_id","type":"","path":"php/session_id.html","desc":"获取设置当前会话 ID"}, "session_is_registered":{"name":"session_is_registered","type":"","path":"php/session_is_registered.html","desc":"检查变量是否在会话中已经注册"}, "session_module_name":{"name":"session_module_name","type":"","path":"php/session_module_name.html","desc":"获取设置会话模块名称"}, "session_name":{"name":"session_name","type":"","path":"php/session_name.html","desc":"读取设置会话名称"}, "session_pgsql_add_error":{"name":"session_pgsql_add_error","type":"","path":"php/session_pgsql_add_error.html","desc":"Increments error counts and sets last error message"}, "session_pgsql_get_error":{"name":"session_pgsql_get_error","type":"","path":"php/session_pgsql_get_error.html","desc":"Returns number of errors and last error message"}, "session_pgsql_get_field":{"name":"session_pgsql_get_field","type":"","path":"php/session_pgsql_get_field.html","desc":"Get custom field value"}, "session_pgsql_reset":{"name":"session_pgsql_reset","type":"","path":"php/session_pgsql_reset.html","desc":"Reset connection to session database servers"}, "session_pgsql_set_field":{"name":"session_pgsql_set_field","type":"","path":"php/session_pgsql_set_field.html","desc":"Set custom field value"}, "session_pgsql_status":{"name":"session_pgsql_status","type":"","path":"php/session_pgsql_status.html","desc":"Get current save handler status"}, "session_regenerate_id":{"name":"session_regenerate_id","type":"","path":"php/session_regenerate_id.html","desc":"使用新生成的会话 ID 更新现有会话 ID"}, "session_register":{"name":"session_register","type":"","path":"php/session_register.html","desc":"Register one or more global variables with the current session"}, "session_register_shutdown":{"name":"session_register_shutdown","type":"","path":"php/session_register_shutdown.html","desc":"关闭会话"}, "session_reset":{"name":"session_reset","type":"","path":"php/session_reset.html","desc":"Re-initialize session array with original values"}, "session_save_path":{"name":"session_save_path","type":"","path":"php/session_save_path.html","desc":"读取设置当前会话的保存路径"}, "session_set_cookie_params":{"name":"session_set_cookie_params","type":"","path":"php/session_set_cookie_params.html","desc":"设置会话 cookie 参数"}, "session_set_save_handler":{"name":"session_set_save_handler","type":"","path":"php/session_set_save_handler.html","desc":"设置用户自定义会话存储函数"}, "session_start":{"name":"session_start","type":"","path":"php/session_start.html","desc":"启动新会话或者重用现有会话"}, "session_status":{"name":"session_status","type":"","path":"php/session_status.html","desc":"返回当前会话状态"}, "session_unregister":{"name":"session_unregister","type":"","path":"php/session_unregister.html","desc":"Unregister a global variable from the current session"}, "session_unset":{"name":"session_unset","type":"","path":"php/session_unset.html","desc":"释放所有的会话变量"}, "session_write_close":{"name":"session_write_close","type":"","path":"php/session_write_close.html","desc":"Write session data and end session"}, "setcookie":{"name":"setcookie","type":"","path":"php/setcookie.html","desc":"发送 Cookie"}, "setlocale":{"name":"setlocale","type":"","path":"php/setlocale.html","desc":"设置地区信息"}, "setproctitle":{"name":"setproctitle","type":"","path":"php/setproctitle.html","desc":"Set the process title"}, "setrawcookie":{"name":"setrawcookie","type":"","path":"php/setrawcookie.html","desc":"发送未经 URL 编码的 cookie"}, "setthreadtitle":{"name":"setthreadtitle","type":"","path":"php/setthreadtitle.html","desc":"Set the thread title"}, "settype":{"name":"settype","type":"","path":"php/settype.html","desc":"设置变量的类型"}, "set_error_handler":{"name":"set_error_handler","type":"","path":"php/set_error_handler.html","desc":"设置用户自定义的错误处理函数"}, "set_exception_handler":{"name":"set_exception_handler","type":"","path":"php/set_exception_handler.html","desc":"设置用户自定义的异常处理函数"}, "set_file_buffer":{"name":"set_file_buffer","type":"","path":"php/set_file_buffer.html","desc":"stream_set_write_buffer 的别名"}, "set_include_path":{"name":"set_include_path","type":"","path":"php/set_include_path.html","desc":"设置 include_path 配置选项"}, "set_magic_quotes_runtime":{"name":"set_magic_quotes_runtime","type":"","path":"php/set_magic_quotes_runtime.html","desc":"设置当前 magic_quotes_runtime 配置选项的激活状态"}, "set_socket_blocking":{"name":"set_socket_blocking","type":"","path":"php/set_socket_blocking.html","desc":"别名 stream_set_blocking"}, "set_time_limit":{"name":"set_time_limit","type":"","path":"php/set_time_limit.html","desc":"设置脚本最大执行时间"}, "sha1":{"name":"sha1","type":"","path":"php/sha1.html","desc":"计算字符串的 sha1 散列值"}, "sha1_file":{"name":"sha1_file","type":"","path":"php/sha1_file.html","desc":"计算文件的 sha1 散列值"}, "shell_exec":{"name":"shell_exec","type":"","path":"php/shell_exec.html","desc":"通过 shell 环境执行命令,并且将完整的输出以字符串的方式返回。"}, "shmop_close":{"name":"shmop_close","type":"","path":"php/shmop_close.html","desc":"Close shared memory block"}, "shmop_delete":{"name":"shmop_delete","type":"","path":"php/shmop_delete.html","desc":"Delete shared memory block"}, "shmop_open":{"name":"shmop_open","type":"","path":"php/shmop_open.html","desc":"Create or open shared memory block"}, "shmop_read":{"name":"shmop_read","type":"","path":"php/shmop_read.html","desc":"Read data from shared memory block"}, "shmop_size":{"name":"shmop_size","type":"","path":"php/shmop_size.html","desc":"Get size of shared memory block"}, "shmop_write":{"name":"shmop_write","type":"","path":"php/shmop_write.html","desc":"Write data into shared memory block"}, "shm_attach":{"name":"shm_attach","type":"","path":"php/shm_attach.html","desc":"Creates or open a shared memory segment"}, "shm_detach":{"name":"shm_detach","type":"","path":"php/shm_detach.html","desc":"Disconnects from shared memory segment"}, "shm_get_var":{"name":"shm_get_var","type":"","path":"php/shm_get_var.html","desc":"Returns a variable from shared memory"}, "shm_has_var":{"name":"shm_has_var","type":"","path":"php/shm_has_var.html","desc":"Check whether a specific entry exists"}, "shm_put_var":{"name":"shm_put_var","type":"","path":"php/shm_put_var.html","desc":"Inserts or updates a variable in shared memory"}, "shm_remove":{"name":"shm_remove","type":"","path":"php/shm_remove.html","desc":"Removes shared memory from Unix systems"}, "shm_remove_var":{"name":"shm_remove_var","type":"","path":"php/shm_remove_var.html","desc":"Removes a variable from shared memory"}, "show_source":{"name":"show_source","type":"","path":"php/show_source.html","desc":"别名 highlight_file"}, "shuffle":{"name":"shuffle","type":"","path":"php/shuffle.html","desc":"打乱数组"}, "similar_text":{"name":"similar_text","type":"","path":"php/similar_text.html","desc":"计算两个字符串的相似度"}, "simplexml_import_dom":{"name":"simplexml_import_dom","type":"","path":"php/simplexml_import_dom.html","desc":"Get a SimpleXMLElement object from a DOM node"}, "simplexml_load_file":{"name":"simplexml_load_file","type":"","path":"php/simplexml_load_file.html","desc":"Interprets an XML file into an object"}, "simplexml_load_string":{"name":"simplexml_load_string","type":"","path":"php/simplexml_load_string.html","desc":"Interprets a string of XML into an object"}, "sin":{"name":"sin","type":"","path":"php/sin.html","desc":"正弦"}, "sinh":{"name":"sinh","type":"","path":"php/sinh.html","desc":"双曲正弦"}, "sizeof":{"name":"sizeof","type":"","path":"php/sizeof.html","desc":"count 的别名"}, "sleep":{"name":"sleep","type":"","path":"php/sleep.html","desc":"延缓执行"}, "snmp2_get":{"name":"snmp2_get","type":"","path":"php/snmp2_get.html","desc":"Fetch an SNMP object"}, "snmp2_getnext":{"name":"snmp2_getnext","type":"","path":"php/snmp2_getnext.html","desc":"Fetch the SNMP object which follows the given object id"}, "snmp2_real_walk":{"name":"snmp2_real_walk","type":"","path":"php/snmp2_real_walk.html","desc":"Return all objects including their respective object ID within the specified one"}, "snmp2_set":{"name":"snmp2_set","type":"","path":"php/snmp2_set.html","desc":"Set the value of an SNMP object"}, "snmp2_walk":{"name":"snmp2_walk","type":"","path":"php/snmp2_walk.html","desc":"Fetch all the SNMP objects from an agent"}, "snmp3_get":{"name":"snmp3_get","type":"","path":"php/snmp3_get.html","desc":"Fetch an SNMP object"}, "snmp3_getnext":{"name":"snmp3_getnext","type":"","path":"php/snmp3_getnext.html","desc":"Fetch the SNMP object which follows the given object id"}, "snmp3_real_walk":{"name":"snmp3_real_walk","type":"","path":"php/snmp3_real_walk.html","desc":"Return all objects including their respective object ID within the specified one"}, "snmp3_set":{"name":"snmp3_set","type":"","path":"php/snmp3_set.html","desc":"Set the value of an SNMP object"}, "snmp3_walk":{"name":"snmp3_walk","type":"","path":"php/snmp3_walk.html","desc":"Fetch all the SNMP objects from an agent"}, "snmpget":{"name":"snmpget","type":"","path":"php/snmpget.html","desc":"获取一个 SNMP 对象"}, "snmpgetnext":{"name":"snmpgetnext","type":"","path":"php/snmpgetnext.html","desc":"Fetch the SNMP object which follows the given object id"}, "snmprealwalk":{"name":"snmprealwalk","type":"","path":"php/snmprealwalk.html","desc":"返回指定的所有对象,包括它们各自的对象 ID"}, "snmpset":{"name":"snmpset","type":"","path":"php/snmpset.html","desc":"设置一个 SNMP 对象"}, "snmpwalk":{"name":"snmpwalk","type":"","path":"php/snmpwalk.html","desc":"从代理返回所有的 SNMP 对象"}, "snmpwalkoid":{"name":"snmpwalkoid","type":"","path":"php/snmpwalkoid.html","desc":"查询关于网络实体的信息树"}, "snmp_get_quick_print":{"name":"snmp_get_quick_print","type":"","path":"php/snmp_get_quick_print.html","desc":"返回 UCD 库中 quick_print 设置的当前值"}, "snmp_get_valueretrieval":{"name":"snmp_get_valueretrieval","type":"","path":"php/snmp_get_valueretrieval.html","desc":"Return the method how the SNMP values will be returned"}, "snmp_read_mib":{"name":"snmp_read_mib","type":"","path":"php/snmp_read_mib.html","desc":"Reads and parses a MIB file into the active MIB tree"}, "snmp_set_enum_print":{"name":"snmp_set_enum_print","type":"","path":"php/snmp_set_enum_print.html","desc":"Return all values that are enums with their enum value instead of the raw integer"}, "snmp_set_oid_numeric_print":{"name":"snmp_set_oid_numeric_print","type":"","path":"php/snmp_set_oid_numeric_print.html","desc":"Set the OID output format"}, "snmp_set_oid_output_format":{"name":"snmp_set_oid_output_format","type":"","path":"php/snmp_set_oid_output_format.html","desc":"Set the OID output format"}, "snmp_set_quick_print":{"name":"snmp_set_quick_print","type":"","path":"php/snmp_set_quick_print.html","desc":"设置 UCD SNMP 库中 quick_print 的值"}, "snmp_set_valueretrieval":{"name":"snmp_set_valueretrieval","type":"","path":"php/snmp_set_valueretrieval.html","desc":"Specify the method how the SNMP values will be returned"}, "socket_accept":{"name":"socket_accept","type":"","path":"php/socket_accept.html","desc":"Accepts a connection on a socket"}, "socket_addrinfo_bind":{"name":"socket_addrinfo_bind","type":"","path":"php/socket_addrinfo_bind.html","desc":"Create and bind to a socket from a given addrinfo"}, "socket_addrinfo_connect":{"name":"socket_addrinfo_connect","type":"","path":"php/socket_addrinfo_connect.html","desc":"Create and connect to a socket from a given addrinfo"}, "socket_addrinfo_explain":{"name":"socket_addrinfo_explain","type":"","path":"php/socket_addrinfo_explain.html","desc":"Get information about addrinfo"}, "socket_addrinfo_lookup":{"name":"socket_addrinfo_lookup","type":"","path":"php/socket_addrinfo_lookup.html","desc":"Get array with contents of getaddrinfo about the given hostname"}, "socket_bind":{"name":"socket_bind","type":"","path":"php/socket_bind.html","desc":"给套接字绑定名字"}, "socket_clear_error":{"name":"socket_clear_error","type":"","path":"php/socket_clear_error.html","desc":"清除套接字或者最后的错误代码上的错误"}, "socket_close":{"name":"socket_close","type":"","path":"php/socket_close.html","desc":"关闭套接字资源"}, "socket_cmsg_space":{"name":"socket_cmsg_space","type":"","path":"php/socket_cmsg_space.html","desc":"Calculate message buffer size"}, "socket_connect":{"name":"socket_connect","type":"","path":"php/socket_connect.html","desc":"开启一个套接字连接"}, "socket_create":{"name":"socket_create","type":"","path":"php/socket_create.html","desc":"创建一个套接字(通讯节点)"}, "socket_create_listen":{"name":"socket_create_listen","type":"","path":"php/socket_create_listen.html","desc":"Opens a socket on port to accept connections"}, "socket_create_pair":{"name":"socket_create_pair","type":"","path":"php/socket_create_pair.html","desc":"Creates a pair of indistinguishable sockets and stores them in an array"}, "socket_export_stream":{"name":"socket_export_stream","type":"","path":"php/socket_export_stream.html","desc":"Export a socket extension resource into a stream that encapsulates a socket"}, "socket_getopt":{"name":"socket_getopt","type":"","path":"php/socket_getopt.html","desc":"别名 socket_get_option"}, "socket_getpeername":{"name":"socket_getpeername","type":"","path":"php/socket_getpeername.html","desc":"Queries the remote side of the given socket which may either result in hostport or in a Unix filesystem path, dependent on its type"}, "socket_getsockname":{"name":"socket_getsockname","type":"","path":"php/socket_getsockname.html","desc":"Queries the local side of the given socket which may either result in hostport or in a Unix filesystem path, dependent on its type"}, "socket_get_option":{"name":"socket_get_option","type":"","path":"php/socket_get_option.html","desc":"Gets socket options for the socket"}, "socket_get_status":{"name":"socket_get_status","type":"","path":"php/socket_get_status.html","desc":"别名 stream_get_meta_data"}, "socket_import_stream":{"name":"socket_import_stream","type":"","path":"php/socket_import_stream.html","desc":"Import a stream"}, "socket_last_error":{"name":"socket_last_error","type":"","path":"php/socket_last_error.html","desc":"Returns the last error on the socket"}, "socket_listen":{"name":"socket_listen","type":"","path":"php/socket_listen.html","desc":"Listens for a connection on a socket"}, "socket_read":{"name":"socket_read","type":"","path":"php/socket_read.html","desc":"Reads a maximum of length bytes from a socket"}, "socket_recv":{"name":"socket_recv","type":"","path":"php/socket_recv.html","desc":"从已连接的socket接收数据"}, "socket_recvfrom":{"name":"socket_recvfrom","type":"","path":"php/socket_recvfrom.html","desc":"Receives data from a socket whether or not it is connection-oriented"}, "socket_recvmsg":{"name":"socket_recvmsg","type":"","path":"php/socket_recvmsg.html","desc":"Read a message"}, "socket_select":{"name":"socket_select","type":"","path":"php/socket_select.html","desc":"Runs the select() system call on the given arrays of sockets with a specified timeout"}, "socket_send":{"name":"socket_send","type":"","path":"php/socket_send.html","desc":"Sends data to a connected socket"}, "socket_sendmsg":{"name":"socket_sendmsg","type":"","path":"php/socket_sendmsg.html","desc":"Send a message"}, "socket_sendto":{"name":"socket_sendto","type":"","path":"php/socket_sendto.html","desc":"Sends a message to a socket, whether it is connected or not"}, "socket_setopt":{"name":"socket_setopt","type":"","path":"php/socket_setopt.html","desc":"别名 socket_set_option"}, "socket_set_block":{"name":"socket_set_block","type":"","path":"php/socket_set_block.html","desc":"Sets blocking mode on a socket resource"}, "socket_set_blocking":{"name":"socket_set_blocking","type":"","path":"php/socket_set_blocking.html","desc":"别名 stream_set_blocking"}, "socket_set_nonblock":{"name":"socket_set_nonblock","type":"","path":"php/socket_set_nonblock.html","desc":"Sets nonblocking mode for file descriptor fd"}, "socket_set_option":{"name":"socket_set_option","type":"","path":"php/socket_set_option.html","desc":"Sets socket options for the socket"}, "socket_set_timeout":{"name":"socket_set_timeout","type":"","path":"php/socket_set_timeout.html","desc":"别名 stream_set_timeout"}, "socket_shutdown":{"name":"socket_shutdown","type":"","path":"php/socket_shutdown.html","desc":"Shuts down a socket for receiving, sending, or both"}, "socket_strerror":{"name":"socket_strerror","type":"","path":"php/socket_strerror.html","desc":"Return a string describing a socket error"}, "socket_write":{"name":"socket_write","type":"","path":"php/socket_write.html","desc":"Write to a socket"}, "sodium_add":{"name":"sodium_add","type":"","path":"php/sodium_add.html","desc":"Add large numbers"}, "sodium_bin2hex":{"name":"sodium_bin2hex","type":"","path":"php/sodium_bin2hex.html","desc":"Encode to hexadecimal"}, "sodium_compare":{"name":"sodium_compare","type":"","path":"php/sodium_compare.html","desc":"Compare large numbers"}, "sodium_crypto_aead_aes256gcm_decrypt":{"name":"sodium_crypto_aead_aes256gcm_decrypt","type":"","path":"php/sodium_crypto_aead_aes256gcm_decrypt.html","desc":"Decrypt in combined mode with precalculation"}, "sodium_crypto_aead_aes256gcm_encrypt":{"name":"sodium_crypto_aead_aes256gcm_encrypt","type":"","path":"php/sodium_crypto_aead_aes256gcm_encrypt.html","desc":"Encrypt in combined mode with precalculation"}, "sodium_crypto_aead_aes256gcm_is_available":{"name":"sodium_crypto_aead_aes256gcm_is_available","type":"","path":"php/sodium_crypto_aead_aes256gcm_is_available.html","desc":"Check if hardware supports AES256-GCM"}, "sodium_crypto_aead_aes256gcm_keygen":{"name":"sodium_crypto_aead_aes256gcm_keygen","type":"","path":"php/sodium_crypto_aead_aes256gcm_keygen.html","desc":"Get random bytes for key"}, "sodium_crypto_aead_chacha20poly1305_decrypt":{"name":"sodium_crypto_aead_chacha20poly1305_decrypt","type":"","path":"php/sodium_crypto_aead_chacha20poly1305_decrypt.html","desc":"Verify that the ciphertext includes a valid tag"}, "sodium_crypto_aead_chacha20poly1305_encrypt":{"name":"sodium_crypto_aead_chacha20poly1305_encrypt","type":"","path":"php/sodium_crypto_aead_chacha20poly1305_encrypt.html","desc":"Encrypt a message"}, "sodium_crypto_aead_chacha20poly1305_ietf_decrypt":{"name":"sodium_crypto_aead_chacha20poly1305_ietf_decrypt","type":"","path":"php/sodium_crypto_aead_chacha20poly1305_ietf_decrypt.html","desc":"Verify that the ciphertext includes a valid tag"}, "sodium_crypto_aead_chacha20poly1305_ietf_encrypt":{"name":"sodium_crypto_aead_chacha20poly1305_ietf_encrypt","type":"","path":"php/sodium_crypto_aead_chacha20poly1305_ietf_encrypt.html","desc":"Encrypt a message"}, "sodium_crypto_aead_chacha20poly1305_ietf_keygen":{"name":"sodium_crypto_aead_chacha20poly1305_ietf_keygen","type":"","path":"php/sodium_crypto_aead_chacha20poly1305_ietf_keygen.html","desc":"Get random bytes for key"}, "sodium_crypto_aead_chacha20poly1305_keygen":{"name":"sodium_crypto_aead_chacha20poly1305_keygen","type":"","path":"php/sodium_crypto_aead_chacha20poly1305_keygen.html","desc":"Get random bytes for key"}, "sodium_crypto_auth":{"name":"sodium_crypto_auth","type":"","path":"php/sodium_crypto_auth.html","desc":"Compute a tag for the message"}, "sodium_crypto_auth_keygen":{"name":"sodium_crypto_auth_keygen","type":"","path":"php/sodium_crypto_auth_keygen.html","desc":"Get random bytes for key"}, "sodium_crypto_auth_verify":{"name":"sodium_crypto_auth_verify","type":"","path":"php/sodium_crypto_auth_verify.html","desc":"Verifies that the tag is valid for the message"}, "sodium_crypto_box":{"name":"sodium_crypto_box","type":"","path":"php/sodium_crypto_box.html","desc":"Encrypt a message"}, "sodium_crypto_box_keypair":{"name":"sodium_crypto_box_keypair","type":"","path":"php/sodium_crypto_box_keypair.html","desc":"Randomly generate a secret key and a corresponding public key"}, "sodium_crypto_box_open":{"name":"sodium_crypto_box_open","type":"","path":"php/sodium_crypto_box_open.html","desc":"Verify and decrypt a ciphertext"}, "sodium_crypto_box_seal":{"name":"sodium_crypto_box_seal","type":"","path":"php/sodium_crypto_box_seal.html","desc":"Encrypt a message"}, "sodium_crypto_box_seal_open":{"name":"sodium_crypto_box_seal_open","type":"","path":"php/sodium_crypto_box_seal_open.html","desc":"Decrypt the ciphertext"}, "sodium_crypto_box_seed_keypair":{"name":"sodium_crypto_box_seed_keypair","type":"","path":"php/sodium_crypto_box_seed_keypair.html","desc":"Deterministically derive the key pair from a single key"}, "sodium_crypto_generichash":{"name":"sodium_crypto_generichash","type":"","path":"php/sodium_crypto_generichash.html","desc":"Get a hash of the message"}, "sodium_crypto_generichash_final":{"name":"sodium_crypto_generichash_final","type":"","path":"php/sodium_crypto_generichash_final.html","desc":"Complete the hash"}, "sodium_crypto_generichash_init":{"name":"sodium_crypto_generichash_init","type":"","path":"php/sodium_crypto_generichash_init.html","desc":"Initialize a hash"}, "sodium_crypto_generichash_keygen":{"name":"sodium_crypto_generichash_keygen","type":"","path":"php/sodium_crypto_generichash_keygen.html","desc":"Get random bytes for key"}, "sodium_crypto_generichash_update":{"name":"sodium_crypto_generichash_update","type":"","path":"php/sodium_crypto_generichash_update.html","desc":"Add message to a hash"}, "sodium_crypto_kdf_derive_from_key":{"name":"sodium_crypto_kdf_derive_from_key","type":"","path":"php/sodium_crypto_kdf_derive_from_key.html","desc":"Derive a subkey"}, "sodium_crypto_kdf_keygen":{"name":"sodium_crypto_kdf_keygen","type":"","path":"php/sodium_crypto_kdf_keygen.html","desc":"Get random bytes for key"}, "sodium_crypto_kx_keypair":{"name":"sodium_crypto_kx_keypair","type":"","path":"php/sodium_crypto_kx_keypair.html","desc":"Creates a new sodium keypair"}, "sodium_crypto_pwhash":{"name":"sodium_crypto_pwhash","type":"","path":"php/sodium_crypto_pwhash.html","desc":"Derive a key from a password"}, "sodium_crypto_pwhash_scryptsalsa208sha256":{"name":"sodium_crypto_pwhash_scryptsalsa208sha256","type":"","path":"php/sodium_crypto_pwhash_scryptsalsa208sha256.html","desc":"Derives a key from a password"}, "sodium_crypto_pwhash_scryptsalsa208sha256_str":{"name":"sodium_crypto_pwhash_scryptsalsa208sha256_str","type":"","path":"php/sodium_crypto_pwhash_scryptsalsa208sha256_str.html","desc":"Get an ASCII encoded hash"}, "sodium_crypto_pwhash_scryptsalsa208sha256_str_verify":{"name":"sodium_crypto_pwhash_scryptsalsa208sha256_str_verify","type":"","path":"php/sodium_crypto_pwhash_scryptsalsa208sha256_str_verify.html","desc":"Verify that the password is a valid password verification string"}, "sodium_crypto_pwhash_str":{"name":"sodium_crypto_pwhash_str","type":"","path":"php/sodium_crypto_pwhash_str.html","desc":"Get an ASCII-encoded hash"}, "sodium_crypto_pwhash_str_verify":{"name":"sodium_crypto_pwhash_str_verify","type":"","path":"php/sodium_crypto_pwhash_str_verify.html","desc":"Verifies that a password matches a hash"}, "sodium_crypto_scalarmult":{"name":"sodium_crypto_scalarmult","type":"","path":"php/sodium_crypto_scalarmult.html","desc":"Compute a shared secret given a user's secret key and another user's public key"}, "sodium_crypto_scalarmult_base":{"name":"sodium_crypto_scalarmult_base","type":"","path":"php/sodium_crypto_scalarmult_base.html","desc":"别名 sodium_crypto_box_publickey_from_secretkey"}, "sodium_crypto_secretbox":{"name":"sodium_crypto_secretbox","type":"","path":"php/sodium_crypto_secretbox.html","desc":"Encrypt a message"}, "sodium_crypto_secretbox_keygen":{"name":"sodium_crypto_secretbox_keygen","type":"","path":"php/sodium_crypto_secretbox_keygen.html","desc":"Get random bytes for key"}, "sodium_crypto_secretbox_open":{"name":"sodium_crypto_secretbox_open","type":"","path":"php/sodium_crypto_secretbox_open.html","desc":"Verify and decrypt a ciphertext"}, "sodium_crypto_shorthash":{"name":"sodium_crypto_shorthash","type":"","path":"php/sodium_crypto_shorthash.html","desc":"Compute a fixed-size fingerprint for the message"}, "sodium_crypto_shorthash_keygen":{"name":"sodium_crypto_shorthash_keygen","type":"","path":"php/sodium_crypto_shorthash_keygen.html","desc":"Get random bytes for key"}, "sodium_crypto_sign":{"name":"sodium_crypto_sign","type":"","path":"php/sodium_crypto_sign.html","desc":"Sign a message"}, "sodium_crypto_sign_detached":{"name":"sodium_crypto_sign_detached","type":"","path":"php/sodium_crypto_sign_detached.html","desc":"Sign the message"}, "sodium_crypto_sign_ed25519_pk_to_curve25519":{"name":"sodium_crypto_sign_ed25519_pk_to_curve25519","type":"","path":"php/sodium_crypto_sign_ed25519_pk_to_curve25519.html","desc":"Convert an Ed25519 public key to a Curve25519 public key"}, "sodium_crypto_sign_ed25519_sk_to_curve25519":{"name":"sodium_crypto_sign_ed25519_sk_to_curve25519","type":"","path":"php/sodium_crypto_sign_ed25519_sk_to_curve25519.html","desc":"Convert an Ed25519 secret key to a Curve25519 secret key"}, "sodium_crypto_sign_keypair":{"name":"sodium_crypto_sign_keypair","type":"","path":"php/sodium_crypto_sign_keypair.html","desc":"Randomly generate a secret key and a corresponding public key"}, "sodium_crypto_sign_open":{"name":"sodium_crypto_sign_open","type":"","path":"php/sodium_crypto_sign_open.html","desc":"Check that the signed message has a valid signature"}, "sodium_crypto_sign_publickey_from_secretkey":{"name":"sodium_crypto_sign_publickey_from_secretkey","type":"","path":"php/sodium_crypto_sign_publickey_from_secretkey.html","desc":"Extract the public key from the secret key"}, "sodium_crypto_sign_seed_keypair":{"name":"sodium_crypto_sign_seed_keypair","type":"","path":"php/sodium_crypto_sign_seed_keypair.html","desc":"Deterministically derive the key pair from a single key"}, "sodium_crypto_sign_verify_detached":{"name":"sodium_crypto_sign_verify_detached","type":"","path":"php/sodium_crypto_sign_verify_detached.html","desc":"Verify signature for the message"}, "sodium_crypto_stream":{"name":"sodium_crypto_stream","type":"","path":"php/sodium_crypto_stream.html","desc":"Generate a deterministic sequence of bytes from a seed"}, "sodium_crypto_stream_keygen":{"name":"sodium_crypto_stream_keygen","type":"","path":"php/sodium_crypto_stream_keygen.html","desc":"Get random bytes for key"}, "sodium_crypto_stream_xor":{"name":"sodium_crypto_stream_xor","type":"","path":"php/sodium_crypto_stream_xor.html","desc":"Encrypt a message"}, "sodium_hex2bin":{"name":"sodium_hex2bin","type":"","path":"php/sodium_hex2bin.html","desc":"Decodes a hexadecimally encoded binary string"}, "sodium_increment":{"name":"sodium_increment","type":"","path":"php/sodium_increment.html","desc":"Increment large number"}, "sodium_memcmp":{"name":"sodium_memcmp","type":"","path":"php/sodium_memcmp.html","desc":"Test for equality in constant-time"}, "sodium_memzero":{"name":"sodium_memzero","type":"","path":"php/sodium_memzero.html","desc":"Overwrite buf with zeros"}, "sodium_pad":{"name":"sodium_pad","type":"","path":"php/sodium_pad.html","desc":"Add padding data"}, "sodium_unpad":{"name":"sodium_unpad","type":"","path":"php/sodium_unpad.html","desc":"Remove padding data"}, "solr_get_version":{"name":"solr_get_version","type":"","path":"php/solr_get_version.html","desc":"返回当前Solr扩展的版本"}, "sort":{"name":"sort","type":"","path":"php/sort.html","desc":"对数组排序"}, "soundex":{"name":"soundex","type":"","path":"php/soundex.html","desc":"Calculate the soundex key of a string"}, "split":{"name":"split","type":"","path":"php/split.html","desc":"用正则表达式将字符串分割到数组中"}, "spliti":{"name":"spliti","type":"","path":"php/spliti.html","desc":"用正则表达式不区分大小写将字符串分割到数组中"}, "spl_autoload":{"name":"spl_autoload","type":"","path":"php/spl_autoload.html","desc":"__autoload()函数的默认实现"}, "spl_autoload_call":{"name":"spl_autoload_call","type":"","path":"php/spl_autoload_call.html","desc":"尝试调用所有已注册的__autoload()函数来装载请求类"}, "spl_autoload_extensions":{"name":"spl_autoload_extensions","type":"","path":"php/spl_autoload_extensions.html","desc":"注册并返回spl_autoload函数使用的默认文件扩展名。"}, "spl_autoload_functions":{"name":"spl_autoload_functions","type":"","path":"php/spl_autoload_functions.html","desc":"返回所有已注册的__autoload()函数。"}, "spl_autoload_register":{"name":"spl_autoload_register","type":"","path":"php/spl_autoload_register.html","desc":"注册给定的函数作为 __autoload 的实现"}, "spl_autoload_unregister":{"name":"spl_autoload_unregister","type":"","path":"php/spl_autoload_unregister.html","desc":"注销已注册的__autoload()函数"}, "spl_classes":{"name":"spl_classes","type":"","path":"php/spl_classes.html","desc":"返回所有可用的SPL类"}, "spl_object_hash":{"name":"spl_object_hash","type":"","path":"php/spl_object_hash.html","desc":"返回指定对象的hash id"}, "spl_object_id":{"name":"spl_object_id","type":"","path":"php/spl_object_id.html","desc":"Return the integer object handle for given object"}, "sprintf":{"name":"sprintf","type":"","path":"php/sprintf.html","desc":"Return a formatted string"}, "sqlite_array_query":{"name":"sqlite_array_query","type":"","path":"php/sqlite_array_query.html","desc":"Execute a query against a given database and returns an array"}, "sqlite_busy_timeout":{"name":"sqlite_busy_timeout","type":"","path":"php/sqlite_busy_timeout.html","desc":"Set busy timeout duration, or disable busy handlers"}, "sqlite_changes":{"name":"sqlite_changes","type":"","path":"php/sqlite_changes.html","desc":"Returns the number of rows that were changed by "}, "sqlite_close":{"name":"sqlite_close","type":"","path":"php/sqlite_close.html","desc":"Closes an open SQLite database"}, "sqlite_column":{"name":"sqlite_column","type":"","path":"php/sqlite_column.html","desc":"Fetches a column from the current row of a result set"}, "sqlite_create_aggregate":{"name":"sqlite_create_aggregate","type":"","path":"php/sqlite_create_aggregate.html","desc":"Register an aggregating UDF for use in SQL statements"}, "sqlite_create_function":{"name":"sqlite_create_function","type":"","path":"php/sqlite_create_function.html","desc":"Registers a "regular" User Defined Function for use in SQL statements"}, "sqlite_current":{"name":"sqlite_current","type":"","path":"php/sqlite_current.html","desc":"Fetches the current row from a result set as an array"}, "sqlite_error_string":{"name":"sqlite_error_string","type":"","path":"php/sqlite_error_string.html","desc":"Returns the textual description of an error code"}, "sqlite_escape_string":{"name":"sqlite_escape_string","type":"","path":"php/sqlite_escape_string.html","desc":"Escapes a string for use as a query parameter"}, "sqlite_exec":{"name":"sqlite_exec","type":"","path":"php/sqlite_exec.html","desc":"Executes a result-less query against a given database"}, "sqlite_factory":{"name":"sqlite_factory","type":"","path":"php/sqlite_factory.html","desc":"Opens an SQLite database and returns an SQLiteDatabase object"}, "sqlite_fetch_all":{"name":"sqlite_fetch_all","type":"","path":"php/sqlite_fetch_all.html","desc":"Fetches all rows from a result set as an array of arrays"}, "sqlite_fetch_array":{"name":"sqlite_fetch_array","type":"","path":"php/sqlite_fetch_array.html","desc":"Fetches the next row from a result set as an array"}, "sqlite_fetch_column_types":{"name":"sqlite_fetch_column_types","type":"","path":"php/sqlite_fetch_column_types.html","desc":"Return an array of column types from a particular table"}, "sqlite_fetch_object":{"name":"sqlite_fetch_object","type":"","path":"php/sqlite_fetch_object.html","desc":"Fetches the next row from a result set as an object"}, "sqlite_fetch_single":{"name":"sqlite_fetch_single","type":"","path":"php/sqlite_fetch_single.html","desc":"Fetches the first column of a result set as a string"}, "sqlite_fetch_string":{"name":"sqlite_fetch_string","type":"","path":"php/sqlite_fetch_string.html","desc":"别名 sqlite_fetch_single"}, "sqlite_field_name":{"name":"sqlite_field_name","type":"","path":"php/sqlite_field_name.html","desc":"Returns the name of a particular field"}, "sqlite_has_more":{"name":"sqlite_has_more","type":"","path":"php/sqlite_has_more.html","desc":"Finds whether or not more rows are available"}, "sqlite_has_prev":{"name":"sqlite_has_prev","type":"","path":"php/sqlite_has_prev.html","desc":"Returns whether or not a previous row is available"}, "sqlite_key":{"name":"sqlite_key","type":"","path":"php/sqlite_key.html","desc":"Returns the current row index"}, "sqlite_last_error":{"name":"sqlite_last_error","type":"","path":"php/sqlite_last_error.html","desc":"Returns the error code of the last error for a database"}, "sqlite_last_insert_rowid":{"name":"sqlite_last_insert_rowid","type":"","path":"php/sqlite_last_insert_rowid.html","desc":"Returns the rowid of the most recently inserted row"}, "sqlite_libencoding":{"name":"sqlite_libencoding","type":"","path":"php/sqlite_libencoding.html","desc":"Returns the encoding of the linked SQLite library"}, "sqlite_libversion":{"name":"sqlite_libversion","type":"","path":"php/sqlite_libversion.html","desc":"Returns the version of the linked SQLite library"}, "sqlite_next":{"name":"sqlite_next","type":"","path":"php/sqlite_next.html","desc":"Seek to the next row number"}, "sqlite_num_fields":{"name":"sqlite_num_fields","type":"","path":"php/sqlite_num_fields.html","desc":"Returns the number of fields in a result set"}, "sqlite_num_rows":{"name":"sqlite_num_rows","type":"","path":"php/sqlite_num_rows.html","desc":"Returns the number of rows in a buffered result set"}, "sqlite_open":{"name":"sqlite_open","type":"","path":"php/sqlite_open.html","desc":"Opens an SQLite database and create the database if it does not exist"}, "sqlite_popen":{"name":"sqlite_popen","type":"","path":"php/sqlite_popen.html","desc":"Opens a persistent handle to an SQLite database and create the database if it does not exist"}, "sqlite_prev":{"name":"sqlite_prev","type":"","path":"php/sqlite_prev.html","desc":"Seek to the previous row number of a result set"}, "sqlite_query":{"name":"sqlite_query","type":"","path":"php/sqlite_query.html","desc":"Executes a query against a given database and returns a result handle"}, "sqlite_rewind":{"name":"sqlite_rewind","type":"","path":"php/sqlite_rewind.html","desc":"Seek to the first row number"}, "sqlite_seek":{"name":"sqlite_seek","type":"","path":"php/sqlite_seek.html","desc":"Seek to a particular row number of a buffered result set"}, "sqlite_single_query":{"name":"sqlite_single_query","type":"","path":"php/sqlite_single_query.html","desc":"Executes a query and returns either an array for one single column or the value of the first row"}, "sqlite_udf_decode_binary":{"name":"sqlite_udf_decode_binary","type":"","path":"php/sqlite_udf_decode_binary.html","desc":"Decode binary data passed as parameters to an UDF"}, "sqlite_udf_encode_binary":{"name":"sqlite_udf_encode_binary","type":"","path":"php/sqlite_udf_encode_binary.html","desc":"Encode binary data before returning it from an UDF"}, "sqlite_unbuffered_query":{"name":"sqlite_unbuffered_query","type":"","path":"php/sqlite_unbuffered_query.html","desc":"Execute a query that does not prefetch and buffer all data"}, "sqlite_valid":{"name":"sqlite_valid","type":"","path":"php/sqlite_valid.html","desc":"Returns whether more rows are available"}, "sqlsrv_begin_transaction":{"name":"sqlsrv_begin_transaction","type":"","path":"php/sqlsrv_begin_transaction.html","desc":"Begins a database transaction"}, "sqlsrv_cancel":{"name":"sqlsrv_cancel","type":"","path":"php/sqlsrv_cancel.html","desc":"Cancels a statement"}, "sqlsrv_client_info":{"name":"sqlsrv_client_info","type":"","path":"php/sqlsrv_client_info.html","desc":"Returns information about the client and specified connection"}, "sqlsrv_close":{"name":"sqlsrv_close","type":"","path":"php/sqlsrv_close.html","desc":"Closes an open connection and releases resourses associated with the connection"}, "sqlsrv_commit":{"name":"sqlsrv_commit","type":"","path":"php/sqlsrv_commit.html","desc":"Commits a transaction that was begun with sqlsrv_begin_transaction"}, "sqlsrv_configure":{"name":"sqlsrv_configure","type":"","path":"php/sqlsrv_configure.html","desc":"Changes the driver error handling and logging configurations"}, "sqlsrv_connect":{"name":"sqlsrv_connect","type":"","path":"php/sqlsrv_connect.html","desc":"Opens a connection to a Microsoft SQL Server database"}, "sqlsrv_errors":{"name":"sqlsrv_errors","type":"","path":"php/sqlsrv_errors.html","desc":"Returns error and warning information about the last SQLSRV operation performed"}, "sqlsrv_execute":{"name":"sqlsrv_execute","type":"","path":"php/sqlsrv_execute.html","desc":"Executes a statement prepared with sqlsrv_prepare"}, "sqlsrv_fetch":{"name":"sqlsrv_fetch","type":"","path":"php/sqlsrv_fetch.html","desc":"Makes the next row in a result set available for reading"}, "sqlsrv_fetch_array":{"name":"sqlsrv_fetch_array","type":"","path":"php/sqlsrv_fetch_array.html","desc":"Returns a row as an array"}, "sqlsrv_fetch_object":{"name":"sqlsrv_fetch_object","type":"","path":"php/sqlsrv_fetch_object.html","desc":"Retrieves the next row of data in a result set as an object"}, "sqlsrv_field_metadata":{"name":"sqlsrv_field_metadata","type":"","path":"php/sqlsrv_field_metadata.html","desc":"Retrieves metadata for the fields of a statement pre"}, "sqlsrv_free_stmt":{"name":"sqlsrv_free_stmt","type":"","path":"php/sqlsrv_free_stmt.html","desc":"Frees all resources for the specified statement"}, "sqlsrv_get_config":{"name":"sqlsrv_get_config","type":"","path":"php/sqlsrv_get_config.html","desc":"Returns the value of the specified configuration setting"}, "sqlsrv_get_field":{"name":"sqlsrv_get_field","type":"","path":"php/sqlsrv_get_field.html","desc":"Gets field data from the currently selected row"}, "sqlsrv_has_rows":{"name":"sqlsrv_has_rows","type":"","path":"php/sqlsrv_has_rows.html","desc":"Indicates whether the specified statement has rows"}, "sqlsrv_next_result":{"name":"sqlsrv_next_result","type":"","path":"php/sqlsrv_next_result.html","desc":"Makes the next result of the specified statement active"}, "sqlsrv_num_fields":{"name":"sqlsrv_num_fields","type":"","path":"php/sqlsrv_num_fields.html","desc":"Retrieves the number of fields (columns) on a statement"}, "sqlsrv_num_rows":{"name":"sqlsrv_num_rows","type":"","path":"php/sqlsrv_num_rows.html","desc":"Retrieves the number of rows in a result set"}, "sqlsrv_prepare":{"name":"sqlsrv_prepare","type":"","path":"php/sqlsrv_prepare.html","desc":"Prepares a query for execution"}, "sqlsrv_query":{"name":"sqlsrv_query","type":"","path":"php/sqlsrv_query.html","desc":"Prepares and executes a query"}, "sqlsrv_rollback":{"name":"sqlsrv_rollback","type":"","path":"php/sqlsrv_rollback.html","desc":"Rolls back a transaction that was be"}, "sqlsrv_rows_affected":{"name":"sqlsrv_rows_affected","type":"","path":"php/sqlsrv_rows_affected.html","desc":"Returns the number of rows modified by the last INSERT, UP"}, "sqlsrv_send_stream_data":{"name":"sqlsrv_send_stream_data","type":"","path":"php/sqlsrv_send_stream_data.html","desc":"Sends data from parameter streams to the server"}, "sqlsrv_server_info":{"name":"sqlsrv_server_info","type":"","path":"php/sqlsrv_server_info.html","desc":"Returns information about the server"}, "sql_regcase":{"name":"sql_regcase","type":"","path":"php/sql_regcase.html","desc":"产生用于不区分大小的匹配的正则表达式"}, "sqrt":{"name":"sqrt","type":"","path":"php/sqrt.html","desc":"平方根"}, "srand":{"name":"srand","type":"","path":"php/srand.html","desc":"播下随机数发生器种子"}, "sscanf":{"name":"sscanf","type":"","path":"php/sscanf.html","desc":"根据指定格式解析输入的字符"}, "ssdeep_fuzzy_compare":{"name":"ssdeep_fuzzy_compare","type":"","path":"php/ssdeep_fuzzy_compare.html","desc":"Calculates the match score between two fuzzy hash signatures"}, "ssdeep_fuzzy_hash":{"name":"ssdeep_fuzzy_hash","type":"","path":"php/ssdeep_fuzzy_hash.html","desc":"Create a fuzzy hash from a string"}, "ssdeep_fuzzy_hash_filename":{"name":"ssdeep_fuzzy_hash_filename","type":"","path":"php/ssdeep_fuzzy_hash_filename.html","desc":"Create a fuzzy hash from a file"}, "ssh2_auth_agent":{"name":"ssh2_auth_agent","type":"","path":"php/ssh2_auth_agent.html","desc":"Authenticate over SSH using the ssh agent"}, "ssh2_auth_hostbased_file":{"name":"ssh2_auth_hostbased_file","type":"","path":"php/ssh2_auth_hostbased_file.html","desc":"Authenticate using a public hostkey"}, "ssh2_auth_none":{"name":"ssh2_auth_none","type":"","path":"php/ssh2_auth_none.html","desc":"Authenticate as "none""}, "ssh2_auth_password":{"name":"ssh2_auth_password","type":"","path":"php/ssh2_auth_password.html","desc":"Authenticate over SSH using a plain password"}, "ssh2_auth_pubkey_file":{"name":"ssh2_auth_pubkey_file","type":"","path":"php/ssh2_auth_pubkey_file.html","desc":"Authenticate using a public key"}, "ssh2_connect":{"name":"ssh2_connect","type":"","path":"php/ssh2_connect.html","desc":"Connect to an SSH server"}, "ssh2_disconnect":{"name":"ssh2_disconnect","type":"","path":"php/ssh2_disconnect.html","desc":"Close a connection to a remote SSH server"}, "ssh2_exec":{"name":"ssh2_exec","type":"","path":"php/ssh2_exec.html","desc":"Execute a command on a remote server"}, "ssh2_fetch_stream":{"name":"ssh2_fetch_stream","type":"","path":"php/ssh2_fetch_stream.html","desc":"Fetch an extended data stream"}, "ssh2_fingerprint":{"name":"ssh2_fingerprint","type":"","path":"php/ssh2_fingerprint.html","desc":"Retrieve fingerprint of remote server"}, "ssh2_methods_negotiated":{"name":"ssh2_methods_negotiated","type":"","path":"php/ssh2_methods_negotiated.html","desc":"Return list of negotiated methods"}, "ssh2_publickey_add":{"name":"ssh2_publickey_add","type":"","path":"php/ssh2_publickey_add.html","desc":"Add an authorized publickey"}, "ssh2_publickey_init":{"name":"ssh2_publickey_init","type":"","path":"php/ssh2_publickey_init.html","desc":"Initialize Publickey subsystem"}, "ssh2_publickey_list":{"name":"ssh2_publickey_list","type":"","path":"php/ssh2_publickey_list.html","desc":"List currently authorized publickeys"}, "ssh2_publickey_remove":{"name":"ssh2_publickey_remove","type":"","path":"php/ssh2_publickey_remove.html","desc":"Remove an authorized publickey"}, "ssh2_scp_recv":{"name":"ssh2_scp_recv","type":"","path":"php/ssh2_scp_recv.html","desc":"Request a file via SCP"}, "ssh2_scp_send":{"name":"ssh2_scp_send","type":"","path":"php/ssh2_scp_send.html","desc":"Send a file via SCP"}, "ssh2_sftp":{"name":"ssh2_sftp","type":"","path":"php/ssh2_sftp.html","desc":"Initialize SFTP subsystem"}, "ssh2_sftp_chmod":{"name":"ssh2_sftp_chmod","type":"","path":"php/ssh2_sftp_chmod.html","desc":"Changes file mode"}, "ssh2_sftp_lstat":{"name":"ssh2_sftp_lstat","type":"","path":"php/ssh2_sftp_lstat.html","desc":"Stat a symbolic link"}, "ssh2_sftp_mkdir":{"name":"ssh2_sftp_mkdir","type":"","path":"php/ssh2_sftp_mkdir.html","desc":"Create a directory"}, "ssh2_sftp_readlink":{"name":"ssh2_sftp_readlink","type":"","path":"php/ssh2_sftp_readlink.html","desc":"Return the target of a symbolic link"}, "ssh2_sftp_realpath":{"name":"ssh2_sftp_realpath","type":"","path":"php/ssh2_sftp_realpath.html","desc":"Resolve the realpath of a provided path string"}, "ssh2_sftp_rename":{"name":"ssh2_sftp_rename","type":"","path":"php/ssh2_sftp_rename.html","desc":"Rename a remote file"}, "ssh2_sftp_rmdir":{"name":"ssh2_sftp_rmdir","type":"","path":"php/ssh2_sftp_rmdir.html","desc":"Remove a directory"}, "ssh2_sftp_stat":{"name":"ssh2_sftp_stat","type":"","path":"php/ssh2_sftp_stat.html","desc":"Stat a file on a remote filesystem"}, "ssh2_sftp_symlink":{"name":"ssh2_sftp_symlink","type":"","path":"php/ssh2_sftp_symlink.html","desc":"Create a symlink"}, "ssh2_sftp_unlink":{"name":"ssh2_sftp_unlink","type":"","path":"php/ssh2_sftp_unlink.html","desc":"Delete a file"}, "ssh2_shell":{"name":"ssh2_shell","type":"","path":"php/ssh2_shell.html","desc":"Request an interactive shell"}, "ssh2_tunnel":{"name":"ssh2_tunnel","type":"","path":"php/ssh2_tunnel.html","desc":"Open a tunnel through a remote server"}, "stat":{"name":"stat","type":"","path":"php/stat.html","desc":"给出文件的信息"}, "stats_absolute_deviation":{"name":"stats_absolute_deviation","type":"","path":"php/stats_absolute_deviation.html","desc":"Returns the absolute deviation of an array of values"}, "stats_cdf_beta":{"name":"stats_cdf_beta","type":"","path":"php/stats_cdf_beta.html","desc":"Calculates any one parameter of the beta distribution given values for the others"}, "stats_cdf_binomial":{"name":"stats_cdf_binomial","type":"","path":"php/stats_cdf_binomial.html","desc":"Calculates any one parameter of the binomial distribution given values for the others"}, "stats_cdf_cauchy":{"name":"stats_cdf_cauchy","type":"","path":"php/stats_cdf_cauchy.html","desc":"Calculates any one parameter of the Cauchy distribution given values for the others"}, "stats_cdf_chisquare":{"name":"stats_cdf_chisquare","type":"","path":"php/stats_cdf_chisquare.html","desc":"Calculates any one parameter of the chi-square distribution given values for the others"}, "stats_cdf_exponential":{"name":"stats_cdf_exponential","type":"","path":"php/stats_cdf_exponential.html","desc":"Calculates any one parameter of the exponential distribution given values for the others"}, "stats_cdf_f":{"name":"stats_cdf_f","type":"","path":"php/stats_cdf_f.html","desc":"Calculates any one parameter of the F distribution given values for the others"}, "stats_cdf_gamma":{"name":"stats_cdf_gamma","type":"","path":"php/stats_cdf_gamma.html","desc":"Calculates any one parameter of the gamma distribution given values for the others"}, "stats_cdf_laplace":{"name":"stats_cdf_laplace","type":"","path":"php/stats_cdf_laplace.html","desc":"Calculates any one parameter of the Laplace distribution given values for the others"}, "stats_cdf_logistic":{"name":"stats_cdf_logistic","type":"","path":"php/stats_cdf_logistic.html","desc":"Calculates any one parameter of the logistic distribution given values for the others"}, "stats_cdf_negative_binomial":{"name":"stats_cdf_negative_binomial","type":"","path":"php/stats_cdf_negative_binomial.html","desc":"Calculates any one parameter of the negative binomial distribution given values for the others"}, "stats_cdf_noncentral_chisquare":{"name":"stats_cdf_noncentral_chisquare","type":"","path":"php/stats_cdf_noncentral_chisquare.html","desc":"Calculates any one parameter of the non-central chi-square distribution given values for the others"}, "stats_cdf_noncentral_f":{"name":"stats_cdf_noncentral_f","type":"","path":"php/stats_cdf_noncentral_f.html","desc":"Calculates any one parameter of the non-central F distribution given values for the others"}, "stats_cdf_noncentral_t":{"name":"stats_cdf_noncentral_t","type":"","path":"php/stats_cdf_noncentral_t.html","desc":"Calculates any one parameter of the non-central t-distribution give values for the others"}, "stats_cdf_normal":{"name":"stats_cdf_normal","type":"","path":"php/stats_cdf_normal.html","desc":"Calculates any one parameter of the normal distribution given values for the others"}, "stats_cdf_poisson":{"name":"stats_cdf_poisson","type":"","path":"php/stats_cdf_poisson.html","desc":"Calculates any one parameter of the Poisson distribution given values for the others"}, "stats_cdf_t":{"name":"stats_cdf_t","type":"","path":"php/stats_cdf_t.html","desc":"Calculates any one parameter of the t-distribution given values for the others"}, "stats_cdf_uniform":{"name":"stats_cdf_uniform","type":"","path":"php/stats_cdf_uniform.html","desc":"Calculates any one parameter of the uniform distribution given values for the others"}, "stats_cdf_weibull":{"name":"stats_cdf_weibull","type":"","path":"php/stats_cdf_weibull.html","desc":"Calculates any one parameter of the Weibull distribution given values for the others"}, "stats_covariance":{"name":"stats_covariance","type":"","path":"php/stats_covariance.html","desc":"Computes the covariance of two data sets"}, "stats_dens_beta":{"name":"stats_dens_beta","type":"","path":"php/stats_dens_beta.html","desc":"Probability density function of the beta distribution"}, "stats_dens_cauchy":{"name":"stats_dens_cauchy","type":"","path":"php/stats_dens_cauchy.html","desc":"Probability density function of the Cauchy distribution"}, "stats_dens_chisquare":{"name":"stats_dens_chisquare","type":"","path":"php/stats_dens_chisquare.html","desc":"Probability density function of the chi-square distribution"}, "stats_dens_exponential":{"name":"stats_dens_exponential","type":"","path":"php/stats_dens_exponential.html","desc":"Probability density function of the exponential distribution"}, "stats_dens_f":{"name":"stats_dens_f","type":"","path":"php/stats_dens_f.html","desc":"Probability density function of the F distribution"}, "stats_dens_gamma":{"name":"stats_dens_gamma","type":"","path":"php/stats_dens_gamma.html","desc":"Probability density function of the gamma distribution"}, "stats_dens_laplace":{"name":"stats_dens_laplace","type":"","path":"php/stats_dens_laplace.html","desc":"Probability density function of the Laplace distribution"}, "stats_dens_logistic":{"name":"stats_dens_logistic","type":"","path":"php/stats_dens_logistic.html","desc":"Probability density function of the logistic distribution"}, "stats_dens_normal":{"name":"stats_dens_normal","type":"","path":"php/stats_dens_normal.html","desc":"Probability density function of the normal distribution"}, "stats_dens_pmf_binomial":{"name":"stats_dens_pmf_binomial","type":"","path":"php/stats_dens_pmf_binomial.html","desc":"Probability mass function of the binomial distribution"}, "stats_dens_pmf_hypergeometric":{"name":"stats_dens_pmf_hypergeometric","type":"","path":"php/stats_dens_pmf_hypergeometric.html","desc":"Probability mass function of the hypergeometric distribution"}, "stats_dens_pmf_negative_binomial":{"name":"stats_dens_pmf_negative_binomial","type":"","path":"php/stats_dens_pmf_negative_binomial.html","desc":"Probability density function of the negative binomial distribution"}, "stats_dens_pmf_poisson":{"name":"stats_dens_pmf_poisson","type":"","path":"php/stats_dens_pmf_poisson.html","desc":"Probability mass function of the Poisson distribution"}, "stats_dens_t":{"name":"stats_dens_t","type":"","path":"php/stats_dens_t.html","desc":"Probability density function of the t-distribution"}, "stats_dens_uniform":{"name":"stats_dens_uniform","type":"","path":"php/stats_dens_uniform.html","desc":"Probability density function of the uniform distribution"}, "stats_dens_weibull":{"name":"stats_dens_weibull","type":"","path":"php/stats_dens_weibull.html","desc":"Probability density function of the Weibull distribution"}, "stats_harmonic_mean":{"name":"stats_harmonic_mean","type":"","path":"php/stats_harmonic_mean.html","desc":"Returns the harmonic mean of an array of values"}, "stats_kurtosis":{"name":"stats_kurtosis","type":"","path":"php/stats_kurtosis.html","desc":"Computes the kurtosis of the data in the array"}, "stats_rand_gen_beta":{"name":"stats_rand_gen_beta","type":"","path":"php/stats_rand_gen_beta.html","desc":"Generates a random deviate from the beta distribution"}, "stats_rand_gen_chisquare":{"name":"stats_rand_gen_chisquare","type":"","path":"php/stats_rand_gen_chisquare.html","desc":"Generates a random deviate from the chi-square distribution"}, "stats_rand_gen_exponential":{"name":"stats_rand_gen_exponential","type":"","path":"php/stats_rand_gen_exponential.html","desc":"Generates a random deviate from the exponential distribution"}, "stats_rand_gen_f":{"name":"stats_rand_gen_f","type":"","path":"php/stats_rand_gen_f.html","desc":"Generates a random deviate from the F distribution"}, "stats_rand_gen_funiform":{"name":"stats_rand_gen_funiform","type":"","path":"php/stats_rand_gen_funiform.html","desc":"Generates uniform float between low (exclusive) and high (exclusive)"}, "stats_rand_gen_gamma":{"name":"stats_rand_gen_gamma","type":"","path":"php/stats_rand_gen_gamma.html","desc":"Generates a random deviate from the gamma distribution"}, "stats_rand_gen_ibinomial":{"name":"stats_rand_gen_ibinomial","type":"","path":"php/stats_rand_gen_ibinomial.html","desc":"Generates a random deviate from the binomial distribution"}, "stats_rand_gen_ibinomial_negative":{"name":"stats_rand_gen_ibinomial_negative","type":"","path":"php/stats_rand_gen_ibinomial_negative.html","desc":"Generates a random deviate from the negative binomial distribution"}, "stats_rand_gen_int":{"name":"stats_rand_gen_int","type":"","path":"php/stats_rand_gen_int.html","desc":"Generates random integer between 1 and 2147483562"}, "stats_rand_gen_ipoisson":{"name":"stats_rand_gen_ipoisson","type":"","path":"php/stats_rand_gen_ipoisson.html","desc":"Generates a single random deviate from a Poisson distribution"}, "stats_rand_gen_iuniform":{"name":"stats_rand_gen_iuniform","type":"","path":"php/stats_rand_gen_iuniform.html","desc":"Generates integer uniformly distributed between LOW (inclusive) and HIGH (inclusive)"}, "stats_rand_gen_noncenral_chisquare":{"name":"stats_rand_gen_noncenral_chisquare","type":"","path":"php/stats_rand_gen_noncenral_chisquare.html","desc":"Generates a random deviate from the non-central chi-square distribution"}, "stats_rand_gen_noncentral_chisquare":{"name":"stats_rand_gen_noncentral_chisquare","type":"","path":"php/stats_rand_gen_noncentral_chisquare.html","desc":"Generates a random deviate from the non-central chi-square distribution"}, "stats_rand_gen_noncentral_f":{"name":"stats_rand_gen_noncentral_f","type":"","path":"php/stats_rand_gen_noncentral_f.html","desc":"Generates a random deviate from the noncentral F distribution"}, "stats_rand_gen_noncentral_t":{"name":"stats_rand_gen_noncentral_t","type":"","path":"php/stats_rand_gen_noncentral_t.html","desc":"Generates a single random deviate from a non-central t-distribution"}, "stats_rand_gen_normal":{"name":"stats_rand_gen_normal","type":"","path":"php/stats_rand_gen_normal.html","desc":"Generates a single random deviate from a normal distribution"}, "stats_rand_gen_t":{"name":"stats_rand_gen_t","type":"","path":"php/stats_rand_gen_t.html","desc":"Generates a single random deviate from a t-distribution"}, "stats_rand_get_seeds":{"name":"stats_rand_get_seeds","type":"","path":"php/stats_rand_get_seeds.html","desc":"Get the seed values of the random number generator"}, "stats_rand_phrase_to_seeds":{"name":"stats_rand_phrase_to_seeds","type":"","path":"php/stats_rand_phrase_to_seeds.html","desc":"Generate two seeds for the RGN random number generator"}, "stats_rand_ranf":{"name":"stats_rand_ranf","type":"","path":"php/stats_rand_ranf.html","desc":"Generates a random floating point number between 0 and 1"}, "stats_rand_setall":{"name":"stats_rand_setall","type":"","path":"php/stats_rand_setall.html","desc":"Set seed values to the random generator"}, "stats_skew":{"name":"stats_skew","type":"","path":"php/stats_skew.html","desc":"Computes the skewness of the data in the array"}, "stats_standard_deviation":{"name":"stats_standard_deviation","type":"","path":"php/stats_standard_deviation.html","desc":"Returns the standard deviation"}, "stats_stat_binomial_coef":{"name":"stats_stat_binomial_coef","type":"","path":"php/stats_stat_binomial_coef.html","desc":"Returns a binomial coefficient"}, "stats_stat_correlation":{"name":"stats_stat_correlation","type":"","path":"php/stats_stat_correlation.html","desc":"Returns the Pearson correlation coefficient of two data sets"}, "stats_stat_factorial":{"name":"stats_stat_factorial","type":"","path":"php/stats_stat_factorial.html","desc":"Returns the factorial of an integer"}, "stats_stat_independent_t":{"name":"stats_stat_independent_t","type":"","path":"php/stats_stat_independent_t.html","desc":"Returns the t-value from the independent two-sample t-test"}, "stats_stat_innerproduct":{"name":"stats_stat_innerproduct","type":"","path":"php/stats_stat_innerproduct.html","desc":"Returns the inner product of two vectors"}, "stats_stat_paired_t":{"name":"stats_stat_paired_t","type":"","path":"php/stats_stat_paired_t.html","desc":"Returns the t-value of the dependent t-test for paired samples"}, "stats_stat_percentile":{"name":"stats_stat_percentile","type":"","path":"php/stats_stat_percentile.html","desc":"Returns the percentile value"}, "stats_stat_powersum":{"name":"stats_stat_powersum","type":"","path":"php/stats_stat_powersum.html","desc":"Returns the power sum of a vector"}, "stats_variance":{"name":"stats_variance","type":"","path":"php/stats_variance.html","desc":"Returns the variance"}, "stomp_connect_error":{"name":"stomp_connect_error","type":"","path":"php/stomp_connect_error.html","desc":"Returns a string description of the last connect error"}, "stomp_version":{"name":"stomp_version","type":"","path":"php/stomp_version.html","desc":"Gets the current stomp extension version"}, "strcasecmp":{"name":"strcasecmp","type":"","path":"php/strcasecmp.html","desc":"二进制安全比较字符串(不区分大小写)"}, "strchr":{"name":"strchr","type":"","path":"php/strchr.html","desc":"别名 strstr"}, "strcmp":{"name":"strcmp","type":"","path":"php/strcmp.html","desc":"二进制安全字符串比较"}, "strcoll":{"name":"strcoll","type":"","path":"php/strcoll.html","desc":"基于区域设置的字符串比较"}, "strcspn":{"name":"strcspn","type":"","path":"php/strcspn.html","desc":"获取不匹配遮罩的起始子字符串的长度"}, "stream_bucket_append":{"name":"stream_bucket_append","type":"","path":"php/stream_bucket_append.html","desc":"Append bucket to brigade"}, "stream_bucket_make_writeable":{"name":"stream_bucket_make_writeable","type":"","path":"php/stream_bucket_make_writeable.html","desc":"Return a bucket object from the brigade for operating on"}, "stream_bucket_new":{"name":"stream_bucket_new","type":"","path":"php/stream_bucket_new.html","desc":"Create a new bucket for use on the current stream"}, "stream_bucket_prepend":{"name":"stream_bucket_prepend","type":"","path":"php/stream_bucket_prepend.html","desc":"Prepend bucket to brigade"}, "stream_context_create":{"name":"stream_context_create","type":"","path":"php/stream_context_create.html","desc":"创建资源流上下文"}, "stream_context_get_default":{"name":"stream_context_get_default","type":"","path":"php/stream_context_get_default.html","desc":"Retrieve the default stream context"}, "stream_context_get_options":{"name":"stream_context_get_options","type":"","path":"php/stream_context_get_options.html","desc":"获取资源流数据包上下文的参数"}, "stream_context_get_params":{"name":"stream_context_get_params","type":"","path":"php/stream_context_get_params.html","desc":"Retrieves parameters from a context"}, "stream_context_set_default":{"name":"stream_context_set_default","type":"","path":"php/stream_context_set_default.html","desc":"Set the default stream context"}, "stream_context_set_option":{"name":"stream_context_set_option","type":"","path":"php/stream_context_set_option.html","desc":"对资源流、数据包或者上下文设置参数"}, "stream_context_set_params":{"name":"stream_context_set_params","type":"","path":"php/stream_context_set_params.html","desc":"Set parameters for a streamwrappercontext"}, "stream_copy_to_stream":{"name":"stream_copy_to_stream","type":"","path":"php/stream_copy_to_stream.html","desc":"Copies data from one stream to another"}, "stream_filter_append":{"name":"stream_filter_append","type":"","path":"php/stream_filter_append.html","desc":"Attach a filter to a stream"}, "stream_filter_prepend":{"name":"stream_filter_prepend","type":"","path":"php/stream_filter_prepend.html","desc":"Attach a filter to a stream"}, "stream_filter_register":{"name":"stream_filter_register","type":"","path":"php/stream_filter_register.html","desc":"Register a user defined stream filter"}, "stream_filter_remove":{"name":"stream_filter_remove","type":"","path":"php/stream_filter_remove.html","desc":"从资源流里移除某个过滤器"}, "stream_get_contents":{"name":"stream_get_contents","type":"","path":"php/stream_get_contents.html","desc":"读取资源流到一个字符串"}, "stream_get_filters":{"name":"stream_get_filters","type":"","path":"php/stream_get_filters.html","desc":"获取已注册的数据流过滤器列表"}, "stream_get_line":{"name":"stream_get_line","type":"","path":"php/stream_get_line.html","desc":"从资源流里读取一行直到给定的定界符"}, "stream_get_meta_data":{"name":"stream_get_meta_data","type":"","path":"php/stream_get_meta_data.html","desc":"从封装协议文件指针中取得报头/元数据"}, "stream_get_transports":{"name":"stream_get_transports","type":"","path":"php/stream_get_transports.html","desc":"获取已注册的套接字传输协议列表"}, "stream_get_wrappers":{"name":"stream_get_wrappers","type":"","path":"php/stream_get_wrappers.html","desc":"获取已注册的流类型"}, "stream_isatty":{"name":"stream_isatty","type":"","path":"php/stream_isatty.html","desc":"Check if a stream is a TTY"}, "stream_is_local":{"name":"stream_is_local","type":"","path":"php/stream_is_local.html","desc":"Checks if a stream is a local stream"}, "stream_notification_callback":{"name":"stream_notification_callback","type":"","path":"php/stream_notification_callback.html","desc":"A callback function for the notification context parameter"}, "stream_register_wrapper":{"name":"stream_register_wrapper","type":"","path":"php/stream_register_wrapper.html","desc":"别名 stream_wrapper_register"}, "stream_resolve_include_path":{"name":"stream_resolve_include_path","type":"","path":"php/stream_resolve_include_path.html","desc":"Resolve filename against the include path"}, "stream_select":{"name":"stream_select","type":"","path":"php/stream_select.html","desc":"Runs the equivalent of the select() system call on t"}, "stream_set_blocking":{"name":"stream_set_blocking","type":"","path":"php/stream_set_blocking.html","desc":"为资源流设置阻塞或者阻塞模式"}, "stream_set_chunk_size":{"name":"stream_set_chunk_size","type":"","path":"php/stream_set_chunk_size.html","desc":"设置资源流区块大小"}, "stream_set_read_buffer":{"name":"stream_set_read_buffer","type":"","path":"php/stream_set_read_buffer.html","desc":"Set read file buffering on the given stream"}, "stream_set_timeout":{"name":"stream_set_timeout","type":"","path":"php/stream_set_timeout.html","desc":"Set timeout period on a stream"}, "stream_set_write_buffer":{"name":"stream_set_write_buffer","type":"","path":"php/stream_set_write_buffer.html","desc":"Sets write file buffering on the given stream"}, "stream_socket_accept":{"name":"stream_socket_accept","type":"","path":"php/stream_socket_accept.html","desc":"接受由 stream_socket_server 创建的套接字连接"}, "stream_socket_client":{"name":"stream_socket_client","type":"","path":"php/stream_socket_client.html","desc":"Open Internet or Unix domain socket connection"}, "stream_socket_enable_crypto":{"name":"stream_socket_enable_crypto","type":"","path":"php/stream_socket_enable_crypto.html","desc":"Turns encryption onoff on an already connected socket"}, "stream_socket_get_name":{"name":"stream_socket_get_name","type":"","path":"php/stream_socket_get_name.html","desc":"获取本地或者远程的套接字名称"}, "stream_socket_pair":{"name":"stream_socket_pair","type":"","path":"php/stream_socket_pair.html","desc":"创建一对完全一样的网络套接字连接流"}, "stream_socket_recvfrom":{"name":"stream_socket_recvfrom","type":"","path":"php/stream_socket_recvfrom.html","desc":"Receives data from a socket, connected or not"}, "stream_socket_sendto":{"name":"stream_socket_sendto","type":"","path":"php/stream_socket_sendto.html","desc":"Sends a message to a socket, whether it is connected or not"}, "stream_socket_server":{"name":"stream_socket_server","type":"","path":"php/stream_socket_server.html","desc":"Create an Internet or Unix domain server socket"}, "stream_socket_shutdown":{"name":"stream_socket_shutdown","type":"","path":"php/stream_socket_shutdown.html","desc":"Shutdown a full-duplex connection"}, "stream_supports_lock":{"name":"stream_supports_lock","type":"","path":"php/stream_supports_lock.html","desc":"Tells whether the stream supports locking"}, "stream_wrapper_register":{"name":"stream_wrapper_register","type":"","path":"php/stream_wrapper_register.html","desc":"注册一个用 PHP 类实现的 URL 封装协议"}, "stream_wrapper_restore":{"name":"stream_wrapper_restore","type":"","path":"php/stream_wrapper_restore.html","desc":"Restores a previously unregistered built-in wrapper"}, "stream_wrapper_unregister":{"name":"stream_wrapper_unregister","type":"","path":"php/stream_wrapper_unregister.html","desc":"Unregister a URL wrapper"}, "strftime":{"name":"strftime","type":"","path":"php/strftime.html","desc":"根据区域设置格式化本地时间/日期"}, "stripcslashes":{"name":"stripcslashes","type":"","path":"php/stripcslashes.html","desc":"反引用一个使用 addcslashes 转义的字符串"}, "stripos":{"name":"stripos","type":"","path":"php/stripos.html","desc":"查找字符串首次出现的位置(不区分大小写)"}, "stripslashes":{"name":"stripslashes","type":"","path":"php/stripslashes.html","desc":"反引用一个引用字符串"}, "strip_tags":{"name":"strip_tags","type":"","path":"php/strip_tags.html","desc":"从字符串中去除 HTML 和 PHP 标记"}, "stristr":{"name":"stristr","type":"","path":"php/stristr.html","desc":"strstr 函数的忽略大小写版本"}, "strlen":{"name":"strlen","type":"","path":"php/strlen.html","desc":"获取字符串长度"}, "strnatcasecmp":{"name":"strnatcasecmp","type":"","path":"php/strnatcasecmp.html","desc":"使用“自然顺序”算法比较字符串(不区分大小写)"}, "strnatcmp":{"name":"strnatcmp","type":"","path":"php/strnatcmp.html","desc":"使用自然排序算法比较字符串"}, "strncasecmp":{"name":"strncasecmp","type":"","path":"php/strncasecmp.html","desc":"二进制安全比较字符串开头的若干个字符(不区分大小写)"}, "strncmp":{"name":"strncmp","type":"","path":"php/strncmp.html","desc":"二进制安全比较字符串开头的若干个字符"}, "strpbrk":{"name":"strpbrk","type":"","path":"php/strpbrk.html","desc":"在字符串中查找一组字符的任何一个字符"}, "strpos":{"name":"strpos","type":"","path":"php/strpos.html","desc":"查找字符串首次出现的位置"}, "strptime":{"name":"strptime","type":"","path":"php/strptime.html","desc":"解析由 strftime 生成的日期/时间"}, "strrchr":{"name":"strrchr","type":"","path":"php/strrchr.html","desc":"查找指定字符在字符串中的最后一次出现"}, "strrev":{"name":"strrev","type":"","path":"php/strrev.html","desc":"反转字符串"}, "strripos":{"name":"strripos","type":"","path":"php/strripos.html","desc":"计算指定字符串在目标字符串中最后一次出现的位置(不区分大小写)"}, "strrpos":{"name":"strrpos","type":"","path":"php/strrpos.html","desc":"计算指定字符串在目标字符串中最后一次出现的位置"}, "strspn":{"name":"strspn","type":"","path":"php/strspn.html","desc":"计算字符串中全部字符都存在于指定字符集合中的第一段子串的长度。"}, "strstr":{"name":"strstr","type":"","path":"php/strstr.html","desc":"查找字符串的首次出现"}, "strtok":{"name":"strtok","type":"","path":"php/strtok.html","desc":"标记分割字符串"}, "strtolower":{"name":"strtolower","type":"","path":"php/strtolower.html","desc":"将字符串转化为小写"}, "strtotime":{"name":"strtotime","type":"","path":"php/strtotime.html","desc":"将任何字符串的日期时间描述解析为 Unix 时间戳"}, "strtoupper":{"name":"strtoupper","type":"","path":"php/strtoupper.html","desc":"将字符串转化为大写"}, "strtr":{"name":"strtr","type":"","path":"php/strtr.html","desc":"转换指定字符"}, "strval":{"name":"strval","type":"","path":"php/strval.html","desc":"获取变量的字符串值"}, "str_getcsv":{"name":"str_getcsv","type":"","path":"php/str_getcsv.html","desc":"解析 CSV 字符串为一个数组"}, "str_ireplace":{"name":"str_ireplace","type":"","path":"php/str_ireplace.html","desc":"str_replace 的忽略大小写版本"}, "str_pad":{"name":"str_pad","type":"","path":"php/str_pad.html","desc":"使用另一个字符串填充字符串为指定长度"}, "str_repeat":{"name":"str_repeat","type":"","path":"php/str_repeat.html","desc":"重复一个字符串"}, "str_replace":{"name":"str_replace","type":"","path":"php/str_replace.html","desc":"子字符串替换"}, "str_rot13":{"name":"str_rot13","type":"","path":"php/str_rot13.html","desc":"对字符串执行 ROT13 转换"}, "str_shuffle":{"name":"str_shuffle","type":"","path":"php/str_shuffle.html","desc":"随机打乱一个字符串"}, "str_split":{"name":"str_split","type":"","path":"php/str_split.html","desc":"将字符串转换为数组"}, "str_word_count":{"name":"str_word_count","type":"","path":"php/str_word_count.html","desc":"返回字符串中单词的使用情况"}, "substr":{"name":"substr","type":"","path":"php/substr.html","desc":"返回字符串的子串"}, "substr_compare":{"name":"substr_compare","type":"","path":"php/substr_compare.html","desc":"二进制安全比较字符串(从偏移位置比较指定长度)"}, "substr_count":{"name":"substr_count","type":"","path":"php/substr_count.html","desc":"计算字串出现的次数"}, "substr_replace":{"name":"substr_replace","type":"","path":"php/substr_replace.html","desc":"替换字符串的子串"}, "svn_add":{"name":"svn_add","type":"","path":"php/svn_add.html","desc":"计划在工作目录添加项"}, "svn_auth_get_parameter":{"name":"svn_auth_get_parameter","type":"","path":"php/svn_auth_get_parameter.html","desc":"Retrieves authentication parameter"}, "svn_auth_set_parameter":{"name":"svn_auth_set_parameter","type":"","path":"php/svn_auth_set_parameter.html","desc":"Sets an authentication parameter"}, "svn_blame":{"name":"svn_blame","type":"","path":"php/svn_blame.html","desc":"Get the SVN blame for a file"}, "svn_cat":{"name":"svn_cat","type":"","path":"php/svn_cat.html","desc":"Returns the contents of a file in a repository"}, "svn_checkout":{"name":"svn_checkout","type":"","path":"php/svn_checkout.html","desc":"Checks out a working copy from the repository"}, "svn_cleanup":{"name":"svn_cleanup","type":"","path":"php/svn_cleanup.html","desc":"Recursively cleanup a working copy directory, finishing incomplete operations and removing locks"}, "svn_client_version":{"name":"svn_client_version","type":"","path":"php/svn_client_version.html","desc":"Returns the version of the SVN client libraries"}, "svn_commit":{"name":"svn_commit","type":"","path":"php/svn_commit.html","desc":"将修改的本地文件副本发送至版本库"}, "svn_delete":{"name":"svn_delete","type":"","path":"php/svn_delete.html","desc":"Delete items from a working copy or repository"}, "svn_diff":{"name":"svn_diff","type":"","path":"php/svn_diff.html","desc":"Recursively diffs two paths"}, "svn_export":{"name":"svn_export","type":"","path":"php/svn_export.html","desc":"Export the contents of a SVN directory"}, "svn_fs_abort_txn":{"name":"svn_fs_abort_txn","type":"","path":"php/svn_fs_abort_txn.html","desc":"Abort a transaction, returns true if everything is okay, false otherwise"}, "svn_fs_apply_text":{"name":"svn_fs_apply_text","type":"","path":"php/svn_fs_apply_text.html","desc":"Creates and returns a stream that will be used to replace"}, "svn_fs_begin_txn2":{"name":"svn_fs_begin_txn2","type":"","path":"php/svn_fs_begin_txn2.html","desc":"Create a new transaction"}, "svn_fs_change_node_prop":{"name":"svn_fs_change_node_prop","type":"","path":"php/svn_fs_change_node_prop.html","desc":"Return true if everything is ok, false otherwise"}, "svn_fs_check_path":{"name":"svn_fs_check_path","type":"","path":"php/svn_fs_check_path.html","desc":"Determines what kind of item lives at path in a given repository fsroot"}, "svn_fs_contents_changed":{"name":"svn_fs_contents_changed","type":"","path":"php/svn_fs_contents_changed.html","desc":"Return true if content is different, false otherwise"}, "svn_fs_copy":{"name":"svn_fs_copy","type":"","path":"php/svn_fs_copy.html","desc":"Copies a file or a directory, returns true if all is ok, false otherwise"}, "svn_fs_delete":{"name":"svn_fs_delete","type":"","path":"php/svn_fs_delete.html","desc":"Deletes a file or a directory, return true if all is ok, false otherwise"}, "svn_fs_dir_entries":{"name":"svn_fs_dir_entries","type":"","path":"php/svn_fs_dir_entries.html","desc":"Enumerates the directory entries under path; returns a hash of dir names to file type"}, "svn_fs_file_contents":{"name":"svn_fs_file_contents","type":"","path":"php/svn_fs_file_contents.html","desc":"Returns a stream to access the contents of a file from a given version of the fs"}, "svn_fs_file_length":{"name":"svn_fs_file_length","type":"","path":"php/svn_fs_file_length.html","desc":"Returns the length of a file from a given version of the fs"}, "svn_fs_is_dir":{"name":"svn_fs_is_dir","type":"","path":"php/svn_fs_is_dir.html","desc":"Return true if the path points to a directory, false otherwise"}, "svn_fs_is_file":{"name":"svn_fs_is_file","type":"","path":"php/svn_fs_is_file.html","desc":"Return true if the path points to a file, false otherwise"}, "svn_fs_make_dir":{"name":"svn_fs_make_dir","type":"","path":"php/svn_fs_make_dir.html","desc":"Creates a new empty directory, returns true if all is ok, false otherwise"}, "svn_fs_make_file":{"name":"svn_fs_make_file","type":"","path":"php/svn_fs_make_file.html","desc":"Creates a new empty file, returns true if all is ok, false otherwise"}, "svn_fs_node_created_rev":{"name":"svn_fs_node_created_rev","type":"","path":"php/svn_fs_node_created_rev.html","desc":"Returns the revision in which path under fsroot was created"}, "svn_fs_node_prop":{"name":"svn_fs_node_prop","type":"","path":"php/svn_fs_node_prop.html","desc":"Returns the value of a property for a node"}, "svn_fs_props_changed":{"name":"svn_fs_props_changed","type":"","path":"php/svn_fs_props_changed.html","desc":"Return true if props are different, false otherwise"}, "svn_fs_revision_prop":{"name":"svn_fs_revision_prop","type":"","path":"php/svn_fs_revision_prop.html","desc":"Fetches the value of a named property"}, "svn_fs_revision_root":{"name":"svn_fs_revision_root","type":"","path":"php/svn_fs_revision_root.html","desc":"Get a handle on a specific version of the repository root"}, "svn_fs_txn_root":{"name":"svn_fs_txn_root","type":"","path":"php/svn_fs_txn_root.html","desc":"Creates and returns a transaction root"}, "svn_fs_youngest_rev":{"name":"svn_fs_youngest_rev","type":"","path":"php/svn_fs_youngest_rev.html","desc":"Returns the number of the youngest revision in the filesystem"}, "svn_import":{"name":"svn_import","type":"","path":"php/svn_import.html","desc":"Imports an unversioned path into a repository"}, "svn_log":{"name":"svn_log","type":"","path":"php/svn_log.html","desc":"Returns the commit log messages of a repository URL"}, "svn_ls":{"name":"svn_ls","type":"","path":"php/svn_ls.html","desc":"Returns list of directory contents in repository URL, optionally at revision number"}, "svn_mkdir":{"name":"svn_mkdir","type":"","path":"php/svn_mkdir.html","desc":"Creates a directory in a working copy or repository"}, "svn_repos_create":{"name":"svn_repos_create","type":"","path":"php/svn_repos_create.html","desc":"Create a new subversion repository at path"}, "svn_repos_fs":{"name":"svn_repos_fs","type":"","path":"php/svn_repos_fs.html","desc":"Gets a handle on the filesystem for a repository"}, "svn_repos_fs_begin_txn_for_commit":{"name":"svn_repos_fs_begin_txn_for_commit","type":"","path":"php/svn_repos_fs_begin_txn_for_commit.html","desc":"Create a new transaction"}, "svn_repos_fs_commit_txn":{"name":"svn_repos_fs_commit_txn","type":"","path":"php/svn_repos_fs_commit_txn.html","desc":"Commits a transaction and returns the new revision"}, "svn_repos_hotcopy":{"name":"svn_repos_hotcopy","type":"","path":"php/svn_repos_hotcopy.html","desc":"Make a hot-copy of the repos at repospath; copy it to destpath"}, "svn_repos_open":{"name":"svn_repos_open","type":"","path":"php/svn_repos_open.html","desc":"Open a shared lock on a repository"}, "svn_repos_recover":{"name":"svn_repos_recover","type":"","path":"php/svn_repos_recover.html","desc":"Run recovery procedures on the repository located at path"}, "svn_revert":{"name":"svn_revert","type":"","path":"php/svn_revert.html","desc":"Revert changes to the working copy"}, "svn_status":{"name":"svn_status","type":"","path":"php/svn_status.html","desc":"Returns the status of working copy files and directories"}, "svn_update":{"name":"svn_update","type":"","path":"php/svn_update.html","desc":"Update working copy"}, "swoole_async_dns_lookup":{"name":"swoole_async_dns_lookup","type":"","path":"php/swoole_async_dns_lookup.html","desc":"Async and non-blocking hostname to IP lookup"}, "swoole_async_read":{"name":"swoole_async_read","type":"","path":"php/swoole_async_read.html","desc":"Read file stream asynchronously"}, "swoole_async_readfile":{"name":"swoole_async_readfile","type":"","path":"php/swoole_async_readfile.html","desc":"Read a file asynchronously"}, "swoole_async_set":{"name":"swoole_async_set","type":"","path":"php/swoole_async_set.html","desc":"Update the async IO options"}, "swoole_async_write":{"name":"swoole_async_write","type":"","path":"php/swoole_async_write.html","desc":"Write data to a file stream asynchronously"}, "swoole_async_writefile":{"name":"swoole_async_writefile","type":"","path":"php/swoole_async_writefile.html","desc":"Write data to a file asynchronously"}, "swoole_client_select":{"name":"swoole_client_select","type":"","path":"php/swoole_client_select.html","desc":"Get the file description which are ready to readwrite or error"}, "swoole_cpu_num":{"name":"swoole_cpu_num","type":"","path":"php/swoole_cpu_num.html","desc":"Get the number of CPU"}, "swoole_errno":{"name":"swoole_errno","type":"","path":"php/swoole_errno.html","desc":"Get the error code of the latest system call"}, "swoole_event_add":{"name":"swoole_event_add","type":"","path":"php/swoole_event_add.html","desc":"Add new callback functions of a socket into the EventLoop"}, "swoole_event_defer":{"name":"swoole_event_defer","type":"","path":"php/swoole_event_defer.html","desc":"Add callback function to the next event loop"}, "swoole_event_del":{"name":"swoole_event_del","type":"","path":"php/swoole_event_del.html","desc":"Remove all event callback functions of a socket"}, "swoole_event_exit":{"name":"swoole_event_exit","type":"","path":"php/swoole_event_exit.html","desc":"Exit the eventloop, only available at the client side"}, "swoole_event_set":{"name":"swoole_event_set","type":"","path":"php/swoole_event_set.html","desc":"Update the event callback functions of a socket"}, "swoole_event_wait":{"name":"swoole_event_wait","type":"","path":"php/swoole_event_wait.html","desc":"Start the event loop"}, "swoole_event_write":{"name":"swoole_event_write","type":"","path":"php/swoole_event_write.html","desc":"Write data to a socket"}, "swoole_get_local_ip":{"name":"swoole_get_local_ip","type":"","path":"php/swoole_get_local_ip.html","desc":"Get the IPv4 IP addresses of each NIC on the machine"}, "swoole_last_error":{"name":"swoole_last_error","type":"","path":"php/swoole_last_error.html","desc":"Get the lastest error message"}, "swoole_load_module":{"name":"swoole_load_module","type":"","path":"php/swoole_load_module.html","desc":"Load a swoole extension"}, "swoole_select":{"name":"swoole_select","type":"","path":"php/swoole_select.html","desc":"Select the file descriptions which are ready to readwrite or error in the eventloop"}, "swoole_set_process_name":{"name":"swoole_set_process_name","type":"","path":"php/swoole_set_process_name.html","desc":"Set the process name"}, "swoole_strerror":{"name":"swoole_strerror","type":"","path":"php/swoole_strerror.html","desc":"Convert the Errno into error messages"}, "swoole_timer_after":{"name":"swoole_timer_after","type":"","path":"php/swoole_timer_after.html","desc":"Trigger a one time callback function in the future"}, "swoole_timer_exists":{"name":"swoole_timer_exists","type":"","path":"php/swoole_timer_exists.html","desc":"Check if a timer callback function is existed"}, "swoole_timer_tick":{"name":"swoole_timer_tick","type":"","path":"php/swoole_timer_tick.html","desc":"Trigger a timer tick callback function by time interval"}, "swoole_version":{"name":"swoole_version","type":"","path":"php/swoole_version.html","desc":"Get the version of Swoole"}, "sybase_affected_rows":{"name":"sybase_affected_rows","type":"","path":"php/sybase_affected_rows.html","desc":"Gets number of affected rows in last query"}, "sybase_close":{"name":"sybase_close","type":"","path":"php/sybase_close.html","desc":"Closes a Sybase connection"}, "sybase_connect":{"name":"sybase_connect","type":"","path":"php/sybase_connect.html","desc":"Opens a Sybase server connection"}, "sybase_data_seek":{"name":"sybase_data_seek","type":"","path":"php/sybase_data_seek.html","desc":"Moves internal row pointer"}, "sybase_deadlock_retry_count":{"name":"sybase_deadlock_retry_count","type":"","path":"php/sybase_deadlock_retry_count.html","desc":"Sets the deadlock retry count"}, "sybase_fetch_array":{"name":"sybase_fetch_array","type":"","path":"php/sybase_fetch_array.html","desc":"Fetch row as array"}, "sybase_fetch_assoc":{"name":"sybase_fetch_assoc","type":"","path":"php/sybase_fetch_assoc.html","desc":"Fetch a result row as an associative array"}, "sybase_fetch_field":{"name":"sybase_fetch_field","type":"","path":"php/sybase_fetch_field.html","desc":"Get field information from a result"}, "sybase_fetch_object":{"name":"sybase_fetch_object","type":"","path":"php/sybase_fetch_object.html","desc":"Fetch a row as an object"}, "sybase_fetch_row":{"name":"sybase_fetch_row","type":"","path":"php/sybase_fetch_row.html","desc":"Get a result row as an enumerated array"}, "sybase_field_seek":{"name":"sybase_field_seek","type":"","path":"php/sybase_field_seek.html","desc":"Sets field offset"}, "sybase_free_result":{"name":"sybase_free_result","type":"","path":"php/sybase_free_result.html","desc":"Frees result memory"}, "sybase_get_last_message":{"name":"sybase_get_last_message","type":"","path":"php/sybase_get_last_message.html","desc":"Returns the last message from the server"}, "sybase_min_client_severity":{"name":"sybase_min_client_severity","type":"","path":"php/sybase_min_client_severity.html","desc":"Sets minimum client severity"}, "sybase_min_error_severity":{"name":"sybase_min_error_severity","type":"","path":"php/sybase_min_error_severity.html","desc":"Sets minimum error severity"}, "sybase_min_message_severity":{"name":"sybase_min_message_severity","type":"","path":"php/sybase_min_message_severity.html","desc":"Sets minimum message severity"}, "sybase_min_server_severity":{"name":"sybase_min_server_severity","type":"","path":"php/sybase_min_server_severity.html","desc":"Sets minimum server severity"}, "sybase_num_fields":{"name":"sybase_num_fields","type":"","path":"php/sybase_num_fields.html","desc":"Gets the number of fields in a result set"}, "sybase_num_rows":{"name":"sybase_num_rows","type":"","path":"php/sybase_num_rows.html","desc":"Get number of rows in a result set"}, "sybase_pconnect":{"name":"sybase_pconnect","type":"","path":"php/sybase_pconnect.html","desc":"Open persistent Sybase connection"}, "sybase_query":{"name":"sybase_query","type":"","path":"php/sybase_query.html","desc":"Sends a Sybase query"}, "sybase_result":{"name":"sybase_result","type":"","path":"php/sybase_result.html","desc":"Get result data"}, "sybase_select_db":{"name":"sybase_select_db","type":"","path":"php/sybase_select_db.html","desc":"Selects a Sybase database"}, "sybase_set_message_handler":{"name":"sybase_set_message_handler","type":"","path":"php/sybase_set_message_handler.html","desc":"Sets the handler called when a server message is raised"}, "sybase_unbuffered_query":{"name":"sybase_unbuffered_query","type":"","path":"php/sybase_unbuffered_query.html","desc":"Send a Sybase query and do not block"}, "symlink":{"name":"symlink","type":"","path":"php/symlink.html","desc":"建立符号连接"}, "syslog":{"name":"syslog","type":"","path":"php/syslog.html","desc":"Generate a system log message"}, "system":{"name":"system","type":"","path":"php/system.html","desc":"执行外部程序,并且显示输出"}, "sys_getloadavg":{"name":"sys_getloadavg","type":"","path":"php/sys_getloadavg.html","desc":"获取系统的负载(load average)"}, "sys_get_temp_dir":{"name":"sys_get_temp_dir","type":"","path":"php/sys_get_temp_dir.html","desc":"返回用于临时文件的目录"}, "taint":{"name":"taint","type":"","path":"php/taint.html","desc":"Taint a string"}, "tan":{"name":"tan","type":"","path":"php/tan.html","desc":"正切"}, "tanh":{"name":"tanh","type":"","path":"php/tanh.html","desc":"双曲正切"}, "tcpwrap_check":{"name":"tcpwrap_check","type":"","path":"php/tcpwrap_check.html","desc":"Performs a tcpwrap check"}, "tempnam":{"name":"tempnam","type":"","path":"php/tempnam.html","desc":"建立一个具有唯一文件名的文件"}, "textdomain":{"name":"textdomain","type":"","path":"php/textdomain.html","desc":"Sets the default domain"}, "tidy_access_count":{"name":"tidy_access_count","type":"","path":"php/tidy_access_count.html","desc":"Returns the Number of Tidy accessibility warnings encountered for specified document"}, "tidy_config_count":{"name":"tidy_config_count","type":"","path":"php/tidy_config_count.html","desc":"Returns the Number of Tidy configuration errors encountered for specified document"}, "tidy_error_count":{"name":"tidy_error_count","type":"","path":"php/tidy_error_count.html","desc":"Returns the Number of Tidy errors encountered for specified document"}, "tidy_get_output":{"name":"tidy_get_output","type":"","path":"php/tidy_get_output.html","desc":"Return a string representing the parsed tidy markup"}, "tidy_warning_count":{"name":"tidy_warning_count","type":"","path":"php/tidy_warning_count.html","desc":"Returns the Number of Tidy warnings encountered for specified document"}, "time":{"name":"time","type":"","path":"php/time.html","desc":"返回当前的 Unix 时间戳"}, "timezone_abbreviations_list":{"name":"timezone_abbreviations_list","type":"","path":"php/timezone_abbreviations_list.html","desc":"别名 DateTimeZonelistAbbreviations"}, "timezone_identifiers_list":{"name":"timezone_identifiers_list","type":"","path":"php/timezone_identifiers_list.html","desc":"别名 DateTimeZonelistIdentifiers"}, "timezone_location_get":{"name":"timezone_location_get","type":"","path":"php/timezone_location_get.html","desc":"别名 DateTimeZonegetLocation"}, "timezone_name_from_abbr":{"name":"timezone_name_from_abbr","type":"","path":"php/timezone_name_from_abbr.html","desc":"Returns the timezone name from abbreviation"}, "timezone_name_get":{"name":"timezone_name_get","type":"","path":"php/timezone_name_get.html","desc":"别名 DateTimeZonegetName"}, "timezone_offset_get":{"name":"timezone_offset_get","type":"","path":"php/timezone_offset_get.html","desc":"别名 DateTimeZonegetOffset"}, "timezone_open":{"name":"timezone_open","type":"","path":"php/timezone_open.html","desc":"别名 DateTimeZone__construct"}, "timezone_transitions_get":{"name":"timezone_transitions_get","type":"","path":"php/timezone_transitions_get.html","desc":"别名 DateTimeZonegetTransitions"}, "timezone_version_get":{"name":"timezone_version_get","type":"","path":"php/timezone_version_get.html","desc":"Gets the version of the timezonedb"}, "time_nanosleep":{"name":"time_nanosleep","type":"","path":"php/time_nanosleep.html","desc":"延缓执行若干秒和纳秒"}, "time_sleep_until":{"name":"time_sleep_until","type":"","path":"php/time_sleep_until.html","desc":"使脚本睡眠到指定的时间为止。"}, "tmpfile":{"name":"tmpfile","type":"","path":"php/tmpfile.html","desc":"建立一个临时文件"}, "token_get_all":{"name":"token_get_all","type":"","path":"php/token_get_all.html","desc":"将提供的源码按 PHP 标记进行分割"}, "token_name":{"name":"token_name","type":"","path":"php/token_name.html","desc":"获取提供的 PHP 解析器代号的符号名称"}, "touch":{"name":"touch","type":"","path":"php/touch.html","desc":"设定文件的访问和修改时间"}, "trader_acos":{"name":"trader_acos","type":"","path":"php/trader_acos.html","desc":"Vector Trigonometric ACos"}, "trader_ad":{"name":"trader_ad","type":"","path":"php/trader_ad.html","desc":"Chaikin AD Line"}, "trader_add":{"name":"trader_add","type":"","path":"php/trader_add.html","desc":"Vector Arithmetic Add"}, "trader_adosc":{"name":"trader_adosc","type":"","path":"php/trader_adosc.html","desc":"Chaikin AD Oscillator"}, "trader_adx":{"name":"trader_adx","type":"","path":"php/trader_adx.html","desc":"Average Directional Movement Index"}, "trader_adxr":{"name":"trader_adxr","type":"","path":"php/trader_adxr.html","desc":"Average Directional Movement Index Rating"}, "trader_apo":{"name":"trader_apo","type":"","path":"php/trader_apo.html","desc":"Absolute Price Oscillator"}, "trader_aroon":{"name":"trader_aroon","type":"","path":"php/trader_aroon.html","desc":"Aroon"}, "trader_aroonosc":{"name":"trader_aroonosc","type":"","path":"php/trader_aroonosc.html","desc":"Aroon Oscillator"}, "trader_asin":{"name":"trader_asin","type":"","path":"php/trader_asin.html","desc":"Vector Trigonometric ASin"}, "trader_atan":{"name":"trader_atan","type":"","path":"php/trader_atan.html","desc":"Vector Trigonometric ATan"}, "trader_atr":{"name":"trader_atr","type":"","path":"php/trader_atr.html","desc":"Average True Range"}, "trader_avgprice":{"name":"trader_avgprice","type":"","path":"php/trader_avgprice.html","desc":"Average Price"}, "trader_bbands":{"name":"trader_bbands","type":"","path":"php/trader_bbands.html","desc":"Bollinger Bands"}, "trader_beta":{"name":"trader_beta","type":"","path":"php/trader_beta.html","desc":"Beta"}, "trader_bop":{"name":"trader_bop","type":"","path":"php/trader_bop.html","desc":"Balance Of Power"}, "trader_cci":{"name":"trader_cci","type":"","path":"php/trader_cci.html","desc":"Commodity Channel Index"}, "trader_cdl2crows":{"name":"trader_cdl2crows","type":"","path":"php/trader_cdl2crows.html","desc":"Two Crows"}, "trader_cdl3blackcrows":{"name":"trader_cdl3blackcrows","type":"","path":"php/trader_cdl3blackcrows.html","desc":"Three Black Crows"}, "trader_cdl3inside":{"name":"trader_cdl3inside","type":"","path":"php/trader_cdl3inside.html","desc":"Three Inside UpDown"}, "trader_cdl3linestrike":{"name":"trader_cdl3linestrike","type":"","path":"php/trader_cdl3linestrike.html","desc":"Three-Line Strike"}, "trader_cdl3outside":{"name":"trader_cdl3outside","type":"","path":"php/trader_cdl3outside.html","desc":"Three Outside UpDown"}, "trader_cdl3starsinsouth":{"name":"trader_cdl3starsinsouth","type":"","path":"php/trader_cdl3starsinsouth.html","desc":"Three Stars In The South"}, "trader_cdl3whitesoldiers":{"name":"trader_cdl3whitesoldiers","type":"","path":"php/trader_cdl3whitesoldiers.html","desc":"Three Advancing White Soldiers"}, "trader_cdlabandonedbaby":{"name":"trader_cdlabandonedbaby","type":"","path":"php/trader_cdlabandonedbaby.html","desc":"Abandoned Baby"}, "trader_cdladvanceblock":{"name":"trader_cdladvanceblock","type":"","path":"php/trader_cdladvanceblock.html","desc":"Advance Block"}, "trader_cdlbelthold":{"name":"trader_cdlbelthold","type":"","path":"php/trader_cdlbelthold.html","desc":"Belt-hold"}, "trader_cdlbreakaway":{"name":"trader_cdlbreakaway","type":"","path":"php/trader_cdlbreakaway.html","desc":"Breakaway"}, "trader_cdlclosingmarubozu":{"name":"trader_cdlclosingmarubozu","type":"","path":"php/trader_cdlclosingmarubozu.html","desc":"Closing Marubozu"}, "trader_cdlconcealbabyswall":{"name":"trader_cdlconcealbabyswall","type":"","path":"php/trader_cdlconcealbabyswall.html","desc":"Concealing Baby Swallow"}, "trader_cdlcounterattack":{"name":"trader_cdlcounterattack","type":"","path":"php/trader_cdlcounterattack.html","desc":"Counterattack"}, "trader_cdldarkcloudcover":{"name":"trader_cdldarkcloudcover","type":"","path":"php/trader_cdldarkcloudcover.html","desc":"Dark Cloud Cover"}, "trader_cdldoji":{"name":"trader_cdldoji","type":"","path":"php/trader_cdldoji.html","desc":"Doji"}, "trader_cdldojistar":{"name":"trader_cdldojistar","type":"","path":"php/trader_cdldojistar.html","desc":"Doji Star"}, "trader_cdldragonflydoji":{"name":"trader_cdldragonflydoji","type":"","path":"php/trader_cdldragonflydoji.html","desc":"Dragonfly Doji"}, "trader_cdlengulfing":{"name":"trader_cdlengulfing","type":"","path":"php/trader_cdlengulfing.html","desc":"Engulfing Pattern"}, "trader_cdleveningdojistar":{"name":"trader_cdleveningdojistar","type":"","path":"php/trader_cdleveningdojistar.html","desc":"Evening Doji Star"}, "trader_cdleveningstar":{"name":"trader_cdleveningstar","type":"","path":"php/trader_cdleveningstar.html","desc":"Evening Star"}, "trader_cdlgapsidesidewhite":{"name":"trader_cdlgapsidesidewhite","type":"","path":"php/trader_cdlgapsidesidewhite.html","desc":"UpDown-gap side-by-side white lines"}, "trader_cdlgravestonedoji":{"name":"trader_cdlgravestonedoji","type":"","path":"php/trader_cdlgravestonedoji.html","desc":"Gravestone Doji"}, "trader_cdlhammer":{"name":"trader_cdlhammer","type":"","path":"php/trader_cdlhammer.html","desc":"Hammer"}, "trader_cdlhangingman":{"name":"trader_cdlhangingman","type":"","path":"php/trader_cdlhangingman.html","desc":"Hanging Man"}, "trader_cdlharami":{"name":"trader_cdlharami","type":"","path":"php/trader_cdlharami.html","desc":"Harami Pattern"}, "trader_cdlharamicross":{"name":"trader_cdlharamicross","type":"","path":"php/trader_cdlharamicross.html","desc":"Harami Cross Pattern"}, "trader_cdlhighwave":{"name":"trader_cdlhighwave","type":"","path":"php/trader_cdlhighwave.html","desc":"High-Wave Candle"}, "trader_cdlhikkake":{"name":"trader_cdlhikkake","type":"","path":"php/trader_cdlhikkake.html","desc":"Hikkake Pattern"}, "trader_cdlhikkakemod":{"name":"trader_cdlhikkakemod","type":"","path":"php/trader_cdlhikkakemod.html","desc":"Modified Hikkake Pattern"}, "trader_cdlhomingpigeon":{"name":"trader_cdlhomingpigeon","type":"","path":"php/trader_cdlhomingpigeon.html","desc":"Homing Pigeon"}, "trader_cdlidentical3crows":{"name":"trader_cdlidentical3crows","type":"","path":"php/trader_cdlidentical3crows.html","desc":"Identical Three Crows"}, "trader_cdlinneck":{"name":"trader_cdlinneck","type":"","path":"php/trader_cdlinneck.html","desc":"In-Neck Pattern"}, "trader_cdlinvertedhammer":{"name":"trader_cdlinvertedhammer","type":"","path":"php/trader_cdlinvertedhammer.html","desc":"Inverted Hammer"}, "trader_cdlkicking":{"name":"trader_cdlkicking","type":"","path":"php/trader_cdlkicking.html","desc":"Kicking"}, "trader_cdlkickingbylength":{"name":"trader_cdlkickingbylength","type":"","path":"php/trader_cdlkickingbylength.html","desc":"Kicking - bullbear determined by the longer marubozu"}, "trader_cdlladderbottom":{"name":"trader_cdlladderbottom","type":"","path":"php/trader_cdlladderbottom.html","desc":"Ladder Bottom"}, "trader_cdllongleggeddoji":{"name":"trader_cdllongleggeddoji","type":"","path":"php/trader_cdllongleggeddoji.html","desc":"Long Legged Doji"}, "trader_cdllongline":{"name":"trader_cdllongline","type":"","path":"php/trader_cdllongline.html","desc":"Long Line Candle"}, "trader_cdlmarubozu":{"name":"trader_cdlmarubozu","type":"","path":"php/trader_cdlmarubozu.html","desc":"Marubozu"}, "trader_cdlmatchinglow":{"name":"trader_cdlmatchinglow","type":"","path":"php/trader_cdlmatchinglow.html","desc":"Matching Low"}, "trader_cdlmathold":{"name":"trader_cdlmathold","type":"","path":"php/trader_cdlmathold.html","desc":"Mat Hold"}, "trader_cdlmorningdojistar":{"name":"trader_cdlmorningdojistar","type":"","path":"php/trader_cdlmorningdojistar.html","desc":"Morning Doji Star"}, "trader_cdlmorningstar":{"name":"trader_cdlmorningstar","type":"","path":"php/trader_cdlmorningstar.html","desc":"Morning Star"}, "trader_cdlonneck":{"name":"trader_cdlonneck","type":"","path":"php/trader_cdlonneck.html","desc":"On-Neck Pattern"}, "trader_cdlpiercing":{"name":"trader_cdlpiercing","type":"","path":"php/trader_cdlpiercing.html","desc":"Piercing Pattern"}, "trader_cdlrickshawman":{"name":"trader_cdlrickshawman","type":"","path":"php/trader_cdlrickshawman.html","desc":"Rickshaw Man"}, "trader_cdlrisefall3methods":{"name":"trader_cdlrisefall3methods","type":"","path":"php/trader_cdlrisefall3methods.html","desc":"RisingFalling Three Methods"}, "trader_cdlseparatinglines":{"name":"trader_cdlseparatinglines","type":"","path":"php/trader_cdlseparatinglines.html","desc":"Separating Lines"}, "trader_cdlshootingstar":{"name":"trader_cdlshootingstar","type":"","path":"php/trader_cdlshootingstar.html","desc":"Shooting Star"}, "trader_cdlshortline":{"name":"trader_cdlshortline","type":"","path":"php/trader_cdlshortline.html","desc":"Short Line Candle"}, "trader_cdlspinningtop":{"name":"trader_cdlspinningtop","type":"","path":"php/trader_cdlspinningtop.html","desc":"Spinning Top"}, "trader_cdlstalledpattern":{"name":"trader_cdlstalledpattern","type":"","path":"php/trader_cdlstalledpattern.html","desc":"Stalled Pattern"}, "trader_cdlsticksandwich":{"name":"trader_cdlsticksandwich","type":"","path":"php/trader_cdlsticksandwich.html","desc":"Stick Sandwich"}, "trader_cdltakuri":{"name":"trader_cdltakuri","type":"","path":"php/trader_cdltakuri.html","desc":"Takuri (Dragonfly Doji with very long lower shadow)"}, "trader_cdltasukigap":{"name":"trader_cdltasukigap","type":"","path":"php/trader_cdltasukigap.html","desc":"Tasuki Gap"}, "trader_cdlthrusting":{"name":"trader_cdlthrusting","type":"","path":"php/trader_cdlthrusting.html","desc":"Thrusting Pattern"}, "trader_cdltristar":{"name":"trader_cdltristar","type":"","path":"php/trader_cdltristar.html","desc":"Tristar Pattern"}, "trader_cdlunique3river":{"name":"trader_cdlunique3river","type":"","path":"php/trader_cdlunique3river.html","desc":"Unique 3 River"}, "trader_cdlupsidegap2crows":{"name":"trader_cdlupsidegap2crows","type":"","path":"php/trader_cdlupsidegap2crows.html","desc":"Upside Gap Two Crows"}, "trader_cdlxsidegap3methods":{"name":"trader_cdlxsidegap3methods","type":"","path":"php/trader_cdlxsidegap3methods.html","desc":"UpsideDownside Gap Three Methods"}, "trader_ceil":{"name":"trader_ceil","type":"","path":"php/trader_ceil.html","desc":"Vector Ceil"}, "trader_cmo":{"name":"trader_cmo","type":"","path":"php/trader_cmo.html","desc":"Chande Momentum Oscillator"}, "trader_correl":{"name":"trader_correl","type":"","path":"php/trader_correl.html","desc":"Pearson's Correlation Coefficient (r)"}, "trader_cos":{"name":"trader_cos","type":"","path":"php/trader_cos.html","desc":"Vector Trigonometric Cos"}, "trader_cosh":{"name":"trader_cosh","type":"","path":"php/trader_cosh.html","desc":"Vector Trigonometric Cosh"}, "trader_dema":{"name":"trader_dema","type":"","path":"php/trader_dema.html","desc":"Double Exponential Moving Average"}, "trader_div":{"name":"trader_div","type":"","path":"php/trader_div.html","desc":"Vector Arithmetic Div"}, "trader_dx":{"name":"trader_dx","type":"","path":"php/trader_dx.html","desc":"Directional Movement Index"}, "trader_ema":{"name":"trader_ema","type":"","path":"php/trader_ema.html","desc":"Exponential Moving Average"}, "trader_errno":{"name":"trader_errno","type":"","path":"php/trader_errno.html","desc":"Get error code"}, "trader_exp":{"name":"trader_exp","type":"","path":"php/trader_exp.html","desc":"Vector Arithmetic Exp"}, "trader_floor":{"name":"trader_floor","type":"","path":"php/trader_floor.html","desc":"Vector Floor"}, "trader_get_compat":{"name":"trader_get_compat","type":"","path":"php/trader_get_compat.html","desc":"Get compatibility mode"}, "trader_get_unstable_period":{"name":"trader_get_unstable_period","type":"","path":"php/trader_get_unstable_period.html","desc":"Get unstable period"}, "trader_ht_dcperiod":{"name":"trader_ht_dcperiod","type":"","path":"php/trader_ht_dcperiod.html","desc":"Hilbert Transform - Dominant Cycle Period"}, "trader_ht_dcphase":{"name":"trader_ht_dcphase","type":"","path":"php/trader_ht_dcphase.html","desc":"Hilbert Transform - Dominant Cycle Phase"}, "trader_ht_phasor":{"name":"trader_ht_phasor","type":"","path":"php/trader_ht_phasor.html","desc":"Hilbert Transform - Phasor Components"}, "trader_ht_sine":{"name":"trader_ht_sine","type":"","path":"php/trader_ht_sine.html","desc":"Hilbert Transform - SineWave"}, "trader_ht_trendline":{"name":"trader_ht_trendline","type":"","path":"php/trader_ht_trendline.html","desc":"Hilbert Transform - Instantaneous Trendline"}, "trader_ht_trendmode":{"name":"trader_ht_trendmode","type":"","path":"php/trader_ht_trendmode.html","desc":"Hilbert Transform - Trend vs Cycle Mode"}, "trader_kama":{"name":"trader_kama","type":"","path":"php/trader_kama.html","desc":"Kaufman Adaptive Moving Average"}, "trader_linearreg":{"name":"trader_linearreg","type":"","path":"php/trader_linearreg.html","desc":"Linear Regression"}, "trader_linearreg_angle":{"name":"trader_linearreg_angle","type":"","path":"php/trader_linearreg_angle.html","desc":"Linear Regression Angle"}, "trader_linearreg_intercept":{"name":"trader_linearreg_intercept","type":"","path":"php/trader_linearreg_intercept.html","desc":"Linear Regression Intercept"}, "trader_linearreg_slope":{"name":"trader_linearreg_slope","type":"","path":"php/trader_linearreg_slope.html","desc":"Linear Regression Slope"}, "trader_ln":{"name":"trader_ln","type":"","path":"php/trader_ln.html","desc":"Vector Log Natural"}, "trader_log10":{"name":"trader_log10","type":"","path":"php/trader_log10.html","desc":"Vector Log10"}, "trader_ma":{"name":"trader_ma","type":"","path":"php/trader_ma.html","desc":"Moving average"}, "trader_macd":{"name":"trader_macd","type":"","path":"php/trader_macd.html","desc":"Moving Average ConvergenceDivergence"}, "trader_macdext":{"name":"trader_macdext","type":"","path":"php/trader_macdext.html","desc":"MACD with controllable MA type"}, "trader_macdfix":{"name":"trader_macdfix","type":"","path":"php/trader_macdfix.html","desc":"Moving Average ConvergenceDivergence Fix 1226"}, "trader_mama":{"name":"trader_mama","type":"","path":"php/trader_mama.html","desc":"MESA Adaptive Moving Average"}, "trader_mavp":{"name":"trader_mavp","type":"","path":"php/trader_mavp.html","desc":"Moving average with variable period"}, "trader_max":{"name":"trader_max","type":"","path":"php/trader_max.html","desc":"Highest value over a specified period"}, "trader_maxindex":{"name":"trader_maxindex","type":"","path":"php/trader_maxindex.html","desc":"Index of highest value over a specified period"}, "trader_medprice":{"name":"trader_medprice","type":"","path":"php/trader_medprice.html","desc":"Median Price"}, "trader_mfi":{"name":"trader_mfi","type":"","path":"php/trader_mfi.html","desc":"Money Flow Index"}, "trader_midpoint":{"name":"trader_midpoint","type":"","path":"php/trader_midpoint.html","desc":"MidPoint over period"}, "trader_midprice":{"name":"trader_midprice","type":"","path":"php/trader_midprice.html","desc":"Midpoint Price over period"}, "trader_min":{"name":"trader_min","type":"","path":"php/trader_min.html","desc":"Lowest value over a specified period"}, "trader_minindex":{"name":"trader_minindex","type":"","path":"php/trader_minindex.html","desc":"Index of lowest value over a specified period"}, "trader_minmax":{"name":"trader_minmax","type":"","path":"php/trader_minmax.html","desc":"Lowest and highest values over a specified period"}, "trader_minmaxindex":{"name":"trader_minmaxindex","type":"","path":"php/trader_minmaxindex.html","desc":"Indexes of lowest and highest values over a specified period"}, "trader_minus_di":{"name":"trader_minus_di","type":"","path":"php/trader_minus_di.html","desc":"Minus Directional Indicator"}, "trader_minus_dm":{"name":"trader_minus_dm","type":"","path":"php/trader_minus_dm.html","desc":"Minus Directional Movement"}, "trader_mom":{"name":"trader_mom","type":"","path":"php/trader_mom.html","desc":"Momentum"}, "trader_mult":{"name":"trader_mult","type":"","path":"php/trader_mult.html","desc":"Vector Arithmetic Mult"}, "trader_natr":{"name":"trader_natr","type":"","path":"php/trader_natr.html","desc":"Normalized Average True Range"}, "trader_obv":{"name":"trader_obv","type":"","path":"php/trader_obv.html","desc":"On Balance Volume"}, "trader_plus_di":{"name":"trader_plus_di","type":"","path":"php/trader_plus_di.html","desc":"Plus Directional Indicator"}, "trader_plus_dm":{"name":"trader_plus_dm","type":"","path":"php/trader_plus_dm.html","desc":"Plus Directional Movement"}, "trader_ppo":{"name":"trader_ppo","type":"","path":"php/trader_ppo.html","desc":"Percentage Price Oscillator"}, "trader_roc":{"name":"trader_roc","type":"","path":"php/trader_roc.html","desc":"Rate of change ((priceprevPrice)-1)100"}, "trader_rocp":{"name":"trader_rocp","type":"","path":"php/trader_rocp.html","desc":"Rate of change Percentage (price-prevPrice)prevPrice"}, "trader_rocr":{"name":"trader_rocr","type":"","path":"php/trader_rocr.html","desc":"Rate of change ratio (priceprevPrice)"}, "trader_rocr100":{"name":"trader_rocr100","type":"","path":"php/trader_rocr100.html","desc":"Rate of change ratio 100 scale (priceprevPrice)100"}, "trader_rsi":{"name":"trader_rsi","type":"","path":"php/trader_rsi.html","desc":"Relative Strength Index"}, "trader_sar":{"name":"trader_sar","type":"","path":"php/trader_sar.html","desc":"Parabolic SAR"}, "trader_sarext":{"name":"trader_sarext","type":"","path":"php/trader_sarext.html","desc":"Parabolic SAR - Extended"}, "trader_set_compat":{"name":"trader_set_compat","type":"","path":"php/trader_set_compat.html","desc":"Set compatibility mode"}, "trader_set_unstable_period":{"name":"trader_set_unstable_period","type":"","path":"php/trader_set_unstable_period.html","desc":"Set unstable period"}, "trader_sin":{"name":"trader_sin","type":"","path":"php/trader_sin.html","desc":"Vector Trigonometric Sin"}, "trader_sinh":{"name":"trader_sinh","type":"","path":"php/trader_sinh.html","desc":"Vector Trigonometric Sinh"}, "trader_sma":{"name":"trader_sma","type":"","path":"php/trader_sma.html","desc":"Simple Moving Average"}, "trader_sqrt":{"name":"trader_sqrt","type":"","path":"php/trader_sqrt.html","desc":"Vector Square Root"}, "trader_stddev":{"name":"trader_stddev","type":"","path":"php/trader_stddev.html","desc":"Standard Deviation"}, "trader_stoch":{"name":"trader_stoch","type":"","path":"php/trader_stoch.html","desc":"Stochastic"}, "trader_stochf":{"name":"trader_stochf","type":"","path":"php/trader_stochf.html","desc":"Stochastic Fast"}, "trader_stochrsi":{"name":"trader_stochrsi","type":"","path":"php/trader_stochrsi.html","desc":"Stochastic Relative Strength Index"}, "trader_sub":{"name":"trader_sub","type":"","path":"php/trader_sub.html","desc":"Vector Arithmetic Subtraction"}, "trader_sum":{"name":"trader_sum","type":"","path":"php/trader_sum.html","desc":"Summation"}, "trader_t3":{"name":"trader_t3","type":"","path":"php/trader_t3.html","desc":"Triple Exponential Moving Average (T3)"}, "trader_tan":{"name":"trader_tan","type":"","path":"php/trader_tan.html","desc":"Vector Trigonometric Tan"}, "trader_tanh":{"name":"trader_tanh","type":"","path":"php/trader_tanh.html","desc":"Vector Trigonometric Tanh"}, "trader_tema":{"name":"trader_tema","type":"","path":"php/trader_tema.html","desc":"Triple Exponential Moving Average"}, "trader_trange":{"name":"trader_trange","type":"","path":"php/trader_trange.html","desc":"True Range"}, "trader_trima":{"name":"trader_trima","type":"","path":"php/trader_trima.html","desc":"Triangular Moving Average"}, "trader_trix":{"name":"trader_trix","type":"","path":"php/trader_trix.html","desc":"1-day Rate-Of-Change (ROC) of a Triple Smooth EMA"}, "trader_tsf":{"name":"trader_tsf","type":"","path":"php/trader_tsf.html","desc":"Time Series Forecast"}, "trader_typprice":{"name":"trader_typprice","type":"","path":"php/trader_typprice.html","desc":"Typical Price"}, "trader_ultosc":{"name":"trader_ultosc","type":"","path":"php/trader_ultosc.html","desc":"Ultimate Oscillator"}, "trader_var":{"name":"trader_var","type":"","path":"php/trader_var.html","desc":"Variance"}, "trader_wclprice":{"name":"trader_wclprice","type":"","path":"php/trader_wclprice.html","desc":"Weighted Close Price"}, "trader_willr":{"name":"trader_willr","type":"","path":"php/trader_willr.html","desc":"Williams' %R"}, "trader_wma":{"name":"trader_wma","type":"","path":"php/trader_wma.html","desc":"Weighted Moving Average"}, "trait_exists":{"name":"trait_exists","type":"","path":"php/trait_exists.html","desc":"检查指定的 trait 是否存在"}, "trigger_error":{"name":"trigger_error","type":"","path":"php/trigger_error.html","desc":"产生一个用户级别的 errorwarningnotice 信息"}, "trim":{"name":"trim","type":"","path":"php/trim.html","desc":"去除字符串首尾处的空白字符(或者其他字符)"}, "uasort":{"name":"uasort","type":"","path":"php/uasort.html","desc":"使用用户自定义的比较函数对数组中的值进行排序并保持索引关联"}, "ucfirst":{"name":"ucfirst","type":"","path":"php/ucfirst.html","desc":"将字符串的首字母转换为大写"}, "ucwords":{"name":"ucwords","type":"","path":"php/ucwords.html","desc":"将字符串中每个单词的首字母转换为大写"}, "udm_add_search_limit":{"name":"udm_add_search_limit","type":"","path":"php/udm_add_search_limit.html","desc":"Add various search limits"}, "udm_alloc_agent":{"name":"udm_alloc_agent","type":"","path":"php/udm_alloc_agent.html","desc":"Allocate mnoGoSearch session"}, "udm_alloc_agent_array":{"name":"udm_alloc_agent_array","type":"","path":"php/udm_alloc_agent_array.html","desc":"Allocate mnoGoSearch session"}, "udm_api_version":{"name":"udm_api_version","type":"","path":"php/udm_api_version.html","desc":"Get mnoGoSearch API version"}, "udm_cat_list":{"name":"udm_cat_list","type":"","path":"php/udm_cat_list.html","desc":"Get all the categories on the same level with the current one"}, "udm_cat_path":{"name":"udm_cat_path","type":"","path":"php/udm_cat_path.html","desc":"Get the path to the current category"}, "udm_check_charset":{"name":"udm_check_charset","type":"","path":"php/udm_check_charset.html","desc":"Check if the given charset is known to mnogosearch"}, "udm_clear_search_limits":{"name":"udm_clear_search_limits","type":"","path":"php/udm_clear_search_limits.html","desc":"Clear all mnoGoSearch search restrictions"}, "udm_crc32":{"name":"udm_crc32","type":"","path":"php/udm_crc32.html","desc":"Return CRC32 checksum of given string"}, "udm_errno":{"name":"udm_errno","type":"","path":"php/udm_errno.html","desc":"Get mnoGoSearch error number"}, "udm_error":{"name":"udm_error","type":"","path":"php/udm_error.html","desc":"Get mnoGoSearch error message"}, "udm_find":{"name":"udm_find","type":"","path":"php/udm_find.html","desc":"Perform search"}, "udm_free_agent":{"name":"udm_free_agent","type":"","path":"php/udm_free_agent.html","desc":"Free mnoGoSearch session"}, "udm_free_ispell_data":{"name":"udm_free_ispell_data","type":"","path":"php/udm_free_ispell_data.html","desc":"Free memory allocated for ispell data"}, "udm_free_res":{"name":"udm_free_res","type":"","path":"php/udm_free_res.html","desc":"Free mnoGoSearch result"}, "udm_get_doc_count":{"name":"udm_get_doc_count","type":"","path":"php/udm_get_doc_count.html","desc":"Get total number of documents in database"}, "udm_get_res_field":{"name":"udm_get_res_field","type":"","path":"php/udm_get_res_field.html","desc":"Fetch a result field"}, "udm_get_res_param":{"name":"udm_get_res_param","type":"","path":"php/udm_get_res_param.html","desc":"Get mnoGoSearch result parameters"}, "udm_hash32":{"name":"udm_hash32","type":"","path":"php/udm_hash32.html","desc":"Return Hash32 checksum of given string"}, "udm_load_ispell_data":{"name":"udm_load_ispell_data","type":"","path":"php/udm_load_ispell_data.html","desc":"Load ispell data"}, "udm_set_agent_param":{"name":"udm_set_agent_param","type":"","path":"php/udm_set_agent_param.html","desc":"Set mnoGoSearch agent session parameters"}, "ui_draw_text_font_fontfamilies":{"name":"ui_draw_text_font_fontfamilies","type":"","path":"php/ui_draw_text_font_fontfamilies.html","desc":"Retrieve Font Families"}, "ui_quit":{"name":"ui_quit","type":"","path":"php/ui_quit.html","desc":"Quit UI Loop"}, "ui_run":{"name":"ui_run","type":"","path":"php/ui_run.html","desc":"Enter UI Loop"}, "uksort":{"name":"uksort","type":"","path":"php/uksort.html","desc":"使用用户自定义的比较函数对数组中的键名进行排序"}, "umask":{"name":"umask","type":"","path":"php/umask.html","desc":"改变当前的 umask"}, "uniqid":{"name":"uniqid","type":"","path":"php/uniqid.html","desc":"生成一个唯一ID"}, "unixtojd":{"name":"unixtojd","type":"","path":"php/unixtojd.html","desc":"转变Unix时间戳为Julian Day计数"}, "unlink":{"name":"unlink","type":"","path":"php/unlink.html","desc":"删除文件"}, "unpack":{"name":"unpack","type":"","path":"php/unpack.html","desc":"Unpack data from binary string"}, "unregister_tick_function":{"name":"unregister_tick_function","type":"","path":"php/unregister_tick_function.html","desc":"De-register a function for execution on each tick"}, "unserialize":{"name":"unserialize","type":"","path":"php/unserialize.html","desc":"从已存储的表示中创建 PHP 的值"}, "unset":{"name":"unset","type":"","path":"php/unset.html","desc":"释放给定的变量"}, "untaint":{"name":"untaint","type":"","path":"php/untaint.html","desc":"Untaint strings"}, "uopz_add_function":{"name":"uopz_add_function","type":"","path":"php/uopz_add_function.html","desc":"Adds non-existent function or method"}, "uopz_allow_exit":{"name":"uopz_allow_exit","type":"","path":"php/uopz_allow_exit.html","desc":"Allows control over disabled exit opcode"}, "uopz_backup":{"name":"uopz_backup","type":"","path":"php/uopz_backup.html","desc":"Backup a function"}, "uopz_compose":{"name":"uopz_compose","type":"","path":"php/uopz_compose.html","desc":"Compose a class"}, "uopz_copy":{"name":"uopz_copy","type":"","path":"php/uopz_copy.html","desc":"Copy a function"}, "uopz_delete":{"name":"uopz_delete","type":"","path":"php/uopz_delete.html","desc":"Delete a function"}, "uopz_del_function":{"name":"uopz_del_function","type":"","path":"php/uopz_del_function.html","desc":"Deletes previously added function or method"}, "uopz_extend":{"name":"uopz_extend","type":"","path":"php/uopz_extend.html","desc":"Extend a class at runtime"}, "uopz_flags":{"name":"uopz_flags","type":"","path":"php/uopz_flags.html","desc":"Get or set flags on function or class"}, "uopz_function":{"name":"uopz_function","type":"","path":"php/uopz_function.html","desc":"Creates a function at runtime"}, "uopz_get_exit_status":{"name":"uopz_get_exit_status","type":"","path":"php/uopz_get_exit_status.html","desc":"Retrieve the last set exit status"}, "uopz_get_hook":{"name":"uopz_get_hook","type":"","path":"php/uopz_get_hook.html","desc":"Gets previously set hook on function or method"}, "uopz_get_mock":{"name":"uopz_get_mock","type":"","path":"php/uopz_get_mock.html","desc":"Get the current mock for a class"}, "uopz_get_property":{"name":"uopz_get_property","type":"","path":"php/uopz_get_property.html","desc":"Gets value of class or instance property"}, "uopz_get_return":{"name":"uopz_get_return","type":"","path":"php/uopz_get_return.html","desc":"Gets a previous set return value for a function"}, "uopz_get_static":{"name":"uopz_get_static","type":"","path":"php/uopz_get_static.html","desc":"Gets the static variables from function or method scope"}, "uopz_implement":{"name":"uopz_implement","type":"","path":"php/uopz_implement.html","desc":"Implements an interface at runtime"}, "uopz_overload":{"name":"uopz_overload","type":"","path":"php/uopz_overload.html","desc":"Overload a VM opcode"}, "uopz_redefine":{"name":"uopz_redefine","type":"","path":"php/uopz_redefine.html","desc":"Redefine a constant"}, "uopz_rename":{"name":"uopz_rename","type":"","path":"php/uopz_rename.html","desc":"Rename a function at runtime"}, "uopz_restore":{"name":"uopz_restore","type":"","path":"php/uopz_restore.html","desc":"Restore a previously backed up function"}, "uopz_set_hook":{"name":"uopz_set_hook","type":"","path":"php/uopz_set_hook.html","desc":"Sets hook to execute when entering a function or method"}, "uopz_set_mock":{"name":"uopz_set_mock","type":"","path":"php/uopz_set_mock.html","desc":"Use mock instead of class for new objects"}, "uopz_set_property":{"name":"uopz_set_property","type":"","path":"php/uopz_set_property.html","desc":"Sets value of existing class or instance property"}, "uopz_set_return":{"name":"uopz_set_return","type":"","path":"php/uopz_set_return.html","desc":"Provide a return value for an existing function"}, "uopz_set_static":{"name":"uopz_set_static","type":"","path":"php/uopz_set_static.html","desc":"Sets the static variables in function or method scope"}, "uopz_undefine":{"name":"uopz_undefine","type":"","path":"php/uopz_undefine.html","desc":"Undefine a constant"}, "uopz_unset_hook":{"name":"uopz_unset_hook","type":"","path":"php/uopz_unset_hook.html","desc":"Removes previously set hook on function or method"}, "uopz_unset_mock":{"name":"uopz_unset_mock","type":"","path":"php/uopz_unset_mock.html","desc":"Unset previously set mock"}, "uopz_unset_return":{"name":"uopz_unset_return","type":"","path":"php/uopz_unset_return.html","desc":"Unsets a previously set return value for a function"}, "urldecode":{"name":"urldecode","type":"","path":"php/urldecode.html","desc":"解码已编码的 URL 字符串"}, "urlencode":{"name":"urlencode","type":"","path":"php/urlencode.html","desc":"编码 URL 字符串"}, "user_error":{"name":"user_error","type":"","path":"php/user_error.html","desc":"trigger_error 的别名"}, "use_soap_error_handler":{"name":"use_soap_error_handler","type":"","path":"php/use_soap_error_handler.html","desc":"Set whether to use the SOAP error handler"}, "usleep":{"name":"usleep","type":"","path":"php/usleep.html","desc":"以指定的微秒数延迟执行"}, "usort":{"name":"usort","type":"","path":"php/usort.html","desc":"使用用户自定义的比较函数对数组中的值进行排序"}, "utf8_decode":{"name":"utf8_decode","type":"","path":"php/utf8_decode.html","desc":"将用 UTF-8 方式编码的 ISO-8859-1 字符串转换成单字节的 ISO-8859-1 字符串。"}, "utf8_encode":{"name":"utf8_encode","type":"","path":"php/utf8_encode.html","desc":"将 ISO-8859-1 编码的字符串转换为 UTF-8 编码"}, "variant_abs":{"name":"variant_abs","type":"","path":"php/variant_abs.html","desc":"Returns the absolute value of a variant"}, "variant_add":{"name":"variant_add","type":"","path":"php/variant_add.html","desc":""Adds" two variant values together and returns the result"}, "variant_and":{"name":"variant_and","type":"","path":"php/variant_and.html","desc":"Performs a bitwise AND operation between two variants"}, "variant_cast":{"name":"variant_cast","type":"","path":"php/variant_cast.html","desc":"Convert a variant into a new variant object of another type"}, "variant_cat":{"name":"variant_cat","type":"","path":"php/variant_cat.html","desc":"Concatenates two variant values together and returns the result"}, "variant_cmp":{"name":"variant_cmp","type":"","path":"php/variant_cmp.html","desc":"Compares two variants"}, "variant_date_from_timestamp":{"name":"variant_date_from_timestamp","type":"","path":"php/variant_date_from_timestamp.html","desc":"Returns a variant date representation of a Unix timestamp"}, "variant_date_to_timestamp":{"name":"variant_date_to_timestamp","type":"","path":"php/variant_date_to_timestamp.html","desc":"Converts a variant datetime value to Unix timestamp"}, "variant_div":{"name":"variant_div","type":"","path":"php/variant_div.html","desc":"Returns the result from dividing two variants"}, "variant_eqv":{"name":"variant_eqv","type":"","path":"php/variant_eqv.html","desc":"Performs a bitwise equivalence on two variants"}, "variant_fix":{"name":"variant_fix","type":"","path":"php/variant_fix.html","desc":"Returns the integer portion of a variant"}, "variant_get_type":{"name":"variant_get_type","type":"","path":"php/variant_get_type.html","desc":"Returns the type of a variant object"}, "variant_idiv":{"name":"variant_idiv","type":"","path":"php/variant_idiv.html","desc":"Converts variants to integers and then returns the result from dividing them"}, "variant_imp":{"name":"variant_imp","type":"","path":"php/variant_imp.html","desc":"Performs a bitwise implication on two variants"}, "variant_int":{"name":"variant_int","type":"","path":"php/variant_int.html","desc":"Returns the integer portion of a variant"}, "variant_mod":{"name":"variant_mod","type":"","path":"php/variant_mod.html","desc":"Divides two variants and returns only the remainder"}, "variant_mul":{"name":"variant_mul","type":"","path":"php/variant_mul.html","desc":"Multiplies the values of the two variants"}, "variant_neg":{"name":"variant_neg","type":"","path":"php/variant_neg.html","desc":"Performs logical negation on a variant"}, "variant_not":{"name":"variant_not","type":"","path":"php/variant_not.html","desc":"Performs bitwise not negation on a variant"}, "variant_or":{"name":"variant_or","type":"","path":"php/variant_or.html","desc":"Performs a logical disjunction on two variants"}, "variant_pow":{"name":"variant_pow","type":"","path":"php/variant_pow.html","desc":"Returns the result of performing the power function with two variants"}, "variant_round":{"name":"variant_round","type":"","path":"php/variant_round.html","desc":"Rounds a variant to the specified number of decimal places"}, "variant_set":{"name":"variant_set","type":"","path":"php/variant_set.html","desc":"Assigns a new value for a variant object"}, "variant_set_type":{"name":"variant_set_type","type":"","path":"php/variant_set_type.html","desc":"Convert a variant into another type "in-place""}, "variant_sub":{"name":"variant_sub","type":"","path":"php/variant_sub.html","desc":"Subtracts the value of the right variant from the left variant value"}, "variant_xor":{"name":"variant_xor","type":"","path":"php/variant_xor.html","desc":"Performs a logical exclusion on two variants"}, "var_dump":{"name":"var_dump","type":"","path":"php/var_dump.html","desc":"打印变量的相关信息"}, "var_export":{"name":"var_export","type":"","path":"php/var_export.html","desc":"输出或返回一个变量的字符串表示"}, "version_compare":{"name":"version_compare","type":"","path":"php/version_compare.html","desc":"对比两个「PHP 规范化」的版本数字字符串"}, "vfprintf":{"name":"vfprintf","type":"","path":"php/vfprintf.html","desc":"将格式化字符串写入流"}, "virtual":{"name":"virtual","type":"","path":"php/virtual.html","desc":"执行 Apache 子请求"}, "vpopmail_add_alias_domain":{"name":"vpopmail_add_alias_domain","type":"","path":"php/vpopmail_add_alias_domain.html","desc":"Add an alias for a virtual domain"}, "vpopmail_add_alias_domain_ex":{"name":"vpopmail_add_alias_domain_ex","type":"","path":"php/vpopmail_add_alias_domain_ex.html","desc":"Add alias to an existing virtual domain"}, "vpopmail_add_domain":{"name":"vpopmail_add_domain","type":"","path":"php/vpopmail_add_domain.html","desc":"Add a new virtual domain"}, "vpopmail_add_domain_ex":{"name":"vpopmail_add_domain_ex","type":"","path":"php/vpopmail_add_domain_ex.html","desc":"Add a new virtual domain"}, "vpopmail_add_user":{"name":"vpopmail_add_user","type":"","path":"php/vpopmail_add_user.html","desc":"Add a new user to the specified virtual domain"}, "vpopmail_alias_add":{"name":"vpopmail_alias_add","type":"","path":"php/vpopmail_alias_add.html","desc":"Insert a virtual alias"}, "vpopmail_alias_del":{"name":"vpopmail_alias_del","type":"","path":"php/vpopmail_alias_del.html","desc":"Deletes all virtual aliases of a user"}, "vpopmail_alias_del_domain":{"name":"vpopmail_alias_del_domain","type":"","path":"php/vpopmail_alias_del_domain.html","desc":"Deletes all virtual aliases of a domain"}, "vpopmail_alias_get":{"name":"vpopmail_alias_get","type":"","path":"php/vpopmail_alias_get.html","desc":"Get all lines of an alias for a domain"}, "vpopmail_alias_get_all":{"name":"vpopmail_alias_get_all","type":"","path":"php/vpopmail_alias_get_all.html","desc":"Get all lines of an alias for a domain"}, "vpopmail_auth_user":{"name":"vpopmail_auth_user","type":"","path":"php/vpopmail_auth_user.html","desc":"Attempt to validate a usernamedomainpassword"}, "vpopmail_del_domain":{"name":"vpopmail_del_domain","type":"","path":"php/vpopmail_del_domain.html","desc":"Delete a virtual domain"}, "vpopmail_del_domain_ex":{"name":"vpopmail_del_domain_ex","type":"","path":"php/vpopmail_del_domain_ex.html","desc":"Delete a virtual domain"}, "vpopmail_del_user":{"name":"vpopmail_del_user","type":"","path":"php/vpopmail_del_user.html","desc":"Delete a user from a virtual domain"}, "vpopmail_error":{"name":"vpopmail_error","type":"","path":"php/vpopmail_error.html","desc":"Get text message for last vpopmail error"}, "vpopmail_passwd":{"name":"vpopmail_passwd","type":"","path":"php/vpopmail_passwd.html","desc":"Change a virtual user's password"}, "vpopmail_set_user_quota":{"name":"vpopmail_set_user_quota","type":"","path":"php/vpopmail_set_user_quota.html","desc":"Sets a virtual user's quota"}, "vprintf":{"name":"vprintf","type":"","path":"php/vprintf.html","desc":"输出格式化字符串"}, "vsprintf":{"name":"vsprintf","type":"","path":"php/vsprintf.html","desc":"返回格式化字符串"}, "wddx_add_vars":{"name":"wddx_add_vars","type":"","path":"php/wddx_add_vars.html","desc":"Add variables to a WDDX packet with the specified ID"}, "wddx_deserialize":{"name":"wddx_deserialize","type":"","path":"php/wddx_deserialize.html","desc":"Unserializes a WDDX packet"}, "wddx_packet_end":{"name":"wddx_packet_end","type":"","path":"php/wddx_packet_end.html","desc":"Ends a WDDX packet with the specified ID"}, "wddx_packet_start":{"name":"wddx_packet_start","type":"","path":"php/wddx_packet_start.html","desc":"Starts a new WDDX packet with structure inside it"}, "wddx_serialize_value":{"name":"wddx_serialize_value","type":"","path":"php/wddx_serialize_value.html","desc":"Serialize a single value into a WDDX packet"}, "wddx_serialize_vars":{"name":"wddx_serialize_vars","type":"","path":"php/wddx_serialize_vars.html","desc":"Serialize variables into a WDDX packet"}, "win32_continue_service":{"name":"win32_continue_service","type":"","path":"php/win32_continue_service.html","desc":"Resumes a paused service"}, "win32_create_service":{"name":"win32_create_service","type":"","path":"php/win32_create_service.html","desc":"Creates a new service entry in the SCM database"}, "win32_delete_service":{"name":"win32_delete_service","type":"","path":"php/win32_delete_service.html","desc":"Deletes a service entry from the SCM database"}, "win32_get_last_control_message":{"name":"win32_get_last_control_message","type":"","path":"php/win32_get_last_control_message.html","desc":"Returns the last control message that was sent to this service"}, "win32_pause_service":{"name":"win32_pause_service","type":"","path":"php/win32_pause_service.html","desc":"Pauses a service"}, "win32_ps_list_procs":{"name":"win32_ps_list_procs","type":"","path":"php/win32_ps_list_procs.html","desc":"List running processes"}, "win32_ps_stat_mem":{"name":"win32_ps_stat_mem","type":"","path":"php/win32_ps_stat_mem.html","desc":"Stat memory utilization"}, "win32_ps_stat_proc":{"name":"win32_ps_stat_proc","type":"","path":"php/win32_ps_stat_proc.html","desc":"Stat process"}, "win32_query_service_status":{"name":"win32_query_service_status","type":"","path":"php/win32_query_service_status.html","desc":"Queries the status of a service"}, "win32_send_custom_control":{"name":"win32_send_custom_control","type":"","path":"php/win32_send_custom_control.html","desc":"Send a custom control to the service"}, "win32_set_service_exit_code":{"name":"win32_set_service_exit_code","type":"","path":"php/win32_set_service_exit_code.html","desc":"Define or return the exit code for the current running service"}, "win32_set_service_exit_mode":{"name":"win32_set_service_exit_mode","type":"","path":"php/win32_set_service_exit_mode.html","desc":"Define or return the exit mode for the current running service"}, "win32_set_service_status":{"name":"win32_set_service_status","type":"","path":"php/win32_set_service_status.html","desc":"Update the service status"}, "win32_start_service":{"name":"win32_start_service","type":"","path":"php/win32_start_service.html","desc":"Starts a service"}, "win32_start_service_ctrl_dispatcher":{"name":"win32_start_service_ctrl_dispatcher","type":"","path":"php/win32_start_service_ctrl_dispatcher.html","desc":"Registers the script with the SCM, so that it can act as the service with the given name"}, "win32_stop_service":{"name":"win32_stop_service","type":"","path":"php/win32_stop_service.html","desc":"Stops a service"}, "wincache_fcache_fileinfo":{"name":"wincache_fcache_fileinfo","type":"","path":"php/wincache_fcache_fileinfo.html","desc":"Retrieves information about files cached in the file cache"}, "wincache_fcache_meminfo":{"name":"wincache_fcache_meminfo","type":"","path":"php/wincache_fcache_meminfo.html","desc":"Retrieves information about file cache memory usage"}, "wincache_lock":{"name":"wincache_lock","type":"","path":"php/wincache_lock.html","desc":"Acquires an exclusive lock on a given key"}, "wincache_ocache_fileinfo":{"name":"wincache_ocache_fileinfo","type":"","path":"php/wincache_ocache_fileinfo.html","desc":"Retrieves information about files cached in the opcode cache"}, "wincache_ocache_meminfo":{"name":"wincache_ocache_meminfo","type":"","path":"php/wincache_ocache_meminfo.html","desc":"Retrieves information about opcode cache memory usage"}, "wincache_refresh_if_changed":{"name":"wincache_refresh_if_changed","type":"","path":"php/wincache_refresh_if_changed.html","desc":"Refreshes the cache entries for the cached files"}, "wincache_rplist_fileinfo":{"name":"wincache_rplist_fileinfo","type":"","path":"php/wincache_rplist_fileinfo.html","desc":"Retrieves information about resolve file path cache"}, "wincache_rplist_meminfo":{"name":"wincache_rplist_meminfo","type":"","path":"php/wincache_rplist_meminfo.html","desc":"Retrieves information about memory usage by the resolve file path cache"}, "wincache_scache_info":{"name":"wincache_scache_info","type":"","path":"php/wincache_scache_info.html","desc":"Retrieves information about files cached in the session cache"}, "wincache_scache_meminfo":{"name":"wincache_scache_meminfo","type":"","path":"php/wincache_scache_meminfo.html","desc":"Retrieves information about session cache memory usage"}, "wincache_ucache_add":{"name":"wincache_ucache_add","type":"","path":"php/wincache_ucache_add.html","desc":"Adds a variable in user cache only if variable does not already exist in the cache"}, "wincache_ucache_cas":{"name":"wincache_ucache_cas","type":"","path":"php/wincache_ucache_cas.html","desc":"Compares the variable with old value and assigns new value to it"}, "wincache_ucache_clear":{"name":"wincache_ucache_clear","type":"","path":"php/wincache_ucache_clear.html","desc":"Deletes entire content of the user cache"}, "wincache_ucache_dec":{"name":"wincache_ucache_dec","type":"","path":"php/wincache_ucache_dec.html","desc":"Decrements the value associated with the key"}, "wincache_ucache_delete":{"name":"wincache_ucache_delete","type":"","path":"php/wincache_ucache_delete.html","desc":"Deletes variables from the user cache"}, "wincache_ucache_exists":{"name":"wincache_ucache_exists","type":"","path":"php/wincache_ucache_exists.html","desc":"Checks if a variable exists in the user cache"}, "wincache_ucache_get":{"name":"wincache_ucache_get","type":"","path":"php/wincache_ucache_get.html","desc":"Gets a variable stored in the user cache"}, "wincache_ucache_inc":{"name":"wincache_ucache_inc","type":"","path":"php/wincache_ucache_inc.html","desc":"Increments the value associated with the key"}, "wincache_ucache_info":{"name":"wincache_ucache_info","type":"","path":"php/wincache_ucache_info.html","desc":"Retrieves information about data stored in the user cache"}, "wincache_ucache_meminfo":{"name":"wincache_ucache_meminfo","type":"","path":"php/wincache_ucache_meminfo.html","desc":"Retrieves information about user cache memory usage"}, "wincache_ucache_set":{"name":"wincache_ucache_set","type":"","path":"php/wincache_ucache_set.html","desc":"Adds a variable in user cache and overwrites a variable if it already exists in the cache"}, "wincache_unlock":{"name":"wincache_unlock","type":"","path":"php/wincache_unlock.html","desc":"Releases an exclusive lock on a given key"}, "wordwrap":{"name":"wordwrap","type":"","path":"php/wordwrap.html","desc":"打断字符串为指定数量的字串"}, "xattr_get":{"name":"xattr_get","type":"","path":"php/xattr_get.html","desc":"Get an extended attribute"}, "xattr_list":{"name":"xattr_list","type":"","path":"php/xattr_list.html","desc":"Get a list of extended attributes"}, "xattr_remove":{"name":"xattr_remove","type":"","path":"php/xattr_remove.html","desc":"Remove an extended attribute"}, "xattr_set":{"name":"xattr_set","type":"","path":"php/xattr_set.html","desc":"Set an extended attribute"}, "xattr_supported":{"name":"xattr_supported","type":"","path":"php/xattr_supported.html","desc":"Check if filesystem supports extended attributes"}, "xdiff_file_bdiff":{"name":"xdiff_file_bdiff","type":"","path":"php/xdiff_file_bdiff.html","desc":"Make binary diff of two files"}, "xdiff_file_bdiff_size":{"name":"xdiff_file_bdiff_size","type":"","path":"php/xdiff_file_bdiff_size.html","desc":"Read a size of file created by applying a binary diff"}, "xdiff_file_bpatch":{"name":"xdiff_file_bpatch","type":"","path":"php/xdiff_file_bpatch.html","desc":"Patch a file with a binary diff"}, "xdiff_file_diff":{"name":"xdiff_file_diff","type":"","path":"php/xdiff_file_diff.html","desc":"Make unified diff of two files"}, "xdiff_file_diff_binary":{"name":"xdiff_file_diff_binary","type":"","path":"php/xdiff_file_diff_binary.html","desc":"Alias of xdiff_file_bdiff"}, "xdiff_file_merge3":{"name":"xdiff_file_merge3","type":"","path":"php/xdiff_file_merge3.html","desc":"Merge 3 files into one"}, "xdiff_file_patch":{"name":"xdiff_file_patch","type":"","path":"php/xdiff_file_patch.html","desc":"Patch a file with an unified diff"}, "xdiff_file_patch_binary":{"name":"xdiff_file_patch_binary","type":"","path":"php/xdiff_file_patch_binary.html","desc":"Alias of xdiff_file_bpatch"}, "xdiff_file_rabdiff":{"name":"xdiff_file_rabdiff","type":"","path":"php/xdiff_file_rabdiff.html","desc":"Make binary diff of two files using the Rabin's polynomial fingerprinting algorithm"}, "xdiff_string_bdiff":{"name":"xdiff_string_bdiff","type":"","path":"php/xdiff_string_bdiff.html","desc":"Make binary diff of two strings"}, "xdiff_string_bdiff_size":{"name":"xdiff_string_bdiff_size","type":"","path":"php/xdiff_string_bdiff_size.html","desc":"Read a size of file created by applying a binary diff"}, "xdiff_string_bpatch":{"name":"xdiff_string_bpatch","type":"","path":"php/xdiff_string_bpatch.html","desc":"Patch a string with a binary diff"}, "xdiff_string_diff":{"name":"xdiff_string_diff","type":"","path":"php/xdiff_string_diff.html","desc":"Make unified diff of two strings"}, "xdiff_string_diff_binary":{"name":"xdiff_string_diff_binary","type":"","path":"php/xdiff_string_diff_binary.html","desc":"Alias of xdiff_string_bdiff"}, "xdiff_string_merge3":{"name":"xdiff_string_merge3","type":"","path":"php/xdiff_string_merge3.html","desc":"Merge 3 strings into one"}, "xdiff_string_patch":{"name":"xdiff_string_patch","type":"","path":"php/xdiff_string_patch.html","desc":"Patch a string with an unified diff"}, "xdiff_string_patch_binary":{"name":"xdiff_string_patch_binary","type":"","path":"php/xdiff_string_patch_binary.html","desc":"Alias of xdiff_string_bpatch"}, "xdiff_string_rabdiff":{"name":"xdiff_string_rabdiff","type":"","path":"php/xdiff_string_rabdiff.html","desc":"Make binary diff of two strings using the Rabin's polynomial fingerprinting algorithm"}, "xhprof_disable":{"name":"xhprof_disable","type":"","path":"php/xhprof_disable.html","desc":"停止 xhprof 分析器"}, "xhprof_enable":{"name":"xhprof_enable","type":"","path":"php/xhprof_enable.html","desc":"启动 xhprof 性能分析器"}, "xhprof_sample_disable":{"name":"xhprof_sample_disable","type":"","path":"php/xhprof_sample_disable.html","desc":"停止 xhprof 性能采样分析器"}, "xhprof_sample_enable":{"name":"xhprof_sample_enable","type":"","path":"php/xhprof_sample_enable.html","desc":"以采样模式启动 XHProf 性能分析"}, "xmlrpc_decode":{"name":"xmlrpc_decode","type":"","path":"php/xmlrpc_decode.html","desc":"将 XML 译码为 PHP 本身的类型"}, "xmlrpc_decode_request":{"name":"xmlrpc_decode_request","type":"","path":"php/xmlrpc_decode_request.html","desc":"将 XML 译码为 PHP 本身的类型"}, "xmlrpc_encode":{"name":"xmlrpc_encode","type":"","path":"php/xmlrpc_encode.html","desc":"为 PHP 的值生成 XML"}, "xmlrpc_encode_request":{"name":"xmlrpc_encode_request","type":"","path":"php/xmlrpc_encode_request.html","desc":"为 PHP 的值生成 XML"}, "xmlrpc_get_type":{"name":"xmlrpc_get_type","type":"","path":"php/xmlrpc_get_type.html","desc":"为 PHP 的值获取 xmlrpc 的类型"}, "xmlrpc_is_fault":{"name":"xmlrpc_is_fault","type":"","path":"php/xmlrpc_is_fault.html","desc":"Determines if an array value represents an XMLRPC fault"}, "xmlrpc_parse_method_descriptions":{"name":"xmlrpc_parse_method_descriptions","type":"","path":"php/xmlrpc_parse_method_descriptions.html","desc":"将 XML 译码成方法描述的列表"}, "xmlrpc_server_add_introspection_data":{"name":"xmlrpc_server_add_introspection_data","type":"","path":"php/xmlrpc_server_add_introspection_data.html","desc":"添加自我描述的文档"}, "xmlrpc_server_call_method":{"name":"xmlrpc_server_call_method","type":"","path":"php/xmlrpc_server_call_method.html","desc":"解析 XML 请求同时调用方法"}, "xmlrpc_server_create":{"name":"xmlrpc_server_create","type":"","path":"php/xmlrpc_server_create.html","desc":"创建一个 xmlrpc 服务端"}, "xmlrpc_server_destroy":{"name":"xmlrpc_server_destroy","type":"","path":"php/xmlrpc_server_destroy.html","desc":"销毁服务端资源"}, "xmlrpc_server_register_introspection_callback":{"name":"xmlrpc_server_register_introspection_callback","type":"","path":"php/xmlrpc_server_register_introspection_callback.html","desc":"注册一个 PHP 函数用于生成文档"}, "xmlrpc_server_register_method":{"name":"xmlrpc_server_register_method","type":"","path":"php/xmlrpc_server_register_method.html","desc":"注册一个 PHP 函数用于匹配 xmlrpc 方法名"}, "xmlrpc_set_type":{"name":"xmlrpc_set_type","type":"","path":"php/xmlrpc_set_type.html","desc":"为一个 PHP 字符串值设置 xmlrpc 的类型、base64 或日期时间"}, "xmlwriter_end_attribute":{"name":"xmlwriter_end_attribute","type":"","path":"php/xmlwriter_end_attribute.html","desc":"End attribute"}, "xmlwriter_end_cdata":{"name":"xmlwriter_end_cdata","type":"","path":"php/xmlwriter_end_cdata.html","desc":"End current CDATA"}, "xmlwriter_end_comment":{"name":"xmlwriter_end_comment","type":"","path":"php/xmlwriter_end_comment.html","desc":"Create end comment"}, "xmlwriter_end_document":{"name":"xmlwriter_end_document","type":"","path":"php/xmlwriter_end_document.html","desc":"End current document"}, "xmlwriter_end_dtd":{"name":"xmlwriter_end_dtd","type":"","path":"php/xmlwriter_end_dtd.html","desc":"End current DTD"}, "xmlwriter_end_dtd_attlist":{"name":"xmlwriter_end_dtd_attlist","type":"","path":"php/xmlwriter_end_dtd_attlist.html","desc":"End current DTD AttList"}, "xmlwriter_end_dtd_element":{"name":"xmlwriter_end_dtd_element","type":"","path":"php/xmlwriter_end_dtd_element.html","desc":"End current DTD element"}, "xmlwriter_end_dtd_entity":{"name":"xmlwriter_end_dtd_entity","type":"","path":"php/xmlwriter_end_dtd_entity.html","desc":"End current DTD Entity"}, "xmlwriter_end_element":{"name":"xmlwriter_end_element","type":"","path":"php/xmlwriter_end_element.html","desc":"End current element"}, "xmlwriter_end_pi":{"name":"xmlwriter_end_pi","type":"","path":"php/xmlwriter_end_pi.html","desc":"End current PI"}, "xmlwriter_flush":{"name":"xmlwriter_flush","type":"","path":"php/xmlwriter_flush.html","desc":"Flush current buffer"}, "xmlwriter_full_end_element":{"name":"xmlwriter_full_end_element","type":"","path":"php/xmlwriter_full_end_element.html","desc":"End current element"}, "xmlwriter_open_memory":{"name":"xmlwriter_open_memory","type":"","path":"php/xmlwriter_open_memory.html","desc":"Create new xmlwriter using memory for string output"}, "xmlwriter_open_uri":{"name":"xmlwriter_open_uri","type":"","path":"php/xmlwriter_open_uri.html","desc":"Create new xmlwriter using source uri for output"}, "xmlwriter_output_memory":{"name":"xmlwriter_output_memory","type":"","path":"php/xmlwriter_output_memory.html","desc":"Returns current buffer"}, "xmlwriter_set_indent":{"name":"xmlwriter_set_indent","type":"","path":"php/xmlwriter_set_indent.html","desc":"Toggle indentation onoff"}, "xmlwriter_set_indent_string":{"name":"xmlwriter_set_indent_string","type":"","path":"php/xmlwriter_set_indent_string.html","desc":"Set string used for indenting"}, "xmlwriter_start_attribute":{"name":"xmlwriter_start_attribute","type":"","path":"php/xmlwriter_start_attribute.html","desc":"Create start attribute"}, "xmlwriter_start_attribute_ns":{"name":"xmlwriter_start_attribute_ns","type":"","path":"php/xmlwriter_start_attribute_ns.html","desc":"Create start namespaced attribute"}, "xmlwriter_start_cdata":{"name":"xmlwriter_start_cdata","type":"","path":"php/xmlwriter_start_cdata.html","desc":"Create start CDATA tag"}, "xmlwriter_start_comment":{"name":"xmlwriter_start_comment","type":"","path":"php/xmlwriter_start_comment.html","desc":"Create start comment"}, "xmlwriter_start_document":{"name":"xmlwriter_start_document","type":"","path":"php/xmlwriter_start_document.html","desc":"Create document tag"}, "xmlwriter_start_dtd":{"name":"xmlwriter_start_dtd","type":"","path":"php/xmlwriter_start_dtd.html","desc":"Create start DTD tag"}, "xmlwriter_start_dtd_attlist":{"name":"xmlwriter_start_dtd_attlist","type":"","path":"php/xmlwriter_start_dtd_attlist.html","desc":"Create start DTD AttList"}, "xmlwriter_start_dtd_element":{"name":"xmlwriter_start_dtd_element","type":"","path":"php/xmlwriter_start_dtd_element.html","desc":"Create start DTD element"}, "xmlwriter_start_dtd_entity":{"name":"xmlwriter_start_dtd_entity","type":"","path":"php/xmlwriter_start_dtd_entity.html","desc":"Create start DTD Entity"}, "xmlwriter_start_element":{"name":"xmlwriter_start_element","type":"","path":"php/xmlwriter_start_element.html","desc":"Create start element tag"}, "xmlwriter_start_element_ns":{"name":"xmlwriter_start_element_ns","type":"","path":"php/xmlwriter_start_element_ns.html","desc":"Create start namespaced element tag"}, "xmlwriter_start_pi":{"name":"xmlwriter_start_pi","type":"","path":"php/xmlwriter_start_pi.html","desc":"Create start PI tag"}, "xmlwriter_text":{"name":"xmlwriter_text","type":"","path":"php/xmlwriter_text.html","desc":"Write text"}, "xmlwriter_write_attribute":{"name":"xmlwriter_write_attribute","type":"","path":"php/xmlwriter_write_attribute.html","desc":"Write full attribute"}, "xmlwriter_write_attribute_ns":{"name":"xmlwriter_write_attribute_ns","type":"","path":"php/xmlwriter_write_attribute_ns.html","desc":"Write full namespaced attribute"}, "xmlwriter_write_cdata":{"name":"xmlwriter_write_cdata","type":"","path":"php/xmlwriter_write_cdata.html","desc":"Write full CDATA tag"}, "xmlwriter_write_comment":{"name":"xmlwriter_write_comment","type":"","path":"php/xmlwriter_write_comment.html","desc":"Write full comment tag"}, "xmlwriter_write_dtd":{"name":"xmlwriter_write_dtd","type":"","path":"php/xmlwriter_write_dtd.html","desc":"Write full DTD tag"}, "xmlwriter_write_dtd_attlist":{"name":"xmlwriter_write_dtd_attlist","type":"","path":"php/xmlwriter_write_dtd_attlist.html","desc":"Write full DTD AttList tag"}, "xmlwriter_write_dtd_element":{"name":"xmlwriter_write_dtd_element","type":"","path":"php/xmlwriter_write_dtd_element.html","desc":"Write full DTD element tag"}, "xmlwriter_write_dtd_entity":{"name":"xmlwriter_write_dtd_entity","type":"","path":"php/xmlwriter_write_dtd_entity.html","desc":"Write full DTD Entity tag"}, "xmlwriter_write_element":{"name":"xmlwriter_write_element","type":"","path":"php/xmlwriter_write_element.html","desc":"Write full element tag"}, "xmlwriter_write_element_ns":{"name":"xmlwriter_write_element_ns","type":"","path":"php/xmlwriter_write_element_ns.html","desc":"Write full namespaced element tag"}, "xmlwriter_write_pi":{"name":"xmlwriter_write_pi","type":"","path":"php/xmlwriter_write_pi.html","desc":"Writes a PI"}, "xmlwriter_write_raw":{"name":"xmlwriter_write_raw","type":"","path":"php/xmlwriter_write_raw.html","desc":"Write a raw XML text"}, "xml_error_string":{"name":"xml_error_string","type":"","path":"php/xml_error_string.html","desc":"获取 XML 解析器的错误字符串"}, "xml_get_current_byte_index":{"name":"xml_get_current_byte_index","type":"","path":"php/xml_get_current_byte_index.html","desc":"获取 XML 解析器的当前字节索引"}, "xml_get_current_column_number":{"name":"xml_get_current_column_number","type":"","path":"php/xml_get_current_column_number.html","desc":"获取 XML 解析器的当前列号"}, "xml_get_current_line_number":{"name":"xml_get_current_line_number","type":"","path":"php/xml_get_current_line_number.html","desc":"获取 XML 解析器的当前行号"}, "xml_get_error_code":{"name":"xml_get_error_code","type":"","path":"php/xml_get_error_code.html","desc":"获取 XML 解析器错误代码"}, "xml_parse":{"name":"xml_parse","type":"","path":"php/xml_parse.html","desc":"开始解析一个 XML 文档"}, "xml_parser_create":{"name":"xml_parser_create","type":"","path":"php/xml_parser_create.html","desc":"建立一个 XML 解析器"}, "xml_parser_create_ns":{"name":"xml_parser_create_ns","type":"","path":"php/xml_parser_create_ns.html","desc":"生成一个支持命名空间的 XML 解析器"}, "xml_parser_free":{"name":"xml_parser_free","type":"","path":"php/xml_parser_free.html","desc":"释放指定的 XML 解析器"}, "xml_parser_get_option":{"name":"xml_parser_get_option","type":"","path":"php/xml_parser_get_option.html","desc":"从 XML 解析器获取选项设置信息"}, "xml_parser_set_option":{"name":"xml_parser_set_option","type":"","path":"php/xml_parser_set_option.html","desc":"为指定 XML 解析进行选项设置"}, "xml_parse_into_struct":{"name":"xml_parse_into_struct","type":"","path":"php/xml_parse_into_struct.html","desc":"将 XML 数据解析到数组中"}, "xml_set_character_data_handler":{"name":"xml_set_character_data_handler","type":"","path":"php/xml_set_character_data_handler.html","desc":"建立字符数据处理器"}, "xml_set_default_handler":{"name":"xml_set_default_handler","type":"","path":"php/xml_set_default_handler.html","desc":"建立默认处理器"}, "xml_set_element_handler":{"name":"xml_set_element_handler","type":"","path":"php/xml_set_element_handler.html","desc":"建立起始和终止元素处理器"}, "xml_set_end_namespace_decl_handler":{"name":"xml_set_end_namespace_decl_handler","type":"","path":"php/xml_set_end_namespace_decl_handler.html","desc":"建立终止命名空间声明处理器"}, "xml_set_external_entity_ref_handler":{"name":"xml_set_external_entity_ref_handler","type":"","path":"php/xml_set_external_entity_ref_handler.html","desc":"建立外部实体指向处理器"}, "xml_set_notation_decl_handler":{"name":"xml_set_notation_decl_handler","type":"","path":"php/xml_set_notation_decl_handler.html","desc":"建立注释声明处理器"}, "xml_set_object":{"name":"xml_set_object","type":"","path":"php/xml_set_object.html","desc":"在对象中使用 XML 解析器"}, "xml_set_processing_instruction_handler":{"name":"xml_set_processing_instruction_handler","type":"","path":"php/xml_set_processing_instruction_handler.html","desc":"建立处理指令(PI)处理器"}, "xml_set_start_namespace_decl_handler":{"name":"xml_set_start_namespace_decl_handler","type":"","path":"php/xml_set_start_namespace_decl_handler.html","desc":"建立起始命名空间声明处理器"}, "xml_set_unparsed_entity_decl_handler":{"name":"xml_set_unparsed_entity_decl_handler","type":"","path":"php/xml_set_unparsed_entity_decl_handler.html","desc":"建立未解析实体定义声明处理器"}, "yaml_emit":{"name":"yaml_emit","type":"","path":"php/yaml_emit.html","desc":"Returns the YAML representation of a value"}, "yaml_emit_file":{"name":"yaml_emit_file","type":"","path":"php/yaml_emit_file.html","desc":"Send the YAML representation of a value to a file"}, "yaml_parse":{"name":"yaml_parse","type":"","path":"php/yaml_parse.html","desc":"Parse a YAML stream"}, "yaml_parse_file":{"name":"yaml_parse_file","type":"","path":"php/yaml_parse_file.html","desc":"Parse a YAML stream from a file"}, "yaml_parse_url":{"name":"yaml_parse_url","type":"","path":"php/yaml_parse_url.html","desc":"Parse a Yaml stream from a URL"}, "yaz_addinfo":{"name":"yaz_addinfo","type":"","path":"php/yaz_addinfo.html","desc":"Returns additional error information"}, "yaz_ccl_conf":{"name":"yaz_ccl_conf","type":"","path":"php/yaz_ccl_conf.html","desc":"Configure CCL parser"}, "yaz_ccl_parse":{"name":"yaz_ccl_parse","type":"","path":"php/yaz_ccl_parse.html","desc":"Invoke CCL Parser"}, "yaz_close":{"name":"yaz_close","type":"","path":"php/yaz_close.html","desc":"Close YAZ connection"}, "yaz_connect":{"name":"yaz_connect","type":"","path":"php/yaz_connect.html","desc":"Prepares for a connection to a Z39.50 server"}, "yaz_database":{"name":"yaz_database","type":"","path":"php/yaz_database.html","desc":"Specifies the databases within a session"}, "yaz_element":{"name":"yaz_element","type":"","path":"php/yaz_element.html","desc":"Specifies Element-Set Name for retrieval"}, "yaz_errno":{"name":"yaz_errno","type":"","path":"php/yaz_errno.html","desc":"Returns error number"}, "yaz_es":{"name":"yaz_es","type":"","path":"php/yaz_es.html","desc":"Prepares for an Extended Service Request"}, "yaz_es_result":{"name":"yaz_es_result","type":"","path":"php/yaz_es_result.html","desc":"Inspects Extended Services Result"}, "yaz_get_option":{"name":"yaz_get_option","type":"","path":"php/yaz_get_option.html","desc":"Returns value of option for connection"}, "yaz_hits":{"name":"yaz_hits","type":"","path":"php/yaz_hits.html","desc":"Returns number of hits for last search"}, "yaz_itemorder":{"name":"yaz_itemorder","type":"","path":"php/yaz_itemorder.html","desc":"Prepares for Z39.50 Item Order with an ILL-Request package"}, "yaz_present":{"name":"yaz_present","type":"","path":"php/yaz_present.html","desc":"Prepares for retrieval (Z39.50 present)"}, "yaz_range":{"name":"yaz_range","type":"","path":"php/yaz_range.html","desc":"Specifies a range of records to retrieve"}, "yaz_record":{"name":"yaz_record","type":"","path":"php/yaz_record.html","desc":"Returns a record"}, "yaz_scan":{"name":"yaz_scan","type":"","path":"php/yaz_scan.html","desc":"Prepares for a scan"}, "yaz_scan_result":{"name":"yaz_scan_result","type":"","path":"php/yaz_scan_result.html","desc":"Returns Scan Response result"}, "yaz_schema":{"name":"yaz_schema","type":"","path":"php/yaz_schema.html","desc":"Specifies schema for retrieval"}, "yaz_search":{"name":"yaz_search","type":"","path":"php/yaz_search.html","desc":"Prepares for a search"}, "yaz_set_option":{"name":"yaz_set_option","type":"","path":"php/yaz_set_option.html","desc":"Sets one or more options for connection"}, "yaz_sort":{"name":"yaz_sort","type":"","path":"php/yaz_sort.html","desc":"Sets sorting criteria"}, "yaz_syntax":{"name":"yaz_syntax","type":"","path":"php/yaz_syntax.html","desc":"Specifies the preferred record syntax for retrieval"}, "yaz_wait":{"name":"yaz_wait","type":"","path":"php/yaz_wait.html","desc":"Wait for Z39.50 requests to complete"}, "yp_all":{"name":"yp_all","type":"","path":"php/yp_all.html","desc":"Traverse the map and call a function on each entry"}, "yp_cat":{"name":"yp_cat","type":"","path":"php/yp_cat.html","desc":"Return an array containing the entire map"}, "yp_errno":{"name":"yp_errno","type":"","path":"php/yp_errno.html","desc":"Returns the error code of the previous operation"}, "yp_err_string":{"name":"yp_err_string","type":"","path":"php/yp_err_string.html","desc":"Returns the error string associated with the given error code"}, "yp_first":{"name":"yp_first","type":"","path":"php/yp_first.html","desc":"Returns the first key-value pair from the named map"}, "yp_get_default_domain":{"name":"yp_get_default_domain","type":"","path":"php/yp_get_default_domain.html","desc":"Fetches the machine's default NIS domain"}, "yp_master":{"name":"yp_master","type":"","path":"php/yp_master.html","desc":"Returns the machine name of the master NIS server for a map"}, "yp_match":{"name":"yp_match","type":"","path":"php/yp_match.html","desc":"Returns the matched line"}, "yp_next":{"name":"yp_next","type":"","path":"php/yp_next.html","desc":"Returns the next key-value pair in the named map"}, "yp_order":{"name":"yp_order","type":"","path":"php/yp_order.html","desc":"Returns the order number for a map"}, "zend_logo_guid":{"name":"zend_logo_guid","type":"","path":"php/zend_logo_guid.html","desc":"获取 Zend guid"}, "zend_thread_id":{"name":"zend_thread_id","type":"","path":"php/zend_thread_id.html","desc":"返回当前线程的唯一识别符"}, "zend_version":{"name":"zend_version","type":"","path":"php/zend_version.html","desc":"获取当前 Zend 引擎的版本"}, "zip_close":{"name":"zip_close","type":"","path":"php/zip_close.html","desc":"关闭一个ZIP档案文件"}, "zip_entry_close":{"name":"zip_entry_close","type":"","path":"php/zip_entry_close.html","desc":"关闭目录项"}, "zip_entry_compressedsize":{"name":"zip_entry_compressedsize","type":"","path":"php/zip_entry_compressedsize.html","desc":"检索目录项压缩过后的大小"}, "zip_entry_compressionmethod":{"name":"zip_entry_compressionmethod","type":"","path":"php/zip_entry_compressionmethod.html","desc":"检索目录实体的压缩方法"}, "zip_entry_filesize":{"name":"zip_entry_filesize","type":"","path":"php/zip_entry_filesize.html","desc":"检索目录实体的实际大小"}, "zip_entry_name":{"name":"zip_entry_name","type":"","path":"php/zip_entry_name.html","desc":"检索目录项的名称"}, "zip_entry_open":{"name":"zip_entry_open","type":"","path":"php/zip_entry_open.html","desc":"打开用于读取的目录实体"}, "zip_entry_read":{"name":"zip_entry_read","type":"","path":"php/zip_entry_read.html","desc":"读取一个打开了的压缩目录实体"}, "zip_open":{"name":"zip_open","type":"","path":"php/zip_open.html","desc":"打开ZIP存档文件"}, "zip_read":{"name":"zip_read","type":"","path":"php/zip_read.html","desc":"读取ZIP存档文件中下一项"}, "zlib_decode":{"name":"zlib_decode","type":"","path":"php/zlib_decode.html","desc":"Uncompress any rawgzipzlib encoded data"}, "zlib_encode":{"name":"zlib_encode","type":"","path":"php/zlib_encode.html","desc":"Compress data with the specified encoding"}, "zlib_get_coding_type":{"name":"zlib_get_coding_type","type":"","path":"php/zlib_get_coding_type.html","desc":"Returns the coding type used for output compression"}, "zookeeper_dispatch":{"name":"zookeeper_dispatch","type":"","path":"php/zookeeper_dispatch.html","desc":"Calls callbacks for pending operations"} } \ No newline at end of file diff --git a/index/python.json b/index/python.json index 68c38081..1146e657 100644 --- a/index/python.json +++ b/index/python.json @@ -1 +1 @@ -{ "intro.html": "介绍", "functions.html": "内置函数", "constants.html": "内置常量", "stdtypes.html": "内置类型", "exceptions.html": "内置异常", "text.html": "文字处理服务", "string.html": "字符串操作", "re.html": "正则表达式操作", "difflib.html": "计算delta的帮助", "textwrap.html": "文字换行和填充", "unicodedata.html": "Unicode 数据库", "stringprep.html": "互联网字符串制备", "readline.html": "GNU readline 接口", "rlcompleter.html": "GNU readline的完成功能", "binary.html": "二进制数据服务", "struct.html": "格式化解析bytes", "codecs.html": "Codec注册表和基类", "datatypes.html": "数据类型", "datetime.html": "基本日期时间类型", "calendar.html": "与日历相关的一般函数", "collections.html": "容器", "collections.abc.html": "抽象基类容器", "heapq.html": "堆队列算法", "bisect.html": "数组分割算法", "array.html": "高效的数值数组", "weakref.html": "弱引用", "types.html": "创建动态类型和内置类型的名称", "copy.html": "浅层和深层复制操作", "pprint.html": "打印整洁的数据", "reprlib.html": "备用 repr() 执行", "enum.html": "支持枚举类型", "numeric.html": "数字和数学模块", "numbers.html": "数字抽象基类", "math.html": "数学函数", "cmath.html": "数学函数,用于复数", "decimal.html": "十进制固定和浮点算术", "fractions.html": "有理数", "random.html": "生成伪随机数", "statistics.html": "数理统计函数", "functional.html": "函数编程模块", "itertools.html": "功能创建迭代器高效循环", "functools.html": "高阶函数和可调用对象的操作", "operator.html": "标准运算符作为函数", "filesys.html": "文件与目录的访问", "pathlib.html": "面向对象的文件系统路径", "os.path.html": "常见的路径名称操作", "fileinput.html": "从多个输入流中迭代", "stat.html": "解释stat()结果", "filecmp.html": "文件和目录比较", "tempfile.html": "生成临时文件和目录", "glob.html": "Unix样式路径名模式扩展", "fnmatch.html": "Unix文件名匹配模式", "linecache.html": "文字行缓存", "shutil.html": "高级文件操作", "macpath.html": "Mac OS 9路径处理函数", "persistence.html": "数据持久性", "pickle.html": "Python对象序列化", "copyreg.html": "注册pickle支持功能", "shelve.html": "Python对象持久性", "marshal.html": "内部Python对象序列化", "dbm.html": "与Unix“数据库”的接口", "sqlite3.html": "SQLite数据库的DB-API 0接口", "archiving.html": "数据压缩和归档", "zlib.html": "兼容 gzip 压缩", "gzip.html": "支持 gzip 文件", "bz2.html": "支持 bzip2 压缩", "lzma.html": "基于LZMA算法的压缩", "zipfile.html": "ZIP归档访问", "tarfile.html": "读取与压缩tar文件", "fileformats.html": "文件格式", "csv.html": "CSV 文件的读写", "configparser.html": "配置文件解析器", "netrc.html": "netrc文件处理", "xdrlib.html": "对XDR数据进行编码和解码", "plistlib.html": "生成并解析Mac OS X ", "crypto.html": "加密服务", "hashlib.html": "安全哈希和消息摘要", "hmac.html": "用于消息验证的加密哈希", "allos.html": "通用操作系统服务", "os.html": "操作系统的各种接口", "io.html": "以流方式处理打开的核心工具", "time.html": "时间存取和转换", "argparse.html": "解析命令行参数的Parser工具", "getopt.html": "命令行选项的C样式解析器", "logging.html": "Python日志记录工具", "logging.config.html": "日志配置", "logging.handlers.html": "日志处理程序", "getpass.html": "便携式密码输入", "curses.html": "字符单元显示的终端处理", "curses.ascii.html": "ASCII字符的实用工具", "curses.panel.html": "curses的面板集扩展", "platform.html": "访问底层平台的识别数据", "errno.html": "标准errno系统符号", "ctypes.html": "Python的外部函数库", "concurrency.html": "并发执行", "threading.html": "基于线程的并行", "multiprocessing.html": "基于进程的并行", "concurrent.html": "concurrent", "concurrent.futures.html": "启动并行任务", "subprocess.html": "子进程管理", "sched.html": "事件调度程序", "queue.html": "同步队列类", "dummy_threading.html": "threading模块的插入替换", "_thread.html": "低级线程API", "_dummy_thread.html": "替换_thread模块", "ipc.html": "进程间通信和联网", "socket.html": "低级网络接口", "ssl.html": "套接字对象的TLS / SSL包装器", "select.html": "等待I / O完成", "selectors.html": "高级I / O复用", "asyncio.html": "异步 I/O、 事件循环、 协同程序和任务", "asyncore.html": "异步套接字处理程序", "asynchat.html": "异步套接字命令/响应处理程序", "signal.html": "设置异步事件处理程序", "mmap.html": "内存映射文件支持 0>", "netdata.html": "互联网数据处理", "email.html": "电子邮件和MIME处理包", "json.html": "JSON 编码与解码", "mailcap.html": "Mailcap文件处理", "mailbox.html": "以各种格式处理邮箱", "mimetypes.html": "将文件名映射到MIME类型", "base64.html": "Base16、Base32、Base64、Base85数据编码", "binhex.html": "编码和解码binhex4文件", "binascii.html": "在二进制和ASCII之间转换", "quopri.html": "编码和解码MIME可引用的数据", "uu.html": "对uuencode文件进行编码和解码", "markup.html": "结构化标记处理工具", "html.html": "超文本标记语言的支持", "html.parser.html": "简单的HTML和XHTML解析器", "html.entities.html": "HTML一般实体的定义", "xml.html": "XML处理模块", "xml.etree.elementtree.html": "ElementTree XML API", "xml.dom.html": "文档对象模型API", "xml.dom.minidom.html": "最小DOM实现", "xml.dom.pulldom.html": "支持构建部分DOM树", "xml.sax.html": "支持SAX2解析器", "xml.sax.handler.html": "SAX处理程序的基类", "xml.sax.utils.html": "SAX实用程序", "xml.sax.reader.html": "XML解析器接口", "pyexpat.html": "使用Expat进行快速XML解析", "internet.html": "网络协议与支持", "webbrowser.html": "方便的 Web 浏览器控制器", "cgi.html": "通用网关接口支持", "cgitb.html": "CGI 脚本的回馈错误管理", "wsgiref.html": "WSGI Utilities和参考实现", "urllib.html": "URL 处理模块", "urllib.request.html": "可扩展的开放Url类", "urllib.parse.html": "将网址解析到组件", "urllib.error.html": "由urllib", "urllib.robotparser.html": "用于robots", "http.html": "HTTP模块", "http.client.html": "HTTP 协议客户端", "ftplib.html": "FTP 协议客户端", "poplib.html": "POP3 协议客户端", "imaplib.html": "IMAP4 协议客户端", "nntplib.html": "NNTP 协议客户端", "smtplib.html": "SMTP 协议客户端", "smtpd.html": "SMTP 服务", "telnetlib.html": "Telnet 客户端", "uuid.html": "根据RFC 4122的UUID对象", "socketserver.html": "网络服务器框架", "http.server.html": "HTTP服务器", "http.cookies.html": "HTTP状态管理", "http.cookiejar.html": "HTTP客户端的Cookie处理", "xmlrpc.html": "XMLRPC服务器和客户端模块", "xmlrpc.client.html": "XML-RPC客户端访问", "xmlrpc.server.html": "基本XML-RPC服务器", "ipaddress.html": "IPv4 / IPv6操作库", "mm.html": "多媒体服务", "audioop.html": "处理原始音频数据", "aifc.html": "读写AIFF和AIFC文件", "sunau.html": "读写Sun AU文件", "wave.html": "读取和写入WAV文件", "chunk.html": "读取IFF分块数据", "colorsys.html": "颜色系统之间的转换", "imghdr.html": "确定图像的类型", "sndhdr.html": "确定声音文件的类型", "ossaudiodev.html": "访问与OSS兼容的音频设备", "i18n.html": "国际化", "gettext.html": "多语言国际化服务", "locale.html": "国际化服务", "frameworks.html": "程序框架", "turtle.html": "Turtle graphics(图像)", "cmd.html": "支持面向行的命令解释器", "shlex.html": "简单词法分析", "tk.html": "TK图形用户接口", "tkinter.html": "Tcl/Tk的python接口", "tkinter.ttk.html": "Tk主题化部件", "tkinter.tix.html": "Tk扩展控件", "tkinter.scrolledtext.html": "滚动文本控件", "idle.html": "集成开发与学习环境", "othergui.html": "其他图形用户接口包", "development.html": "开发工具", "typing.html": "支持类型提示", "pydoc.html": "文档生成器和联机帮助系统", "doctest.html": "测试交互式 Python 示例", "unittest.html": "单元测试框架", "unittest.mock.html": "模拟对象库", "unittest.mock-examples.html": "开始使用", "2to3.html": "2to3-Python 2 到 3 代码自动转化", "test.html": "回归测试包为 Python", "debug.html": "调试和分析", "bdb.html": "调试器框架", "faulthandler.html": "转储Python回溯", "pdb.html": "The Python Debugger", "profile.html": "Python分析器", "timeit.html": "测量小代码片段的执行时间", "trace.html": "跟踪或跟踪 Python 语句执行", "tracemalloc.html": "跟踪内存分配", "distribution.html": "软件包装及分销", "distutils.html": "建立和安装的 Python 模块", "ensurepip.html": "引导 pip 安装程序", "venv.html": "创建虚拟环境", "zipapp.html": "管理可执行 python zip档案", "python.html": "Python 运行时服务", "sys.html": "系统特定参数和函数", "sysconfig.html": "提供对 Python 的配置信息的访问", "builtins.html": "内置对象", "__main__.html": "顶级脚本环境", "warnings.html": "警告控制", "contextlib.html": "with语句的上下文实用程序", "abc.html": "抽象基类", "atexit.html": "退出处理程序", "traceback.html": "打印或检索堆栈跟踪", "__future__.html": "未来语句定义", "gc.html": "垃圾回收器接口", "inspect.html": "检查活跃的对象", "site.html": "网站特定的配置挂钩", "fpectl.html": "浮点异常控制", "custominterp.html": "自定义 Python 解释器", "code.html": "解释器基类", "codeop.html": "编译 Python 代码", "modules.html": "导入模块", "zipimport.html": "从 Zip 存档导入模块", "pkgutil.html": "软件包扩展程序", "modulefinder.html": "查找脚本使用的模块", "runpy.html": "定位和执行Python模块", "importlib.html": "执行import", "language.html": "Python 语言服务", "parser.html": "访问 Python 语法树", "ast.html": "抽象语法树", "symtable.html": "访问编译器的符号表", "symbol.html": "常数用 Python 语法树", "token.html": "常数用 Python 语法树", "keyword.html": "测试Python关键字", "tokenize.html": "适用于Python源代码的Tokenizer", "tabnanny.html": "检测模糊缩进", "pyclbr.html": "Python类浏览器支持", "py_compile.html": "编译Python源文件", "compileall.html": "字节编译Python库", "dis.html": "Python 字节码反汇编器", "pickletools.html": "pickle 开发工具", "misc.html": "杂项服务", "formatter.html": "通用输出格式", "windows.html": "MS Windows 专用服务", "msilib.html": "读写Microsoft安装程序文件", "msvcrt.html": "从MS VC ++运行时的有用例程", "winreg.html": "注册表访问", "winsound.html": "Windows的声音播放接口", "unix.html": "Unix 专用服务", "posix.html": "最常见的POSIX系统调用", "pwd.html": "密码数据库", "spwd.html": "影子密码数据库", "grp.html": "群组数据库", "crypt.html": "检查Unix密码的功能", "termios.html": "POSIX style tty control", "tty.html": "终端控制功能", "pty.html": "伪终端实用程序", "fcntl.html": "fcntl和ioctl系统调用", "pipes.html": "shell管道接口", "resource.html": "资源使用信息", "nis.html": "Sun的NIS(黄页)接口", "syslog.html": "Unix syslog库例程", "superseded.html": "废弃的模块", "optparse.html": "解析命令行选项", "imp.html": "访问import内部", "BeautifulSoup.html": "一个HTML或XML的解析库,可以用它来方便的从网页中提取数据", "Pillow(PIL).html": "功能强大的图像处理库", "requests(basic).html": "强大、便捷的HTTP库(基础)", "requests(advance).html": "强大、便捷的HTTP库(进阶)", "Scrapy.html": "一个快速、高层次的屏幕抓取和web抓取框架,用于抓取web站点并从页面中提取结构化的数据", "abc.html#abc.abstractmethod": "装饰器指示抽象方法", "abc.html#abc.abstractclassmethod": "内建classmethod()的子类,表示抽象类方法", "abc.html#abc.abstractstaticmethod": "内建staticmethod()的子类,表示抽象静态方法", "abc.html#abc.abstractproperty": "内建property()的子类,表示一个抽象属性", "abc.html#abc.get_cache_token": "返回当前抽象基类缓存令牌", "aifc.html#aifc.open": "打开AIFF或AIFF-C文件并返回对象实例,方法如下所述", "array.html#array.typecodes": "包含所有可用类型代码的字符串", "ast.html#ast.parse": "将源解析为AST节点", "ast.html#ast.literal_eval": "安全计算表达式节点或包含Python字面值或容器显示的字符串", "ast.html#ast.get_docstring": "Return the docstring of the given node (which must be a FunctionDef, ClassDef or Module node), or None if it has no docstring", "ast.html#ast.fix_missing_locations": "当使用compile()编译节点树时,编译器对于支持它们的每个节点都需要lineno和col_offset属性", "ast.html#ast.increment_lineno": "从节点开始,通过n增加树中每个节点的行号", "ast.html#ast.copy_location": "如果可能,将源位置(lineno和col_offset)从old_node复制到new_node,然后返回new_node ", "ast.html#ast.iter_fields": "Yield a tuple of (fieldname, value) for each field in node", "ast.html#ast.iter_child_nodes": "产生节点的所有直接子节点,即作为节点的所有字段和作为节点列表的所有字段项", "ast.html#ast.walk": "递归地以节点(包括节点本身)开始生成树中的所有后代节点,没有指定顺序", "ast.html#ast.dump": "在节点中返回树的格式化转储", "asynchat.html#asynchat.async_chat.ac_in_buffer_size": "异步输入缓冲区大小(默认值4096)", "asynchat.html#asynchat.async_chat.ac_out_buffer_size": "异步输出缓冲区大小(默认值4096)", "asyncore.html#asyncore.loop": "输入轮询循环,在计数过程或所有打开的通道关闭后终止循环", "atexit.html#atexit.register": "将func寄存器作为要在终止时执行的函数", "atexit.html#atexit.unregister": "从要在解释器关机运行的函数列表中删除func", "audioop.html#audioop.add": "返回一个片段,它是作为参数传递的两个样本的相加", "audioop.html#audioop.adpcm2lin": "将Intel / DVI ADPCM编码片段解码为线性片段", "audioop.html#audioop.alaw2lin": "将a-LAW编码中的声音片段转换为线性编码的声音片段", "audioop.html#audioop.avg": "返回片段中所有样本的平均值", "audioop.html#audioop.avgpp": "返回片段中所有样本的平均峰 - 峰值", "audioop.html#audioop.bias": "返回作为原始片段的片段,并向每个样本添加偏差", "audioop.html#audioop.byteswap": "“Byteswap”片段中的所有样本,并返回修改的片段", "audioop.html#audioop.cross": "返回作为参数传递的片段中的零交叉的数量", "audioop.html#audioop.findfactor": "返回因子F使得rms(add(fragment, mul(reference, -F))) t4>是最小的,即返回要乘以参考的因子,以使其与片段尽可能匹配", "audioop.html#audioop.findfit": "尝试将引用与片段(应为更长的片段)的一部分匹配", "audioop.html#audioop.findmax": "搜索片段获取长度长度的切片(不是字节!)with maximum energy, i", "audioop.html#audioop.getsample": "返回样本index的值", "audioop.html#audioop.lin2adpcm": "将采样转换为4位Intel / DVI ADPCM编码", "audioop.html#audioop.lin2alaw": "将音频片段中的样本转换为a-LAW编码,并将其作为字节对象返回", "audioop.html#audioop.lin2lin": "以1-,2-,3-和4字节格式转换样本", "audioop.html#audioop.lin2ulaw": "将音频片段中的样本转换为u-LAW编码,并将其作为字节对象返回", "audioop.html#audioop.max": "返回片段中所有样本的绝对值的最大值", "audioop.html#audioop.maxpp": "返回声音片段中的最大峰 - 峰值", "audioop.html#audioop.minmax": "返回由声音片段中所有样本的最小值和最大值组成的元组", "audioop.html#audioop.mul": "返回具有原始片段中的所有样本乘以浮点值因子的片段", "audioop.html#audioop.ratecv": "转换输入片段的帧速率", "audioop.html#audioop.reverse": "反转片段中的样本,并返回修改的片段", "audioop.html#audioop.rms": "返回片段的均方根,即sqrt(sum(S_i^2)/n)", "audioop.html#audioop.tomono": "将立体声片段转换为单声道片段", "audioop.html#audioop.tostereo": "从单声道片段生成立体声片段", "audioop.html#audioop.ulaw2lin": "将u-LAW编码中的声音片段转换为线性编码的声音片段", "base64.html#base64.b64encode": "使用Base64编码类字节对象s,并返回编码后的字节", "base64.html#base64.b64decode": "解码Base64编码的类字节对象或ASCII字符串s并返回解码的字节", "base64.html#base64.standard_b64encode": "使用标准的Base64字母表编码类字节对象 s并返回编码的字节", "base64.html#base64.standard_b64decode": "使用标准的Base64字母表解码类字节对象或ASCII字符串s并返回解码的字节", "base64.html#base64.urlsafe_b64encode": "使用URL和文件系统安全的字母表编码类字节对象s,它用-和_分别替换标准的Base64字母表中的+和/,并返回编码的字节", "base64.html#base64.urlsafe_b64decode": "使用URL及文件系统安全的字母表解码类字节对象或ASCII字符串s,它将标准Base64字母表中的+替换为-、/替换为_,并返回解码后的字节", "base64.html#base64.b32encode": "使用Base32编码类字节对象s并返回编码后的字节", "base64.html#base64.b32decode": "解码Base32编码的bytes-like object或ASCII字符串s并返回解码的bytes", "base64.html#base64.b16encode": "使用Base16编码bytes-like object s并返回编码的bytes", "base64.html#base64.b16decode": "解码Base16编码的bytes-like object或ASCII字符串s并返回解码的bytes", "base64.html#base64.a85encode": "使用Ascii85编码bytes-like object b并返回编码的bytes", "base64.html#base64.a85decode": "解码Ascii85编码的bytes-like object或ASCII字符串b并返回解码的bytes", "base64.html#base64.b85encode": "使用base85编码bytes-like object b(如git-style binary diffs)并返回编码的bytes", "base64.html#base64.b85decode": "解码base85编码的bytes-like object或ASCII字符串b并返回解码的bytes", "base64.html#base64.decode": "解码二进制输入文件的内容,并将生成的二进制数据写入输出文件", "base64.html#base64.decodebytes": "解码bytes-like object s,其中必须包含一行或多行base64编码数据,并返回解码的bytes", "base64.html#base64.encode": "编码二进制输入文件的内容,并将生成的base64编码数据写入输出文件", "base64.html#base64.encodebytes": "编码类字节对象s,它可以包含任意二进制数据,并返回base64编码数据的字节,根据RFC 2045 (MIME),在输出的每76个字节之后插入换行符(b'\\n'),并确保末尾有一个换行符", "bdb.html#bdb.checkfuncname": "检查我们是否应该在这里断开,这取决于断点b设置的方式", "bdb.html#bdb.effective": "确定此行代码是否存在有效(活动)断点", "bdb.html#bdb.set_trace": "使用调用者框架中的Bdb实例开始调试", "binascii.html#binascii.a2b_uu": "将单行的uuencoded数据转换回二进制并返回二进制数据", "binascii.html#binascii.b2a_uu": "将二进制数据转换为一行ASCII字符,返回值是转换后的行,包括换行符", "binascii.html#binascii.a2b_base64": "将一个base64数据块转换回二进制并返回二进制数据", "binascii.html#binascii.b2a_base64": "在base64编码中将二进制数据转换为一行ASCII字符", "binascii.html#binascii.a2b_qp": "将一组引用可打印数据转换回二进制并返回二进制数据", "binascii.html#binascii.b2a_qp": "将二进制数据转换为带引号的可打印编码中的ASCII字符行", "binascii.html#binascii.a2b_hqx": "将binhex4格式的ASCII数据转换为二进制,不进行RLE解压缩", "binascii.html#binascii.rledecode_hqx": "按照binhex4标准对数据执行RLE解压缩", "binascii.html#binascii.rlecode_hqx": "对数据执行binhex4样式RLE压缩并返回结果", "binascii.html#binascii.b2a_hqx": "执行hexbin4二进制到ASCII的转换并返回结果字符串", "binascii.html#binascii.crc_hqx": "计算数据的binhex4 crc值,以值开始作为初始crc,并返回结果", "binascii.html#binascii.crc32": "以值的初始CRC开始,计算数据的32位校验和CRC-32", "binascii.html#binascii.b2a_hex": "返回二进制数据的十六进制表示", "binascii.html#binascii.a2b_hex": "返回由十六进制字符串hexstr表示的二进制数据", "binhex.html#binhex.binhex": "将文件名输入的二进制文件转换为binhex文件输出", "binhex.html#binhex.hexbin": "解码binhex文件输入", "bisect.html#bisect.bisect_left": "在a中找到x的插入点以保持排序顺序", "bisect.html#bisect.bisect_right": "类似于bisect_left(),但返回在a中x的任何现有条目之后(右侧)的插入点", "bisect.html#bisect.insort_left": "以排序顺序在a中插入x", "bisect.html#bisect.insort_right": "类似于insort_left(),但在x的任何现有条目后在a中插入x", "bz2.html#bz2.open": "在二进制或文本模式下打开bzip2压缩文件,返回file object", "bz2.html#bz2.compress": "压缩数据", "bz2.html#bz2.decompress": "解压缩数据", "calendar.html#calendar.setfirstweekday": "设置每周开始的工作日(0是星期一,6是星期日)", "calendar.html#calendar.firstweekday": "返回为平日的当前设置,每个星期开始", "calendar.html#calendar.isleap": "如果年是闰年,则返回True,否则False", "calendar.html#calendar.leapdays": "返回闰年的数目范围内从y1到y2 (专用), y1和y2是几年", "calendar.html#calendar.weekday": "返回年(1970 -", "calendar.html#calendar.weekheader": "返回包含缩写的星期几名称的标头", "calendar.html#calendar.monthrange": "返回月份,为指定的年、月中的工作日的天数,每月的第一天", "calendar.html#calendar.monthcalendar": "返回一个矩阵,代表一个月的日历", "calendar.html#calendar.prmonth": "打印由month()返回的一个月的日历", "calendar.html#calendar.month": "使用TextCalendar类的formatmonth()返回多行字符串中的一个月的日历", "calendar.html#calendar.prcal": "打印由calendar()返回的整年的日历", "calendar.html#calendar.calendar": "使用TextCalendar类的formatyear())作为多行字符串返回整年的3列日历", "calendar.html#calendar.timegm": "一个不相关但方便的函数,它需要一个时间元组,例如由time模块中的gmtime()函数返回,并返回相应的Unix时间戳值, 1970,和POSIX编码", "calendar.html#calendar.day_name": "一个数组,表示当前的区域设置中的星期数", "calendar.html#calendar.day_abbr": "一个数组,表示当前的区域设置中的缩写的星期数", "calendar.html#calendar.month_name": "一个数组,表示今年的几个月中的当前区域设置", "calendar.html#calendar.month_abbr": "一个数组,表示今年的缩写个月中的当前区域设置", "cgi.html#cgi.parse": "在环境或文件中解析查询(文件默认为sys", "cgi.html#cgi.parse_qs": "此模块中已弃用此函数", "cgi.html#cgi.parse_qsl": "此模块中已弃用此函数", "cgi.html#cgi.parse_multipart": "解析类型multipart / form-data的输入(用于文件上传)", "cgi.html#cgi.parse_header": "将MIME标头(例如Content-Type)解析为主值和参数字典", "cgi.html#cgi.test": "稳健的测试CGI脚本,可用作主程序", "cgi.html#cgi.print_environ": "在HTML中格式化shell环境", "cgi.html#cgi.print_form": "在HTML中格式化表单", "cgi.html#cgi.print_directory": "使用HTML格式化当前目录", "cgi.html#cgi.print_environ_usage": "在HTML中打印有用(由CGI使用)环境变量的列表", "cgi.html#cgi.escape": "将字符串s中的字符'&','<'和'>'如果您需要显示可能在HTML中包含此类字符的文本,请使用此选项", "cgitb.html#cgitb.enable": "此函数使cgitb模块通过设置sys", "cgitb.html#cgitb.handler": "此函数使用默认设置处理异常 (也即是,在浏览器中显示错误小心但不记录到一个文件中小心)", "cmath.html#cmath.phase": "返回阶段的x (也被称为参数的x),作为一个浮点数", "cmath.html#cmath.polar": "返回在极坐标系中的x表示", "cmath.html#cmath.rect": "返回复数x用极坐标r和phi", "cmath.html#cmath.exp": "返回指数值e**x", "cmath.html#cmath.log": "返回给定基的x的对数", "cmath.html#cmath.log10": "返回x的对数", "cmath.html#cmath.sqrt": "返回x的平方根", "cmath.html#cmath.acos": "返回x的反余弦", "cmath.html#cmath.asin": "返回x的反正弦值", "cmath.html#cmath.atan": "返回x的反正切值", "cmath.html#cmath.cos": "返回x的余弦值", "cmath.html#cmath.sin": "返回x的正弦值", "cmath.html#cmath.tan": "返回x的正切值", "cmath.html#cmath.acosh": "返回x的反双曲余弦值", "cmath.html#cmath.asinh": "返回x的反双曲正弦值", "cmath.html#cmath.atanh": "返回x的反双曲正切值", "cmath.html#cmath.cosh": "返回x的双曲余弦值", "cmath.html#cmath.sinh": "返回x的双曲正弦值", "cmath.html#cmath.tanh": "返回x的双曲正切值", "cmath.html#cmath.isfinite": "如果x的实部和虚部都是有限的,则返回True,否则返回False", "cmath.html#cmath.isinf": "如果x的实部或虚部是无穷大,而False则返回True", "cmath.html#cmath.isnan": "如果x的实部或虚部是NaN,而False则返回True", "cmath.html#cmath.isclose": "如果a和b的值彼此接近,而False则返回True", "cmath.html#cmath.pi": "数学常量π,作为一个浮点数", "cmath.html#cmath.e": "数学常数e,作为一个浮点数", "code.html#code.interact": "便利功能运行读取 - 打印回路", "code.html#code.compile_command": "这个函数对于想要模拟Python的解释器主循环(a", "codecs.html#codecs.encode": "使用为编码注册的编解码器编码obj", "codecs.html#codecs.decode": "使用为编码注册的编解码器解码obj", "codecs.html#codecs.lookup": "在Python编解码器注册表中查找编解码器信息,并返回如下定义的CodecInfo对象", "codecs.html#codecs.getencoder": "查找给定编码的编解码器并返回其编码器功能", "codecs.html#codecs.getdecoder": "查找给定编码的编解码器并返回其解码器功能", "codecs.html#codecs.getincrementalencoder": "查找给定编码的编解码器并返回其增量编码器类或工厂功能", "codecs.html#codecs.getincrementaldecoder": "查找给定编码的编解码器并返回其增量解码器类或工厂功能", "codecs.html#codecs.getreader": "查找给定编码的编解码器并返回它的StreamReader类或工厂函数", "codecs.html#codecs.getwriter": "查找给定编码的编解码器并返回它的StreamWriter类或工厂函数", "codecs.html#codecs.register": "注册编解码器搜索功能", "codecs.html#codecs.open": "使用给定的模式打开编码文件并返回StreamReaderWriter的实例,从而提供透明的编码/解码", "codecs.html#codecs.EncodedFile": "返回一个StreamRecoder实例,它提供了透明代码转换的文件的包装版本", "codecs.html#codecs.iterencode": "使用增量编码器迭代编码迭代器提供的输入", "codecs.html#codecs.iterdecode": "使用增量式解码器迭代解码迭代器提供的输入", "codecs.html#codecs.register_error": "在名称name下注册错误处理函数error_handler", "codecs.html#codecs.lookup_error": "返回之前在名称name下注册的错误处理程序", "codecs.html#codecs.strict_errors": "实现'strict'错误处理:每个编码或解码错误都会引发一个UnicodeError", "codecs.html#codecs.replace_errors": "实现'replace'错误处理(仅用于text encodings):替换'?' for encoding errors (to be encoded by the codec), and '\\ufffd' (the Unicode replacement character) for decoding errors", "codecs.html#codecs.ignore_errors": "实现'ignore'错误处理:忽略格式错误的数据,继续编码或解码,恕不另行通知", "codecs.html#codecs.xmlcharrefreplace_errors": "实现'xmlcharrefreplace'错误处理(仅适用于使用text encodings编码):将不可编码字符替换为适当的XML字符引用", "codecs.html#codecs.backslashreplace_errors": "实现'backslashreplace'错误处理(仅适用于text encodings):格式错误的数据被替换为反斜杠转义序列", "codecs.html#codecs.namereplace_errors": "实现'namereplace'错误处理(仅适用于使用text encodings编码):不可编码字符被替换为\\N{", "codecs.html#encodings.idna.nameprep": "返回标签的名称准备版本", "codecs.html#encodings.idna.ToASCII": "按照 RFC 3490的规定将标签转换为ASCII", "codecs.html#encodings.idna.ToUnicode": "按照 RFC 3490的规定将标签转换为Unicode", "codecs.html#codecs.BOM": "这些常量定义了各种字节序列,即多个编码的Unicode字节顺序标记(BOM)", "codeop.html#codeop.compile_command": "尝试编译源,它应是一个Python代码字符串,并且如果source是有效的Python代码,则返回一个代码对象", "collections.html#collections.namedtuple": "返回一个叫做typename的新的元组子类", "colorsys.html#colorsys.rgb_to_yiq": "将颜色从RGB坐标转换为YIQ坐标", "colorsys.html#colorsys.yiq_to_rgb": "将颜色从YIQ坐标转换为RGB坐标", "colorsys.html#colorsys.rgb_to_hls": "将颜色从RGB坐标转换为HLS坐标", "colorsys.html#colorsys.hls_to_rgb": "将颜色从HLS坐标转换为RGB坐标", "colorsys.html#colorsys.rgb_to_hsv": "将颜色从RGB坐标转换为HSV坐标", "colorsys.html#colorsys.hsv_to_rgb": "将颜色从HSV坐标转换为RGB坐标", "compileall.html#compileall.compile_dir": "递归地下降由dir命名的目录树,编译所有", "compileall.html#compileall.compile_file": "使用路径fullname编译文件", "compileall.html#compileall.compile_path": "字节编译沿sys", "concurrent.futures.html#concurrent.futures.wait": "等待由fs给出的Future实例(可能由不同的Executor实例创建)完成", "concurrent.futures.html#concurrent.futures.as_completed": "在多个Future实例(可能由不同的Executor实例创建)上的迭代器(iterator)将会被返回,这些Future实例由fs完成(结束或者被停止)时产生(译者注:fs可以是隐含有一系列Future实例以及其他普通值的组合,返回的迭代器迭代的是那些Future实例,不包含普通的值)", "configparser.html#configparser.MAX_INTERPOLATION_DEPTH": "当raw参数为false时,get()的递归插值的最大深度", "constants.html#False": "bool类型的假值", "constants.html#True": "bool类型的真值", "constants.html#None": "NoneType 类型的唯一值", "constants.html#NotImplemented": "应该由特殊的二元方法返回的特殊值(例如__eq__(), __lt__(), __add__(), __rsub__()等)以指示没有相对于另一类型实现所述操作;可以通过就地二进制特殊方法(例如,__imul__(),__iand__()等)为同一目的", "constants.html#Ellipsis": "与", "constants.html#__debug__": "如果Python未使用-O选项启动,则此常数为true", "constants.html#quit": "打印时打印对象,打印一条消息,如“退出()”或Ctrl-D(即“EOF)退出,并且在调用时,使用指定的退出代码提升SystemExit", "constants.html#copyright": "当打印这些对象时,打印一条类似“Type license() to see the full license text”的信息,当调用它们时,则以分页的方式(一次一个屏幕)显示相应的文本", "contextlib.html#contextlib.contextmanager": "这个函数是一个装饰器,它可以用来一个工厂函数用于with语句上下文管理器,而不需要创建一个类或单独的__enter__()和__exit__()方法", "contextlib.html#contextlib.closing": "返回一个上下文管理器,在块完成后关闭事", "contextlib.html#contextlib.suppress": "返回上下文管理器,如果它们出现在with语句的主体中,则禁止任何指定的异常,然后使用with语句结束后的第一个语句恢复执行", "contextlib.html#contextlib.redirect_stdout": "上下文管理器用于将sys", "contextlib.html#contextlib.redirect_stderr": "与redirect_stdout()类似,但将sys", "copy.html#copy.copy": "返回x的浅拷贝", "copy.html#copy.deepcopy": "返回x的深度副本", "copyreg.html#copyreg.constructor": "将对象声明为有效的构造函数", "copyreg.html#copyreg.pickle": "声明函数应用作类型类型的对象的“缩减”函数", "crypt.html#crypt.crypt": "字通常是在提示或图形界面中输入的用户密码", "crypt.html#crypt.mksalt": "返回指定方法的随机生成的盐", "crypt.html#crypt.METHOD_SHA512": "一个16字符盐和86字符散列的模块化地址格式方法", "crypt.html#crypt.METHOD_SHA256": "另一个模块化地址格式方法,具有16个字符的盐和43个字符的哈希", "crypt.html#crypt.METHOD_MD5": "另一个模块化地址格式方法,具有8个字符的盐和22个字符的哈希", "crypt.html#crypt.METHOD_CRYPT": "传统方法使用2个字符的盐和13个字符的哈希", "csv.html#csv.reader": "返回一个读取器对象,它将在给定的csvfile中迭代", "csv.html#csv.writer": "返回一个writer对象,负责将用户的数据转换为给定类文件对象上的分隔字符串", "csv.html#csv.register_dialect": "将方言与名称相关联", "csv.html#csv.unregister_dialect": "从方言注册表中删除与名称关联的方言", "csv.html#csv.get_dialect": "返回与名称关联的方言", "csv.html#csv.list_dialects": "返回所有注册方言的名称", "csv.html#csv.field_size_limit": "返回解析器允许的当前最大字段大小", "csv.html#csv.QUOTE_ALL": "指示writer对象引用所有字段", "csv.html#csv.QUOTE_MINIMAL": "指示writer对象仅引用包含特殊字符(如分隔符,quotechar或lineterminator t5>", "csv.html#csv.QUOTE_NONNUMERIC": "指示writer对象引用所有非数字字段", "csv.html#csv.QUOTE_NONE": "指示writer对象从不引用字段", "ctypes.html#ctypes.CFUNCTYPE": "返回的函数原型创建使用标准C调用约定的函数", "ctypes.html#ctypes.WINFUNCTYPE": "仅Windows:返回的函数原型创建使用stdcall调用约定的函数,除了在Windows CE上,WINFUNCTYPE()与CFUNCTYPE()该功能将在通话过程中释放GIL", "ctypes.html#ctypes.PYFUNCTYPE": "返回的函数原型创建使用Python调用约定的函数", "ctypes.html#ctypes.addressof": "以整数形式返回内存缓冲区的地址", "ctypes.html#ctypes.alignment": "返回ctypes类型的对齐要求", "ctypes.html#ctypes.byref": "返回指向obj的轻量级指针,该指针必须是ctypes类型的实例", "ctypes.html#ctypes.cast": "该函数与C中的cast操作符类似", "ctypes.html#ctypes.create_string_buffer": "这个函数创建一个可变的字符缓冲区", "ctypes.html#ctypes.create_unicode_buffer": "这个函数创建一个可变的unicode字符缓冲区", "ctypes.html#ctypes.DllCanUnloadNow": "仅Windows:这个函数是一个钩子,它允许实现具有ctypes的进程内COM服务器", "ctypes.html#ctypes.DllGetClassObject": "仅Windows:这个函数是一个钩子,它允许实现具有ctypes的进程内COM服务器", "ctypes.html#ctypes.util.find_library": "尝试找到一个库并返回一个路径名", "ctypes.html#ctypes.util.find_msvcrt": "仅Windows:返回Python使用的VC运行时库的文件名,以及扩展模块", "ctypes.html#ctypes.FormatError": "仅限Windows:返回错误代码代码的文本描述", "ctypes.html#ctypes.GetLastError": "仅Windows:返回调用线程中由Windows设置的最后一个错误代码", "ctypes.html#ctypes.memmove": "与标准C memmove库函数相同:将count个字节从src复制到dst", "ctypes.html#ctypes.memset": "与标准C memset库函数相同:使用值c的count字节填充地址dst处的存储器块", "ctypes.html#ctypes.POINTER": "这个工厂函数创建并返回一个新的ctypes指针类型", "ctypes.html#ctypes.pointer": "这个函数创建一个新的指针实例,指向obj", "ctypes.html#ctypes.resize": "此函数调整obj的内部缓冲区,该缓冲区必须是ctypes类型的实例", "ctypes.html#ctypes.sizeof": "返回ctypes类型或实例内存缓冲区的大小(以字节为单位)", "ctypes.html#ctypes.string_at": "此函数返回从内存地址address开始的C字符串作为字节对象", "ctypes.html#ctypes.WinError": "仅Windows:这个函数可能是ctypes中命名最差的东西", "ctypes.html#ctypes.wstring_at": "该函数以字符串的形式返回从内存地址地址开始的宽字符串", "curses.ascii.html#curses.ascii.isalnum": "检查ASCII字母数字字符;它等同于isalpha(c) 或 isdigit(c)", "curses.ascii.html#curses.ascii.isalpha": "检查ASCII字母字符;它等于isupper(c) 或 islower(c)", "curses.ascii.html#curses.ascii.isascii": "检查符合7位ASCII集的字符值", "curses.ascii.html#curses.ascii.isblank": "检查ASCII空格字符;空间或水平制表符", "curses.ascii.html#curses.ascii.iscntrl": "检查ASCII控制字符(范围为0x00到0x1f或0x7f)", "curses.ascii.html#curses.ascii.isdigit": "检查ASCII十进制数字,'0'到'9'", "curses.ascii.html#curses.ascii.isgraph": "检查ASCII任何可打印字符(空格除外)", "curses.ascii.html#curses.ascii.islower": "检查ASCII小写字符", "curses.ascii.html#curses.ascii.isprint": "检查任何ASCII可打印字符(包括空格)", "curses.ascii.html#curses.ascii.ispunct": "检查任何可打印的ASCII字符,它不是空格或字母数字字符", "curses.ascii.html#curses.ascii.isspace": "检查ASCII空格字符;空格,换行,回车,换页,水平制表,垂直制表", "curses.ascii.html#curses.ascii.isupper": "检查ASCII大写字母", "curses.ascii.html#curses.ascii.isxdigit": "检查ASCII十六进制数字", "curses.ascii.html#curses.ascii.isctrl": "检查ASCII控制字符(序数值0到31)", "curses.ascii.html#curses.ascii.ismeta": "检查非ASCII字符(序数值为0x80及以上)", "curses.ascii.html#curses.ascii.ascii": "返回对应于c的低7位的ASCII值", "curses.ascii.html#curses.ascii.ctrl": "返回与给定字符相对应的控制字符(字符位值按位和0x1f)", "curses.ascii.html#curses.ascii.alt": "返回与给定ASCII字符相对应的8位字符(字符位值以0x80为单位)", "curses.ascii.html#curses.ascii.unctrl": "返回ASCII字符c的字符串表示形式", "curses.ascii.html#curses.ascii.controlnames": "一个33个元素的字符串数组,包含从0(NUL)到0x1f(US)的32个ASCII控制字符的ASCII助记符,加上空格字符的助记符SP", "curses.html#curses.baudrate": "以每秒位数返回终端的输出速度", "curses.html#curses.beep": "发出短注意的声音", "curses.html#curses.can_change_color": "返回 True 或者 False, 具体取决于是否程序员可以更改显示的颜色由终端", "curses.html#curses.cbreak": "进入 cbreak 模式", "curses.html#curses.color_content": "返回一组红绿蓝RGB的颜色强度分量color_number,其值要介于 0 和 COLORS", "curses.html#curses.color_pair": "返回在指定的颜色显示文本的属性值", "curses.html#curses.curs_set": "设置光标的状态", "curses.html#curses.def_prog_mode": "作为"程序"模式,模式正在运行的程序使用curss时保存当前的终端模式", "curses.html#curses.def_shell_mode": "作为"shell"模式,模式正在运行的程序不使用curses时保存当前的终端模式", "curses.html#curses.delay_output": "插入一个 ms 毫秒的暂停再输出上", "curses.html#curses.doupdate": "更新物理屏幕", "curses.html#curses.echo": "进入echo模型", "curses.html#curses.endwin": "取消初始化库,和终端回到正常状态", "curses.html#curses.erasechar": "返回用户当前的擦除字符", "curses.html#curses.filter": "必须在调用initscr()之前调用filter()例程(如果使用)", "curses.html#curses.flash": "闪烁屏幕", "curses.html#curses.flushinp": "刷新所有输入缓冲区", "curses.html#curses.getmouse": "After getch() returns KEY_MOUSE to signal a mouse event, this method should be call to retrieve the queued mouse event, represented as a 5-tuple (id, x, y, z, bstate)", "curses.html#curses.getsyx": "返回y和x中虚拟屏幕光标的当前坐标", "curses.html#curses.getwin": "通过前面的putwin()调用读取存储在文件中的窗口相关数据", "curses.html#curses.has_colors": "如果终端可以显示颜色,则返回True;否则,返回False", "curses.html#curses.has_ic": "如果终端具有插入和删除字符功能,则返回True", "curses.html#curses.has_il": "如果终端具有插入和删除行功能,或者可以使用滚动区域模拟它们,则返回True", "curses.html#curses.has_key": "如果当前终端类型识别出具有该值的关键字,则获取关键值ch,并返回True", "curses.html#curses.halfdelay": "用于半延时模式,类似于Cbreak模式,因为用户键入的字符可立即用于程序", "curses.html#curses.init_color": "改变颜色的定义,取出要改变的颜色的数字,后面跟着三个RGB值(红色,绿色和蓝色成分的数量)", "curses.html#curses.init_pair": "更改颜色对的定义", "curses.html#curses.initscr": "初始化库", "curses.html#curses.is_term_resized": "如果resize_term()会修改窗口结构,则返回True否则返回False", "curses.html#curses.isendwin": "如果调用了endwin()(即,curses库已被初始化),则返回True", "curses.html#curses.keyname": "返回编号为k的密钥的名称", "curses.html#curses.killchar": "返回用户的当前行杀死字符", "curses.html#curses.longname": "返回一个字符串,其中包含描述当前终端的terminfo长名称字段", "curses.html#curses.meta": "如果是是1,则允许输入8位字符", "curses.html#curses.mouseinterval": "设置按下和释放事件之间可以经过的最大时间(以毫秒为单位),以便将它们识别为点击,并返回上一个间隔值", "curses.html#curses.mousemask": "设置要报告的鼠标事件,并返回一个元组(availmask, oldmask)", "curses.html#curses.napms": "Sleep for ms milliseconds", "curses.html#curses.newpad": "创建并返回指向具有给定行数和列数的新Pad数据结构的指针", "curses.html#curses.newwin": "返回一个新的窗口,其左上角位于(begin_y, begin_x),其高度/宽度为nlines < / T3> / NCOLS T4>", "curses.html#curses.nl": "进入换行模式", "curses.html#curses.nocbreak": "离开cbreak模式", "curses.html#curses.noecho": "留下回声模式", "curses.html#curses.nonl": "离开换行模式", "curses.html#curses.noqiflush": "当使用noqiflush()例程时,与INTR,QUIT和SUSP字符关联的输入和输出队列的正常刷新将不会完成", "curses.html#curses.noraw": "保持原始模式", "curses.html#curses.pair_content": "返回包含请求颜色对的颜色的元组(fg, bg)", "curses.html#curses.pair_number": "返回由属性值attr设置的颜色对的编号", "curses.html#curses.putp": "Equivalent to tputs(str, 1, putchar); emit the value of a specified terminfo capability for the current terminal", "curses.html#curses.qiflush": "如果flag为False,则效果与调用noqiflush()相同", "curses.html#curses.raw": "进入原始模式", "curses.html#curses.reset_prog_mode": "如之前由def_prog_mode()保存,将终端恢复到“编程”模式", "curses.html#curses.reset_shell_mode": "如以前由def_shell_mode()保存的,将终端恢复到“shell”模式", "curses.html#curses.resetty": "将终端模式的状态恢复到最后一次调用savetty()时的状态", "curses.html#curses.resize_term": "Backend function used by resizeterm(), performing most of the work; when resizing the windows, resize_term() blank-fills the areas that are extended", "curses.html#curses.resizeterm": "将标准窗口和当前窗口调整为指定尺寸,并调整由记录窗口尺寸的curses库(特别是SIGWINCH处理程序)使用的其他簿记数据", "curses.html#curses.savetty": "将终端模式的当前状态保存在缓冲区中,可由resetty()使用", "curses.html#curses.setsyx": "将虚拟屏幕光标设置为y,x", "curses.html#curses.setupterm": "初始化终端", "curses.html#curses.start_color": "如果程序员想要使用颜色,并且在任何其他颜色操作例程被调用之前必须被调用", "curses.html#curses.termattrs": "返回终端支持的所有视频属性的逻辑OR", "curses.html#curses.termname": "返回环境变量 TERM的值,截断为14个字符", "curses.html#curses.tigetflag": "返回与terminfo能力名称capname对应的布尔能力的值", "curses.html#curses.tigetnum": "返回与terminfo能力名称capname对应的数字能力的值", "curses.html#curses.tigetstr": "返回与terminfo能力名称capname对应的字符串能力的值", "curses.html#curses.tparm": "使用提供的参数实例化字符串str,其中str应该是从terminfo数据库获得的参数化字符串", "curses.html#curses.typeahead": "指定文件描述符fd用于键入检查", "curses.html#curses.unctrl": "返回一个字符串,它是字符ch的可打印表示", "curses.html#curses.ungetch": "按ch,下一个getch()将返回它", "curses.html#curses.update_lines_cols": "更新 LINES和 COLS", "curses.html#curses.unget_wch": "按ch,下一个get_wch()将返回它", "curses.html#curses.ungetmouse": "将KEY_MOUSE事件推入输入队列,将给定的状态数据与它关联", "curses.html#curses.use_env": "如果使用,应该在调用initscr()或newterm之前调用此函数", "curses.html#curses.use_default_colors": "允许在支持此功能的终端上使用颜色的默认值", "curses.html#curses.wrapper": "初始化curses并调用另一个可调用的对象,func,它应该是您的curses使用应用程序的其余部分", "curses.html#curses.textpad.rectangle": "绘制一个矩形", "curses.html#curses.ERR": "某些返回整数的curses例程(如getch())会在失败时返回ERR", "curses.html#curses.OK": "某些返回整数的curses例程(如napms())会在成功时返回OK", "curses.html#curses.version": "代表模块当前版本的字符串", "curses.panel.html#curses.panel.bottom_panel": "返回面板集中的底部面板", "curses.panel.html#curses.panel.new_panel": "返回面板对象,将其与给定窗口win关联", "curses.panel.html#curses.panel.top_panel": "返回面板集中的顶部面板", "curses.panel.html#curses.panel.update_panels": "在面板集中更改后更新虚拟屏幕", "datetime.html#datetime.MINYEAR": "date和datetime对象中允许的最小年份", "datetime.html#datetime.MAXYEAR": "date和datetime对象中允许的最大年份数", "dbm.html#dbm.whichdb": "此函数尝试猜测几个简单数据库模块中的哪一个可用 - dbm", "dbm.html#dbm.open": "打开数据库文件文件并返回相应的对象", "dbm.html#dbm.gnu.open": "打开gdbm数据库并返回一个gdbm对象", "dbm.html#dbm.ndbm.open": "打开dbm数据库并返回ndbm对象", "dbm.html#dbm.dumb.open": "打开dumbdbm数据库并返回dumbdbm对象", "dbm.html#dbm.ndbm.library": "使用的ndbm实施库的名称", "decimal.html#decimal.getcontext": "返回活动线程的当前上下文", "decimal.html#decimal.setcontext": "将活动线程的当前上下文设置为c", "decimal.html#decimal.localcontext": "返回一个上下文管理器,它将活动线程的当前上下文设置为ctx的副本,并在退出with-statement时恢复前一个上下文", "decimal.html#decimal.HAVE_THREADS": "默认值是True", "decimal.html#decimal.ROUND_CEILING": "向Infinity展开", "decimal.html#decimal.ROUND_DOWN": "向零回合", "decimal.html#decimal.ROUND_FLOOR": "向-Infinity回合", "decimal.html#decimal.ROUND_HALF_DOWN": "将关系向最接近零的方向调整", "decimal.html#decimal.ROUND_HALF_EVEN": "以最接近的偶数整数将关系舍入到最近", "decimal.html#decimal.ROUND_HALF_UP": "离领带最近的距离为零", "decimal.html#decimal.ROUND_UP": "从零开始回合", "decimal.html#decimal.ROUND_05UP": "如果舍入到零后的最后一位数字为0或5,则从零开始舍去;否则向零回合", "difflib.html#difflib.context_diff": "比较a和b(字符串列表);在上下文差异格式中返回Δ(生成Δ行的generator)", "difflib.html#difflib.get_close_matches": "返回一个最佳的"足够好"匹配列表", "difflib.html#difflib.ndiff": "比较(字符串列表)a和b;返回 Differ 风格的差异(一个生成差异行的 generator)", "difflib.html#difflib.restore": "返回两个序列生成一个三角洲之一", "difflib.html#difflib.unified_diff": "比较a和b(字符串列表);以统一差分格式返回增量(generator生成增量线)", "difflib.html#difflib.diff_bytes": "使用dfunc比较a和b(字节对象列表);以dfunc返回的格式生成一个delta行(也是字节)序列", "difflib.html#difflib.IS_LINE_JUNK": "返回 true 可忽略行", "difflib.html#difflib.IS_CHARACTER_JUNK": "返回 true 可忽略的字符", "dis.html#dis.code_info": "返回带有提供的函数,生成器,方法,源代码字符串或代码对象的详细代码对象信息的格式化多行字符串", "dis.html#dis.show_code": "将文件(或sys", "dis.html#dis.dis": "拆分x对象", "dis.html#dis.distb": "如果没有通过,则使用最后一个traceback来反汇编回栈顶层函数", "dis.html#dis.disassemble": "拆分代码对象,如果提供lasti,则指示最后一条指令", "dis.html#dis.get_instructions": "对提供的函数,方法,源代码字符串或代码对象中的指令返回一个迭代器", "dis.html#dis.findlinestarts": "这个生成器函数使用代码对象代码的co_firstlineno和co_lnotab属性来找到源代码中行开头的偏移", "dis.html#dis.findlabels": "检测作为跳转目标的代码对象代码中的所有偏移量,并返回这些偏移量的列表", "dis.html#dis.stack_effect": "计算opcode与参数oparg的堆栈效果", "dis.html#dis.Bytecode.codeobj": "编译的代码对象", "dis.html#dis.Bytecode.first_line": "代码对象的第一个源代码行(如果可用)", "dis.html#dis.Instruction.opcode": "操作的数字代码,对应于下面列出的操作码值和Opcode collections中的字节码值", "dis.html#dis.Instruction.opname": "操作的人类可读名称", "dis.html#dis.Instruction.arg": "操作的数字参数(如果有),否则为无", "dis.html#dis.Instruction.argval": "解析的arg值(如果已知),否则与arg相同", "dis.html#dis.Instruction.argrepr": "操作参数的可读描述", "dis.html#dis.Instruction.offset": "在字节码序列内的操作的开始索引", "dis.html#dis.Instruction.starts_line": "由此操作码开始的行(如果有),否则为无", "dis.html#dis.Instruction.is_jump_target": "True如果其他代码跳到此处,否则False", "dis.html#dis.opname": "操作名称序列,使用字节码可索引", "dis.html#dis.opmap": "将操作名称映射到字节码的字典", "dis.html#dis.cmp_op": "所有比较操作名称的顺序", "dis.html#dis.hasconst": "具有常量参数的字节码序列", "dis.html#dis.hasfree": "访问自由变量的字节码序列(请注意,在本上下文中的“自由”是指内部作用域引用的当前作用域中的名称或从此作用域引用的外部作用域中的名称", "dis.html#dis.hasname": "按名称访问属性的字节码序列", "dis.html#dis.hasjrel": "具有相对跳转目标的字节码序列", "dis.html#dis.hasjabs": "具有绝对跳转目标的字节码序列", "dis.html#dis.haslocal": "访问局部变量的字节码序列", "dis.html#dis.hascompare": "布尔运算的字节码序列", "doctest.html#doctest.register_optionflag": "用给定名称创建一个新选项标志,并返回新标志的整数值", "doctest.html#doctest.testfile": "除文件名以外的所有参数都是可选的,并应以关键字形式指定", "doctest.html#doctest.testmod": "所有参数都是可选的,除m以外的所有参数均应以关键字形式指定", "doctest.html#doctest.run_docstring_examples": "与对象f关联的测试示例;例如,f可以是字符串,模块,函数或类对象", "doctest.html#doctest.DocFileSuite": "将doctest测试从一个或多个文本文件转换为unittest", "doctest.html#doctest.DocTestSuite": "将模块的doctest测试转换为unittest", "doctest.html#doctest.set_unittest_reportflags": "设置要使用的doctest报告标志", "doctest.html#doctest.script_from_examples": "将带有示例的文本转换为脚本", "doctest.html#doctest.testsource": "将对象的doctest转换为脚本", "doctest.html#doctest.debug": "调试对象的doctests", "doctest.html#doctest.debug_src": "用字符串调试doctests", "doctest.html#doctest.DONT_ACCEPT_TRUE_FOR_1": "默认情况下,如果期望的输出块仅包含1,则包含1或True的实际输出块被认为是匹配的,对于0与False类似", "doctest.html#doctest.DONT_ACCEPT_BLANKLINE": "默认情况下,如果预期的输出块包含仅包含字符串的行,那么该行将匹配实际输出中的空白行", "doctest.html#doctest.NORMALIZE_WHITESPACE": "指定时,所有空白(空格和换行符)都被视为相等", "doctest.html#doctest.ELLIPSIS": "指定时,预期输出中的省略号标记(", "doctest.html#doctest.IGNORE_EXCEPTION_DETAIL": "如果指定这个选项,那么当引发的异常的类型与期望的异常类型相同就可以通过的,不会检测异常的详细信息", "doctest.html#doctest.SKIP": "指定时,请不要运行该示例", "doctest.html#doctest.COMPARISON_FLAGS": "将上面的所有比较标志掩盖起来", "doctest.html#doctest.REPORT_UDIFF": "指定时,涉及多行预期和实际输出的故障将使用统一差异显示", "doctest.html#doctest.REPORT_CDIFF": "指定时,涉及多行预期输出和实际输出的故障将使用上下文差异显示", "doctest.html#doctest.REPORT_NDIFF": "When specified, differences are computed by difflib", "doctest.html#doctest.REPORT_ONLY_FIRST_FAILURE": "指定时,显示每个doctest中的第一个失败示例,但禁止所有其他示例的输出", "doctest.html#doctest.FAIL_FAST": "指定时,在第一个失败示例之后退出,不要尝试运行其余示例", "doctest.html#doctest.REPORTING_FLAGS": "将上面的所有报告标记掩盖起来", "ensurepip.html#ensurepip.version": "返回一个字符串,指定在引导环境时将安装的pip的捆绑版本", "ensurepip.html#ensurepip.bootstrap": "引导pip进入当前或指定的环境", "enum.html#enum.unique": "枚举类装饰器,确保只有一个名称绑定到任何一个值", "errno.html#errno.EPERM": "操作不允许", "errno.html#errno.ENOENT": "无此文件或目录", "errno.html#errno.ESRCH": "没有这样的过程", "errno.html#errno.EINTR": "中断系统调用", "errno.html#errno.EIO": "I / O错误", "errno.html#errno.ENXIO": "没有这样的设备或地址", "errno.html#errno.E2BIG": "精选列表过长", "errno.html#errno.ENOEXEC": "Exec格式错误", "errno.html#errno.EBADF": "错误的文件编号", "errno.html#errno.ECHILD": "没有子进程", "errno.html#errno.EAGAIN": "再试一次", "errno.html#errno.ENOMEM": "内存不足", "errno.html#errno.EACCES": "没有权限", "errno.html#errno.EFAULT": "地址错误", "errno.html#errno.ENOTBLK": "需要块设备", "errno.html#errno.EBUSY": "设备或资源繁忙", "errno.html#errno.EEXIST": "文件已存在", "errno.html#errno.EXDEV": "跨设备链接", "errno.html#errno.ENODEV": "没有这样的设备", "errno.html#errno.ENOTDIR": "不是目录", "errno.html#errno.EISDIR": "是一个目录", "errno.html#errno.EINVAL": "无效的论点", "errno.html#errno.ENFILE": "文件表溢出", "errno.html#errno.EMFILE": "打开的文件太多", "errno.html#errno.ENOTTY": "不是打字机", "errno.html#errno.ETXTBSY": "文本文件忙", "errno.html#errno.EFBIG": "文件过大", "errno.html#errno.ENOSPC": "设备上没有剩余空间", "errno.html#errno.ESPIPE": "非法寻求", "errno.html#errno.EROFS": "只读文件系统", "errno.html#errno.EMLINK": "链接过多", "errno.html#errno.EPIPE": "破碎的管道", "errno.html#errno.EDOM": "数学参数超出了func的域", "errno.html#errno.ERANGE": "数学结果不可表示", "errno.html#errno.EDEADLK": "将发生资源死锁", "errno.html#errno.ENAMETOOLONG": "文件名太长", "errno.html#errno.ENOLCK": "没有可用的记录锁", "errno.html#errno.ENOSYS": "功能未实现", "errno.html#errno.ENOTEMPTY": "目录不为空", "errno.html#errno.ELOOP": "遇到过多符号链接", "errno.html#errno.EWOULDBLOCK": "操作会阻塞", "errno.html#errno.ENOMSG": "没有所需类型的消息", "errno.html#errno.EIDRM": "标识符已删除", "errno.html#errno.ECHRNG": "通道号超出范围", "errno.html#errno.EL2NSYNC": "级别2不同步", "errno.html#errno.EL3HLT": "3级暂停", "errno.html#errno.EL3RST": "3级复位", "errno.html#errno.ELNRNG": "链接编号超出范围", "errno.html#errno.EUNATCH": "未附加协议驱动程序", "errno.html#errno.ENOCSI": "没有CSI结构可用", "errno.html#errno.EL2HLT": "2级暂停", "errno.html#errno.EBADE": "交换无效", "errno.html#errno.EBADR": "请求描述器无效", "errno.html#errno.EXFULL": "充分交换", "errno.html#errno.ENOANO": "无阳极", "errno.html#errno.EBADRQC": "请求代码无效", "errno.html#errno.EBADSLT": "插槽无效", "errno.html#errno.EDEADLOCK": "文件锁死锁错误", "errno.html#errno.EBFONT": "字体文件格式不正确", "errno.html#errno.ENOSTR": "设备不是流", "errno.html#errno.ENODATA": "无可用数据", "errno.html#errno.ETIME": "计时器已过期", "errno.html#errno.ENOSR": "流出资源", "errno.html#errno.ENONET": "机器不在网络上", "errno.html#errno.ENOPKG": "软件包未安装", "errno.html#errno.EREMOTE": "对象是远程的", "errno.html#errno.ENOLINK": "链接已断开", "errno.html#errno.EADV": "广告错误", "errno.html#errno.ESRMNT": "Srmount错误", "errno.html#errno.ECOMM": "发送时发生通信错误", "errno.html#errno.EPROTO": "协议错误", "errno.html#errno.EMULTIHOP": "多点尝试", "errno.html#errno.EDOTDOT": "RFS具体错误", "errno.html#errno.EBADMSG": "不是数据消息", "errno.html#errno.EOVERFLOW": "对于定义的数据类型,值太大", "errno.html#errno.ENOTUNIQ": "网络上的名称不唯一", "errno.html#errno.EBADFD": "文件描述器处于坏状态", "errno.html#errno.EREMCHG": "远程地址已更改", "errno.html#errno.ELIBACC": "无法访问所需的共享库", "errno.html#errno.ELIBBAD": "访问损坏的共享库", "errno.html#errno.ELIBSCN": "", "errno.html#errno.ELIBMAX": "正在尝试链接过多的共享库", "errno.html#errno.ELIBEXEC": "无法直接执行共享库", "errno.html#errno.EILSEQ": "非法字节序列", "errno.html#errno.ERESTART": "中断的系统调用应重新启动", "errno.html#errno.ESTRPIPE": "流管道错误", "errno.html#errno.EUSERS": "用户过多", "errno.html#errno.ENOTSOCK": "非套接字操作", "errno.html#errno.EDESTADDRREQ": "需要目标地址", "errno.html#errno.EMSGSIZE": "消息太长", "errno.html#errno.EPROTOTYPE": "协议错误类型的套接字", "errno.html#errno.ENOPROTOOPT": "协议不可用", "errno.html#errno.EPROTONOSUPPORT": "不支持协议", "errno.html#errno.ESOCKTNOSUPPORT": "不支持套接字类型", "errno.html#errno.EOPNOTSUPP": "传输端点上不支持操作", "errno.html#errno.EPFNOSUPPORT": "不支持协议系列", "errno.html#errno.EAFNOSUPPORT": "协议不支持的地址系列", "errno.html#errno.EADDRINUSE": "地址已在使用中", "errno.html#errno.EADDRNOTAVAIL": "无法分配请求的地址", "errno.html#errno.ENETDOWN": "网络已关闭", "errno.html#errno.ENETUNREACH": "网络不可达", "errno.html#errno.ENETRESET": "网络由于重置而断开连接", "errno.html#errno.ECONNABORTED": "软件导致连接中止", "errno.html#errno.ECONNRESET": "连接由对等体复位", "errno.html#errno.ENOBUFS": "没有可用的缓冲区空间", "errno.html#errno.EISCONN": "传输端点已连接", "errno.html#errno.ENOTCONN": "传输端点未连接", "errno.html#errno.ESHUTDOWN": "传输终端关闭后无法发送", "errno.html#errno.ETOOMANYREFS": "参数太多:无法拼接", "errno.html#errno.ETIMEDOUT": "连接超时", "errno.html#errno.ECONNREFUSED": "连接被拒绝", "errno.html#errno.EHOSTDOWN": "主机已关闭", "errno.html#errno.EHOSTUNREACH": "没有到主机的路由", "errno.html#errno.EALREADY": "操作已在进行中", "errno.html#errno.EINPROGRESS": "操作现在进行中", "errno.html#errno.ESTALE": "陈旧的NFS文件句柄", "errno.html#errno.EUCLEAN": "结构需要清洁", "errno.html#errno.ENOTNAM": "不是XENIX命名类型文件", "errno.html#errno.ENAVAIL": "没有XENIX信号量可用", "errno.html#errno.EISNAM": "是一个命名类型文件", "errno.html#errno.EREMOTEIO": "远程I / O错误", "errno.html#errno.EDQUOT": "超出配额", "faulthandler.html#faulthandler.dump_traceback": "将所有线程的追踪转储到文件中", "faulthandler.html#faulthandler.enable": "启用故障处理程序:安装SIGSEGV,SIGFPE,SIGABRT,SIGBUS和SIGILL如果all_threads为True,则为每个正在运行的线程产生追溯", "faulthandler.html#faulthandler.disable": "禁用故障处理程序:卸载由enable()安装的信号处理程序", "faulthandler.html#faulthandler.is_enabled": "检查故障处理程序是否已启用", "faulthandler.html#faulthandler.dump_traceback_later": "如果重复是True,则在超时超时秒或每个超时 ", "faulthandler.html#faulthandler.cancel_dump_traceback_later": "取消最后一次调用dump_traceback_later()", "faulthandler.html#faulthandler.register": "注册用户信号:为signum信号安装处理程序以转储所有线程或当前线程的跟踪(如果all_threads为False ,到文件", "faulthandler.html#faulthandler.unregister": "取消注册用户信号:卸载由register()安装的signum信号处理程序", "fcntl.html#fcntl.fcntl": "在文件描述器fd上执行操作cmd(也接受提供fileno()方法的文件对象)", "fcntl.html#fcntl.ioctl": "此函数与fcntl()函数相同,只是参数处理更复杂", "fcntl.html#fcntl.flock": "在文件描述器fd上执行锁操作操作(也接受提供fileno()方法的文件对象)", "fcntl.html#fcntl.lockf": "这本质上是fcntl()锁定调用的包装", "filecmp.html#filecmp.cmp": "比较名为f1和f2的文件,如果它们相等则返回True,否则返回False", "filecmp.html#filecmp.cmpfiles": "比较dir1和dir2两个目录中文件,文件的名字由common给出", "filecmp.html#filecmp.clear_cache": "清除filecmp缓存", "fileinput.html#fileinput.input": "创建FileInput类的实例", "fileinput.html#fileinput.filename": "返回当前正在读取的文件的名称", "fileinput.html#fileinput.fileno": "为当前文件返回整数“file描述器”", "fileinput.html#fileinput.lineno": "返回刚刚读取的行的累积行号", "fileinput.html#fileinput.filelineno": "返回当前文件中的行号", "fileinput.html#fileinput.isfirstline": "如果刚刚读取的行是其文件的第一行,则返回true,否则返回false", "fileinput.html#fileinput.isstdin": "如果最后一行从sys", "fileinput.html#fileinput.nextfile": "关闭当前文件,以便下一次迭代将从下一个文件读取第一行(如果有的话);未从文件读取的行不会计入累积行计数", "fileinput.html#fileinput.close": "关闭序列", "fileinput.html#fileinput.hook_compressed": "Transparently opens files compressed with gzip and bzip2 (recognized by the extensions '", "fileinput.html#fileinput.hook_encoded": "返回使用open()打开每个文件的钩子,使用给定的编码读取文件", "fnmatch.html#fnmatch.fnmatch": "测试filename字符串是否匹配模式字符串,返回True或False", "fnmatch.html#fnmatch.fnmatchcase": "测试filename是否匹配模式,返回True或False;比较是区分大小写的", "fnmatch.html#fnmatch.filter": "返回与模式匹配的名称列表的子集", "fnmatch.html#fnmatch.translate": "返回转换为正则表达式的shell样式模式", "formatter.html#formatter.AS_IS": "可以在字体规范中使用的值传递给下面描述的push_font()方法,或作为任何其他push_property()方法的新值", "fpectl.html#fpectl.turnon_sigfpe": "打开SIGFPE的生成,并设置适当的信号处理程序", "fpectl.html#fpectl.turnoff_sigfpe": "重置缺省处理浮点异常", "fractions.html#fractions.gcd": "返回整数a和b的最大公约数", "ftplib.html#ftplib.all_errors": "FTP实例的方法可能由于FTP连接问题而引发的所有异常(作为元组)的集合(而不是调用者发出的编程错误)", "functions.html#abs": "返回一个数值的绝对值,参数可以是一个整数或浮点数", "functions.html#all": "如果iterable中所有的元素都为True,或iterable为空(empty),返回True", "functions.html#any": "如果iterable里任何一个元素为True,返回 True", "functions.html#ascii": "类似repr(),返回一个字符串,包含可打印的对象,但通过 repr() 返回的字符串中非 ASCII 字符,使用 \\x,\\u 或者\\U 进行转义", "functions.html#bin": "将整数转换为二进制字符串", "functions.html#callable": "如果该 object是可调用的,返回 True ,否则返回 False ", "functions.html#classmethod": "将 function 封装成类方法", "functions.html#compile": "将source编译成代码或AST对象", "functions.html#delattr": "这是setattr()的相对值", "functions.html#dir": "不带参数时, 返回当前局部作用域中名称的列表", "functions.html#divmod": "以两个(非复数)数字作为参数,并在使用整数除法时返回由它们的商和余数组成的一对数字", "functions.html#enumerate": "返回一个枚举对象", "functions.html#eval": "参数是一个字符串和可选的全局变量和局部变量", "functions.html#exec": "这个函数支持动态执行Python代码", "functions.html#filter": "用iterable中传入function后返回True的元素构造一个迭代器", "functions.html#format": "将值转换为“格式化”表示,由format_spec控制", "functions.html#getattr": "返回对象的命名属性的值", "functions.html#globals": "返回表示当前全局符号表的字典", "functions.html#hasattr": "参数是一个对象和一个字符串", "functions.html#hash": "注意", "functions.html#help": "调用内置的帮助系统", "functions.html#hex": "将整数转换为以“0x”为前缀的小写十六进制字符串,例如:", "functions.html#id": "返回一个对象的“身份”", "functions.html#input": "如果存在提示符参数,则将其写入标准输出而不带结尾换行符", "functions.html#isinstance": "如果object是clsaainfo的一个实例(或者是classinfo的直接、间接或虚拟子类的实例),那么则返回true", "functions.html#issubclass": "如果 class 是classinfo的子类(直接、 间接或 虚拟) 则返回 true ", "functions.html#iter": "返回一个迭代器对象", "functions.html#len": "返回对象的长度(项目数量)", "functions.html#locals": "更新和返回表示当前局部符号表的字典", "functions.html#map": "返回一个迭代器,对iterable的每个项应用function,并yield结果", "functions.html#max": "返回iterable中的最大项或两个或更多个参数中最大的项", "functions.html#min": "返回可迭代中的最小项或两个或更多个参数中的最小项", "functions.html#next": "通过调用__next__()方法从迭代器中检索下一个项目", "functions.html#oct": "将整数转换为八进制字符串", "functions.html#open": "打开 file 并返回一个相应的 文件对象", "functions.html#pow": "返回x的y次方; 如果提供z参数, 返回x 的y次方再除以z的余数 (计算效率比pow(x, y) % z更高)", "functions.html#print": "将object打印到文本流file,由sep分隔,尾部接end", "functions.html#repr": "返回一个包含对象可打印表示的字符串", "functions.html#reversed": "返回一个反向iterator", "functions.html#round": "返回number舍入到小数点后ndigits位的浮点值", "functions.html#setattr": "它与getattr()相对应", "functions.html#sorted": "依据iterable中的元素返回一个新的排好序的列表", "functions.html#staticmethod": "为函数返回一个静态方法", "functions.html#sum": "从左到右总计start和可迭代的项目并返回总数", "functions.html#super": "返回一个代理对象,它委托方法给父类或者type的同级类", "functions.html#vars": "返回一个模块、字典、类、实例或者其它任何一个具有__dict__属性的对象的__dict__属性", "functions.html#zip": "创建一个迭代器,聚合来自每个迭代器的元素", "functions.html#__import__": "注意", "functools.html#functools.cmp_to_key": "将旧风格的比较函数转换为key函数", "functools.html#functools.lru_cache": "装饰器用一个memoizing可调用函数来包装一个函数,它可以保存最近的maxsize个调用", "functools.html#functools.total_ordering": "给定一个定义了一个或多个富比较排序方法的类,该方法提供了一个类装饰器", "functools.html#functools.partial": "返回一个新的partial对象,该对象在调用时的行为将类似采用位置参数args和关键字参数keywords对func的调用", "functools.html#functools.reduce": "将带有两个参数的 function 从左到右累积应用到 sequence 的元素中,以将该序列规约为单个值", "functools.html#functools.singledispatch": "将函数转换为single-dispatch generic function", "functools.html#functools.update_wrapper": "更新一个 wrapper 函数让其更像一个 wrapped 函数", "functools.html#functools.wraps": "这是一个方便的函数,用于在定义包装器函数时调用update_wrapper()作为函数装饰器", "gc.html#gc.enable": "启用自动垃圾容器", "gc.html#gc.disable": "禁用自动垃圾容器", "gc.html#gc.isenabled": "如果启用了自动容器,则返回true", "gc.html#gc.collect": "没有参数,运行一个完整的容器", "gc.html#gc.set_debug": "设置垃圾容器调试标志", "gc.html#gc.get_debug": "返回当前设置的调试标志", "gc.html#gc.get_objects": "返回收集器跟踪的所有对象的列表,不包括返回的列表", "gc.html#gc.get_stats": "从解释器启动后,返回包含容器统计信息的三个每代字典的列表", "gc.html#gc.set_threshold": "设置垃圾容器阈值(容器频率)", "gc.html#gc.get_count": "将当前容器计数返回为(count0, count1, count2)的元组", "gc.html#gc.get_threshold": "将当前容器阈值作为(threshold0, threshold1, threshold2)的元组返回", "gc.html#gc.get_referrers": "返回直接引用任何obj的对象列表", "gc.html#gc.get_referents": "返回由任何参数直接引用的对象列表", "gc.html#gc.is_tracked": "如果对象当前由垃圾收集器跟踪,则返回True,否则返回False", "gc.html#gc.garbage": "收集器发现无法访问但无法释放的对象列表(无法收集的对象)", "gc.html#gc.callbacks": "将由容器之前和之后的垃圾收集器调用的回调列表", "gc.html#gc.DEBUG_STATS": "容器期间打印统计信息", "gc.html#gc.DEBUG_COLLECTABLE": "打印有关可找到的可收集对象的信息", "gc.html#gc.DEBUG_UNCOLLECTABLE": "打印找到的不可收集对象的信息(收集器不能访问但不能释放的对象)", "gc.html#gc.DEBUG_SAVEALL": "设置时,找到的所有无法访问的对象将被附加到垃圾,而不是被释放", "gc.html#gc.DEBUG_LEAK": "收集器打印有关泄漏程序的信息(等于DEBUG_COLLECTABLE | DEBUG_UNCOLLECTABLE | DEBUG_SAVEALL)", "getopt.html#getopt.getopt": "解析命令行选项和参数列表", "getopt.html#getopt.gnu_getopt": "此函数的工作原理类似于getopt(),除了默认情况下使用GNU样式扫描模式", "getpass.html#getpass.getpass": "提示用户输入密码,而不回显", "getpass.html#getpass.getuser": "返回用户的“登录名”", "gettext.html#gettext.bindtextdomain": "将域绑定到语言环境目录localedir", "gettext.html#gettext.bind_textdomain_codeset": "将域绑定到代码集,更改由gettext()函数系列返回的字符串的编码", "gettext.html#gettext.textdomain": "更改或查询当前全局域", "gettext.html#gettext.gettext": "根据当前的全局域,语言和区域设置目录返回消息的本地化转换", "gettext.html#gettext.lgettext": "等同于gettext(),但是如果未使用bind_textdomain_codeset()显式设置其他编码,则会在首选系统编码中返回翻译", "gettext.html#gettext.dgettext": "像gettext(),但查看指定的域中的消息", "gettext.html#gettext.ldgettext": "等同于dgettext(),但如果未使用bind_textdomain_codeset()显式设置其他编码,则会在首选系统编码中返回翻译", "gettext.html#gettext.ngettext": "像gettext(),但是考虑复数形式", "gettext.html#gettext.lngettext": "等同于ngettext(),但是如果未使用bind_textdomain_codeset()显式设置其他编码,则会在首选系统编码中返回翻译", "gettext.html#gettext.dngettext": "像ngettext(),但查看指定的域中的消息", "gettext.html#gettext.ldngettext": "等同于dngettext(),但如果未使用bind_textdomain_codeset()显式设置其他编码,则会在首选系统编码中返回翻译", "gettext.html#gettext.find": "此函数实现标准的", "gettext.html#gettext.translation": "返回基于域,localedir和语言的Translations实例,这些实例首先传递给find()获取关联的", "gettext.html#gettext.install": "This installs the function _() in Python’s builtins namespace, based on domain, localedir, and codeset which are passed to the function translation()", "glob.html#glob.glob": "返回一个与pathname匹配的路径组成的list,该list可能为空", "glob.html#glob.iglob": "返回一个 iterator 迭代器,它产生与 glob() 相同的结果,但同时不会存储它们", "glob.html#glob.escape": "转义所有的特殊字符('?','*'和'['])", "grp.html#grp.getgrgid": "返回给定数字组ID的组数据库条目", "grp.html#grp.getgrnam": "返回给定组名的组数据库条目", "grp.html#grp.getgrall": "以任意顺序返回所有可用组条目的列表", "gzip.html#gzip.open": "在二进制或文本模式下打开gzip压缩文件,返回file object", "gzip.html#gzip.compress": "压缩 data ,返回包含压缩数据的bytes 对象", "gzip.html#gzip.decompress": "解压缩 data ,返回包含未压缩数据的bytes 对象", "hashlib.html#hashlib.new": "是一个通用构造函数,它接受所需算法的字符串名称作为其第一个参数", "hashlib.html#hashlib.pbkdf2_hmac": "该函数提供 PKCS #5 基于密码的密钥派生函数 2", "hashlib.html#hashlib.algorithms_guaranteed": "包含保证在所有平台上此模块支持的哈希算法的名称的集合", "hashlib.html#hashlib.algorithms_available": "一组包含在运行的Python解释器中可用的哈希算法的名称", "hashlib.html#hashlib.hash.digest_size": "以字节为单位的哈希结果的大小", "hashlib.html#hashlib.hash.block_size": "以字节为单位的哈希算法的内部块的大小", "heapq.html#heapq.heappush": "将值item推到heap上,保持堆不变", "heapq.html#heapq.heappop": "从heap中弹出并返回最小的项,保持堆不变", "heapq.html#heapq.heappushpop": "在堆上按项,然后弹出并返回堆中的最小项", "heapq.html#heapq.heapify": "在线性时间内,将列表x放入堆中", "heapq.html#heapq.heapreplace": "从堆中弹出并返回最小的项,并推送新的项", "heapq.html#heapq.merge": "将多个排序的输入合并到单个排序的输出(例如,合并来自多个日志文件的带时间戳的条目)", "heapq.html#heapq.nlargest": "返回可迭代定义的数据集中n最大元素的列表", "heapq.html#heapq.nsmallest": "返回可迭代定义的数据集中n最小元素的列表", "hmac.html#hmac.new": "返回一个新的hmac对象", "hmac.html#hmac.compare_digest": "返回a == b", "html.entities.html#html.entities.entitydefs": "将XHTML 1", "html.entities.html#html.entities.name2codepoint": "将HTML实体名称映射到Unicode代码点的字典", "html.entities.html#html.entities.codepoint2name": "将Unicode代码点映射到HTML实体名称的字典", "html.html#html.escape": "转换字符串s中的&、<和>字符为HTML安全的序列", "html.html#html.unescape": "转换字符串s中所有命名和数字字符引用(例如>、>、&x3e;)为对应的Unicode字符", "http.client.html#http.client.HTTP_PORT": "HTTP协议的默认端口值(总为 80)", "http.client.html#http.client.HTTPS_PORT": "HTTPS协议的默认端口值(总为 443)", "http.client.html#http.client.responses": "该字典类匹配HTTP1", "imaplib.html#imaplib.Internaldate2tuple": "解析IMAP4 INTERNALDATE字符串并返回相应的本地时间", "imaplib.html#imaplib.Int2AP": "使用集合[A ", "imaplib.html#imaplib.ParseFlags": "将IMAP4 FLAGS响应转换为单个标志的元组", "imaplib.html#imaplib.Time2Internaldate": "将date_time转换为IMAP4 INTERNALDATE表示形式", "imghdr.html#imghdr.what": "测试由filename命名的文件中包含的图像数据,并返回描述图像类型的字符串", "imghdr.html#imghdr.tests": "执行单独测试的函数列表", "imp.html#imp.get_magic": "返回用于识别字节编译代码文件(", "imp.html#imp.get_suffixes": "返回一个3元素元组的列表,每个元组描述特定类型的模块", "imp.html#imp.find_module": "尝试找到名称", "imp.html#imp.load_module": "加载以前由find_module()发现的模块(或通过其他方式进行的搜索,产生兼容的结果)", "imp.html#imp.new_module": "返回一个名为name的新模块对象", "imp.html#imp.reload": "重新载入先前导入的模块", "imp.html#imp.cache_from_source": "将 PEP 3147路径返回到与源路径相关联的字节编译文件", "imp.html#imp.source_from_cache": "给定路径到 PEP 3147文件名,返回关联的源代码文件路径", "imp.html#imp.get_tag": "返回与get_magic()返回的Python的幻数的版本匹配的 PEP 3147魔术标记字符串", "imp.html#imp.lock_held": "如果全局导入锁定当前持有,则返回True,否则False", "imp.html#imp.acquire_lock": "获取当前线程的解释器的全局导入锁", "imp.html#imp.release_lock": "释放解释器的全局导入锁定", "imp.html#imp.PY_SOURCE": "找到该模块作为源文件", "imp.html#imp.PY_COMPILED": "该模块被找到为编译代码对象文件", "imp.html#imp.C_EXTENSION": "该模块被找到为可动态加载的共享库", "imp.html#imp.PKG_DIRECTORY": "该模块被找到作为包目录", "imp.html#imp.C_BUILTIN": "该模块被找到作为内建模块", "imp.html#imp.PY_FROZEN": "该模块被发现为冻结模块", "importlib.html#importlib.__import__": "内置__import__()函数的实现", "importlib.html#importlib.import_module": "导入一个模块", "importlib.html#importlib.find_loader": "查找模块的加载程序,可选地在指定的路径中", "importlib.html#importlib.invalidate_caches": "使存储在sys", "importlib.html#importlib.reload": "重新载入先前导入的 module", "importlib.html#importlib.machinery.all_suffixes": "返回表示由标准导入机制识别的模块的所有文件后缀的字符串组合列表", "importlib.html#importlib.util.cache_from_source": "Return the PEP 3147/PEP 488 path to the byte-compiled file associated with the source path", "importlib.html#importlib.util.source_from_cache": "将路径指定给 PEP 3147文件名,返回关联的源代码文件路径", "importlib.html#importlib.util.decode_source": "解码表示源代码的给定字节,并将其作为带有通用换行符的字符串返回(如importlib", "importlib.html#importlib.util.resolve_name": "将相对模块名称解析为绝对模块名称", "importlib.html#importlib.util.find_spec": "查找模块的spec,可选地相对于指定的包名称", "importlib.html#importlib.util.module_from_spec": "根据spec和spec", "importlib.html#importlib.util.module_for_loader": "用于importlib", "importlib.html#importlib.util.set_loader": "用于importlib", "importlib.html#importlib.util.set_package": "用于importlib", "importlib.html#importlib.util.spec_from_loader": "基于加载程序创建ModuleSpec实例的工厂函数", "importlib.html#importlib.util.spec_from_file_location": "基于文件路径创建ModuleSpec实例的工厂函数", "inspect.html#inspect.getmembers": "返回按名称排序的(name, value)列表中的所有成员对象", "inspect.html#inspect.getmoduleinfo": "返回一个命名元组 ModuleInfo(name, suffix, mode, module_type)描述Python如何解释由path标识的文件是模块,或者返回None,如果没被标识为模块", "inspect.html#inspect.getmodulename": "返回由文件path命名的模块的名称,不包括封装包的名称", "inspect.html#inspect.ismodule": "如果对象是模块,则返回true", "inspect.html#inspect.isclass": "如果对象是一个类,无论是内置的还是用Python代码创建的,则返回true", "inspect.html#inspect.ismethod": "如果对象是用Python编写的绑定方法,则返回true", "inspect.html#inspect.isfunction": "如果对象是一个Python函数(包含由lambda表达式创建的函数),则返回true", "inspect.html#inspect.isgeneratorfunction": "如果对象是Python生成器函数,则返回true", "inspect.html#inspect.isgenerator": "如果对象是一个生成器,则返回true", "inspect.html#inspect.iscoroutinefunction": "如果对象是coroutine function(用async def语法定义的函数),则返回true", "inspect.html#inspect.iscoroutine": "如果对象是由async def函数创建的coroutine,则返回true", "inspect.html#inspect.isawaitable": "如果对象可以在await表达式中使用,则返回true", "inspect.html#inspect.istraceback": "如果对象是回溯,则返回true", "inspect.html#inspect.isframe": "如果对象是一个框架,则返回true", "inspect.html#inspect.iscode": "如果对象是代码,则返回true", "inspect.html#inspect.isbuiltin": "如果对象是内置函数或绑定的内置方法,则返回true", "inspect.html#inspect.isroutine": "如果对象是用户定义的或内置的函数或方法,则返回true", "inspect.html#inspect.isabstract": "如果对象是抽象基类,则返回true", "inspect.html#inspect.ismethoddescriptor": "如果对象是方法描述符,则返回true,但如果ismethod(),isclass(),isfunction()或isbuiltin()是真的", "inspect.html#inspect.isdatadescriptor": "如果对象是数据描述符,则返回true", "inspect.html#inspect.isgetsetdescriptor": "如果对象是getset描述符,则返回true", "inspect.html#inspect.ismemberdescriptor": "如果对象是成员描述符,则返回true", "inspect.html#inspect.getdoc": "获取一个对象的文档字符串,用cleandoc()清理", "inspect.html#inspect.getcomments": "在单个字符串中返回紧接在对象源代码之前(对于类,函数或方法)或Python源文件顶部(如果对象是模块)的任何注释行", "inspect.html#inspect.getfile": "返回定义了对象的(文本或二进制)文件的名称", "inspect.html#inspect.getmodule": "尝试猜测某个对象是在哪个模块中定义的", "inspect.html#inspect.getsourcefile": "返回定义了对象的Python源文件的名称", "inspect.html#inspect.getsourcelines": "返回一个对象的源代码行和起始行号的列表", "inspect.html#inspect.getsource": "返回一个对象的源代码文本", "inspect.html#inspect.cleandoc": "清除缩排以排列代码块的文档字符串中的缩进", "inspect.html#inspect.signature": "为给定的callable返回一个Signature对象:", "inspect.html#inspect.getclasstree": "将给定的类列表排列成嵌套列表的层次结构", "inspect.html#inspect.getargspec": "获取Python函数参数的名称和默认值", "inspect.html#inspect.getfullargspec": "获取Python函数参数的名称和默认值", "inspect.html#inspect.getargvalues": "获取有关传递到特定框架的参数的信息", "inspect.html#inspect.formatargspec": "根据getargspec()或getfullargspec()返回的值格式化漂亮的参数规范", "inspect.html#inspect.formatargvalues": "根据getargvalues()返回的四个值格式化漂亮的参数规范", "inspect.html#inspect.getmro": "以方法解析顺序返回cls基类的元组,包括cls", "inspect.html#inspect.getcallargs": "将args和kwds绑定到Python函数或方法func的参数名称,就好像它们是用它们调用的一样", "inspect.html#inspect.getclosurevars": "获取Python函数或方法func中的外部名称引用到其当前值的映射", "inspect.html#inspect.unwrap": "获取由func包装的对象", "inspect.html#inspect.getframeinfo": "获取关于帧或追溯对象的信息", "inspect.html#inspect.getouterframes": "获取一个帧和所有外部帧的帧记录列表", "inspect.html#inspect.getinnerframes": "获取追踪帧和所有内部帧的帧记录列表", "inspect.html#inspect.currentframe": "返回当前调用者的堆栈框架的框架对象", "inspect.html#inspect.stack": "返回调用者堆栈的帧记录列表", "inspect.html#inspect.trace": "返回当前帧与当前正在处理异常的帧之间的堆栈的帧记录列表", "inspect.html#inspect.getattr_static": "通过描述符协议,__getattr__()或__getattribute__()检索属性而不触发动态查找", "inspect.html#inspect.getgeneratorstate": "获取生成器迭代器的当前状态", "inspect.html#inspect.getcoroutinestate": "获取协程对象的当前状态", "inspect.html#inspect.getgeneratorlocals": "获取generator中的实时局部变量映射到它们的当前值", "inspect.html#inspect.getcoroutinelocals": "这个函数类似于getgeneratorlocals(),但是对由async def函数创建的协程对象起作用", "io.html#io.open": "这是内置open()函数的别名", "io.html#io.DEFAULT_BUFFER_SIZE": "包含由模块的缓冲I / O类使用的默认缓冲区大小的int", "ipaddress.html#ipaddress.ip_address": "根据作为参数传递的IP地址,返回IPv4Address或IPv6Address对象", "ipaddress.html#ipaddress.ip_network": "根据作为参数传递的IP地址,返回IPv4Network或IPv6Network对象", "ipaddress.html#ipaddress.ip_interface": "根据作为参数传递的IP地址,返回IPv4Interface或IPv6Interface对象", "ipaddress.html#ipaddress.v4_int_to_packed": "将地址表示为网络(big-endian)顺序中的4个打包字节", "ipaddress.html#ipaddress.v6_int_to_packed": "将地址表示为网络(big-endian)顺序中的16个打包字节", "ipaddress.html#ipaddress.summarize_address_range": "返回给定第一个和最后一个IP地址的汇总网络范围的迭代器", "ipaddress.html#ipaddress.collapse_addresses": "返回折叠的IPv4Network或IPv6Network对象的迭代器", "ipaddress.html#ipaddress.get_mixed_type_key": "返回适用于在网络和地址之间排序的键", "itertools.html#itertools.accumulate": "创建的迭代对象返回被计算的sums值或者其它二元函数的结果(通过指定func参数)", "itertools.html#itertools.chain": "创建一个迭代器,从第一个迭代器返回元素,直到它耗尽,然后继续下一个迭代器,直到所有的迭代器都用尽", "itertools.html#itertools.combinations": "从输入可迭代返回r个元素的长度子序列", "itertools.html#itertools.combinations_with_replacement": "从输入可迭代返回元素的r长度子序列,允许单个元素重复一次以上", "itertools.html#itertools.compress": "创建一个迭代器,用于过滤数据中的元素,只返回在选择器中具有对应元素的元素,其计算结果为True", "itertools.html#itertools.count": "使迭代器以数字开始开始返回均匀间隔的值", "itertools.html#itertools.cycle": "使迭代器从可迭代器返回元素并保存每个元素的副本", "itertools.html#itertools.dropwhile": "创建一个迭代器,只要谓词为真,就从迭代中删除元素;之后,返回每个元素", "itertools.html#itertools.filterfalse": "创建一个迭代器,过滤可迭代元素,只返回谓词为False的元素", "itertools.html#itertools.groupby": "创建一个迭代器,从可迭代返回连续的键和组", "itertools.html#itertools.islice": "让一个迭代器从它返回选定的元素", "itertools.html#itertools.permutations": "返回可迭代中的元素的连续r长度排列", "itertools.html#itertools.product": "输入迭代的笛卡尔乘积", "itertools.html#itertools.repeat": "创建一个反复返回对象的迭代器", "itertools.html#itertools.starmap": "创建一个迭代器,使用从可迭代获得的参数计算函数", "itertools.html#itertools.takewhile": "创建一个迭代器,只要谓词为真,它就返回可迭代的元素", "itertools.html#itertools.tee": "从单个可迭代中返回n独立迭代器", "itertools.html#itertools.zip_longest": "创建一个迭代器,聚合来自每个迭代器的元素", "json.html#json.dump": "将obj序列化为fp(a ", "json.html#json.dumps": "使用此conversion table将obj序列化为JSON格式的str", "json.html#json.load": "使用 这个转换表 将 fp (一个包含 JSON 文档并支持 ", "json.html#json.loads": "使用此conversion table将包含JSON文档的s(a str实例)解压缩为Python对象", "keyword.html#keyword.iskeyword": "如果 s 是一个 Python 关键字则返回True", "keyword.html#keyword.kwlist": "包含定义为解释器的所有关键字的序列", "linecache.html#linecache.getline": "从名为filename的文件中获取行lineno", "linecache.html#linecache.clearcache": "清除缓存", "linecache.html#linecache.checkcache": "检查缓存的有效性", "linecache.html#linecache.lazycache": "捕获有关非基于文件的模块的足够详细信息,以允许稍后通过getline()获取其行,即使module_globals在后面的调用中为None", "locale.html#locale.setlocale": "如果给定locale且None,setlocale()修改类别的区域设置", "locale.html#locale.localeconv": "将本地约定的数据库作为字典返回", "locale.html#locale.nl_langinfo": "将一些特定于语言环境的信息作为字符串返回", "locale.html#locale.getdefaultlocale": "尝试确定默认语言环境设置,并以(语言 代码, 编码) ", "locale.html#locale.getlocale": "将指定语言代码类别的当前设置作为包含语言代码,编码的序列返回", "locale.html#locale.getpreferredencoding": "根据用户偏好返回用于文本数据的编码", "locale.html#locale.normalize": "返回给定语言环境名称的标准化语言环境代码", "locale.html#locale.resetlocale": "将类别的区域设置设置为默认设置", "locale.html#locale.strcoll": "根据当前LC_COLLATE设置比较两个字符串", "locale.html#locale.strxfrm": "将字符串转换为可在区域设置感知比较中使用的字符串", "locale.html#locale.format": "根据当前的LC_NUMERIC设置格式化数字val", "locale.html#locale.format_string": "按格式 % val处理格式说明符,但会考虑当前的区域设置", "locale.html#locale.currency": "根据当前的LC_MONETARY设置格式化数字val", "locale.html#locale.str": "使用与内建函数str(float)相同的格式格式化浮点数,但会考虑小数点", "locale.html#locale.delocalize": "在LC_NUMERIC设置后,将字符串转换为规范化的数字字符串", "locale.html#locale.atof": "将字符串转换为浮点数,紧跟LC_NUMERIC设置", "locale.html#locale.atoi": "将字符串转换为整数,遵循LC_NUMERIC约定", "locale.html#locale.CODESET": "获取一个字符串,其中包含所选语言环境中使用的字符编码的名称", "locale.html#locale.D_T_FMT": "获取可用作time", "locale.html#locale.D_FMT": "获取可用作time", "locale.html#locale.T_FMT": "获取可用作time", "locale.html#locale.T_FMT_AMPM": "获取time", "locale.html#locale.RADIXCHAR": "获取基数字符(小数点,十进制逗号等))", "locale.html#locale.THOUSEP": "获取数千(三位数的组)的分隔符", "locale.html#locale.YESEXPR": "获取可以与正则表达式函数一起使用的正则表达式,以识别对是/否问题的肯定响应", "locale.html#locale.NOEXPR": "获取可以与regex(3)函数一起使用的正则表达式来识别对是/否问题的否定响应", "locale.html#locale.CRNCYSTR": "获取货币符号,如果符号应出现在值前面,则以“ - ”开头,如果符号应出现在值后面,则为“+”,如果符号应替换基数字符,则为“", "locale.html#locale.ERA": "获取表示当前语言环境中使用的时代的字符串", "locale.html#locale.ERA_D_T_FMT": "获取time", "locale.html#locale.ERA_D_FMT": "获取time", "locale.html#locale.ERA_T_FMT": "获取time", "locale.html#locale.ALT_DIGITS": "获取用于表示值0到99的最多100个值的表示", "locale.html#locale.LC_CTYPE": "字符类型函数的区域设置类别", "locale.html#locale.LC_COLLATE": "用于排序字符串的区域设置类别", "locale.html#locale.LC_TIME": "时间格式化的区域设置类别", "locale.html#locale.LC_MONETARY": "货币值格式化的区域设置类别", "locale.html#locale.LC_MESSAGES": "消息显示的区域设置类别", "locale.html#locale.LC_NUMERIC": "格式化数字的区域设置类别", "locale.html#locale.LC_ALL": "所有区域设置的组合", "locale.html#locale.CHAR_MAX": "这是用于localeconv()返回的不同值的符号常量", "logging.config.html#logging.config.dictConfig": "Takes the logging configuration from a dictionary", "logging.config.html#logging.config.fileConfig": "从configparser -format文件读取日志记录配置", "logging.config.html#logging.config.listen": "在指定的端口起一个socket服务器,以监听新的配置", "logging.config.html#logging.config.stopListening": "停止listen()返回的服务器的监听", "logging.html#logging.getLogger": "返回具有指定名称的记录器,如果名称为无,则返回一个记录器,它是层次结构的根记录器", "logging.html#logging.getLoggerClass": "Return either the standard Logger class, or the last class passed to setLoggerClass()", "logging.html#logging.getLogRecordFactory": "Return a callable which is used to create a LogRecord", "logging.html#logging.debug": "Logs a message with level DEBUG on the root logger", "logging.html#logging.info": "Logs a message with level INFO on the root logger", "logging.html#logging.warning": "Logs a message with level WARNING on the root logger", "logging.html#logging.error": "Logs a message with level ERROR on the root logger", "logging.html#logging.critical": "Logs a message with level CRITICAL on the root logger", "logging.html#logging.exception": "Logs a message with level ERROR on the root logger", "logging.html#logging.log": "Logs a message with level level on the root logger", "logging.html#logging.disable": "Provides an overriding level lvl for all loggers which takes precedence over the logger’s own level", "logging.html#logging.addLevelName": "Associates level lvl with text levelName in an internal dictionary, which is used to map numeric levels to a textual representation, for example when a Formatter formats a message", "logging.html#logging.getLevelName": "Returns the textual representation of logging level lvl", "logging.html#logging.makeLogRecord": "Creates and returns a new LogRecord instance whose attributes are defined by attrdict", "logging.html#logging.basicConfig": "Does basic configuration for the logging system by creating a StreamHandler with a default Formatter and adding it to the root logger", "logging.html#logging.shutdown": "Informs the logging system to perform an orderly shutdown by flushing and closing all handlers", "logging.html#logging.setLoggerClass": "Tells the logging system to use the class klass when instantiating a logger", "logging.html#logging.setLogRecordFactory": "Set a callable which is used to create a LogRecord", "logging.html#logging.captureWarnings": "This function is used to turn the capture of warnings by logging on and off", "lzma.html#lzma.open": "以二进制或文本模式打开LZMA压缩文件,返回file object", "lzma.html#lzma.compress": "压缩数据(a bytes对象),将压缩数据作为bytes对象返回", "lzma.html#lzma.decompress": "解压缩数据(a bytes对象),将未压缩数据作为bytes对象返回", "lzma.html#lzma.is_check_supported": "如果在此系统上支持给定的完整性检查,则返回true", "mailcap.html#mailcap.findmatch": "返回一个2元组;第一个元素是包含要执行的命令行的字符串(可以传递到os", "mailcap.html#mailcap.getcaps": "返回将MIME类型映射到mailcap文件条目列表的字典", "marshal.html#marshal.dump": "在打开的文件上写入值", "marshal.html#marshal.load": "从打开的文件中读取一个值并返回", "marshal.html#marshal.dumps": "返回dump(value, 文件)将写入文件的字符串", "marshal.html#marshal.loads": "将字符串转换为值", "marshal.html#marshal.version": "表示模块使用的格式", "math.html#math.ceil": "Return the ceiling of x, 大于等于 x 的最小整数", "math.html#math.copysign": "返回x的绝对值大小和y的符号", "math.html#math.fabs": "返回x的绝对值", "math.html#math.factorial": "返回x的阶乘", "math.html#math.floor": "Return the floor of x, 小于等于 x的最大整数", "math.html#math.fmod": "返回由平台C库定义的fmod(x, y)", "math.html#math.frexp": "将x的尾数和指数作为对(m, e)返回", "math.html#math.fsum": "在可迭代中返回值的准确浮动点总和", "math.html#math.gcd": "返回整数a和b的最大公约数", "math.html#math.isclose": "如果a和b的值彼此接近,则返回True, 反之则False", "math.html#math.isfinite": "如果x既不是无穷大也不是NaN,则返回True,否则返回False", "math.html#math.isinf": "如果x是正或负无穷大,则返回True,否则返回False", "math.html#math.isnan": "如果x是NaN(不是数字),则返回True,否则返回False", "math.html#math.ldexp": "返回x * (2 ** i)", "math.html#math.modf": "返回x的小数和整数部分", "math.html#math.trunc": "将Real值x返回到Integral(通常为整数)", "math.html#math.exp": "返回 e**x (e的x幂方)", "math.html#math.expm1": "返回e ** x - 1", "math.html#math.log": "具有一个参数,返回的x (以e) 的自然对数", "math.html#math.log1p": "返回1 + x (底数e) 的自然对数", "math.html#math.log2": "返回x的基2对数", "math.html#math.log10": "返回x的对数", "math.html#math.pow": "返回x的y次幂", "math.html#math.sqrt": "返回 x 的平方根", "math.html#math.acos": "返回以弧度表示的角的x,余弦", "math.html#math.asin": "返回以弧度表示的正弦值的x", "math.html#math.atan": "返回反正切值的x,以弧度为单位", "math.html#math.atan2": "以弧度返回atan(y / x)", "math.html#math.cos": "返回x弧度的余弦值", "math.html#math.hypot": "返回欧氏方程,sqrt(x * x + y * y)", "math.html#math.sin": "返回x弧度的正弦值", "math.html#math.tan": "返回x弧度的正切值", "math.html#math.degrees": "将角度x从弧度转换为度", "math.html#math.radians": "将角度x从度转换为弧度", "math.html#math.acosh": "返回x的反双曲余弦值", "math.html#math.asinh": "返回x的反双曲正弦值", "math.html#math.atanh": "返回x的反双曲正切值", "math.html#math.cosh": "返回x的双曲余弦值", "math.html#math.sinh": "返回x的双曲正弦值", "math.html#math.tanh": "返回x的双曲正切值", "math.html#math.erf": "在x返回错误函数", "math.html#math.erfc": "返回在x的余误差函数", "math.html#math.gamma": "返回 x 的 Gamma function (伽马函数)", "math.html#math.lgamma": "返回伽玛函数在x的绝对值的自然对数", "math.html#math.pi": "数学常量 π = 3", "math.html#math.e": "数学常数 e = 2", "math.html#math.inf": "浮点正无穷大", "math.html#math.nan": "浮点数“不是数字”(NaN)值", "mimetypes.html#mimetypes.guess_type": "根据文件名或URL(由url给出)猜测文件类型", "mimetypes.html#mimetypes.guess_all_extensions": "根据由类型给出的MIME类型猜测文件的扩展名", "mimetypes.html#mimetypes.guess_extension": "根据由类型给出的MIME类型猜测文件的扩展名", "mimetypes.html#mimetypes.init": "初始化内部数据结构", "mimetypes.html#mimetypes.read_mime_types": "加载文件filename中给出的类型映射(如果存在)", "mimetypes.html#mimetypes.add_type": "将MIME类型类型的映射添加到扩展ext", "mimetypes.html#mimetypes.inited": "指示全局数据结构是否已被初始化的标志", "mimetypes.html#mimetypes.knownfiles": "通常安装的类型映射文件名列表", "mimetypes.html#mimetypes.suffix_map": "字典映射后缀到后缀", "mimetypes.html#mimetypes.encodings_map": "将文件扩展名映射到编码类型", "mimetypes.html#mimetypes.types_map": "字典映射MIME类型的文件扩展名", "mimetypes.html#mimetypes.common_types": "", "modulefinder.html#modulefinder.AddPackagePath": "记录在指定的路径中可以找到名为pkg_name的包", "modulefinder.html#modulefinder.ReplacePackage": "允许指定名为oldname的模块实际上是名为newname的包", "msilib.html#msilib.FCICreate": "创建名为cabname的新CAB文件", "msilib.html#msilib.UuidCreate": "返回新的唯一标识符的字符串表示形式", "msilib.html#msilib.OpenDatabase": "通过调用MsiOpenDatabase返回一个新的数据库对象", "msilib.html#msilib.CreateRecord": "通过调用MSICreateRecord()返回一个新的记录对象", "msilib.html#msilib.init_database": "Create and return a new database name, initialize it with schema, and set the properties ProductName, ProductCode, ProductVersion, and Manufacturer", "msilib.html#msilib.add_data": "将所有记录添加到数据库中名为表的表", "msilib.html#msilib.add_tables": "将模块中的所有表内容添加到数据库", "msilib.html#msilib.add_stream": "将路径添加到数据库的_Stream表中,流名称为name", "msilib.html#msilib.gen_uuid": "以MSI通常需要的格式返回新的UUID", "msilib.html#msilib.sequence": "此模块包含标准序列表的表内容:AdminExecuteSequence,AdminUISequence,AdvtExecuteSequence,InstallExecuteSequence和 InstallUISequence", "msilib.html#msilib.text": "此模块包含标准安装程序操作的UIText和ActionText表的定义", "msvcrt.html#msvcrt.locking": "根据C运行时文件描述器fd锁定文件的一部分", "msvcrt.html#msvcrt.setmode": "设置文件描述器fd的行末翻译模式", "msvcrt.html#msvcrt.open_osfhandle": "从文件句柄句柄创建C运行时文件描述器", "msvcrt.html#msvcrt.get_osfhandle": "返回文件描述器fd的文件句柄", "msvcrt.html#msvcrt.kbhit": "如果键盘正在等待读取,则返回true", "msvcrt.html#msvcrt.getch": "读取按键并将结果字符作为字节字符串返回", "msvcrt.html#msvcrt.getwch": "getch()的宽字符变量,返回Unicode值", "msvcrt.html#msvcrt.getche": "类似于getch(),但是如果它代表一个可打印的字符,keypress将被回显", "msvcrt.html#msvcrt.getwche": "getche()的宽字符变体,返回Unicode值", "msvcrt.html#msvcrt.putch": "将字节字符串char打印到控制台,无需缓冲", "msvcrt.html#msvcrt.putwch": "宽字符变体putch(),接受Unicode值", "msvcrt.html#msvcrt.ungetch": "导致字节串char被“推回”到控制台缓冲区;它将是由getch()或getche()读取的下一个字符", "msvcrt.html#msvcrt.ungetwch": "ungetch()的宽字符变体,接受Unicode值", "msvcrt.html#msvcrt.heapmin": "强制malloc()堆清理自己并将未使用的块返回到操作系统", "msvcrt.html#msvcrt.LK_LOCK": "锁定指定的字节", "msvcrt.html#msvcrt.LK_NBLCK": "锁定指定的字节", "msvcrt.html#msvcrt.LK_UNLCK": "解锁指定的字节,必须先前已锁定", "multiprocessing.html#multiprocessing.Pipe": "Returns a pair (conn1, conn2) of Connection objects representing the ends of a pipe", "multiprocessing.html#multiprocessing.active_children": "Return list of all live children of the current process", "multiprocessing.html#multiprocessing.cpu_count": "返回系统中的CPU数量", "multiprocessing.html#multiprocessing.current_process": "Return the Process object corresponding to the current process", "multiprocessing.html#multiprocessing.freeze_support": "Add support for when a program which uses multiprocessing has been frozen to produce a Windows executable", "multiprocessing.html#multiprocessing.get_all_start_methods": "Returns a list of the supported start methods, the first of which is the default", "multiprocessing.html#multiprocessing.get_context": "Return a context object which has the same attributes as the multiprocessing module", "multiprocessing.html#multiprocessing.get_start_method": "Return the name of start method used for starting processes", "multiprocessing.html#multiprocessing.set_executable": "Sets the path of the Python interpreter to use when starting a child process", "multiprocessing.html#multiprocessing.set_start_method": "Set the method which should be used to start child processes", "multiprocessing.html#multiprocessing.Value": "返回从共享内存分配的ctypes对象", "multiprocessing.html#multiprocessing.Array": "Return a ctypes array allocated from shared memory", "multiprocessing.html#multiprocessing.sharedctypes.RawArray": "Return a ctypes array allocated from shared memory", "multiprocessing.html#multiprocessing.sharedctypes.RawValue": "Return a ctypes object allocated from shared memory", "multiprocessing.html#multiprocessing.sharedctypes.Array": "The same as RawArray() except that depending on the value of lock a process-safe synchronization wrapper may be returned instead of a raw ctypes array", "multiprocessing.html#multiprocessing.sharedctypes.Value": "The same as RawValue() except that depending on the value of lock a process-safe synchronization wrapper may be returned instead of a raw ctypes object", "multiprocessing.html#multiprocessing.sharedctypes.copy": "Return a ctypes object allocated from shared memory which is a copy of the ctypes object obj", "multiprocessing.html#multiprocessing.sharedctypes.synchronized": "Return a process-safe wrapper object for a ctypes object which uses lock to synchronize access", "multiprocessing.html#multiprocessing.sharedctypes.multiprocessing.Manager": "Returns a started SyncManager object which can be used for sharing objects between processes", "multiprocessing.html#multiprocessing.connection.deliver_challenge": "Send a randomly generated message to the other end of the connection and wait for a reply", "multiprocessing.html#multiprocessing.connection.answer_challenge": "Receive a message, calculate the digest of the message using authkey as the key, and then send the digest back", "multiprocessing.html#multiprocessing.connection.Client": "Attempt to set up a connection to the listener which is using address address, returning a Connection", "multiprocessing.html#multiprocessing.connection.wait": "Wait till an object in object_list is ready", "multiprocessing.html#multiprocessing.get_logger": "Returns the logger used by multiprocessing", "multiprocessing.html#multiprocessing.log_to_stderr": "This function performs a call to get_logger() but in addition to returning the logger created by get_logger, it adds a handler which sends output to sys", "nis.html#nis.match": "返回映射mapname中键的匹配,如果没有匹配,则引入错误(nis", "nis.html#nis.cat": "将键的字典映射到值,使match(键, mapname)== value / t2>", "nis.html#nis.maps": "返回所有有效地图的列表", "nis.html#nis.get_default_domain": "返回系统默认NIS域", "nntplib.html#nntplib.decode_header": "解码标头值,取消转义任何转义的非ASCII字符", "operator.html#operator.lt": "在a和b之间执行“丰富比较”", "operator.html#operator.not_": "返回not obj", "operator.html#operator.truth": "如果obj为真,则返回True,否则返回False", "operator.html#operator.is_": "返回a 是 b", "operator.html#operator.is_not": "返回a 是 不是 b", "operator.html#operator.abs": "返回obj的绝对值", "operator.html#operator.add": "返回a + b,对于a和b t5 >数字", "operator.html#operator.and_": "返回按位和a和b", "operator.html#operator.floordiv": "返回a // b", "operator.html#operator.index": "返回a转换为整数", "operator.html#operator.inv": "返回数字obj的按位逆", "operator.html#operator.lshift": "返回a向左移动b", "operator.html#operator.mod": "返回a % b", "operator.html#operator.mul": "返回a * b,对于a和b t5 >数字", "operator.html#operator.matmul": "返回a @ b", "operator.html#operator.neg": "返回obj否定(-obj)", "operator.html#operator.or_": "返回按位或a和b", "operator.html#operator.pos": "返回obj正(+obj)", "operator.html#operator.pow": "对于a和b,返回a ** b t5>数字", "operator.html#operator.rshift": "返回a向右移动b", "operator.html#operator.sub": "返回a - b", "operator.html#operator.truediv": "返回a / b其中2/3为", "operator.html#operator.xor": "返回a和b的逐位异或", "operator.html#operator.concat": "对于a和b返回a + b序列", "operator.html#operator.contains": "返回 t> a中的测试结果b ", "operator.html#operator.countOf": "返回a中b的出现次数", "operator.html#operator.delitem": "删除索引b处a的值", "operator.html#operator.getitem": "返回a在索引b的值", "operator.html#operator.indexOf": "返回a中b的第一个出现的索引", "operator.html#operator.setitem": "将索引b处的a值设置为c", "operator.html#operator.length_hint": "返回对象o的估计长度", "operator.html#operator.attrgetter": "返回从其操作数获取attr的可调用对象", "operator.html#operator.itemgetter": "返回使用操作数的__getitem__()方法从其操作数获取项的可调用对象", "operator.html#operator.methodcaller": "返回在其操作数上调用方法name的可调用对象", "operator.html#operator.iadd": "a = iadd(a, b) is equivalent to a += b", "operator.html#operator.iand": "a = iand(a, b) is equivalent to a &= b", "operator.html#operator.iconcat": "a = iconcat(a, b) is equivalent to a += b for a and b sequences", "operator.html#operator.ifloordiv": "a = ifloordiv(a, b) is equivalent to a //= b", "operator.html#operator.ilshift": "a = ilshift(a, b) is equivalent to a <<= b", "operator.html#operator.imod": "a = imod(a, b) is equivalent to a %= b", "operator.html#operator.imul": "a = imul(a, b) is equivalent to a *= b", "operator.html#operator.imatmul": "a = imatmul(a, b) is equivalent to a @= b", "operator.html#operator.ior": "a = ior(a, b) is equivalent to a |= b", "operator.html#operator.ipow": "a = ipow(a, b) is equivalent to a **= b", "operator.html#operator.irshift": "a = irshift(a, b) is equivalent to a >>= b", "operator.html#operator.isub": "a = isub(a, b) is equivalent to a -= b", "operator.html#operator.itruediv": "a = itruediv(a, b) is equivalent to a /= b", "operator.html#operator.ixor": "a = ixor(a, b) is equivalent to a ^= b", "os.html#os.ctermid": "返回与进程的控制终端对应的文件名", "os.html#os.fsencode": "在Windows上使用'surrogateescape'错误处理程序或'strict'编码文件名返回bytes不变", "os.html#os.fsdecode": "在Windows上使用'surrogateescape'错误处理程序或'strict'对文件系统进行解码filename返回str不变", "os.html#os.getenv": "如果它存在,则返回环境变量键的值;如果不存在,则返回默认值", "os.html#os.getenvb": "如果它存在,则返回环境变量键的值;如果不存在,则返回默认值", "os.html#os.get_exec_path": "在启动进程时,返回将搜索命名可执行文件的目录列表,类似于shell", "os.html#os.getegid": "返回当前进程的有效组标识", "os.html#os.geteuid": "返回当前进程的有效用户标识", "os.html#os.getgid": "返回当前进程的实际组ID", "os.html#os.getgrouplist": "返回user所属的组ID的列表", "os.html#os.getgroups": "返回与当前进程关联的补充组标识的列表", "os.html#os.getlogin": "Return the name of the user logged in on the controlling terminal of the process", "os.html#os.getpgid": "用进程id pid返回进程的进程组ID", "os.html#os.getpgrp": "返回当前进程组的ID", "os.html#os.getpid": "返回当前进程id", "os.html#os.getppid": "返回父进程的进程ID", "os.html#os.getpriority": "获取计划调度优先级", "os.html#os.getresuid": "返回一个元组(ruid,euid,suid),表示当前进程的真实,有效和保存的用户id", "os.html#os.getresgid": "返回一个元组(rgid,egid,sgid),表示当前进程的真实,有效和保存的组ID", "os.html#os.getuid": "返回当前进程的真实用户ID", "os.html#os.initgroups": "调用系统initgroups()初始化组访问列表,其中包含指定用户名所属的所有组以及指定的组ID", "os.html#os.putenv": "将名为key的环境变量设置为字符串值", "os.html#os.setegid": "设置当前进程的有效组ID", "os.html#os.seteuid": "设置当前进程的有效用户标识", "os.html#os.setgid": "设置当前进程的组ID", "os.html#os.setgroups": "将与当前进程关联的补充组标识列表设置为组", "os.html#os.setpgrp": "根据所实现的版本,调用系统调用setpgrp()或setpgrp(0, 0)任何)", "os.html#os.setpgid": "调用系统调用setpgid()将id为pid的进程的进程组id设置为id为pgrp的进程组", "os.html#os.setpriority": "设置节目安排优先级", "os.html#os.setregid": "设置当前进程的真实和有效的组ID", "os.html#os.setresgid": "设置当前进程的真实,有效和保存的组ID", "os.html#os.setresuid": "设置当前进程的真实,有效和保存的用户标识", "os.html#os.setreuid": "设置当前进程的真实和有效的用户ID", "os.html#os.getsid": "调用系统调用getsid()", "os.html#os.setsid": "调用系统调用setsid()", "os.html#os.setuid": "设置当前进程的用户标识", "os.html#os.strerror": "返回代码中与错误代码对应的错误消息", "os.html#os.umask": "设置当前的数字umask并返回先前的umask", "os.html#os.uname": "返回标识当前操作系统的信息", "os.html#os.unsetenv": "取消设置(删除)名为键的环境变量", "os.html#os.fdopen": "返回连接到文件描述符fd的打开文件对象", "os.html#os.close": "关闭文件描述符fd", "os.html#os.closerange": "将所有文件描述符从fd_low(包括)关闭到fd_high(不包括),忽略错误", "os.html#os.device_encoding": "如果连接到终端,则返回描述与fd关联的设备的编码的字符串;否则返回None", "os.html#os.dup": "返回文件描述符fd的副本", "os.html#os.dup2": "复制文件描述符fd到fd2,必要时关闭后者", "os.html#os.fchmod": "将由fd给出的文件模式更改为数字模式", "os.html#os.fchown": "将由fd给出的文件的所有者和组标识更改为数字uid和gid", "os.html#os.fdatasync": "用filedescriptor fd强制将文件写入磁盘", "os.html#os.fpathconf": "返回与打开文件相关的系统配置信息", "os.html#os.fstat": "获取文件描述符fd的状态", "os.html#os.fstatvfs": "返回包含与文件描述符fd关联的文件的文件系统的信息,如statvfs()", "os.html#os.fsync": "用filedescriptor fd强制将文件写入磁盘", "os.html#os.ftruncate": "截断与文件描述符fd相对应的文件,以便它的大小最多为长度个字节", "os.html#os.get_blocking": "获取文件描述符的阻塞模式:False如果O_NONBLOCK标志被设置,True如果标志被清除", "os.html#os.isatty": "如果文件描述符fd打开并连接到类似tty(-like)的设备,则返回True,否则False", "os.html#os.lockf": "在打开的文件描述符上应用,测试或移除POSIX锁", "os.html#os.lseek": "Set the current position of file descriptor fd to position pos, modified by how: SEEK_SET or 0 to set the position relative to the beginning of the file; SEEK_CUR or 1 to set it relative to the current position; SEEK_END or 2 to set it relative to the end of the file", "os.html#os.open": "根据flags打开文件path,并根据mode设置不同的标志", "os.html#os.openpty": "打开一个新的伪终端对", "os.html#os.pipe": "创建一个管道", "os.html#os.pipe2": "使用flags自动设置一个管道", "os.html#os.posix_fallocate": "确保为fd指定的文件分配足够的磁盘空间,该文件从offset开始并继续处理len字节", "os.html#os.posix_fadvise": "宣布打算以特定模式访问数据,从而允许内核进行优化", "os.html#os.pread": "从文件描述符fd中读取offset位置处的文件描述符", "os.html#os.pwrite": "将bytestring从offset写入文件描述符fd,使文件偏移保持不变", "os.html#os.read": "从文件描述符fd中最多读取n个字节", "os.html#os.sendfile": "从offset开始,将count字节从中的文件描述符复制到文件描述符out", "os.html#os.set_blocking": "设置指定文件描述符的阻止模式", "os.html#os.readv": "从文件描述符fd中读入多个可变的bytes-like objects 缓冲区", "os.html#os.tcgetpgrp": "返回由fd(由os", "os.html#os.tcsetpgrp": "将与由fd(由os", "os.html#os.ttyname": "返回一个字符串,它指定与文件描述符fd关联的终端设备", "os.html#os.write": "将str中的字节串写入文件描述符fd", "os.html#os.writev": "将buffers的内容写入文件描述符fd", "os.html#os.get_terminal_size": "以(列, 行),terminal_size类型的元组的形式返回终端窗口的大小", "os.html#os.get_inheritable": "获取指定文件描述符的“可继承”标志(布尔值)", "os.html#os.set_inheritable": "设置指定文件描述符的“可继承”标志", "os.html#os.get_handle_inheritable": "获取指定句柄的“可继承”标志(布尔值)", "os.html#os.set_handle_inheritable": "设置指定句柄的“可继承”标志", "os.html#os.access": "使用real uid / gid来测试对路径的访问", "os.html#os.chdir": "将当前工作目录更改为路径", "os.html#os.chflags": "将路径的标志设置为数字标志", "os.html#os.chmod": "将路径的模式更改为数字模式", "os.html#os.chown": "将path的所有者和组标识更改为数字uid和gid", "os.html#os.chroot": "将当前进程的根目录更改为路径", "os.html#os.fchdir": "将当前工作目录更改为由文件描述符fd表示的目录", "os.html#os.getcwd": "返回表示当前工作目录的字符串", "os.html#os.getcwdb": "返回表示当前工作目录的字符串", "os.html#os.lchflags": "将path的标志设置为数字标志,如chflags(),但不要遵循符号链接", "os.html#os.lchmod": "将路径的模式更改为数字模式", "os.html#os.lchown": "将path的所有者和组标识更改为数字uid和gid", "os.html#os.link": "Create a hard link pointing to src named dst", "os.html#os.listdir": "返回一个list,包含给定path 目录下所有条目的名字", "os.html#os.lstat": "在给定路径上执行与lstat()系统调用等价的操作", "os.html#os.mkdir": "创建一个名称为path的目录,模式为mode", "os.html#os.makedirs": "递归创建目录的函数", "os.html#os.mkfifo": "使用数字模式模式创建名为path的FIFO(命名管道)", "os.html#os.mknod": "创建一个名为path的文件系统节点(文件,设备专用文件或命名管道)", "os.html#os.major": "从原始设备编号(通常是stat中的st_dev或st_rdev字段)中提取设备主编号", "os.html#os.minor": "从原始设备编号(通常是stat中的st_dev或st_rdev字段)中提取设备次要编号", "os.html#os.makedev": "从主要和次要设备编号构成原始设备编号", "os.html#os.pathconf": "返回与指定文件相关的系统配置信息", "os.html#os.readlink": "返回表示符号链接指向的路径的字符串", "os.html#os.remove": "删除(删除)文件路径", "os.html#os.removedirs": "递归地删除目录", "os.html#os.rename": "将文件或目录src重命名为dst", "os.html#os.renames": "重命名函数递归处理目录或文件,像rename()一样工作,除了首先尝试创建新路径名所需的任何中间目录之外", "os.html#os.replace": "将文件或目录src重命名为dst", "os.html#os.rmdir": "删除(删除)目录路径", "os.html#os.scandir": "返回与path给出的目录条目对应的DirEntry对象的迭代器", "os.html#os.stat": "获取文件或文件描述符的状态", "os.html#os.stat_float_times": "确定stat_result是否将时间戳记表示为浮动对象", "os.html#os.statvfs": "在给定路径上执行statvfs()系统调用", "os.html#os.symlink": "创建一个指向名为dst的src的符号链接", "os.html#os.sync": "强制将所有内容写入磁盘", "os.html#os.truncate": "截断与路径对应的文件,以便它的大小至多为长度字节", "os.html#os.unlink": "删除(删除)文件路径", "os.html#os.utime": "设置由path指定的文件的访问和修改时间", "os.html#os.walk": "遍历目录树,自顶向下或自底向上生成目录树下的文件名", "os.html#os.fwalk": "行为与walk()非常类似,不同的是它产生一个4元组(dirpath, dirnames, filenames, dirfd),并支持dir_fd", "os.html#os.getxattr": "为路径返回扩展文件系统属性属性的值", "os.html#os.listxattr": "返回路径上的扩展文件系统属性列表", "os.html#os.removexattr": "从路径中删除扩展文件系统属性属性", "os.html#os.setxattr": "将路径上的扩展文件系统属性属性设置为值", "os.html#os.abort": "生成一个SIGABRT信号给当前进程", "os.html#os.execl": "这些功能都执行一个新程序,取代当前进程;他们不回来", "os.html#os._exit": "状态n退出进程,无需调用清理处理程序,刷新stdio缓冲区等", "os.html#os.fork": "叉一个孩子的过程", "os.html#os.forkpty": "用一个新的伪终端作为孩子的控制终端,把一个子进程分叉开来", "os.html#os.kill": "发送信号sig到进程pid", "os.html#os.killpg": "Send the signal sig to the process group pgid", "os.html#os.nice": "将increment添加到进程的“niceness”中", "os.html#os.plock": "将程序段锁定到内存中", "os.html#os.popen": "从命令cmd打开管道", "os.html#os.spawnl": "在新进程中执行程序路径", "os.html#os.startfile": "用相关的应用程序启动一个文件", "os.html#os.system": "在子shell中执行命令(一个字符串)", "os.html#os.times": "返回当前的全局流程时间", "os.html#os.wait": "等待子进程完成,并返回一个包含它的pid和退出状态指示的元组:一个16位数字,其低字节是杀死进程的信号编号,其高字节是退出状态(如果信号数字为零);如果生成核心文件,则设置低字节的高位", "os.html#os.waitid": "等待一个或多个子进程的完成", "os.html#os.waitpid": "这个功能的细节在Unix和Windows上有所不同", "os.html#os.wait3": "类似于waitpid(),除了没有给出进程ID参数并且返回包含子进程ID,退出状态指示和资源使用信息的3元素元组", "os.html#os.wait4": "类似于waitpid(),除了包含子进程ID,退出状态指示和资源使用信息的3元素元组之外,它被返回", "os.html#os.WCOREDUMP": "如果为进程生成核心转储,则返回True,否则返回False", "os.html#os.WIFCONTINUED": "如果进程从作业控制停止继续,则返回True,否则返回False", "os.html#os.WIFSTOPPED": "如果进程已停止,则返回True,否则返回False", "os.html#os.WIFSIGNALED": "如果进程由于信号而退出,则返回True,否则返回False", "os.html#os.WIFEXITED": "如果进程使用exit(2)系统调用退出,则返回True,否则返回False", "os.html#os.WEXITSTATUS": "如果WIFEXITED(status)为true,则返回整型参数到exit(2)系统调用", "os.html#os.WSTOPSIG": "返回导致进程停止的信号", "os.html#os.WTERMSIG": "返回导致进程退出的信号", "os.html#os.sched_get_priority_min": "获取策略的最低优先级值", "os.html#os.sched_get_priority_max": "获取策略的最大优先级值", "os.html#os.sched_setscheduler": "使用PID pid设置进程的调度策略", "os.html#os.sched_getscheduler": "用PID pid返回进程的调度策略", "os.html#os.sched_setparam": "使用PID pid为进程设置调度参数", "os.html#os.sched_getparam": "将具有PID pid的进程的调度参数作为sched_param实例返回", "os.html#os.sched_rr_get_interval": "用PID pid返回循环过程的秒数", "os.html#os.sched_yield": "自愿放弃CPU", "os.html#os.sched_setaffinity": "用PID pid(或当前进程,如果为零)限制进程到一组CPU", "os.html#os.sched_getaffinity": "返回具有PID pid(或当前过程,如果为零)的过程的CPU集合限制为", "os.html#os.confstr": "返回字符串值的系统配置值", "os.html#os.cpu_count": "返回系统中的CPU数量", "os.html#os.getloadavg": "如果无法获得负载平均值,则返回系统运行队列中过去1分钟,5分钟和15分钟内平均的进程数量或引发OSError", "os.html#os.sysconf": "返回整数值的系统配置值", "os.html#os.urandom": "返回n个字节的用以加密的随机字符串", "os.html#os.name": "导入的操作系统相关模块的名称", "os.html#os.environ": "表示字符串环境的mapping对象", "os.html#os.environb": "字节版本的environ:表示环境为字节字符串的mapping对象", "os.html#os.PRIO_PROCESS": "getpriority()和setpriority()函数的参数", "os.html#os.supports_bytes_environ": "TrueFalse在Windows上)", "os.html#os.F_LOCK": "指定lockf()执行什么操作的标志", "os.html#os.SEEK_SET": "lseek()函数的参数", "os.html#os.O_RDONLY": "这些常量在Unix和Windows上可用", "os.html#os.O_DSYNC": "这些常量仅在Unix上可用", "os.html#os.O_BINARY": "这些常量仅在Windows上可用", "os.html#os.O_ASYNC": "这些常量是GNU扩展,如果它们没有被C库定义则不存在", "os.html#os.POSIX_FADV_NORMAL": "可以在posix_fadvise()的advice中使用的标志指定可能使用的访问模式", "os.html#os.SF_NODISKIO": "sendfile()函数的参数,如果实现支持它们的话", "os.html#os.F_OK": "作为access()的mode参数传递的值分别用于测试path的存在性,可读性,可写性和可执行性", "os.html#os.pathconf_names": "将由pathconf()和fpathconf()接受的字典映射名称转换为主机操作系统为这些名称定义的整数值", "os.html#os.supports_dir_fd": "Set对象指示os模块中的哪些函数允许使用它们的dir_fd参数", "os.html#os.supports_effective_ids": "指示os模块中的哪些函数允许os", "os.html#os.supports_fd": "Set对象指示os模块中的哪些函数允许将路径参数指定为打开的文件描述符", "os.html#os.supports_follow_symlinks": "Set对象指示os模块中的哪些函数允许使用它们的follow_symlinks参数", "os.html#os.XATTR_SIZE_MAX": "扩展属性值的最大大小可以是", "os.html#os.XATTR_CREATE": "这是setxattr()中flags参数的可能值", "os.html#os.XATTR_REPLACE": "这是setxattr()中flags参数的可能值", "os.html#os.EX_OK": "退出代码意味着没有发生错误", "os.html#os.EX_USAGE": "退出代码意味着命令被错误地使用,例如给出错误的参数数量", "os.html#os.EX_DATAERR": "退出代码意味着输入数据不正确", "os.html#os.EX_NOINPUT": "退出代码意味着输入文件不存在或不可读", "os.html#os.EX_NOUSER": "退出代码,意味着指定的用户不存在", "os.html#os.EX_NOHOST": "退出代码,意味着指定的主机不存在", "os.html#os.EX_UNAVAILABLE": "退出代码,这意味着所需的服务不可用", "os.html#os.EX_SOFTWARE": "退出代码意味着检测到内部软件错误", "os.html#os.EX_OSERR": "退出代码意味着检测到操作系统错误,例如无法分叉或创建管道", "os.html#os.EX_OSFILE": "退出代码意味着某些系统文件不存在,无法打开或出现其他类型的错误", "os.html#os.EX_CANTCREAT": "退出代码意味着无法创建用户指定的输出文件", "os.html#os.EX_IOERR": "退出代码意味着在某个文件上执行I / O时发生错误", "os.html#os.EX_TEMPFAIL": "退出代码意味着发生了临时故障", "os.html#os.EX_PROTOCOL": "退出代码意味着协议交换是非法的,无效的或不被理解的", "os.html#os.EX_NOPERM": "退出代码意味着没有足够的权限执行操作(但不适用于文件系统问题)", "os.html#os.EX_CONFIG": "退出代码意味着发生某种配置错误", "os.html#os.EX_NOTFOUND": "退出代码意味着类似“未找到条目”", "os.html#os.P_NOWAIT": "spawn*系列函数的mode参数的可能值", "os.html#os.P_WAIT": "spawn*系列函数的模式参数的可能值", "os.html#os.P_DETACH": "spawn*系列函数的mode参数的可能值", "os.html#os.P_PID": "这些是waitid()中idtype的可能值", "os.html#os.WEXITED": "可以在waitid()的options中使用的标志指定要等待的子信号", "os.html#os.CLD_EXITED": "这些是由waitid()返回的结果中si_code的可能值", "os.html#os.WNOHANG": "如果没有子进程状态立即可用,waitpid()选项立即返回", "os.html#os.WCONTINUED": "此选项会导致子进程在自上次报告状态后已从作业控制停止继续进行报告", "os.html#os.WUNTRACED": "这个选项会导致子进程被报告,如果它们已经被停止,但是它们的当前状态自停止以来还没有被报告", "os.html#os.SCHED_OTHER": "默认调度策略", "os.html#os.SCHED_BATCH": "为尝试保留计算机其余部分的交互性的CPU密集型进程调度策略", "os.html#os.SCHED_IDLE": "为极低优先级的后台任务调度策略", "os.html#os.SCHED_SPORADIC": "针对零星服务器程序的调度策略", "os.html#os.SCHED_FIFO": "先进先出调度策略", "os.html#os.SCHED_RR": "循环调度策略", "os.html#os.SCHED_RESET_ON_FORK": "该标志可以与任何其他调度策略进行或运算", "os.html#os.confstr_names": "由confstr()接受的字典映射名称与主机操作系统为这些名称定义的整数值", "os.html#os.sysconf_names": "由sysconf()接受的字典映射名称与主机操作系统为这些名称定义的整数值", "os.html#os.curdir": "操作系统用来引用当前目录的常量字符串", "os.html#os.pardir": "操作系统用来引用父目录的常量字符串", "os.html#os.sep": "操作系统用来分隔路径名组件的字符", "os.html#os.altsep": "操作系统用来分隔路径名组件的替代字符,或者如果只有一个分隔符字符,则None", "os.html#os.extsep": "将基本文件名与扩展名分开的字符;例如,'", "os.html#os.pathsep": "The character conventionally used by the operating system to separate search path components (as in PATH), such as ':' for POSIX or ';' for Windows", "os.html#os.defpath": "如果环境没有'PATH'键,exec*p*和spawn*p*使用的默认搜索路径", "os.html#os.linesep": "用于在当前平台上分隔(或相反,终止)行的字符串", "os.html#os.devnull": "空设备的文件路径", "os.html#os.RTLD_LAZY": "用于setdlopenflags()和getdlopenflags()函数的标志", "os.path.html#os.path.abspath": "返回一个标准的绝对路径名 path", "os.path.html#os.path.basename": "返回路径名path的最后一级的名称", "os.path.html#os.path.commonpath": "返回 paths参数中,所有路径序列中共有的最长的路径", "os.path.html#os.path.commonprefix": "返回列表中所有路径的前缀的最长路径前缀(逐个字符)", "os.path.html#os.path.dirname": "返回 path中的目录名", "os.path.html#os.path.exists": "如果路径指向现有路径或打开的文件描述器,则返回True", "os.path.html#os.path.lexists": "如果 path 指向现有的路径,则返回 True", "os.path.html#os.path.expanduser": "在Unix和Windows上,将参数中原始的~或~user部分用user主目录替换", "os.path.html#os.path.expandvars": "返回参数,其中的环境变量被扩展", "os.path.html#os.path.getatime": "返回 path的上次访问时间", "os.path.html#os.path.getmtime": "返回path的最后修改时间", "os.path.html#os.path.getctime": "返回系统的ctime,在某些系统(如Unix)上是最后元数据更改的时间,在其他系统(如Windows)上,是路径的创建时间", "os.path.html#os.path.getsize": "返回path的大小,以字节为单位", "os.path.html#os.path.isabs": "如果路径是绝对路径名,则返回True", "os.path.html#os.path.isfile": "如果路径是现有的常规文件,则返回True", "os.path.html#os.path.isdir": "如果文件是目录,则返回True", "os.path.html#os.path.islink": "如果路径指的是符号链接的目录条目,则返回True", "os.path.html#os.path.ismount": "如果路径名路径是安装点,则返回True在POSIX上,函数检查路径的父节点,path/", "os.path.html#os.path.join": "将一个或多个路径正确地连接起来", "os.path.html#os.path.normcase": "标准化路径名的大小写", "os.path.html#os.path.normpath": "通过折叠冗余分隔符和上级引用来归一化路径名,以使A//B,A/B/,A/", "os.path.html#os.path.realpath": "返回指定的文件名的规范名字,并消除路径中遇到的任何符号链接(如果操作系统支持的话)", "os.path.html#os.path.relpath": "返回自当前目录或者可选的start 目录的 path相对文件路径", "os.path.html#os.path.samefile": "如果两个路径名参数都指向相同的文件或目录,则返回True", "os.path.html#os.path.sameopenfile": "如果文件描述器fp1和fp2指向同一文件,则返回True", "os.path.html#os.path.samestat": "如果统计数据元组stat1和stat2指向同一文件,则返回True", "os.path.html#os.path.split": "将路径名path拆分为一个元组对(head, tail),其中tail是路径名的最后一个部分,head是前面的所有内容", "os.path.html#os.path.splitdrive": "将路径名路径拆分为(drive, tail)其中drive为挂载点或空字符串", "os.path.html#os.path.splitext": "Split the pathname path into a pair (root, ext) such that root + ext == path, and ext is empty or begins with a period and contains at most one period", "os.path.html#os.path.splitunc": "自3", "os.path.html#os.path.supports_unicode_filenames": "True如果任意Unicode字符串可以用作文件名(在文件系统限制的限制之内)", "ossaudiodev.html#ossaudiodev.open": "打开音频设备并返回OSS音频设备对象", "ossaudiodev.html#ossaudiodev.openmixer": "打开混音器设备并返回OSS混音器设备对象", "parser.html#parser.expr": "expr()函数解析参数source,就像它是compile(source, 'file)的输入", "parser.html#parser.suite": "suite()函数解析参数source,就像它是compile(source, 'file)的输入", "parser.html#parser.sequence2st": "此函数接受表示为序列的解析树,并在可能的情况下构建内部表示", "parser.html#parser.tuple2st": "这与sequence2st()具有相同的功能", "parser.html#parser.st2list": "此函数在st中接受来自调用者的ST对象,并返回表示等效解析树的Python列表", "parser.html#parser.st2tuple": "此函数在st中接受来自调用者的ST对象,并返回表示等效解析树的Python元组", "parser.html#parser.compilest": "Python字节编译器可以在ST对象上调用以产生代码对象,这些对象可以用作调用内建exec()或eval()函数的一部分", "parser.html#parser.isexpr": "当st表示'eval'形式时,此函数返回true,否则返回false", "parser.html#parser.issuite": "此函数镜像isexpr(),因为它报告ST对象是否表示'exec'形式,通常称为“套件”", "parser.html#parser.STType": "由expr(),suite()和sequence2st()返回的对象类型", "pathlib.html#pathlib.PurePath.parts": "可以访问路径各个组件的元组:", "pathlib.html#pathlib.PurePath.drive": "表示驱动器盘符或名称的字符串(如果有):", "pathlib.html#pathlib.PurePath.root": "表示(本地或全局)根(如果有)的字符串:", "pathlib.html#pathlib.PurePath.anchor": "驱动器和根目录的连接:", "pathlib.html#pathlib.PurePath.parents": "提供对路径的逻辑祖先的访问的不可变序列:", "pathlib.html#pathlib.PurePath.parent": "路径的逻辑父代:", "pathlib.html#pathlib.PurePath.name": "表示最终路径组件的字符串,不包括驱动器和根目录(如果有):", "pathlib.html#pathlib.PurePath.suffix": "最终组件的文件扩展名(如果有):", "pathlib.html#pathlib.PurePath.suffixes": "路径的文件扩展名列表:", "pathlib.html#pathlib.PurePath.stem": "最终路径组件,不带其后缀:", "pdb.html#pdb.run": "在调试器控制下执行statement(作为字符串或代码对象)", "pdb.html#pdb.runeval": "在调试器控制下计算表达式(作为字符串或代码对象)", "pdb.html#pdb.runcall": "使用给定的参数调用函数(函数或方法对象,而不是字符串)", "pdb.html#pdb.set_trace": "在调用堆栈框架处输入调试器", "pdb.html#pdb.post_mortem": "输入给定traceback对象的事后调试", "pdb.html#pdb.pm": "输入在sys", "pickle.html#pickle.dump": "将obj的腌制表示写入打开的file object 文件", "pickle.html#pickle.dumps": "将对象的腌制表示作为bytes对象返回,而不是将其写入文件", "pickle.html#pickle.load": "从打开的文件对象file读取pickled对象表示形式,并返回其中重新构建的对象层次结构", "pickle.html#pickle.loads": "从bytes对象读取腌制对象层次结构,并返回其中指定的重构对象层次结构", "pickle.html#pickle.HIGHEST_PROTOCOL": "整数,最高的protocol version可用", "pickle.html#pickle.DEFAULT_PROTOCOL": "整数,默认的protocol version用于酸洗", "pickletools.html#pickletools.dis": "版本3", "pickletools.html#pickletools.genops": "在pickle中的所有操作码上提供iterator,返回(操作码, arg, pos) 三元组", "pickletools.html#pickletools.optimize": "在删除未使用的PUT操作码后,返回一个新的等效pickle字符串", "pkgutil.html#pkgutil.extend_path": "扩展组成包的模块的搜索路径", "pkgutil.html#pkgutil.find_loader": "针对给定的全名,检索 PEP 302模块加载程序", "pkgutil.html#pkgutil.get_importer": "针对给定的path_item,检索 PEP 302导入器", "pkgutil.html#pkgutil.get_loader": "为module_or_name获取 PEP 302“loader”对象", "pkgutil.html#pkgutil.iter_importers": "给定模块名称的产出 PEP 302导入器", "pkgutil.html#pkgutil.iter_modules": "对路径上的所有子模块,产生(module_finder, 名称, ispkg) ,如果路径为None,则sys", "pkgutil.html#pkgutil.walk_packages": "对于所有模块在路径上递归生成(module_finder, 名称, ispkg)或者,如果路径是None,所有可访问的模块", "pkgutil.html#pkgutil.get_data": "从包中获取资源", "platform.html#platform.architecture": "查询给定的可执行文件(默认为Python解释器二进制)以获取体系结构的各种信息", "platform.html#platform.machine": "返回机器类型,例如'i386'", "platform.html#platform.node": "返回计算机的网络名称(可能不完全限定!)", "platform.html#platform.platform": "返回一个标识基础平台的单个字符串,尽可能使用尽可能多的有用信息", "platform.html#platform.processor": "返回(实际)处理器名称,例如'amdk6'", "platform.html#platform.python_build": "返回一个元组(buildno, builddate)将Python内部版本号和日期说明为字符串", "platform.html#platform.python_compiler": "返回一个字符串,标识用于编译Python的编译器", "platform.html#platform.python_branch": "返回一个标识Python实现SCM分支的字符串", "platform.html#platform.python_implementation": "返回一个标识Python实现的字符串", "platform.html#platform.python_revision": "返回一个标识Python实现SCM修订版本的字符串", "platform.html#platform.python_version": "以字符串'major", "platform.html#platform.python_version_tuple": "返回字符串的tuple (major, minor, patchlevel)的Python版本", "platform.html#platform.release": "返回系统的版本,例如'2", "platform.html#platform.system": "返回系统/操作系统名称,例如'Linux','Windows'或'Java'", "platform.html#platform.system_alias": "Returns (system, release, version) aliased to common marketing names used for some systems", "platform.html#platform.version": "返回系统的发布版本,例如'#3 on degas'", "platform.html#platform.uname": "相当便携的uname接口", "platform.html#platform.java_ver": "Jython的版本接口", "platform.html#platform.win32_ver": "从Windows注册表获取其他版本信息,并返回元组(发布, 版本, csd, ptype) t4>指OS版本,版本号,CSD级别(服务封装)和OS类型(多/单处理器)", "platform.html#platform.popen": "便携式popen()接口", "platform.html#platform.mac_ver": "Get Mac OS version information and return it as tuple (release, versioninfo, machine) with versioninfo being a tuple (version, dev_stage, non_release_version)", "platform.html#platform.dist": "这是linux_distribution()的另一个名称", "platform.html#platform.linux_distribution": "尝试确定Linux操作系统分发名称的名称", "platform.html#platform.libc_ver": "尝试确定可执行文件(默认为 Python 解释器) 链接的 libc 版本", "plistlib.html#plistlib.load": "读取plist文件", "plistlib.html#plistlib.loads": "从字节对象加载plist", "plistlib.html#plistlib.dump": "将值写入plist文件", "plistlib.html#plistlib.dumps": "将值返回为plist格式的字节对象", "plistlib.html#plistlib.readPlist": "读取plist文件", "plistlib.html#plistlib.writePlist": "将rootObject写入XML plist文件", "plistlib.html#plistlib.readPlistFromBytes": "从字节对象读取plist数据", "plistlib.html#plistlib.writePlistToBytes": "返回rootObject作为XML plist格式的字节对象", "plistlib.html#plistlib.FMT_XML": "plist文件的XML格式", "plistlib.html#plistlib.FMT_BINARY": "plist文件的二进制格式", "posix.html#posix.environ": "表示解释器启动时的字符串环境的字典", "pprint.html#pprint.pformat": "以字符串的形式返回object的打印结果", "pprint.html#pprint.pprint": "将object打印到stream中,结尾输出新行", "pprint.html#pprint.isreadable": "判断 object 的打印结果是否“可读”,或者能否用 eval()来重新构造值", "pprint.html#pprint.isrecursive": "判断object是否需要递归打印", "pprint.html#pprint.saferepr": "返回object的字符串表示,对于递归的数据结构有保护", "profile.html#profile.run": "此函数接受可传递到exec()函数的单个参数,以及可选的文件名", "profile.html#profile.runctx": "此函数类似于run(),添加了参数以提供命令字符串的全局和本地化字典", "pty.html#pty.fork": "叉子", "pty.html#pty.openpty": "打开一个新的伪终端对,使用os", "pty.html#pty.spawn": "产生一个进程,并将其控制终端与当前进程的标准io连接", "pwd.html#pwd.getpwuid": "返回给定数字用户ID的密码数据库条目", "pwd.html#pwd.getpwnam": "返回给定用户名的密码数据库条目", "pwd.html#pwd.getpwall": "以任意顺序返回所有可用密码数据库条目的列表", "pyclbr.html#pyclbr.readmodule": "读取一个模块并返回一个字典映射类名到类描述器对象", "pyclbr.html#pyclbr.readmodule_ex": "像readmodule(),但返回的字典,除了将类名映射到类描述器对象之外,还将顶级函数名映射到函数描述器对象", "pyexpat.html#xml.parsers.expat.ErrorString": "返回给定错误号errno的说明字符串", "pyexpat.html#xml.parsers.expat.ParserCreate": "创建并返回一个新的xmlparser对象", "pyexpat.html#xml.parsers.expat.XMLParserType": "来自ParserCreate()函数的返回值的类型", "pyexpat.html#xml.parsers.expat.errors.codes": "将数字错误代码映射到其字符串描述的字典", "pyexpat.html#xml.parsers.expat.errors.messages": "将字符串描述映射到其错误代码的字典", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_ATTRIBUTE_EXTERNAL_ENTITY_REF": "引用到外部实体而不是内部实体的属性值中的实体引用", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_BAD_CHAR_REF": "字符引用指的是XML中非法字符(例如,字符0或'�')", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_BINARY_ENTITY_REF": "实体引用指的是用符号声明的实体,因此不能被解析", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_DUPLICATE_ATTRIBUTE": "一个属性在开始标记中多次使用", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_INVALID_TOKEN": "在输入字节无法正确分配给字符时引发;例如,UTF-8输入流中的NUL字节(值0)", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_JUNK_AFTER_DOC_ELEMENT": "文档元素之后出现了除空格之外的其他内容", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_MISPLACED_XML_PI": "在除了输入数据的开始之外的某处发现了XML声明", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_NO_ELEMENTS": "文档不包含元素(XML要求所有文档只包含一个顶级元素)", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_NO_MEMORY": "Expat无法在内部分配内存", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_PARAM_ENTITY_REF": "发现不允许参数实体引用的位置", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_PARTIAL_CHAR": "在输入中找到不完整的字符", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_RECURSIVE_ENTITY_REF": "实体引用包含对同一实体的另一引用;可能通过不同的名称,并且可能间接", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_SYNTAX": "遇到一些未指定的语法错误", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_TAG_MISMATCH": "结束标记与最内部的开始标记不匹配", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_UNCLOSED_TOKEN": "某些令牌(例如开始标签)在流结束或遇到下一个令牌之前未关闭", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_UNDEFINED_ENTITY": "引用未定义的实体", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_UNKNOWN_ENCODING": "Expat不支持文档编码", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_UNCLOSED_CDATA_SECTION": "未关闭标有CDATA的部分", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_NOT_STANDALONE": "解析器确定文档不是“独立”,尽管它声明自己在XML声明中,并且设置了NotStandaloneHandler并返回0", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_FEATURE_REQUIRES_XML_DTD": "需要操作,需要编译DTD支持,但是在没有DTD支持的情况下配置了Expat", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_CANT_CHANGE_FEATURE_ONCE_PARSING": "在解析开始后请求行为更改,只能在解析开始前更改", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_UNBOUND_PREFIX": "", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_UNDECLARING_PREFIX": "该文档试图删除与前缀相关联的名称空间声明", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_INCOMPLETE_PE": "参数实体包含不完整标记", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_XML_DECL": "文档根本没有文档元素", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_TEXT_DECL": "解析外部实体中的文本声明时出错", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_PUBLICID": "在公共ID中找到不允许的字符", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_SUSPENDED": "请求的操作是在已暂停的解析器上进行的,但不允许", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_NOT_SUSPENDED": "当解析器未被挂起时,尝试恢复解析器", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_ABORTED": "这不应该报告给Python应用程序", "pyexpat.html#xml.parsers.expat.errors.XML_ERROR_FINISHED": "所请求的操作是在已完成解析输入的解析器上进行的,但不允许", "py_compile.html#py_compile.compile": "将源文件编译为字节代码并写出字节代码高速缓存文件", "py_compile.html#py_compile.main": "编译几个源文件", "quopri.html#quopri.decode": "解码输入文件的内容,并将生成的解码二进制数据写入输出文件", "quopri.html#quopri.encode": "编码输入文件的内容,并将生成的可引用数据写入输出文件", "quopri.html#quopri.decodestring": "类似于decode(),除了它接受源bytes并返回对应的解码的bytes", "quopri.html#quopri.encodestring": "像encode(),除了它接受源bytes并返回相应的编码的bytes", "random.html#random.seed": "初始化生成器的随机数", "random.html#random.getstate": "返回捕获生成器的当前内部状态的对象", "random.html#random.setstate": "状态应该从先前对getstate()的调用获得,并且setstate()将生成器的内部状态恢复为是在当时getstate()被调用", "random.html#random.getrandbits": "返回一个 k 位(bit) 的随机整数(译者注:如k=8,返回8bit范围内的随机数,即0-255的随机数)该方法与MersenneTwister生成器一起提供,并且一些其他生成器也可以将其提供为API的可选部分", "random.html#random.randrange": "从range(start, stop, step)返回一个start到end范围内的随机整数(译者注:start,end,step都是整数,不包含end),可以指定step", "random.html#random.randint": "返回一个随机整数N,a <= N <= b", "random.html#random.choice": "从非空序列seq返回一个随机元素", "random.html#random.shuffle": "原地搅乱序列x", "random.html#random.sample": "返回从群体序列或集合中选择的唯一元素的k长度列表", "random.html#random.random": "返回下一个在范围 [0", "random.html#random.uniform": "Return a random floating point number N such that a <= N <= b for a <= b and b <= N <= a for b < a", "random.html#random.triangular": "返回随机浮点数 N 使得 low <= N <= high", "random.html#random.betavariate": "Beta分布", "random.html#random.expovariate": "指数分布", "random.html#random.gammavariate": "伽玛分布", "random.html#random.gauss": "高斯分布", "random.html#random.lognormvariate": "对数正态分布", "random.html#random.normalvariate": "正态分布", "random.html#random.vonmisesvariate": "mu is the mean angle, expressed in radians between 0 and 2*pi, and kappa is the concentration parameter, which must be greater than or equal to zero", "random.html#random.paretovariate": "帕累托分布", "random.html#random.weibullvariate": "Weibull分布", "re.html#re.compile": "将正则表达式模式编译成正则表达式对象,其 match() 和 search() 方法可用于匹配,描述如下", "re.html#re.search": "顺序扫描 string ,寻找正则表达式 pattern 产生匹配的第一个位置,并返回相应的 match object", "re.html#re.match": "若在 string 起始位置的0个或多个字符匹配正则表达式 pattern,返回相应的 match object", "re.html#re.fullmatch": "如果整个字符串匹配正则表达式pattern,则返回相应的match object", "re.html#re.split": "根据pattern的出现拆分字符串", "re.html#re.findall": "返回字符串中pattern的所有非重叠匹配项作为字符串列表", "re.html#re.finditer": "在字符串中的RE 模式的所有非重叠匹配中返回产生match objects的iterator", "re.html#re.sub": "将string中最左侧非重叠出现的pattern替换为repl,返回所获得的字符串", "re.html#re.subn": "执行与sub()相同的操作,但返回一个元组(new_string, number_of_subs_made)", "re.html#re.escape": "转义模式中除ASCII字母、数字和'_'之外的所有字符", "re.html#re.purge": "清除正则表达式缓存", "re.html#re.A": "让 \\w, \\W, \\b, \\B, \\d, \\D, \\s and \\S 执行纯 ASCII 匹配,而不是全部Unicode匹配(译注:因为Unicode中存在多国文字页面,所以上述字符存在多个码点,作用相同而二进制不同)", "re.html#re.DEBUG": "显示关于编译表达式的调试信息", "re.html#re.I": "执行不区分大小写的匹配;如[A-Z]也会匹配小写字母", "re.html#re.L": "Make \\w,\\W,\\b,\\B,\\s和\\S取决于当前的语言环境", "re.html#re.M": "指定时,模式字符'^'匹配字符串的开头和每行的开始处(紧跟在每个换行符后面);和模式字符'$'匹配字符串的末尾和每行的末尾(紧接在每个换行符的前面)", "re.html#re.S": "制作'", "re.html#re.X": "该标志允许您编写正则表达式,通过允许您在视觉上分离模式的逻辑部分并添加注释,该正则表达式看起来更好,并且更易读", "readline.html#readline.parse_and_bind": "执行string参数中提供的init行", "readline.html#readline.read_init_file": "执行readline初始化文件", "readline.html#readline.get_line_buffer": "返回行缓冲区的当前内容(rl_line_buffer在底层库中)", "readline.html#readline.insert_text": "在光标位置的行缓冲区中插入文本", "readline.html#readline.redisplay": "更改屏幕上显示的内容以反映行缓冲区的当前内容", "readline.html#readline.read_history_file": "加载阅读历史记录文件,并将其附加到历史记录列表", "readline.html#readline.write_history_file": "将历史记录列表保存到阅读历史记录文件,覆盖任何现有文件", "readline.html#readline.append_history_file": "将最后的nelements项目追加到文件中", "readline.html#readline.get_history_length": "设置或返回要保存在历史记录文件中的所需行数", "readline.html#readline.clear_history": "清除当前历史记录", "readline.html#readline.get_current_history_length": "返回当前在历史记录中的项目数", "readline.html#readline.get_history_item": "返回索引的历史记录项目的当前内容", "readline.html#readline.remove_history_item": "从历史记录中删除其位置指定的历史记录项", "readline.html#readline.replace_history_item": "用行替换其位置指定的历史记录项", "readline.html#readline.add_history": "将行附加到历史记录缓冲区,就好像它是最后一行键入的", "readline.html#readline.set_startup_hook": "设置或删除由底层库的rl_startup_hook回调调用的函数", "readline.html#readline.set_pre_input_hook": "设置或删除由底层库的rl_pre_input_hook回调调用的函数", "readline.html#readline.set_completer": "设置或删除完成器功能", "readline.html#readline.get_completer": "获取完成器函数,或None如果未设置完成器函数", "readline.html#readline.get_begidx": "获取完成范围的开始或结束索引", "readline.html#readline.set_completion_display_matches_hook": "设置或删除完成显示功能", "reprlib.html#reprlib.repr": "这是aRepr的repr()方法", "reprlib.html#reprlib.recursive_repr": "装饰器用于检测同一线程中的递归调用的__repr__()方法", "reprlib.html#reprlib.aRepr": "这是 repr 用来提供如下所述的 repr() 函数的一个实例", "resource.html#resource.getrlimit": "使用资源的当前软和硬限制返回元组(软, 硬) 如果底层系统调用意外失败,则引发ValueError(如果指定了无效资源)或error", "resource.html#resource.setrlimit": "设置资源的新限制", "resource.html#resource.prlimit": "在一个函数中组合setrlimit()和getrlimit(),并支持获取和设置任意进程的资源限制", "resource.html#resource.getrusage": "此函数返回描述由当前进程或其子进程消耗的资源的对象,由who参数指定", "resource.html#resource.getpagesize": "返回系统页面中的字节数", "resource.html#resource.RLIM_INFINITY": "常量用于表示无限资源的限制", "resource.html#resource.RLIMIT_CORE": "当前进程可以创建的核心文件的最大大小(以字节为单位)", "resource.html#resource.RLIMIT_CPU": "进程可以使用的最大处理器时间量(以秒为单位)", "resource.html#resource.RLIMIT_FSIZE": "进程可能创建的文件的最大大小", "resource.html#resource.RLIMIT_DATA": "进程堆的最大大小(以字节为单位)", "resource.html#resource.RLIMIT_STACK": "当前进程的调用堆栈的最大大小(以字节为单位)", "resource.html#resource.RLIMIT_RSS": "应该为进程提供的最大驻留集大小", "resource.html#resource.RLIMIT_NPROC": "", "resource.html#resource.RLIMIT_NOFILE": "当前进程的打开文件描述器的最大数量", "resource.html#resource.RLIMIT_OFILE": "RLIMIT_NOFILE的BSD名称", "resource.html#resource.RLIMIT_MEMLOCK": "可以在内存中锁定的最大地址空间", "resource.html#resource.RLIMIT_VMEM": "过程可能占用的映射内存的最大区域", "resource.html#resource.RLIMIT_AS": "进程可能占用的地址空间的最大区域(以字节为单位)", "resource.html#resource.RLIMIT_MSGQUEUE": "可分配给POSIX消息队列的字节数", "resource.html#resource.RLIMIT_NICE": "进程的最高级别的水平(计算为20 - rlim_cur)", "resource.html#resource.RLIMIT_RTPRIO": "实时优先级的上限", "resource.html#resource.RLIMIT_RTTIME": "进程可以在实时调度下花费的CPU时间的时间限制(以微秒为单位),而不会阻塞系统调用", "resource.html#resource.RLIMIT_SIGPENDING": "进程可能排队的信号数", "resource.html#resource.RLIMIT_SBSIZE": "此用户的套接字缓冲区使用的最大大小(以字节为单位)", "resource.html#resource.RLIMIT_SWAP": "可由此用户ID的所有进程保留或使用的交换空间的最大大小(以字节为单位)", "resource.html#resource.RLIMIT_NPTS": "此用户ID创建的伪终端的最大数量", "resource.html#resource.RUSAGE_SELF": "传递到getrusage()以请求调用进程消耗的资源,这是进程中的所有线程使用的资源的总和", "resource.html#resource.RUSAGE_CHILDREN": "传递到getrusage()以请求已终止并等待的调用进程的子进程消耗的资源", "resource.html#resource.RUSAGE_BOTH": "Pass to getrusage() to request resources consumed by both the current process and child processes", "resource.html#resource.RUSAGE_THREAD": "传递到getrusage()以请求当前线程使用的资源", "runpy.html#runpy.run_module": "执行指定模块的代码,并返回结果模块全局字典", "runpy.html#runpy.run_path": "在指定的文件系统位置执行代码,并返回结果模块全局字典", "select.html#select.devpoll": "(仅在Solaris和衍生产品上受支持", "select.html#select.epoll": "(仅在Linux 2", "select.html#select.poll": "(不受所有操作系统支持", "select.html#select.kqueue": "(仅在BSD上支持", "select.html#select.kevent": "(仅在BSD上支持", "select.html#select.select": "这是Unix select()系统调用的简单接口", "shelve.html#shelve.open": "打开持久性字典", "shlex.html#shlex.split": "使用类shell语法拆分字符串s", "shlex.html#shlex.quote": "返回字符串s的shell转义版本", "shutil.html#shutil.copyfileobj": "将类似文件的对象fsrc的内容复制到类似文件的对象fdst", "shutil.html#shutil.copyfile": "将名为src的文件的内容(无元数据)复制到名为dst的文件,然后返回dst", "shutil.html#shutil.copymode": "将权限位从src复制到dst", "shutil.html#shutil.copystat": "将权限位,最后访问时间,上次修改时间和标志从src复制到dst", "shutil.html#shutil.copy": "将文件src复制到文件或目录dst", "shutil.html#shutil.copy2": "与copy()相同,但copy2()也尝试保留所有文件元数据", "shutil.html#shutil.ignore_patterns": "此工厂函数创建一个函数,可用作copytree()的忽略参数的可调用函数,忽略与glob类型模式", "shutil.html#shutil.copytree": "递归地复制以src为根的整个目录树,返回目标目录", "shutil.html#shutil.rmtree": "删除整个目录树; 路径必须指向目录(而不是指向目录的符号链接)", "shutil.html#shutil.move": "递归地将文件或目录(src)移动到另一个位置(dst),并返回目标", "shutil.html#shutil.disk_usage": "将给定路径的磁盘使用情况统计信息作为named tuple返回总计,使用和免费是总的,已用和可用空间的量,以字节为单位", "shutil.html#shutil.chown": "更改给定路径的所有者用户和/或组", "shutil.html#shutil.which": "返回可执行文件的路径,如果给定的cmd被调用,它将运行", "shutil.html#shutil.make_archive": "创建归档文件(例如zip或tar)并返回其名称", "shutil.html#shutil.get_archive_formats": "返回支持的归档格式列表", "shutil.html#shutil.register_archive_format": "为格式名称注册档案库", "shutil.html#shutil.unregister_archive_format": "从支持的格式列表中删除归档格式名称", "shutil.html#shutil.unpack_archive": "分拆归档", "shutil.html#shutil.register_unpack_format": "注册分拆格式", "shutil.html#shutil.unregister_unpack_format": "取消注册分拆格式", "shutil.html#shutil.get_unpack_formats": "返回分拆的所有注册格式的列表", "shutil.html#shutil.get_terminal_size": "获取终端窗口的大小", "signal.html#signal.alarm": "如果时间不为零,则此功能请求在时间秒内将SIGALRM信号发送到过程", "signal.html#signal.getsignal": "返回信号signalnum的当前信号处理程序", "signal.html#signal.pause": "使该过程睡眠直到接收到信号;那么将调用适当的处理程序", "signal.html#signal.pthread_kill": "将信号signalnum发送到线程thread_id,这是与调用者相同的进程中的另一个线程", "signal.html#signal.pthread_sigmask": "获取和/或更改调用线程的信号掩码", "signal.html#signal.setitimer": "设置由指定的给定间隔定时器(signal", "signal.html#signal.getitimer": "返回由指定的给定间隔定时器的当前值,其中", "signal.html#signal.set_wakeup_fd": "将唤醒文件描述器设置为fd", "signal.html#signal.siginterrupt": "更改系统呼叫重新启动行为:如果标志为False,系统呼叫将在由信号signalnum中断时重新启动,否则系统呼叫将中断", "signal.html#signal.signal": "将信号signalnum的处理程序设置为处理程序", "signal.html#signal.sigpending": "检查等待传递到调用线程的信号集合(即,在阻塞时已经产生的信号)", "signal.html#signal.sigwait": "挂起调用线程的执行,直到发送信号集sigset中指定的信号之一", "signal.html#signal.sigwaitinfo": "挂起调用线程的执行,直到发送信号集sigset中指定的信号之一", "signal.html#signal.sigtimedwait": "像sigwaitinfo(),但是需要一个额外的超时参数指定超时", "signal.html#signal.SIG_DFL": "这是两个标准信号处理选项之一;它将简单地执行信号的默认功能", "signal.html#signal.SIG_IGN": "这是另一个标准信号处理程序,它将简单地忽略给定的信号", "signal.html#signal.CTRL_C_EVENT": "对应于Ctrl+C击键事件的信号", "signal.html#signal.CTRL_BREAK_EVENT": "对应于Ctrl+Break击键事件的信号", "signal.html#signal.NSIG": "一个多于最高信号数的数", "signal.html#signal.ITIMER_REAL": "实时递减间隔定时器,并在到期时递送SIGALRM", "signal.html#signal.ITIMER_VIRTUAL": "仅在进程正在执行时减少间隔定时器,并在到期时传递SIGVTALRM", "signal.html#signal.ITIMER_PROF": "递减间隔定时器,当进程执行时和系统代表进程执行时", "signal.html#signal.SIG_BLOCK": "如何参数到pthread_sigmask()的可能值,表示要阻止信号", "signal.html#signal.SIG_UNBLOCK": "如何参数到pthread_sigmask()的可能值,表示要解除阻塞信号", "signal.html#signal.SIG_SETMASK": "如何参数到pthread_sigmask()的可能值,表示要替换信号掩码", "site.html#site.main": "将所有标准站点特定目录添加到模块搜索路径", "site.html#site.addsitedir": "将目录添加到sys", "site.html#site.getsitepackages": "返回一个包含所有全局site-packages目录的列表", "site.html#site.getuserbase": "返回用户基本目录USER_BASE的路径", "site.html#site.getusersitepackages": "返回用户特定的site-packages目录USER_SITE的路径", "site.html#site.PREFIXES": "site-packages目录的前缀列表", "site.html#site.ENABLE_USER_SITE": "标志显示用户site-packages目录的状态", "sndhdr.html#sndhdr.what": "使用whathdr()确定存储在文件filename中的声音数据类型", "sndhdr.html#sndhdr.whathdr": "基于文件头确定存储在文件中的声音数据的类型", "socket.html#socket.socket": "使用给定的地址族、套接字类型和协议号创建一个新的套接字", "socket.html#socket.socketpair": "使用所给的地址族,套接字类型和协议号创建一对已连接的socket 对象", "socket.html#socket.create_connection": "连接到监听网络地址(一个2-tuple(host,port)),然后返回`socket`对象", "socket.html#socket.fromfd": "复制文件描述符fd(由文件对象的fileno()方法返回的整数),并根据结果构建一个套接字对象", "socket.html#socket.fromshare": "使用从`socket", "socket.html#socket.getaddrinfo": "将 host/port 参数转换为一个5元组序列,其中包含创建连接到该服务的套接字的所有必要参数", "socket.html#socket.getfqdn": "Return a fully qualified domain name for name", "socket.html#socket.gethostbyname": "将主机名转换为IPv4地址格式", "socket.html#socket.gethostbyname_ex": "Translate a host name to IPv4 address format, extended interface", "socket.html#socket.gethostname": "Return a string containing the hostname of the machine where the Python interpreter is currently executing", "socket.html#socket.gethostbyaddr": "Return a triple (hostname, aliaslist, ipaddrlist) where hostname is the primary host name responding to the given ip_address, aliaslist is a (possibly empty) list of alternative host names for the same address, and ipaddrlist is a list of IPv4/v6 addresses for the same interface on the same host (most likely containing only a single address)", "socket.html#socket.getnameinfo": "Translate a socket address sockaddr into a 2-tuple (host, port)", "socket.html#socket.getprotobyname": "Translate an Internet protocol name (for example, 'icmp') to a constant suitable for passing as the (optional) third argument to the socket() function", "socket.html#socket.getservbyname": "Translate an Internet service name and protocol name to a port number for that service", "socket.html#socket.getservbyport": "Translate an Internet port number and protocol name to a service name for that service", "socket.html#socket.ntohl": "将32位正整数从网络字节顺序转换为主机字节顺序", "socket.html#socket.ntohs": "Convert 16-bit positive integers from network to host byte order", "socket.html#socket.htonl": "Convert 32-bit positive integers from host to network byte order", "socket.html#socket.htons": "Convert 16-bit positive integers from host to network byte order", "socket.html#socket.inet_aton": "Convert an IPv4 address from dotted-quad string format (for example, ‘123", "socket.html#socket.inet_ntoa": "Convert a 32-bit packed IPv4 address (a bytes-like object four bytes in length) to its standard dotted-quad string representation (for example, ‘123", "socket.html#socket.inet_pton": "将IP地址从其特定类型的字符串格式转换为压缩的二进制格式", "socket.html#socket.inet_ntop": "Convert a packed IP address (a bytes-like object of some number of bytes) to its standard, family-specific string representation (for example, '7", "socket.html#socket.CMSG_LEN": "Return the total length, without trailing padding, of an ancillary data item with associated data of the given length", "socket.html#socket.CMSG_SPACE": "Return the buffer size needed for recvmsg() to receive an ancillary data item with associated data of the given length, along with any trailing padding", "socket.html#socket.getdefaulttimeout": "返回新套接字对象的默认超时值(以秒为单位)(浮点数)", "socket.html#socket.setdefaulttimeout": "为新的套接字对象设置默认超时(以秒为单位)(float)", "socket.html#socket.sethostname": "将计算机的主机名设置为名称", "socket.html#socket.if_nameindex": "Return a list of network interface information (index int, name string) tuples", "socket.html#socket.if_nametoindex": "Return a network interface index number corresponding to an interface name", "socket.html#socket.if_indextoname": "Return a network interface name corresponding to an interface index number", "socket.html#socket.AF_UNIX": "这些常量表示地址(和协议)族,用于 socket() 的第一个参数", "socket.html#socket.SOCK_STREAM": "这些常量表示套接字类型,用于 socket() 的第二个参数", "socket.html#socket.SOCK_CLOEXEC": "这两个常量(如果已定义)可以与套接字类型结合使用,并允许你以原子方式设置一些标志(从而避免可能的竞争条件和需要单独调用)", "socket.html#socket.AF_CAN": "Many constants of these forms, documented in the Linux documentation, are also defined in the socket module", "socket.html#socket.CAN_BCM": "CAN_BCM, in the CAN protocol family, is the broadcast manager (BCM) protocol", "socket.html#socket.CAN_RAW_FD_FRAMES": "Enables CAN FD support in a CAN_RAW socket", "socket.html#socket.AF_RDS": "Many constants of these forms, documented in the Linux documentation, are also defined in the socket module", "socket.html#socket.AF_LINK": "Availability: BSD, OSX", "socket.html#socket.has_ipv6": "This constant contains a boolean value which indicates if IPv6 is supported on this platform", "socket.html#socket.BDADDR_ANY": "These are string constants containing Bluetooth addresses with special meanings", "socket.html#socket.HCI_FILTER": "For use with BTPROTO_HCI", "socket.html#socket.SocketType": "这是一个代表socket对象类型的Python类型对象", "spwd.html#spwd.getspnam": "返回给定用户名的影子密码数据库条目", "spwd.html#spwd.getspall": "以任意顺序返回所有可用shadow密码数据库条目的列表", "sqlite3.html#sqlite3.connect": "打开到SQLite数据库文件database的连接", "sqlite3.html#sqlite3.register_converter": "注册可调用对象用来将来自数据库的bytestring转换成为自定义的Python类型", "sqlite3.html#sqlite3.register_adapter": "注册可调用对象用来将自定义的 Python 类型type转换为 SQLite 的支持的类型", "sqlite3.html#sqlite3.complete_statement": "如果字符串sql包含一个或多个以分号结束的完整的SQL语句则返回True", "sqlite3.html#sqlite3.enable_callback_tracebacks": "默认情况下你不会在用户定义的函数、 聚合、 转换器、 授权者回调等地方得到回溯对象(调用栈对象)", "sqlite3.html#sqlite3.version": "该模块的字符串形式的版本号", "sqlite3.html#sqlite3.version_info": "该模块的整数元组形式的版本号", "sqlite3.html#sqlite3.sqlite_version": "运行期SQLite库的版本号,字符串形式", "sqlite3.html#sqlite3.sqlite_version_info": "运行期SQLite库的版本号,整数元组形式", "sqlite3.html#sqlite3.PARSE_DECLTYPES": "该常量用于connect()函数的detect_types参数", "sqlite3.html#sqlite3.PARSE_COLNAMES": "该常量用于connect()函数的detect_types参数", "ssl.html#ssl.wrap_socket": "Takes an instance sock of socket", "ssl.html#ssl.create_default_context": "Return a new SSLContext object with default settings for the given purpose", "ssl.html#ssl.RAND_bytes": "Return num cryptographically strong pseudo-random bytes", "ssl.html#ssl.RAND_pseudo_bytes": "Return (bytes, is_cryptographic): bytes are num pseudo-random bytes, is_cryptographic is True if the bytes generated are cryptographically strong", "ssl.html#ssl.RAND_status": "Return True if the SSL pseudo-random number generator has been seeded with ‘enough’ randomness, and False otherwise", "ssl.html#ssl.RAND_egd": "If you are running an entropy-gathering daemon (EGD) somewhere, and path is the pathname of a socket connection open to it, this will read 256 bytes of randomness from the socket, and add it to the SSL pseudo-random number generator to increase the security of generated secret keys", "ssl.html#ssl.RAND_add": "Mix the given bytes into the SSL pseudo-random number generator", "ssl.html#ssl.match_hostname": "Verify that cert (in decoded format as returned by SSLSocket", "ssl.html#ssl.cert_time_to_seconds": "Return the time in seconds since the Epoch, given the cert_time string representing the “notBefore” or “notAfter” date from a certificate in "%b %d %H:%M:%S %Y %Z" strptime format (C locale)", "ssl.html#ssl.get_server_certificate": "Given the address addr of an SSL-protected server, as a (hostname, port-number) pair, fetches the server’s certificate, and returns it as a PEM-encoded string", "ssl.html#ssl.DER_cert_to_PEM_cert": "Given a certificate as a DER-encoded blob of bytes, returns a PEM-encoded string version of the same certificate", "ssl.html#ssl.PEM_cert_to_DER_cert": "Given a certificate as an ASCII PEM string, returns a DER-encoded sequence of bytes for that same certificate", "ssl.html#ssl.get_default_verify_paths": "Returns a named tuple with paths to OpenSSL’s default cafile and capath", "ssl.html#ssl.enum_certificates": "Retrieve certificates from Windows’ system cert store", "ssl.html#ssl.enum_crls": "Retrieve CRLs from Windows’ system cert store", "ssl.html#ssl.CERT_NONE": "Possible value for SSLContext", "ssl.html#ssl.CERT_OPTIONAL": "Possible value for SSLContext", "ssl.html#ssl.CERT_REQUIRED": "Possible value for SSLContext", "ssl.html#ssl.VERIFY_DEFAULT": "Possible value for SSLContext", "ssl.html#ssl.VERIFY_CRL_CHECK_LEAF": "Possible value for SSLContext", "ssl.html#ssl.VERIFY_CRL_CHECK_CHAIN": "Possible value for SSLContext", "ssl.html#ssl.VERIFY_X509_STRICT": "Possible value for SSLContext", "ssl.html#ssl.VERIFY_X509_TRUSTED_FIRST": "Possible value for SSLContext", "ssl.html#ssl.PROTOCOL_SSLv23": "Selects the highest protocol version that both the client and server support", "ssl.html#ssl.PROTOCOL_SSLv2": "Selects SSL version 2 as the channel encryption protocol", "ssl.html#ssl.PROTOCOL_SSLv3": "Selects SSL version 3 as the channel encryption protocol", "ssl.html#ssl.PROTOCOL_TLSv1": "Selects TLS version 1", "ssl.html#ssl.PROTOCOL_TLSv1_1": "Selects TLS version 1", "ssl.html#ssl.PROTOCOL_TLSv1_2": "使用TLSv1", "ssl.html#ssl.OP_ALL": "Enables workarounds for various bugs present in other SSL implementations", "ssl.html#ssl.OP_NO_SSLv2": "Prevents an SSLv2 connection", "ssl.html#ssl.OP_NO_SSLv3": "Prevents an SSLv3 connection", "ssl.html#ssl.OP_NO_TLSv1": "Prevents a TLSv1 connection", "ssl.html#ssl.OP_NO_TLSv1_1": "Prevents a TLSv1", "ssl.html#ssl.OP_NO_TLSv1_2": "Prevents a TLSv1", "ssl.html#ssl.OP_CIPHER_SERVER_PREFERENCE": "Use the server’s cipher ordering preference, rather than the client’s", "ssl.html#ssl.OP_SINGLE_DH_USE": "Prevents re-use of the same DH key for distinct SSL sessions", "ssl.html#ssl.OP_SINGLE_ECDH_USE": "Prevents re-use of the same ECDH key for distinct SSL sessions", "ssl.html#ssl.OP_NO_COMPRESSION": "Disable compression on the SSL channel", "ssl.html#ssl.HAS_ALPN": "Whether the OpenSSL library has built-in support for the Application-Layer Protocol Negotiation TLS extension as described in RFC 7301", "ssl.html#ssl.HAS_ECDH": "Whether the OpenSSL library has built-in support for Elliptic Curve-based Diffie-Hellman key exchange", "ssl.html#ssl.HAS_SNI": "Whether the OpenSSL library has built-in support for the Server Name Indication extension (as defined in RFC 4366)", "ssl.html#ssl.HAS_NPN": "Whether the OpenSSL library has built-in support for Next Protocol Negotiation as described in the NPN draft specification", "ssl.html#ssl.CHANNEL_BINDING_TYPES": "List of supported TLS channel binding types", "ssl.html#ssl.OPENSSL_VERSION": "The version string of the OpenSSL library loaded by the interpreter:", "ssl.html#ssl.OPENSSL_VERSION_INFO": "A tuple of five integers representing version information about the OpenSSL library:", "ssl.html#ssl.OPENSSL_VERSION_NUMBER": "The raw version number of the OpenSSL library, as a single integer:", "ssl.html#ssl.ALERT_DESCRIPTION_HANDSHAKE_FAILURE": "Alert Descriptions from RFC 5246 and others", "ssl.html#ssl.Purpose.SERVER_AUTH": "Option for create_default_context() and SSLContext", "ssl.html#ssl.Purpose.CLIENT_AUTH": "Option for create_default_context() and SSLContext", "stat.html#stat.S_ISDIR": "如果mode来自一个目录,返回非零", "stat.html#stat.S_ISCHR": "如果mode来自特殊的字符设备文件,返回非零", "stat.html#stat.S_ISBLK": "如果mode来自特殊的块设备文件,返回非零", "stat.html#stat.S_ISREG": "如果mode来自一个正常的文件,返回非零", "stat.html#stat.S_ISFIFO": "如果mode来自FIFO(命名管道),返回非零", "stat.html#stat.S_ISLNK": "如果mode来自一个符号链接,返回非零", "stat.html#stat.S_ISSOCK": "如果mode来自一个套接字,返回非零", "stat.html#stat.S_ISDOOR": "如果模式是从门返回非零", "stat.html#stat.S_ISPORT": "如果模式来自事件端口,则返回非零", "stat.html#stat.S_ISWHT": "如果模式来自白光,返回非零", "stat.html#stat.S_IMODE": "返回可以由os", "stat.html#stat.S_IFMT": "返回描述文件类型的文件模式部分(由上面的S_IS*()函数使用)", "stat.html#stat.filemode": "将文件的模式转换为格式为'-rwxrwxrwx'的字符串", "stat.html#stat.ST_MODE": "inode 保护模式", "stat.html#stat.ST_INO": "inode 节点号", "stat.html#stat.ST_DEV": "inode 驻留的设备", "stat.html#stat.ST_NLINK": "inode 的链接数", "stat.html#stat.ST_UID": "所有者的用户ID", "stat.html#stat.ST_GID": "所有者的组ID", "stat.html#stat.ST_SIZE": "一个普通文件的字节大小;等待某些特殊文件的数据量", "stat.html#stat.ST_ATIME": "上次访问的时间", "stat.html#stat.ST_MTIME": "最后一次修改的时间", "stat.html#stat.ST_CTIME": "由操作系统报告的"ctime"", "stat.html#stat.S_IFSOCK": "套接字", "stat.html#stat.S_IFLNK": "符号链接", "stat.html#stat.S_IFREG": "常规文件", "stat.html#stat.S_IFBLK": "块设备", "stat.html#stat.S_IFDIR": "目录", "stat.html#stat.S_IFCHR": "字符设备", "stat.html#stat.S_IFIFO": "先进先出", "stat.html#stat.S_IFDOOR": "门", "stat.html#stat.S_IFPORT": "事件端口", "stat.html#stat.S_IFWHT": "Whiteout", "stat.html#stat.S_ISUID": "设置 UID 位", "stat.html#stat.S_ISGID": "设置组 ID 位", "stat.html#stat.S_ISVTX": "粘滞位", "stat.html#stat.S_IRWXU": "文件所有者权限掩码", "stat.html#stat.S_IRUSR": "所有者拥有读取权限", "stat.html#stat.S_IWUSR": "所有者具有写入权限", "stat.html#stat.S_IXUSR": "所有者具有执行权限", "stat.html#stat.S_IRWXG": "组权限掩码", "stat.html#stat.S_IRGRP": "组具有读取权限", "stat.html#stat.S_IWGRP": "组具有写入权限", "stat.html#stat.S_IXGRP": "组具有执行权限", "stat.html#stat.S_IRWXO": "其他人(不在组中的人)的权限掩码", "stat.html#stat.S_IROTH": "其他人具有读取权限", "stat.html#stat.S_IWOTH": "其他人具有写入权限", "stat.html#stat.S_IXOTH": "其他人具有执行权限", "stat.html#stat.S_ENFMT": "V 系统文件锁定的执法行动", "stat.html#stat.S_IREAD": "S_IRUSR的Unix V7同义词", "stat.html#stat.S_IWRITE": "S_IWUSR的Unix V7同义词", "stat.html#stat.S_IEXEC": "S_IXUSR的Unix V7同义词", "stat.html#stat.UF_NODUMP": "不转储文件", "stat.html#stat.UF_IMMUTABLE": "该文件不能更改", "stat.html#stat.UF_APPEND": "该文件可能只被追加到", "stat.html#stat.UF_OPAQUE": "该目录是不透明的通过联盟的堆栈查看时", "stat.html#stat.UF_NOUNLINK": "该文件可能不能重命名或删除", "stat.html#stat.UF_COMPRESSED": "该文件存储压缩 (Mac OS X 10", "stat.html#stat.UF_HIDDEN": "该文件不应显示在GUI中(Mac OS X 10", "stat.html#stat.SF_ARCHIVED": "该文件可能被存档", "stat.html#stat.SF_IMMUTABLE": "该文件不能更改", "stat.html#stat.SF_APPEND": "该文件可能只被追加到", "stat.html#stat.SF_NOUNLINK": "该文件可能不能重命名或删除", "stat.html#stat.SF_SNAPSHOT": "该文件是一个快照文件", "stat.html#stat.FILE_ATTRIBUTE_ARCHIVE": "版本3", "statistics.html#statistics.mean": "返回数据的样本算术平均值,实数值的序列或迭代器", "statistics.html#statistics.median": "使用常用的“中间两个平均值”方法返回数值数据的中值(中间值)", "statistics.html#statistics.median_low": "返回数值数据的低中位数", "statistics.html#statistics.median_high": "返回数据的高中位数", "statistics.html#statistics.median_grouped": "使用内插法返回分组连续数据的中值,计算为第50个百分位数", "statistics.html#statistics.mode": "从离散或标称数据返回最常用的数据点", "statistics.html#statistics.pstdev": "返回总体标准差(总体方差的平方根)", "statistics.html#statistics.pvariance": "返回数据的总体方差,实数值的非空迭代", "statistics.html#statistics.stdev": "返回样本标准偏差(样本方差的平方根)", "statistics.html#statistics.variance": "返回数据的样本方差,这是至少两个实数值的迭代", "string.html#string.capwords": "使用str", "string.html#string.ascii_letters": "与此级联(即包含)的 ascii_lowercase 和 ascii_uppercase 描述见下文", "string.html#string.ascii_lowercase": "小写字母 'abcdefghijklmnopqrstuvwxyz'", "string.html#string.ascii_uppercase": "大写字母 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'", "string.html#string.digits": "字符串 '0123456789'", "string.html#string.hexdigits": "字符串 '0123456789abcdefABCDEF'", "string.html#string.octdigits": "字符串'01234567'", "string.html#string.punctuation": "在 C语言 中被定义为ASCII 字符的字符集合而成的字符串", "string.html#string.printable": "被定义为printable的ASCII 字符集合而成的字符串,这是一个包含了 位数, ascii字符, 标点符号, 和空格", "string.html#string.whitespace": "包含所有ASCII中可当作空白的字符集合而成的字符串", "stringprep.html#stringprep.in_table_a1": "确定代码是否在表A", "stringprep.html#stringprep.in_table_b1": "确定代码是否在表B", "stringprep.html#stringprep.map_table_b2": "根据表B", "stringprep.html#stringprep.map_table_b3": "根据表B", "stringprep.html#stringprep.in_table_c11": "确定代码是否在表C", "stringprep.html#stringprep.in_table_c12": "确定代码是否在表C", "stringprep.html#stringprep.in_table_c11_c12": "确定代码是否在表C1(空间字符,C", "stringprep.html#stringprep.in_table_c21": "确定代码是否在表C", "stringprep.html#stringprep.in_table_c22": "确定代码是否在表C", "stringprep.html#stringprep.in_table_c21_c22": "确定代码是否在表C", "stringprep.html#stringprep.in_table_c3": "确定代码是否在表C3(私人使用)中", "stringprep.html#stringprep.in_table_c4": "确定代码是否在表C", "stringprep.html#stringprep.in_table_c5": "确定代码是否在表C5(代理代码)中", "stringprep.html#stringprep.in_table_c6": "确定代码是否在表C", "stringprep.html#stringprep.in_table_c7": "确定代码是否在表C", "stringprep.html#stringprep.in_table_c8": "确定代码是否在表C", "stringprep.html#stringprep.in_table_c9": "确定代码是否在表C", "stringprep.html#stringprep.in_table_d1": "确定代码是否在表D", "stringprep.html#stringprep.in_table_d2": "确定代码是否在表D", "struct.html#struct.pack": "Return a bytes object containing the values v1, v2, ", "struct.html#struct.pack_into": "根据格式字符串fmt封装值v1,v2,并将压缩字节写入可写缓冲区缓冲区从位置偏移开始", "struct.html#struct.unpack": "从缓冲器缓冲器分离(假定由pack(fmt, ", "struct.html#struct.unpack_from": "根据格式字符串fmt从缓冲区开始分离偏移", "struct.html#struct.iter_unpack": "根据格式字符串fmt从缓冲区缓冲区中迭代分离", "struct.html#struct.calcsize": "返回对应于格式字符串的结构(以及由此产生的pack(fmt, ", "subprocess.html#subprocess.run": "运行args描述的命令", "subprocess.html#subprocess.call": "执行args 描述的命令", "subprocess.html#subprocess.check_call": "执行带参数的命令", "subprocess.html#subprocess.check_output": "使用参数运行命令并返回其输出", "subprocess.html#subprocess.getstatusoutput": "返回在shell中执行cmd的(status, output)", "subprocess.html#subprocess.getoutput": "返回在shell中执行cmd的输出(标准输出和标准错误)", "subprocess.html#subprocess.DEVNULL": "可用作Popen的stdin、stdout或stderr参数的特殊值,指示将使用os", "subprocess.html#subprocess.PIPE": "可用作Popen的stdin、stdout或stderr参数的特殊值,表示应打开相应标准流的管道", "subprocess.html#subprocess.STDOUT": "可用作Popen的stderr参数的特殊值,表示标准错误应与标准输出放在同一句柄中", "subprocess.html#subprocess.STD_INPUT_HANDLE": "标准输入设备", "subprocess.html#subprocess.STD_OUTPUT_HANDLE": "标准输出设备", "subprocess.html#subprocess.STD_ERROR_HANDLE": "标准错误设备", "subprocess.html#subprocess.SW_HIDE": "隐藏窗口", "subprocess.html#subprocess.STARTF_USESTDHANDLES": "表示STARTUPINFO", "subprocess.html#subprocess.STARTF_USESHOWWINDOW": "表示STARTUPINFO", "subprocess.html#subprocess.CREATE_NEW_CONSOLE": "新的进程将具有一个新的控制台,而不是继承它父进程的控制台(默认行为)", "subprocess.html#subprocess.CREATE_NEW_PROCESS_GROUP": "一个Popen creationflags参数,以指定将创建一个新进程组", "sunau.html#sunau.open": "如果文件是字符串,请按该名称打开该文件,否则将其视为可搜索的类文件对象", "sunau.html#sunau.openfp": "为维持向后兼容性的open()的同义词", "sunau.html#sunau.AUDIO_FILE_MAGIC": "每个有效的Sun AU文件的整数开始,以big-endian形式存储", "sunau.html#sunau.AUDIO_FILE_ENCODING_MULAW_8": "此模块支持的AU头中的编码字段的值", "sunau.html#sunau.AUDIO_FILE_ENCODING_FLOAT": "来自AU头的编码字段的其他已知值,但不受此模块支持", "symbol.html#symbol.sym_name": "将此模块中定义的常量的数字值映射回名称字符串的字典,从而允许生成更加人性化的解析树表示", "symtable.html#symtable.symtable": "返回对于Python源代码代码的toplevel SymbolTable", "sys.html#sys.call_tracing": "在跟踪启用时调用func(*args)", "sys.html#sys._clear_type_cache": "清除内部类型缓存", "sys.html#sys._current_frames": "返回一个字典,该函数被调用时,将每个线程的标识符映射到当前在该线程中处于活动状态的最上面的堆栈帧", "sys.html#sys._debugmallocstats": "打印低级别信息以了解CPython内存分配器的状态", "sys.html#sys.displayhook": "如果值不是None,则此函数将repr(value)打印到sys", "sys.html#sys.excepthook": "这个函数打印出一个给定的回溯和例外情况给sys", "sys.html#sys.exc_info": "这个函数返回一个包含三个值的元组,该元组提供有关当前正在处理的异常的信息", "sys.html#sys.exit": "从Python退出", "sys.html#sys.getallocatedblocks": "不管大小如何,都返回当前由解释器分配的内存块数量", "sys.html#sys.getcheckinterval": "返回解释器的“检查间隔”;请参阅setcheckinterval()", "sys.html#sys.getdefaultencoding": "返回Unicode实现使用的当前默认字符串编码的名称", "sys.html#sys.getdlopenflags": "返回用于dlopen()调用的标志的当前值", "sys.html#sys.getfilesystemencoding": "返回用于将Unicode文件名转换为系统文件名的编码名称", "sys.html#sys.getrefcount": "返回对象的引用计数", "sys.html#sys.getrecursionlimit": "返回递归限制的当前值,即Python解释器堆栈的最大深度", "sys.html#sys.getsizeof": "以字节为单位返回对象的大小", "sys.html#sys.getswitchinterval": "返回解释器的“线程切换间隔”;请参阅setswitchinterval()", "sys.html#sys._getframe": "从调用堆栈中返回一个框架对象", "sys.html#sys.getprofile": "Get the profiler function as set by setprofile()", "sys.html#sys.gettrace": "获取由settrace()设置的跟踪函数", "sys.html#sys.getwindowsversion": "返回描述当前正在运行的Windows版本的命名元组", "sys.html#sys.get_coroutine_wrapper": "返回None,或由set_coroutine_wrapper()设置的包装器", "sys.html#sys.intern": "在“interned”字符串表中输入字符串,并返回字符串 - 字符串本身或副本", "sys.html#sys.is_finalizing": "如果Python解释器shutting down,则返回True,否则返回False", "sys.html#sys.setcheckinterval": "设置解释器的“检查间隔”", "sys.html#sys.setdlopenflags": "设置解释器用于dlopen()调用的标志,例如当解释器加载扩展模块时", "sys.html#sys.setrecursionlimit": "将Python解释器堆栈的最大深度设置为limit", "sys.html#sys.setswitchinterval": "设置解释器的线程切换间隔(以秒为单位)", "sys.html#sys.settrace": "设置系统的跟踪功能,它允许你在Python中实现一个Python源代码调试器", "sys.html#sys.settscdump": "如果on_flag为真,则使用Pentium时间戳计数器激活VM测量结果的转储", "sys.html#sys.set_coroutine_wrapper": "Allows intercepting creation of coroutine objects (only ones that are created by an async def function; generators decorated with types", "sys.html#sys.abiflags": "在使用标准configure脚本构建Python的POSIX系统上,它包含由 PEP 3149指定的ABI标志", "sys.html#sys.argv": "传递给Python脚本的命令行参数列表", "sys.html#sys.base_exec_prefix": "在Python启动过程中,在site", "sys.html#sys.base_prefix": "在Python启动过程中,在site", "sys.html#sys.byteorder": "本地字节顺序的指示符", "sys.html#sys.builtin_module_names": "一个字符串元组,给出了编译到这个Python解释器中的所有模块的名称", "sys.html#sys.copyright": "包含与Python解释器相关的版权的字符串", "sys.html#sys.dllhandle": "整数指定Python DLL的句柄", "sys.html#sys.dont_write_bytecode": "如果这是真的,Python将不会尝试在导入源模块时编写", "sys.html#sys.__displayhook__": "这些对象在程序开始时包含displayhook和excepthook的原始值", "sys.html#sys.exec_prefix": "一个字符串,其中给出了特定于站点的目录前缀,其中安装了与平台相关的Python文件;默认情况下,这也是'/usr/local'", "sys.html#sys.executable": "一个字符串,给出Python解释器的可执行二进制文件的绝对路径,在这种情况下是合理的", "sys.html#sys.flags": "struct sequence flags暴露了命令行标志的状态", "sys.html#sys.float_info": "包含关于浮点类型信息的struct sequence", "sys.html#sys.float_repr_style": "一个字符串,指示repr()函数如何为浮点操作", "sys.html#sys.hash_info": "给出数字散列实现参数的struct sequence", "sys.html#sys.hexversion": "版本号编码为单个整数", "sys.html#sys.implementation": "包含有关当前正在运行的Python解释器的实现信息的对象", "sys.html#sys.int_info": "一个struct sequence,它包含关于Python内部整数表示的信息", "sys.html#sys.__interactivehook__": "当该属性存在时,当解释器以interactive mode启动时,它的值会自动调用(不带参数)", "sys.html#sys.last_type": "这三个变量并不总是被定义的;它们在未处理异常时设置,并且解释器打印错误消息和堆栈回溯", "sys.html#sys.maxsize": "一个给出最大值的整数是一个Py_ssize_t类型的变量", "sys.html#sys.maxunicode": "一个给出最大Unicode码点值的整数,即1114111(0x10FFFF,十六进制)", "sys.html#sys.meta_path": "调用其find_spec()方法的meta path finder对象的列表,以查看其中一个对象是否可以找到要导入的模块", "sys.html#sys.modules": "这是一个将模块名称映射到已经加载的模块的字典", "sys.html#sys.path": "指定模块搜索路径的字符串列表", "sys.html#sys.path_hooks": "可以使用路径参数尝试为路径创建finder的可调用列表", "sys.html#sys.path_importer_cache": "作为finder对象缓存的字典", "sys.html#sys.platform": "例如,该字符串包含一个平台标识符,可用于将特定于平台的组件附加到sys", "sys.html#sys.prefix": "一个字符串,它给出了特定于站点的目录前缀,其中安装了与平台无关的Python文件;默认情况下,这是字符串'/usr/local'", "sys.html#sys.ps1": "指定解释器的主要和次要提示的字符串", "sys.html#sys.stdin": "解释器用于标准输入,输出和错误的File objects:", "sys.html#sys.__stdin__": "这些对象在程序开始时包含stdin,stderr和stdout的原始值", "sys.html#sys.thread_info": "包含关于线程实现的信息的struct sequence", "sys.html#sys.tracebacklimit": "当此变量设置为整数值时,它确定发生未处理的异常时打印的追溯信息的最大级别数", "sys.html#sys.version": "一个字符串,其中包含Python解释器的版本号以及所使用的内部版本号和编译器的附加信息", "sys.html#sys.api_version": "此解释器的C API版本", "sys.html#sys.version_info": "一个包含版本号五个组成部分的元组:major、minor、micro、releaselevel和serial", "sys.html#sys.warnoptions": "这是警告框架的实施细节;不要修改这个值", "sys.html#sys.winver": "用于在Windows平台上形成注册表项的版本号", "sys.html#sys._xoptions": "通过-X命令行选项传递的各种实现特定标志的字典", "sysconfig.html#sysconfig.get_config_vars": "没有参数,返回与当前平台相关的所有配置变量的字典", "sysconfig.html#sysconfig.get_config_var": "返回单个变量名称的值", "sysconfig.html#sysconfig.get_scheme_names": "返回包含sysconfig中当前支持的所有方案的元组", "sysconfig.html#sysconfig.get_path_names": "返回包含当前在sysconfig中支持的所有路径名的元组", "sysconfig.html#sysconfig.get_path": "从名为方案的安装方案中返回与路径名称对应的安装路径", "sysconfig.html#sysconfig.get_paths": "返回包含与安装方案对应的所有安装路径的字典", "sysconfig.html#sysconfig.get_python_version": "将MAJOR", "sysconfig.html#sysconfig.get_platform": "返回一个标识当前平台的字符串", "sysconfig.html#sysconfig.is_python_build": "如果当前Python安装是从源代码构建的,则返回True", "sysconfig.html#sysconfig.parse_config_h": "解析config", "sysconfig.html#sysconfig.get_config_h_filename": "返回pyconfig", "sysconfig.html#sysconfig.get_makefile_filename": "返回Makefile的路径", "syslog.html#syslog.syslog": "将字符串消息发送到系统记录器", "syslog.html#syslog.openlog": "可以通过调用openlog()来设置后续syslog()调用的日志记录选项", "syslog.html#syslog.closelog": "重置系统日志模块值并调用系统库closelog()", "syslog.html#syslog.setlogmask": "将优先级掩码设置为maskpri,并返回上一个掩码值", "tabnanny.html#tabnanny.check": "如果file_or_dir是目录而不是符号链接,则递归下降由file_or_dir命名的目录树,检查所有", "tabnanny.html#tabnanny.tokeneater": "此函数由check()用作函数tokenize", "tabnanny.html#tabnanny.verbose": "指示是否打印详细消息的标志", "tabnanny.html#tabnanny.filename_only": "指示是否仅打印包含空格相关问题的文件的文件名的标志", "tarfile.html#tarfile.open": "为路径名名称返回TarFile对象", "tarfile.html#tarfile.is_tarfile": "返回True如果名称是tar存档文件,tarfile模块可以读取", "tarfile.html#tarfile.ENCODING": "Windows上的默认字符编码:'utf-8'否则为sys", "tarfile.html#tarfile.USTAR_FORMAT": "POSIX", "tarfile.html#tarfile.GNU_FORMAT": "GNU tar格式", "tarfile.html#tarfile.PAX_FORMAT": "POSIX", "tarfile.html#tarfile.DEFAULT_FORMAT": "用于创建归档的默认格式", "tempfile.html#tempfile.TemporaryFile": "返回一个类文件对象以提供临时的数据存储空间", "tempfile.html#tempfile.NamedTemporaryFile": "此函数与TemporaryFile()完全一样,除了文件保证在文件系统中有一个可见的名称(在Unix上,目录项没有取消链接)", "tempfile.html#tempfile.SpooledTemporaryFile": "This function operates exactly as TemporaryFile() does, except that data is spooled in memory until the file size exceeds max_size, or until the file’s fileno() method is called, at which point the contents are written to disk and operation proceeds as with TemporaryFile()", "tempfile.html#tempfile.TemporaryDirectory": "此函数使用与mkdtemp()相同的规则安全地创建临时目录", "tempfile.html#tempfile.mkstemp": "以最安全的方式创建临时文件", "tempfile.html#tempfile.mkdtemp": "以最安全的方式创建临时目录", "tempfile.html#tempfile.gettempdir": "返回用于临时文件的目录的名称", "tempfile.html#tempfile.gettempdirb": "与gettempdir()相同,但返回值以字节为单位", "tempfile.html#tempfile.gettempprefix": "返回用于创建临时文件的文件名前缀", "tempfile.html#tempfile.gettempprefixb": "与gettempprefix()相同,但返回值以字节为单位", "tempfile.html#tempfile.mktemp": "从版本2", "tempfile.html#tempfile.tempdir": "当设置为除None之外的值时,此变量为此模块中定义的所有函数定义dir参数的默认值", "termios.html#termios.tcgetattr": "Return a list containing the tty attributes for file descriptor fd, as follows: [iflag, oflag, cflag, lflag, ispeed, ospeed, cc] where cc is a list of the tty special characters (each a string of length 1, except the items with indices VMIN and VTIME, which are integers when these fields are defined)", "termios.html#termios.tcsetattr": "从属性中设置文件描述器fd的tty属性,这是像tcgetattr()返回的列表", "termios.html#termios.tcsendbreak": "发送休息描述器fd", "termios.html#termios.tcdrain": "等待直到所有写入文件描述器fd的输出被发送", "termios.html#termios.tcflush": "舍弃队列中的数据描述器fd", "termios.html#termios.tcflow": "暂停或继续输入或输出到文件描述器fd", "test.html#test.support.forget": "从sys", "test.html#test.support.is_resource_enabled": "如果资源已启用并可用,则返回True", "test.html#test.support.requires": "引发ResourceDenied如果资源不可用", "test.html#test.support.findfile": "返回到名为filename的文件的路径", "test.html#test.support.run_unittest": "执行传递给函数的unittest", "test.html#test.support.run_doctest": "在给定的模块上运行doctest", "test.html#test.support.check_warnings": "warnings", "test.html#test.support.captured_stdin": "使用io", "test.html#test.support.temp_dir": "在路径创建临时目录并生成目录的上下文管理器", "test.html#test.support.change_cwd": "临时将当前工作目录更改为路径并生成目录的上下文管理器", "test.html#test.support.temp_cwd": "临时创建新目录并更改当前工作目录(CWD)的上下文管理器", "test.html#test.support.temp_umask": "临时设置进程umask的上下文管理器", "test.html#test.support.can_symlink": "如果操作系统支持符号链接,则返回True,否则返回False", "test.html#test.support.skip_unless_symlink": "一个装饰器,用于运行需要支持符号链接的测试", "test.html#test.support.anticipate_failure": "有条件地使用unittest", "test.html#test.support.run_with_locale": "装饰器,用于在不同的场所运行功能,在完成后正确地重置它", "test.html#test.support.make_bad_fd": "通过打开和关闭临时文件,并返回其描述器,创建一个无效的文件描述器", "test.html#test.support.import_module": "此函数导入并返回指定的模块", "test.html#test.support.import_fresh_module": "此函数通过在执行导入之前从sys", "test.html#test.support.bind_port": "将套接字绑定到一个空闲端口并返回端口号", "test.html#test.support.find_unused_port": "返回应该适合绑定的未使用端口", "test.html#test.support.load_package_tests": "通用实现用于测试包的unittest load_tests协议", "test.html#test.support.verbose": "True时启用详细输出", "test.html#test.support.is_jython": "True如果正在运行的解释器是Jython", "test.html#test.support.TESTFN": "设置为可安全用作临时文件名称的名称", "textwrap.html#textwrap.wrap": "将单个段落包含在text(一个字符串)中,以使每行最多width个字符长", "textwrap.html#textwrap.fill": "将单个段落包含在文本中,并返回包含包装段落的单个字符串", "textwrap.html#textwrap.shorten": "折叠并截断给定的文本以适合给定的宽度", "textwrap.html#textwrap.dedent": "从文本中的每一行中删除任何常见的前导空格", "textwrap.html#textwrap.indent": "将前缀添加到文本中选定行的开头", "threading.html#threading.active_count": "返回当前处于alive状态的Thread对象的个数", "threading.html#threading.current_thread": "返回当前的Thread对象,对应于调用者控制的线程", "threading.html#threading.get_ident": "返回当前线程的'线程标识符'", "threading.html#threading.enumerate": "返回当前活着的Thread对象的列表", "threading.html#threading.main_thread": "返回主 Thread 对象", "threading.html#threading.settrace": "为所有从threading模块启动的线程设置一个跟踪函数", "threading.html#threading.setprofile": "为所有从threading模块启动的线程设置一个profile函数", "threading.html#threading.stack_size": "返回创建新的线程时该线程使用的栈的大小", "threading.html#threading.TIMEOUT_MAX": "这个 timeout参数表示阻塞函数 (Lock", "time.html#time.asctime": "将表示由gmtime()或localtime()返回的时间的元组或struct_time转换为以下形式的字符串:'Sun Jun 20 23:21:05 1993' ", "time.html#time.clock": "在Unix上,返回当前处理器时间,以浮点数表示,以秒为单位", "time.html#time.clock_getres": "返回指定时钟clk_id的分辨率(精度)", "time.html#time.clock_gettime": "返回指定时钟clk_id的时间", "time.html#time.clock_settime": "设置指定时钟clk_id的时间", "time.html#time.ctime": "将从纪元开始以秒表示的时间转换为表示本地时间的字符串", "time.html#time.get_clock_info": "获取指定时钟作为命名空间对象的信息", "time.html#time.gmtime": "将从纪元开始以秒表示的时间转换为UTC中的struct_time,其中dst标志始终为零", "time.html#time.localtime": "像gmtime()但转换为本地时间", "time.html#time.mktime": "这是localtime()的反函数", "time.html#time.monotonic": "返回单调时钟的值(以分秒为单位),即一个不能倒退的时钟", "time.html#time.perf_counter": "返回性能计数器的值(以分数秒为单位),即具有最高可用分辨率的时钟来测量短持续时间", "time.html#time.process_time": "返回当前进程的系统和用户CPU时间之和的值(以分数秒为单位)", "time.html#time.sleep": "在给定的秒数内挂起调用线程的执行", "time.html#time.strftime": "将表示由gmtime()或localtime()返回的时间的元组或struct_time转换为由格式指定的字符串参数", "time.html#time.strptime": "根据格式解析表示时间的字符串", "time.html#time.time": "以秒为单位返回作为浮点数的时间", "time.html#time.tzset": "重置库例程使用的时间转换规则", "time.html#time.altzone": "默认情况返回一个以秒为单位UTC的本地DST时区偏移量,如果本地DST时区在UTC的东部(如在西欧,包括英国),则为负", "time.html#time.CLOCK_HIGHRES": "Solaris OS具有CLOCK_HIGHRES定时器,该定时器尝试使用最佳硬件源,并且可以提供接近纳秒的分辨率", "time.html#time.CLOCK_MONOTONIC": "无法设置的时钟,表示自某些未指定的起点后的单调时间", "time.html#time.CLOCK_MONOTONIC_RAW": "类似于CLOCK_MONOTONIC,但提供对不受NTP调整的基于硬件的原始时间的访问", "time.html#time.CLOCK_PROCESS_CPUTIME_ID": "来自CPU的高分辨率每进程定时器", "time.html#time.CLOCK_REALTIME": "系统级实时时钟", "time.html#time.CLOCK_THREAD_CPUTIME_ID": "线程特定的CPU时钟", "time.html#time.daylight": "如果定义了DST时区,则为非零", "time.html#time.timezone": "本地(非DST)时区的偏移量,以UTC以内的秒为单位(西欧大部分地区为负,美国为正,英国为零)", "time.html#time.tzname": "两个字符串的元组:第一个是本地非DST时区的名称,第二个是本地DST时区的名称", "timeit.html#timeit.timeit": "用给定的statement,setup代码和timer函数创建一个Timer实例,然后运行它的timeit()方法执行number指定的次数", "timeit.html#timeit.repeat": "用给定的statement,setup代码和timer函数创建一个Timer实例,并循环运行repeat()方法直到repeat指定的计数,每次计数中代码运行number指定的执行次数", "timeit.html#timeit.default_timer": "默认计时器,始终为time", "tkinter.html#tkinter.Tcl": "Tcl() 函数是一个工厂函数,创造了一个像那样 Tk 类创建的对象,除了它不会初始化Tk 子系统", "tkinter.html#tkinter.READABLE": "在掩码参数中使用的常量", "token.html#token.ISTERMINAL": "对终端令牌值返回true", "token.html#token.ISNONTERMINAL": "对非终端令牌值返回true", "token.html#token.ISEOF": "如果x是指示输入结束的标记,则返回true", "token.html#token.tok_name": "将此模块中定义的常量的数字值映射回名称字符串的字典,从而允许生成更加人性化的解析树表示", "token.html#token.ENDMARKER": "在3", "tokenize.html#tokenize.tokenize": "tokenize()生成器需要一个参数readline,它必须是一个可调用对象,它提供与io", "tokenize.html#tokenize.untokenize": "将令牌转换回Python源代码", "tokenize.html#tokenize.detect_encoding": "detect_encoding()函数用于检测应用于解码Python源文件的编码", "tokenize.html#tokenize.open": "使用由detect_encoding()检测到的编码以只读模式打开文件", "tokenize.html#tokenize.COMMENT": "用于表示注释的令牌值", "tokenize.html#tokenize.NL": "用于表示非终止换行符的令牌值", "tokenize.html#tokenize.ENCODING": "表示用于将源字节解码为文本的编码的令牌值", "traceback.html#traceback.print_tb": "如果limit为正,则从跟踪对象tb打印限制堆栈跟踪条目", "traceback.html#traceback.print_exception": "从追踪对象tb到文件中打印异常信息和堆栈跟踪条目", "traceback.html#traceback.print_exc": "这是print_exception(* sys", "traceback.html#traceback.print_last": "这是print_exception(sys", "traceback.html#traceback.print_stack": "如果limit为正,则打印到limit堆栈跟踪条目(从调用点开始)", "traceback.html#traceback.extract_tb": "返回从追溯对象tb提取的“预处理”堆栈跟踪条目的列表", "traceback.html#traceback.extract_stack": "从当前堆栈帧提取原始追溯", "traceback.html#traceback.format_list": "给定由extract_tb()或extract_stack()返回的元组列表,返回一个准备打印的字符串列表", "traceback.html#traceback.format_exception_only": "格式化回溯的异常部分", "traceback.html#traceback.format_exception": "格式化堆栈跟踪和异常信息", "traceback.html#traceback.format_exc": "这类似于print_exc(limit)但返回一个字符串,而不是打印到文件", "traceback.html#traceback.format_tb": "format_list(extract_tb(tb, limit))的简写", "traceback.html#traceback.format_stack": "format_list(extract_stack(f, limit))的简写", "traceback.html#traceback.clear_frames": "通过调用每个帧对象的clear()方法,清除回溯tb中所有堆栈帧的局部变量", "traceback.html#traceback.walk_stack": "从给定帧中跟踪f", "traceback.html#traceback.walk_tb": "在tb_next之后执行回溯,得到每个帧的帧和行号", "tracemalloc.html#tracemalloc.clear_traces": "清除Python分配的内存块的痕迹", "tracemalloc.html#tracemalloc.get_object_traceback": "获取分配了Python对象obj的traceback", "tracemalloc.html#tracemalloc.get_traceback_limit": "获取跟踪的回溯中存储的最大帧数", "tracemalloc.html#tracemalloc.get_traced_memory": "以tracemalloc模块作为元组获取由其跟踪的内存块的当前大小和峰值大小:(current: int, peak: int)", "tracemalloc.html#tracemalloc.get_tracemalloc_memory": "获取用于存储内存块的跟踪的tracemalloc模块的内存使用情况(以字节为单位)", "tracemalloc.html#tracemalloc.is_tracing": "True如果tracemalloc模块正在跟踪Python内存分配,则False", "tracemalloc.html#tracemalloc.start": "开始跟踪Python内存分配:在Python内存分配器上安装钩子", "tracemalloc.html#tracemalloc.stop": "停止跟踪Python内存分配:卸载Python内存分配器上的钩子", "tracemalloc.html#tracemalloc.take_snapshot": "对由Python分配的内存块的痕迹进行快照", "tty.html#tty.setraw": "将文件描述器fd的模式更改为raw", "tty.html#tty.setcbreak": "将文件描述器fd的模式更改为cbreak", "turtle.html#turtle.forward": "按照指定的距离将龟向前移动", "turtle.html#turtle.back": "Move the turtle backward by distance, opposite to the direction the turtle is headed", "turtle.html#turtle.right": "Turn turtle right by angle units", "turtle.html#turtle.left": "Turn turtle left by angle units", "turtle.html#turtle.goto": "If y is None, x must be a pair of coordinates or a Vec2D (e", "turtle.html#turtle.setx": "Set the turtle’s first coordinate to x, leave second coordinate unchanged", "turtle.html#turtle.sety": "Set the turtle’s second coordinate to y, leave first coordinate unchanged", "turtle.html#turtle.setheading": "Set the orientation of the turtle to to_angle", "turtle.html#turtle.home": "Move turtle to the origin – coordinates (0,0) – and set its heading to its start-orientation (which depends on the mode, see mode())", "turtle.html#turtle.circle": "用给定的半径绘制一个圆圈", "turtle.html#turtle.dot": "Draw a circular dot with diameter size, using color", "turtle.html#turtle.stamp": "Stamp a copy of the turtle shape onto the canvas at the current turtle position", "turtle.html#turtle.clearstamp": "Delete stamp with given stampid", "turtle.html#turtle.clearstamps": "Delete all or first/last n of turtle’s stamps", "turtle.html#turtle.undo": "Undo (repeatedly) the last turtle action(s)", "turtle.html#turtle.speed": "Set the turtle’s speed to an integer value in the range 0", "turtle.html#turtle.position": "Return the turtle’s current location (x,y) (as a Vec2D vector)", "turtle.html#turtle.towards": "Return the angle between the line from turtle position to position specified by (x,y), the vector or the other turtle", "turtle.html#turtle.xcor": "Return the turtle’s x coordinate", "turtle.html#turtle.ycor": "Return the turtle’s y coordinate", "turtle.html#turtle.heading": "Return the turtle’s current heading (value depends on the turtle mode, see mode())", "turtle.html#turtle.distance": "Return the distance from the turtle to (x,y), the given vector, or the given other turtle, in turtle step units", "turtle.html#turtle.degrees": "Set angle measurement units, i", "turtle.html#turtle.radians": "Set the angle measurement units to radians", "turtle.html#turtle.pendown": "Pull the pen down – drawing when moving", "turtle.html#turtle.penup": "Pull the pen up – no drawing when moving", "turtle.html#turtle.pensize": "Set the line thickness to width or return it", "turtle.html#turtle.pen": "Return or set the pen’s attributes in a “pen-dictionary” with the following key/value pairs:", "turtle.html#turtle.isdown": "Return True if pen is down, False if it’s up", "turtle.html#turtle.pencolor": "Return or set the pencolor", "turtle.html#turtle.fillcolor": "Return or set the fillcolor", "turtle.html#turtle.color": "Return or set pencolor and fillcolor", "turtle.html#turtle.filling": "Return fillstate (True if filling, False else)", "turtle.html#turtle.begin_fill": "To be called just before drawing a shape to be filled", "turtle.html#turtle.end_fill": "Fill the shape drawn after the last call to begin_fill()", "turtle.html#turtle.reset": "Delete the turtle’s drawings from the screen, re-center the turtle and set variables to the default values", "turtle.html#turtle.clear": "Delete the turtle’s drawings from the screen", "turtle.html#turtle.write": "Write text - the string representation of arg - at the current turtle position according to align (“left”, “center” or right”) and with the given font", "turtle.html#turtle.hideturtle": "Make the turtle invisible", "turtle.html#turtle.showturtle": "Make the turtle visible", "turtle.html#turtle.isvisible": "Return True if the Turtle is shown, False if it’s hidden", "turtle.html#turtle.shape": "Set turtle shape to shape with given name or, if name is not given, return name of current shape", "turtle.html#turtle.resizemode": "Set resizemode to one of the values: “auto”, “user”, “noresize”", "turtle.html#turtle.shapesize": "Return or set the pen’s attributes x/y-stretchfactors and/or outline", "turtle.html#turtle.shearfactor": "Set or return the current shearfactor", "turtle.html#turtle.tilt": "Rotate the turtleshape by angle from its current tilt-angle, but do not change the turtle’s heading (direction of movement)", "turtle.html#turtle.settiltangle": "Rotate the turtleshape to point in the direction specified by angle, regardless of its current tilt-angle", "turtle.html#turtle.tiltangle": "Set or return the current tilt-angle", "turtle.html#turtle.shapetransform": "Set or return the current transformation matrix of the turtle shape", "turtle.html#turtle.get_shapepoly": "Return the current shape polygon as tuple of coordinate pairs", "turtle.html#turtle.onclick": "Bind fun to mouse-click events on this turtle", "turtle.html#turtle.onrelease": "Bind fun to mouse-button-release events on this turtle", "turtle.html#turtle.ondrag": "Bind fun to mouse-move events on this turtle", "turtle.html#turtle.begin_poly": "Start recording the vertices of a polygon", "turtle.html#turtle.end_poly": "Stop recording the vertices of a polygon", "turtle.html#turtle.get_poly": "Return the last recorded polygon", "turtle.html#turtle.clone": "Create and return a clone of the turtle with same position, heading and turtle properties", "turtle.html#turtle.getturtle": "Return the Turtle object itself", "turtle.html#turtle.getscreen": "Return the TurtleScreen object the turtle is drawing on", "turtle.html#turtle.setundobuffer": "Set or disable undobuffer", "turtle.html#turtle.undobufferentries": "Return number of entries in the undobuffer", "turtle.html#turtle.bgcolor": "Set or return background color of the TurtleScreen", "turtle.html#turtle.bgpic": "Set background image or return name of current backgroundimage", "turtle.html#turtle.screensize": "If no arguments are given, return current (canvaswidth, canvasheight)", "turtle.html#turtle.setworldcoordinates": "Set up user-defined coordinate system and switch to mode “world” if necessary", "turtle.html#turtle.delay": "Set or return the drawing delay in milliseconds", "turtle.html#turtle.tracer": "打开/关闭乌龟动画并为更新图纸设置延迟", "turtle.html#turtle.update": "Perform a TurtleScreen update", "turtle.html#turtle.listen": "Set focus on TurtleScreen (in order to collect key-events)", "turtle.html#turtle.onkey": "Bind fun to key-release event of key", "turtle.html#turtle.onkeypress": "Bind fun to key-press event of key if key is given, or to any key-press-event if no key is given", "turtle.html#turtle.ontimer": "Install a timer that calls fun after t milliseconds", "turtle.html#turtle.mainloop": "开始事件循环 - 调用Tkinter的mainloop函数", "turtle.html#turtle.textinput": "Pop up a dialog window for input of a string", "turtle.html#turtle.numinput": "Pop up a dialog window for input of a number", "turtle.html#turtle.mode": "Set turtle mode (“standard”, “logo” or “world”) and perform reset", "turtle.html#turtle.colormode": "返回colormode或将其设置为1", "turtle.html#turtle.getcanvas": "Return the Canvas of this TurtleScreen", "turtle.html#turtle.getshapes": "Return a list of names of all currently available turtle shapes", "turtle.html#turtle.register_shape": "There are three different ways to call this function:", "turtle.html#turtle.turtles": "Return the list of turtles on the screen", "turtle.html#turtle.window_height": "Return the height of the turtle window", "turtle.html#turtle.window_width": "Return the width of the turtle window", "turtle.html#turtle.bye": "Shut the turtlegraphics window", "turtle.html#turtle.exitonclick": "Bind bye() method to mouse clicks on the Screen", "turtle.html#turtle.setup": "Set the size and position of the main window", "turtle.html#turtle.title": "Set title of turtle window to titlestring", "turtle.html#turtle.write_docstringdict": "Create and write docstring-dictionary to a Python script with the given filename", "types.html#types.new_class": "使用适当的元类动态创建类对象", "types.html#types.prepare_class": "计算适当的元类并创建类命名空间", "types.html#types.DynamicClassAttribute": "将类的路由属性访问权限授予__getattr__", "types.html#types.coroutine": "此函数将generator函数转换为coroutine function,返回基于生成器的协程", "types.html#types.FunctionType": "由lambda表达式创建的用户定义函数和函数的类型", "types.html#types.GeneratorType": "由生成器函数创建的generator - 类型对象", "types.html#types.CoroutineType": "由async def函数创建的coroutine对象的类型", "types.html#types.CodeType": "由compile()返回的代码对象的类型", "types.html#types.MethodType": "methodtype", "types.html#types.BuiltinFunctionType": "内建函数的类型如len()或sys", "types.html#types.TracebackType": "跟踪对象的类型,例如在sys", "types.html#types.FrameType": "如tb", "types.html#types.GetSetDescriptorType": "在扩展模块中使用PyGetSetDef定义的对象类型,例如FrameType", "types.html#types.MemberDescriptorType": "在扩展模块中使用PyMemberDef定义的对象类型,例如datetime", "typing.html#typing.NamedTuple": "namedtuple的类型化版本", "typing.html#typing.cast": "将值转换为类型", "typing.html#typing.get_type_hints": "返回函数或方法对象的类型提示", "typing.html#typing.no_type_check": "装饰器来指示注解不是类型提示", "typing.html#typing.no_type_check_decorator": "装饰器给另一个装饰器no_type_check()效果", "unicodedata.html#unicodedata.lookup": "通过一个名称来查找字符", "unicodedata.html#unicodedata.name": "返回分配给字符chr的名称作为字符串", "unicodedata.html#unicodedata.decimal": "将分配给字符chr的十进制值作为整数返回", "unicodedata.html#unicodedata.digit": "将分配给字符chr的数字值作为整数返回", "unicodedata.html#unicodedata.numeric": "返回分配给字符chr的数值为float", "unicodedata.html#unicodedata.category": "将分配给字符chr的一般类别返回为字符串", "unicodedata.html#unicodedata.bidirectional": "以字符串形式返回分配给字符chr的双向类", "unicodedata.html#unicodedata.combining": "返回分配给字符chr的规范组合类作为整数", "unicodedata.html#unicodedata.east_asian_width": "将分配给字符chr的东亚宽度返回为字符串", "unicodedata.html#unicodedata.mirrored": "将分配给字符chr的镜像属性返回为整数", "unicodedata.html#unicodedata.decomposition": "以字符串形式返回分配给字符chr的字符分解映射", "unicodedata.html#unicodedata.normalize": "返回Unicode字符串unistr的form规范形式", "unicodedata.html#unicodedata.unidata_version": "此模块中使用的Unicode数据库的版本", "unicodedata.html#unicodedata.ucd_3_2_0": "这是一个与整个模块具有相同方法的对象,但对于需要此特定版本的Unicode数据库(例如IDNA)的应用程序,则使用Unicode数据库版本3", "unittest.html#unittest.skip": "Unconditionally skip the decorated test", "unittest.html#unittest.skipIf": "Skip the decorated test if condition is true", "unittest.html#unittest.skipUnless": "Skip the decorated test unless condition is true", "unittest.html#unittest.expectedFailure": "Mark the test as an expected failure", "unittest.html#unittest.main": "A command-line program that loads a set of tests from module and runs them; this is primarily for making test modules conveniently executable", "unittest.html#unittest.installHandler": "Install the control-c handler", "unittest.html#unittest.registerResult": "Register a TestResult object for control-c handling", "unittest.html#unittest.removeResult": "Remove a registered result", "unittest.html#unittest.removeHandler": "When called without arguments this function removes the control-c handler if it has been installed", "unittest.html#unittest.defaultTestLoader": "Instance of the TestLoader class intended to be shared", "unittest.mock.html#unittest.mock.patch": "patch() acts as a function decorator, class decorator or a context manager", "unittest.mock.html#unittest.mock.patch.object": "patch the named member (attribute) on an object (target) with a mock object", "unittest.mock.html#unittest.mock.patch.dict": "Patch a dictionary, or dictionary like object, and restore the dictionary to its original state after the test", "unittest.mock.html#unittest.mock.patch.multiple": "Perform multiple patches in a single call", "unittest.mock.html#unittest.mock.patch.stopall": "Stop all active patches", "unittest.mock.html#unittest.mock.call": "call() is a helper object for making simpler assertions, for comparing with call_args, call_args_list, mock_calls and method_calls", "unittest.mock.html#unittest.mock.create_autospec": "Create a mock object using another object as a spec", "unittest.mock.html#unittest.mock.mock_open": "A helper function to create a mock to replace the use of open()", "unittest.mock.html#unittest.mock.sentinel": "The sentinel object provides a convenient way of providing unique objects for your tests", "unittest.mock.html#unittest.mock.DEFAULT": "The DEFAULT object is a pre-created sentinel (actually sentinel", "urllib.parse.html#urllib.parse.urlparse": "将URL解析为六个部分,返回一个6元组", "urllib.parse.html#urllib.parse.parse_qs": "解析作为字符串参数(application / x-www-form-urlencoded类型的数据)提供的查询字符串", "urllib.parse.html#urllib.parse.parse_qsl": "解析作为字符串参数(application / x-www-form-urlencoded类型的数据)提供的查询字符串", "urllib.parse.html#urllib.parse.urlunparse": "从urlparse()返回的元组构造一个URL", "urllib.parse.html#urllib.parse.urlsplit": "这类似于urlparse(),但不会从URL中分离参数", "urllib.parse.html#urllib.parse.urlunsplit": "将urlsplit()返回的元组元素合并为一个完整的URL作为字符串", "urllib.parse.html#urllib.parse.urljoin": "通过将“基本网址”(基本)与另一个网址(url)组合,构造完整(“绝对”)网址", "urllib.parse.html#urllib.parse.urldefrag": "如果url包含片段标识符,则返回没有片段标识符的url的修改版本,片段标识符作为单独的字符串", "urllib.parse.html#urllib.parse.quote": "使用%xx转义替换string中的特殊字符", "urllib.parse.html#urllib.parse.quote_plus": "类似quote(),但是用加号替换空格,在转义HTML表单值来构建查询字符串以进入URL时,这是必需的", "urllib.parse.html#urllib.parse.quote_from_bytes": "像quote(),但接受bytes对象而不是str,并且不执行字符串到字节编码", "urllib.parse.html#urllib.parse.unquote": "将%xx转义替换为等效的单字符", "urllib.parse.html#urllib.parse.unquote_plus": "类似于unquote(),但是也可以用空格替换加号,这是不需要引用HTML表单值的", "urllib.parse.html#urllib.parse.unquote_to_bytes": "Replace %xx escapes by their single-octet equivalent, and return a bytes object", "urllib.parse.html#urllib.parse.urlencode": "将映射对象或两元素元组序列,可以包含str或字节对象,转换为百分号编码的ASCII文本字符串", "urllib.request.html#urllib.request.urlopen": "打开url参数传进来的网址,既可以是一个字符串,又可以是一个Request对象", "urllib.request.html#urllib.request.install_opener": "安装OpenerDirector实例作为默认全局启动器", "urllib.request.html#urllib.request.build_opener": "返回OpenerDirector实例,按所给定的顺序链接处理程序", "urllib.request.html#urllib.request.pathname2url": "将路径名path从本地语法转换为URL的路径组件中使用的形式", "urllib.request.html#urllib.request.url2pathname": "将路径组件路径从百分比编码的URL转换为路径的本地语法", "urllib.request.html#urllib.request.getproxies": "这个帮助函数返回一个方案到代理服务器URL映射的字典", "urllib.request.html#urllib.request.urlretrieve": "将由URL表示的网络对象复制到本地文件", "urllib.request.html#urllib.request.urlcleanup": "清除先前对urlretrieve()调用可能遗留的临时文件", "uu.html#uu.encode": "Uuencode文件in_file导入文件out_file", "uu.html#uu.decode": "此调用会将uuencoded文件in_file解码,将结果放在文件out_file上", "uuid.html#uuid.getnode": "获取硬件地址作为48位正整数", "uuid.html#uuid.uuid1": "基于主机ID,序列号,当前时间生成UUID", "uuid.html#uuid.uuid3": "基于命名空间标识符(一个UUID)和一个名称(一个字符串)的MD5哈希生成UUID", "uuid.html#uuid.uuid4": "生成随机UUID", "uuid.html#uuid.uuid5": "基于命名空间标识符(其是UUID)和名称(其是字符串)的SHA-1散列来生成UUID", "uuid.html#uuid.NAMESPACE_DNS": "指定此命名空间时,name字符串是一个FQDN", "uuid.html#uuid.NAMESPACE_URL": "指定此命名空间时,name字符串是一个URL", "uuid.html#uuid.NAMESPACE_OID": "指定此命名空间时,名称字符串是ISO OID", "uuid.html#uuid.NAMESPACE_X500": "指定此命名空间时,名称字符串是DER中的X", "uuid.html#uuid.RESERVED_NCS": "保留NCS兼容性", "uuid.html#uuid.RFC_4122": "指定 RFC 4122中给出的UUID布局", "uuid.html#uuid.RESERVED_MICROSOFT": "保留用于Microsoft兼容性", "uuid.html#uuid.RESERVED_FUTURE": "留作将来定义", "venv.html#venv.create": "使用给定的关键字参数创建EnvBuilder,并使用env_dir参数调用其create()方法", "warnings.html#warnings.warn": "发出警告,或者可能忽略它或引发异常", "warnings.html#warnings.warn_explicit": "这是对warn()功能的低级接口,显式传递消息,类别,文件名和行号,以及可选的模块名称和注册表(应为__warningregistry__模块的字典)", "warnings.html#warnings.showwarning": "向文件写入警告", "warnings.html#warnings.formatwarning": "按标准方式格式化警告", "warnings.html#warnings.filterwarnings": "在warnings filter specifications列表中插入一个条目", "warnings.html#warnings.simplefilter": "在warnings filter specifications列表中插入一个简单的条目", "warnings.html#warnings.resetwarnings": "重置警告过滤器", "wave.html#wave.open": "如果文件是字符串,请按该名称打开该文件,否则将其视为类文件对象", "wave.html#wave.openfp": "为维持向后兼容性的open()的同义词", "weakref.html#weakref.proxy": "将代理返回到使用弱引用的对象", "weakref.html#weakref.getweakrefcount": "返回引用对象的弱引用和代理的数量", "weakref.html#weakref.getweakrefs": "返回引用对象的所有弱引用和代理对象的列表", "weakref.html#weakref.ReferenceType": "弱引用对象的类型对象", "weakref.html#weakref.ProxyType": "不可调用对象的代理的类型对象", "weakref.html#weakref.CallableProxyType": "可调用对象的代理的类型对象", "weakref.html#weakref.ProxyTypes": "包含代理的所有类型对象的序列", "webbrowser.html#webbrowser.open": "调用默认浏览器打开 url ", "webbrowser.html#webbrowser.open_new": "如果可能,在默认浏览器的新窗口中打开url,否则,在唯一的浏览器窗口中打开url", "webbrowser.html#webbrowser.open_new_tab": "如果可能,在默认浏览器的新页面(“标签”)中打开url,否则等效于open_new()", "webbrowser.html#webbrowser.get": "使用返回浏览器类型的控制器对象", "webbrowser.html#webbrowser.register": "注册浏览器类型名称", "winreg.html#winreg.CloseKey": "关闭以前打开的注册表项", "winreg.html#winreg.ConnectRegistry": "与另一台计算机上的预定义注册表句柄建立连接,并返回handle object", "winreg.html#winreg.CreateKey": "创建或打开指定的键,返回handle object", "winreg.html#winreg.CreateKeyEx": "创建或打开指定的键,返回handle object", "winreg.html#winreg.DeleteKey": "删除指定的键", "winreg.html#winreg.DeleteKeyEx": "删除指定的键", "winreg.html#winreg.DeleteValue": "从注册表项中删除命名的值", "winreg.html#winreg.EnumKey": "枚举打开的注册表项的子项,返回一个字符串", "winreg.html#winreg.EnumValue": "枚举打开的注册表项的值,返回元组", "winreg.html#winreg.ExpandEnvironmentStrings": "在像REG_EXPAND_SZ的字符串中扩展环境变量占位符%NAME%:", "winreg.html#winreg.FlushKey": "将键的所有属性写入注册表", "winreg.html#winreg.LoadKey": "在指定的键下创建子键,并将来自指定文件的注册信息存储到该子键中", "winreg.html#winreg.OpenKey": "打开指定的键,返回handle object", "winreg.html#winreg.QueryInfoKey": "返回有关键的信息,作为元组", "winreg.html#winreg.QueryValue": "检索键的未命名值,作为字符串", "winreg.html#winreg.QueryValueEx": "检索与打开的注册表项相关联的指定值名称的类型和数据", "winreg.html#winreg.SaveKey": "将指定的键及其所有子键保存到指定的文件", "winreg.html#winreg.SetValue": "将值与指定的键相关联", "winreg.html#winreg.SetValueEx": "将数据存储在打开的注册表项的值字段中", "winreg.html#winreg.DisableReflectionKey": "对运行在64位操作系统上的32位进程禁用注册表反射", "winreg.html#winreg.EnableReflectionKey": "恢复指定的禁用键的注册表反射", "winreg.html#winreg.QueryReflectionKey": "确定指定键的反射状态", "winreg.html#winreg.HKEY_CLASSES_ROOT": "从属于此键的注册表项定义文档的类型(或类)以及与这些类型相关联的属性", "winreg.html#winreg.HKEY_CURRENT_USER": "从属于此键的注册表项定义当前用户的首选项", "winreg.html#winreg.HKEY_LOCAL_MACHINE": "此键下属的注册表项定义计算机的物理状态,包括有关总线类型,系统内存和已安装的硬件和软件的数据", "winreg.html#winreg.HKEY_USERS": "从属于此键的注册表项定义本地计算机上新用户的默认用户配置和当前用户的用户配置", "winreg.html#winreg.HKEY_PERFORMANCE_DATA": "此密钥下的注册表项允许您访问性能数据", "winreg.html#winreg.HKEY_CURRENT_CONFIG": "包含有关本地计算机系统的当前硬件配置文件的信息", "winreg.html#winreg.HKEY_DYN_DATA": "此键在98之后的Windows版本中不使用", "winreg.html#winreg.KEY_ALL_ACCESS": "合并STANDARD_RIGHTS_REQUIRED,KEY_QUERY_VALUE,KEY_SET_VALUE,KEY_CREATE_SUB_KEY,KEY_ENUMERATE_SUB_KEYS,KEY_NOTIFY KEY_CREATE_LINK访问权限", "winreg.html#winreg.KEY_WRITE": "合并STANDARD_RIGHTS_WRITE,KEY_SET_VALUE和KEY_CREATE_SUB_KEY访问权限", "winreg.html#winreg.KEY_READ": "合并STANDARD_RIGHTS_READ,KEY_QUERY_VALUE,KEY_ENUMERATE_SUB_KEYS和KEY_NOTIFY值", "winreg.html#winreg.KEY_EXECUTE": "等效于KEY_READ", "winreg.html#winreg.KEY_QUERY_VALUE": "需要查询注册表项的值", "winreg.html#winreg.KEY_SET_VALUE": "需要创建,删除或设置注册表值", "winreg.html#winreg.KEY_CREATE_SUB_KEY": "需要创建注册表项的子项", "winreg.html#winreg.KEY_ENUMERATE_SUB_KEYS": "必需枚举注册表项的子项", "winreg.html#winreg.KEY_NOTIFY": "需要为注册表项请求更改通知,或者为注册表项的子项请求更改通知", "winreg.html#winreg.KEY_CREATE_LINK": "保留供系统使用", "winreg.html#winreg.KEY_WOW64_64KEY": "表示64位Windows上的应用程序应在64位注册表视图上运行", "winreg.html#winreg.KEY_WOW64_32KEY": "表示64位Windows上的应用程序应在32位注册表视图上运行", "winreg.html#winreg.REG_BINARY": "任何形式的二进制数据", "winreg.html#winreg.REG_DWORD": "32位数", "winreg.html#winreg.REG_DWORD_LITTLE_ENDIAN": "小端格式的32位数字", "winreg.html#winreg.REG_DWORD_BIG_ENDIAN": "以big-endian格式的32位数字", "winreg.html#winreg.REG_EXPAND_SZ": "Null终止的字符串,包含对环境变量的引用(%PATH%)", "winreg.html#winreg.REG_LINK": "Unicode符号链接", "winreg.html#winreg.REG_MULTI_SZ": "以NULL结束的字符串序列,以两个空字符结束", "winreg.html#winreg.REG_NONE": "没有定义值类型", "winreg.html#winreg.REG_RESOURCE_LIST": "设备驱动程序资源列表", "winreg.html#winreg.REG_FULL_RESOURCE_DESCRIPTOR": "硬件设置", "winreg.html#winreg.REG_RESOURCE_REQUIREMENTS_LIST": "硬件资源列表", "winreg.html#winreg.REG_SZ": "以null结尾的字符串", "winsound.html#winsound.Beep": "让电脑发出"哔"的声音", "winsound.html#winsound.PlaySound": "从Platform API调用底层的PlaySound()函数", "winsound.html#winsound.MessageBeep": "从Platform API调用底层的MessageBeep()函数", "winsound.html#winsound.SND_FILENAME": "sound参数是WAV文件的名称", "winsound.html#winsound.SND_ALIAS": "声音参数是来自注册表的声音关联名称", "winsound.html#winsound.SND_LOOP": "反复播放声音", "winsound.html#winsound.SND_MEMORY": "PlaySound()的声音参数是WAV文件的存储器映像,作为字符串", "winsound.html#winsound.SND_PURGE": "停止播放指定声音的所有实例", "winsound.html#winsound.SND_ASYNC": "立即返回,允许声音异步播放", "winsound.html#winsound.SND_NODEFAULT": "如果无法找到指定的声音,请不要播放系统默认声音", "winsound.html#winsound.SND_NOSTOP": "不要打断当前正在播放的声音", "winsound.html#winsound.SND_NOWAIT": "如果声音驱动器忙,立即返回", "winsound.html#winsound.MB_ICONASTERISK": "播放SystemDefault声音", "winsound.html#winsound.MB_ICONEXCLAMATION": "播放SystemExclamation声音", "winsound.html#winsound.MB_ICONHAND": "播放SystemHand声音", "winsound.html#winsound.MB_ICONQUESTION": "播放SystemQuestion声音", "winsound.html#winsound.MB_OK": "播放SystemDefault声音", "wsgiref.html#wsgiref.util.guess_scheme": "通过检查environ 字典中的HTTPS环境变量,返回对wsgi", "wsgiref.html#wsgiref.util.request_uri": "使用 PEP 3333的“URL重建”部分中找到的算法返回完整的请求URI(可选择包括查询字符串)", "wsgiref.html#wsgiref.util.application_uri": "类似于request_uri(),除了忽略PATH_INFO和QUERY_STRING变量", "wsgiref.html#wsgiref.util.shift_path_info": "将单个名称从PATH_INFO切换到SCRIPT_NAME,并返回名称", "wsgiref.html#wsgiref.util.setup_testing_defaults": "使用琐碎的默认值更新environ以进行测试", "wsgiref.html#wsgiref.util.is_hop_by_hop": "如果'header_name'是由 RFC 2616定义的HTTP / 1", "wsgiref.html#wsgiref.simple_server.make_server": "创建在host和port上侦听的新WSGI服务器,接受app的连接", "wsgiref.html#wsgiref.simple_server.demo_app": "此函数是一个小但完整的WSGI应用程序,它返回一个包含消息“Hello world!”的文本页面以及environ参数中提供的键/值对列表", "wsgiref.html#wsgiref.validate.validator": "换行应用程序并返回一个新的WSGI应用程序对象", "wsgiref.html#wsgiref.handlers.read_environ": "将os", "xml.dom.html#xml.dom.registerDOMImplementation": "Register the factory function with the name name", "xml.dom.html#xml.dom.getDOMImplementation": "Return a suitable DOM implementation", "xml.dom.html#xml.dom.EMPTY_NAMESPACE": "The value used to indicate that no namespace is associated with a node in the DOM", "xml.dom.html#xml.dom.XML_NAMESPACE": "The namespace URI associated with the reserved prefix xml, as defined by Namespaces in XML (section 4)", "xml.dom.html#xml.dom.XMLNS_NAMESPACE": "The namespace URI for namespace declarations, as defined by Document Object Model (DOM) Level 2 Core Specification (section 1", "xml.dom.html#xml.dom.XHTML_NAMESPACE": "The URI of the XHTML namespace as defined by XHTML 1", "xml.dom.minidom.html#xml.dom.minidom.parse": "从给定输入返回Document", "xml.dom.minidom.html#xml.dom.minidom.parseString": "返回表示字符串的Document", "xml.dom.pulldom.html#xml.dom.pulldom.parse": "从给定输入返回DOMEventStream", "xml.dom.pulldom.html#xml.dom.pulldom.parseString": "返回表示(Unicode)字符串的DOMEventStream", "xml.dom.pulldom.html#xml.dom.pulldom.default_bufsize": "bufsize参数到parse()的默认值", "xml.etree.elementtree.html#xml.etree.ElementTree.Comment": "Comment element factory", "xml.etree.elementtree.html#xml.etree.ElementTree.dump": "Writes an element tree or element structure to sys", "xml.etree.elementtree.html#xml.etree.ElementTree.fromstring": "Parses an XML section from a string constant", "xml.etree.elementtree.html#xml.etree.ElementTree.fromstringlist": "Parses an XML document from a sequence of string fragments", "xml.etree.elementtree.html#xml.etree.ElementTree.iselement": "Checks if an object appears to be a valid element object", "xml.etree.elementtree.html#xml.etree.ElementTree.iterparse": "Parses an XML section into an element tree incrementally, and reports what’s going on to the user", "xml.etree.elementtree.html#xml.etree.ElementTree.parse": "Parses an XML section into an element tree", "xml.etree.elementtree.html#xml.etree.ElementTree.ProcessingInstruction": "PI element factory", "xml.etree.elementtree.html#xml.etree.ElementTree.register_namespace": "Registers a namespace prefix", "xml.etree.elementtree.html#xml.etree.ElementTree.SubElement": "Subelement factory", "xml.etree.elementtree.html#xml.etree.ElementTree.tostring": "Generates a string representation of an XML element, including all subelements", "xml.etree.elementtree.html#xml.etree.ElementTree.tostringlist": "Generates a string representation of an XML element, including all subelements", "xml.etree.elementtree.html#xml.etree.ElementTree.XML": "Parses an XML section from a string constant", "xml.etree.elementtree.html#xml.etree.ElementTree.XMLID": "Parses an XML section from a string constant, and also returns a dictionary which maps from element id:s to elements", "xml.sax.handler.html#xml.sax.handler.all_features": "所有功能的列表", "xml.sax.handler.html#xml.sax.handler.all_properties": "所有已知属性名称的列表", "xml.sax.html#xml.sax.make_parser": "创建并返回SAX XMLReader对象", "xml.sax.html#xml.sax.parse": "创建一个SAX解析器并使用它来解析文档", "xml.sax.html#xml.sax.parseString": "类似于parse(),但是从作为参数接收的缓冲区字符串解析", "xml.sax.utils.html#xml.sax.saxutils.escape": "Escape '&', '<', and '>' in a string of data", "xml.sax.utils.html#xml.sax.saxutils.unescape": "在数据字符串中取消转义'&','<'和'>'", "xml.sax.utils.html#xml.sax.saxutils.quoteattr": "类似于escape(),但也准备数据以用作属性值", "xml.sax.utils.html#xml.sax.saxutils.prepare_input_source": "此函数接受一个输入源和一个可选的基址URL,并返回一个完全解析的InputSource对象,可以读取", "xmlrpc.client.html#xmlrpc.client.dumps": "将params转换为XML-RPC请求", "xmlrpc.client.html#xmlrpc.client.loads": "将XML-RPC请求或响应转换为Python对象(params, methodname)", "zipapp.html#zipapp.create_archive": "从源创建应用程序归档", "zipfile.html#zipfile.is_zipfile": "如果filename是基于其幻数的有效ZIP文件,则返回True,否则返回False", "zipfile.html#zipfile.ZIP_STORED": "未压缩的归档成员的数字常量", "zipfile.html#zipfile.ZIP_DEFLATED": "常用ZIP压缩方法的数字常量", "zipfile.html#zipfile.ZIP_BZIP2": "BZIP2压缩方法的数字常量", "zipfile.html#zipfile.ZIP_LZMA": "LZMA压缩方法的数字常量", "zlib.html#zlib.adler32": "计算数据的Adler-32校验和", "zlib.html#zlib.compress": "压缩数据中的字节,返回包含压缩数据的字节对象", "zlib.html#zlib.compressobj": "返回一个压缩对象,用于压缩不能立即适合内存的数据流", "zlib.html#zlib.crc32": "计算数据的CRC(循环冗余校验)校验和", "zlib.html#zlib.decompress": "解压缩数据中的字节,返回包含未压缩数据的字节对象", "zlib.html#zlib.decompressobj": "返回解压缩对象,用于解压缩不能立即适合内存的数据流", "zlib.html#zlib.ZLIB_VERSION": "用于构建模块的zlib库的版本字符串", "zlib.html#zlib.ZLIB_RUNTIME_VERSION": "由解释器实际加载的zlib库的版本字符串", "_thread.html#_thread.start_new_thread": "启动一个新线程并返回其标识符", "_thread.html#_thread.interrupt_main": "引发主线程中的KeyboardInterrupt异常", "_thread.html#_thread.exit": "引发SystemExit异常", "_thread.html#_thread.allocate_lock": "返回一个新的锁对象", "_thread.html#_thread.get_ident": "返回当前线程的'线程标识符'", "_thread.html#_thread.stack_size": "返回创建新线程时使用的线程堆栈大小", "_thread.html#_thread.LockType": "这是锁对象的类型", "_thread.html#_thread.TIMEOUT_MAX": "Lock" } \ No newline at end of file +{ "intro":{"name":"intro","type":"intro","path":"python/intro.html","desc":"介绍"}, "functions":{"name":"functions","type":"functions","path":"python/functions.html","desc":"内置函数"}, "constants":{"name":"constants","type":"constants","path":"python/constants.html","desc":"内置常量"}, "stdtypes":{"name":"stdtypes","type":"stdtypes","path":"python/stdtypes.html","desc":"内置类型"}, "exceptions":{"name":"exceptions","type":"exceptions","path":"python/exceptions.html","desc":"内置异常"}, "text":{"name":"text","type":"text","path":"python/text.html","desc":"文字处理服务"}, "string":{"name":"string","type":"string","path":"python/string.html","desc":"字符串操作"}, "re":{"name":"re","type":"re","path":"python/re.html","desc":"正则表达式操作"}, "difflib":{"name":"difflib","type":"difflib","path":"python/difflib.html","desc":"计算delta的帮助"}, "textwrap":{"name":"textwrap","type":"textwrap","path":"python/textwrap.html","desc":"文字换行和填充"}, "unicodedata":{"name":"unicodedata","type":"unicodedata","path":"python/unicodedata.html","desc":"Unicode 数据库"}, "stringprep":{"name":"stringprep","type":"stringprep","path":"python/stringprep.html","desc":"互联网字符串制备"}, "readline":{"name":"readline","type":"readline","path":"python/readline.html","desc":"GNU readline 接口"}, "rlcompleter":{"name":"rlcompleter","type":"rlcompleter","path":"python/rlcompleter.html","desc":"GNU readline的完成功能"}, "binary":{"name":"binary","type":"binary","path":"python/binary.html","desc":"二进制数据服务"}, "struct":{"name":"struct","type":"struct","path":"python/struct.html","desc":"格式化解析bytes"}, "codecs":{"name":"codecs","type":"codecs","path":"python/codecs.html","desc":"Codec注册表和基类"}, "datatypes":{"name":"datatypes","type":"datatypes","path":"python/datatypes.html","desc":"数据类型"}, "datetime":{"name":"datetime","type":"datetime","path":"python/datetime.html","desc":"基本日期时间类型"}, "calendar":{"name":"calendar","type":"calendar","path":"python/calendar.html","desc":"与日历相关的一般函数"}, "collections":{"name":"collections","type":"collections","path":"python/collections.html","desc":"容器"}, "collections.abc":{"name":"collections.abc","type":"collections.abc","path":"python/collections.abc.html","desc":"抽象基类容器"}, "heapq":{"name":"heapq","type":"heapq","path":"python/heapq.html","desc":"堆队列算法"}, "bisect":{"name":"bisect","type":"bisect","path":"python/bisect.html","desc":"数组分割算法"}, "array":{"name":"array","type":"array","path":"python/array.html","desc":"高效的数值数组"}, "weakref":{"name":"weakref","type":"weakref","path":"python/weakref.html","desc":"弱引用"}, "types":{"name":"types","type":"types","path":"python/types.html","desc":"创建动态类型和内置类型的名称"}, "copy":{"name":"copy","type":"copy","path":"python/copy.html","desc":"浅层和深层复制操作"}, "pprint":{"name":"pprint","type":"pprint","path":"python/pprint.html","desc":"打印整洁的数据"}, "reprlib":{"name":"reprlib","type":"reprlib","path":"python/reprlib.html","desc":"备用 repr() 执行"}, "enum":{"name":"enum","type":"enum","path":"python/enum.html","desc":"支持枚举类型"}, "numeric":{"name":"numeric","type":"numeric","path":"python/numeric.html","desc":"数字和数学模块"}, "numbers":{"name":"numbers","type":"numbers","path":"python/numbers.html","desc":"数字抽象基类"}, "math":{"name":"math","type":"math","path":"python/math.html","desc":"数学函数"}, "cmath":{"name":"cmath","type":"cmath","path":"python/cmath.html","desc":"数学函数,用于复数"}, "decimal":{"name":"decimal","type":"decimal","path":"python/decimal.html","desc":"十进制固定和浮点算术"}, "fractions":{"name":"fractions","type":"fractions","path":"python/fractions.html","desc":"有理数"}, "random":{"name":"random","type":"random","path":"python/random.html","desc":"生成伪随机数"}, "statistics":{"name":"statistics","type":"statistics","path":"python/statistics.html","desc":"数理统计函数"}, "functional":{"name":"functional","type":"functional","path":"python/functional.html","desc":"函数编程模块"}, "itertools":{"name":"itertools","type":"itertools","path":"python/itertools.html","desc":"功能创建迭代器高效循环"}, "functools":{"name":"functools","type":"functools","path":"python/functools.html","desc":"高阶函数和可调用对象的操作"}, "operator":{"name":"operator","type":"operator","path":"python/operator.html","desc":"标准运算符作为函数"}, "filesys":{"name":"filesys","type":"filesys","path":"python/filesys.html","desc":"文件与目录的访问"}, "pathlib":{"name":"pathlib","type":"pathlib","path":"python/pathlib.html","desc":"面向对象的文件系统路径"}, "os.path":{"name":"os.path","type":"os.path","path":"python/os.path.html","desc":"常见的路径名称操作"}, "fileinput":{"name":"fileinput","type":"fileinput","path":"python/fileinput.html","desc":"从多个输入流中迭代"}, "stat":{"name":"stat","type":"stat","path":"python/stat.html","desc":"解释stat()结果"}, "filecmp":{"name":"filecmp","type":"filecmp","path":"python/filecmp.html","desc":"文件和目录比较"}, "tempfile":{"name":"tempfile","type":"tempfile","path":"python/tempfile.html","desc":"生成临时文件和目录"}, "glob":{"name":"glob","type":"glob","path":"python/glob.html","desc":"Unix样式路径名模式扩展"}, "fnmatch":{"name":"fnmatch","type":"fnmatch","path":"python/fnmatch.html","desc":"Unix文件名匹配模式"}, "linecache":{"name":"linecache","type":"linecache","path":"python/linecache.html","desc":"文字行缓存"}, "shutil":{"name":"shutil","type":"shutil","path":"python/shutil.html","desc":"高级文件操作"}, "macpath":{"name":"macpath","type":"macpath","path":"python/macpath.html","desc":"Mac OS 9路径处理函数"}, "persistence":{"name":"persistence","type":"persistence","path":"python/persistence.html","desc":"数据持久性"}, "pickle":{"name":"pickle","type":"pickle","path":"python/pickle.html","desc":"Python对象序列化"}, "copyreg":{"name":"copyreg","type":"copyreg","path":"python/copyreg.html","desc":"注册pickle支持功能"}, "shelve":{"name":"shelve","type":"shelve","path":"python/shelve.html","desc":"Python对象持久性"}, "marshal":{"name":"marshal","type":"marshal","path":"python/marshal.html","desc":"内部Python对象序列化"}, "dbm":{"name":"dbm","type":"dbm","path":"python/dbm.html","desc":"与Unix“数据库”的接口"}, "sqlite3":{"name":"sqlite3","type":"sqlite3","path":"python/sqlite3.html","desc":"SQLite数据库的DB-API 0接口"}, "archiving":{"name":"archiving","type":"archiving","path":"python/archiving.html","desc":"数据压缩和归档"}, "zlib":{"name":"zlib","type":"zlib","path":"python/zlib.html","desc":"兼容 gzip 压缩"}, "gzip":{"name":"gzip","type":"gzip","path":"python/gzip.html","desc":"支持 gzip 文件"}, "bz2":{"name":"bz2","type":"bz2","path":"python/bz2.html","desc":"支持 bzip2 压缩"}, "lzma":{"name":"lzma","type":"lzma","path":"python/lzma.html","desc":"基于LZMA算法的压缩"}, "zipfile":{"name":"zipfile","type":"zipfile","path":"python/zipfile.html","desc":"ZIP归档访问"}, "tarfile":{"name":"tarfile","type":"tarfile","path":"python/tarfile.html","desc":"读取与压缩tar文件"}, "fileformats":{"name":"fileformats","type":"fileformats","path":"python/fileformats.html","desc":"文件格式"}, "csv":{"name":"csv","type":"csv","path":"python/csv.html","desc":"CSV 文件的读写"}, "configparser":{"name":"configparser","type":"configparser","path":"python/configparser.html","desc":"配置文件解析器"}, "netrc":{"name":"netrc","type":"netrc","path":"python/netrc.html","desc":"netrc文件处理"}, "xdrlib":{"name":"xdrlib","type":"xdrlib","path":"python/xdrlib.html","desc":"对XDR数据进行编码和解码"}, "plistlib":{"name":"plistlib","type":"plistlib","path":"python/plistlib.html","desc":"生成并解析Mac OS X "}, "crypto":{"name":"crypto","type":"crypto","path":"python/crypto.html","desc":"加密服务"}, "hashlib":{"name":"hashlib","type":"hashlib","path":"python/hashlib.html","desc":"安全哈希和消息摘要"}, "hmac":{"name":"hmac","type":"hmac","path":"python/hmac.html","desc":"用于消息验证的加密哈希"}, "allos":{"name":"allos","type":"allos","path":"python/allos.html","desc":"通用操作系统服务"}, "os":{"name":"os","type":"os","path":"python/os.html","desc":"操作系统的各种接口"}, "io":{"name":"io","type":"io","path":"python/io.html","desc":"以流方式处理打开的核心工具"}, "time":{"name":"time","type":"time","path":"python/time.html","desc":"时间存取和转换"}, "argparse":{"name":"argparse","type":"argparse","path":"python/argparse.html","desc":"解析命令行参数的Parser工具"}, "getopt":{"name":"getopt","type":"getopt","path":"python/getopt.html","desc":"命令行选项的C样式解析器"}, "logging":{"name":"logging","type":"logging","path":"python/logging.html","desc":"Python日志记录工具"}, "logging.config":{"name":"logging.config","type":"logging.config","path":"python/logging.config.html","desc":"日志配置"}, "logging.handlers":{"name":"logging.handlers","type":"logging.handlers","path":"python/logging.handlers.html","desc":"日志处理程序"}, "getpass":{"name":"getpass","type":"getpass","path":"python/getpass.html","desc":"便携式密码输入"}, "curses":{"name":"curses","type":"curses","path":"python/curses.html","desc":"字符单元显示的终端处理"}, "curses.ascii":{"name":"curses.ascii","type":"curses.ascii","path":"python/curses.ascii.html","desc":"ASCII字符的实用工具"}, "curses.panel":{"name":"curses.panel","type":"curses.panel","path":"python/curses.panel.html","desc":"curses的面板集扩展"}, "platform":{"name":"platform","type":"platform","path":"python/platform.html","desc":"访问底层平台的识别数据"}, "errno":{"name":"errno","type":"errno","path":"python/errno.html","desc":"标准errno系统符号"}, "ctypes":{"name":"ctypes","type":"ctypes","path":"python/ctypes.html","desc":"Python的外部函数库"}, "concurrency":{"name":"concurrency","type":"concurrency","path":"python/concurrency.html","desc":"并发执行"}, "threading":{"name":"threading","type":"threading","path":"python/threading.html","desc":"基于线程的并行"}, "multiprocessing":{"name":"multiprocessing","type":"multiprocessing","path":"python/multiprocessing.html","desc":"基于进程的并行"}, "concurrent":{"name":"concurrent","type":"concurrent","path":"python/concurrent.html","desc":"concurrent"}, "concurrent.futures":{"name":"concurrent.futures","type":"concurrent.futures","path":"python/concurrent.futures.html","desc":"启动并行任务"}, "subprocess":{"name":"subprocess","type":"subprocess","path":"python/subprocess.html","desc":"子进程管理"}, "sched":{"name":"sched","type":"sched","path":"python/sched.html","desc":"事件调度程序"}, "queue":{"name":"queue","type":"queue","path":"python/queue.html","desc":"同步队列类"}, "dummy_threading":{"name":"dummy_threading","type":"dummy_threading","path":"python/dummy_threading.html","desc":"threading模块的插入替换"}, "_thread":{"name":"_thread","type":"_thread","path":"python/_thread.html","desc":"低级线程API"}, "_dummy_thread":{"name":"_dummy_thread","type":"_dummy_thread","path":"python/_dummy_thread.html","desc":"替换_thread模块"}, "ipc":{"name":"ipc","type":"ipc","path":"python/ipc.html","desc":"进程间通信和联网"}, "socket":{"name":"socket","type":"socket","path":"python/socket.html","desc":"低级网络接口"}, "ssl":{"name":"ssl","type":"ssl","path":"python/ssl.html","desc":"套接字对象的TLS / SSL包装器"}, "select":{"name":"select","type":"select","path":"python/select.html","desc":"等待I / O完成"}, "selectors":{"name":"selectors","type":"selectors","path":"python/selectors.html","desc":"高级I / O复用"}, "asyncio":{"name":"asyncio","type":"asyncio","path":"python/asyncio.html","desc":"异步 I/O、 事件循环、 协同程序和任务"}, "asyncore":{"name":"asyncore","type":"asyncore","path":"python/asyncore.html","desc":"异步套接字处理程序"}, "asynchat":{"name":"asynchat","type":"asynchat","path":"python/asynchat.html","desc":"异步套接字命令/响应处理程序"}, "signal":{"name":"signal","type":"signal","path":"python/signal.html","desc":"设置异步事件处理程序"}, "mmap":{"name":"mmap","type":"mmap","path":"python/mmap.html","desc":"内存映射文件支持 0>"}, "netdata":{"name":"netdata","type":"netdata","path":"python/netdata.html","desc":"互联网数据处理"}, "email":{"name":"email","type":"email","path":"python/email.html","desc":"电子邮件和MIME处理包"}, "json":{"name":"json","type":"json","path":"python/json.html","desc":"JSON 编码与解码"}, "mailcap":{"name":"mailcap","type":"mailcap","path":"python/mailcap.html","desc":"Mailcap文件处理"}, "mailbox":{"name":"mailbox","type":"mailbox","path":"python/mailbox.html","desc":"以各种格式处理邮箱"}, "mimetypes":{"name":"mimetypes","type":"mimetypes","path":"python/mimetypes.html","desc":"将文件名映射到MIME类型"}, "base64":{"name":"base64","type":"base64","path":"python/base64.html","desc":"Base16、Base32、Base64、Base85数据编码"}, "binhex":{"name":"binhex","type":"binhex","path":"python/binhex.html","desc":"编码和解码binhex4文件"}, "binascii":{"name":"binascii","type":"binascii","path":"python/binascii.html","desc":"在二进制和ASCII之间转换"}, "quopri":{"name":"quopri","type":"quopri","path":"python/quopri.html","desc":"编码和解码MIME可引用的数据"}, "uu":{"name":"uu","type":"uu","path":"python/uu.html","desc":"对uuencode文件进行编码和解码"}, "markup":{"name":"markup","type":"markup","path":"python/markup.html","desc":"结构化标记处理工具"}, "html":{"name":"html","type":"html","path":"python/html.html","desc":"超文本标记语言的支持"}, "html.parser":{"name":"html.parser","type":"html.parser","path":"python/html.parser.html","desc":"简单的HTML和XHTML解析器"}, "html.entities":{"name":"html.entities","type":"html.entities","path":"python/html.entities.html","desc":"HTML一般实体的定义"}, "xml":{"name":"xml","type":"xml","path":"python/xml.html","desc":"XML处理模块"}, "xml.etree.elementtree":{"name":"xml.etree.elementtree","type":"xml.etree.elementtree","path":"python/xml.etree.elementtree.html","desc":"ElementTree XML API"}, "xml.dom":{"name":"xml.dom","type":"xml.dom","path":"python/xml.dom.html","desc":"文档对象模型API"}, "xml.dom.minidom":{"name":"xml.dom.minidom","type":"xml.dom.minidom","path":"python/xml.dom.minidom.html","desc":"最小DOM实现"}, "xml.dom.pulldom":{"name":"xml.dom.pulldom","type":"xml.dom.pulldom","path":"python/xml.dom.pulldom.html","desc":"支持构建部分DOM树"}, "xml.sax":{"name":"xml.sax","type":"xml.sax","path":"python/xml.sax.html","desc":"支持SAX2解析器"}, "xml.sax.handler":{"name":"xml.sax.handler","type":"xml.sax.handler","path":"python/xml.sax.handler.html","desc":"SAX处理程序的基类"}, "xml.sax.utils":{"name":"xml.sax.utils","type":"xml.sax.utils","path":"python/xml.sax.utils.html","desc":"SAX实用程序"}, "xml.sax.reader":{"name":"xml.sax.reader","type":"xml.sax.reader","path":"python/xml.sax.reader.html","desc":"XML解析器接口"}, "pyexpat":{"name":"pyexpat","type":"pyexpat","path":"python/pyexpat.html","desc":"使用Expat进行快速XML解析"}, "internet":{"name":"internet","type":"internet","path":"python/internet.html","desc":"网络协议与支持"}, "webbrowser":{"name":"webbrowser","type":"webbrowser","path":"python/webbrowser.html","desc":"方便的 Web 浏览器控制器"}, "cgi":{"name":"cgi","type":"cgi","path":"python/cgi.html","desc":"通用网关接口支持"}, "cgitb":{"name":"cgitb","type":"cgitb","path":"python/cgitb.html","desc":"CGI 脚本的回馈错误管理"}, "wsgiref":{"name":"wsgiref","type":"wsgiref","path":"python/wsgiref.html","desc":"WSGI Utilities和参考实现"}, "urllib":{"name":"urllib","type":"urllib","path":"python/urllib.html","desc":"URL 处理模块"}, "urllib.request":{"name":"urllib.request","type":"urllib.request","path":"python/urllib.request.html","desc":"可扩展的开放Url类"}, "urllib.parse":{"name":"urllib.parse","type":"urllib.parse","path":"python/urllib.parse.html","desc":"将网址解析到组件"}, "urllib.error":{"name":"urllib.error","type":"urllib.error","path":"python/urllib.error.html","desc":"由urllib"}, "urllib.robotparser":{"name":"urllib.robotparser","type":"urllib.robotparser","path":"python/urllib.robotparser.html","desc":"用于robots"}, "http":{"name":"http","type":"http","path":"python/http.html","desc":"HTTP模块"}, "http.client":{"name":"http.client","type":"http.client","path":"python/http.client.html","desc":"HTTP 协议客户端"}, "ftplib":{"name":"ftplib","type":"ftplib","path":"python/ftplib.html","desc":"FTP 协议客户端"}, "poplib":{"name":"poplib","type":"poplib","path":"python/poplib.html","desc":"POP3 协议客户端"}, "imaplib":{"name":"imaplib","type":"imaplib","path":"python/imaplib.html","desc":"IMAP4 协议客户端"}, "nntplib":{"name":"nntplib","type":"nntplib","path":"python/nntplib.html","desc":"NNTP 协议客户端"}, "smtplib":{"name":"smtplib","type":"smtplib","path":"python/smtplib.html","desc":"SMTP 协议客户端"}, "smtpd":{"name":"smtpd","type":"smtpd","path":"python/smtpd.html","desc":"SMTP 服务"}, "telnetlib":{"name":"telnetlib","type":"telnetlib","path":"python/telnetlib.html","desc":"Telnet 客户端"}, "uuid":{"name":"uuid","type":"uuid","path":"python/uuid.html","desc":"根据RFC 4122的UUID对象"}, "socketserver":{"name":"socketserver","type":"socketserver","path":"python/socketserver.html","desc":"网络服务器框架"}, "http.server":{"name":"http.server","type":"http.server","path":"python/http.server.html","desc":"HTTP服务器"}, "http.cookies":{"name":"http.cookies","type":"http.cookies","path":"python/http.cookies.html","desc":"HTTP状态管理"}, "http.cookiejar":{"name":"http.cookiejar","type":"http.cookiejar","path":"python/http.cookiejar.html","desc":"HTTP客户端的Cookie处理"}, "xmlrpc":{"name":"xmlrpc","type":"xmlrpc","path":"python/xmlrpc.html","desc":"XMLRPC服务器和客户端模块"}, "xmlrpc.client":{"name":"xmlrpc.client","type":"xmlrpc.client","path":"python/xmlrpc.client.html","desc":"XML-RPC客户端访问"}, "xmlrpc.server":{"name":"xmlrpc.server","type":"xmlrpc.server","path":"python/xmlrpc.server.html","desc":"基本XML-RPC服务器"}, "ipaddress":{"name":"ipaddress","type":"ipaddress","path":"python/ipaddress.html","desc":"IPv4 / IPv6操作库"}, "mm":{"name":"mm","type":"mm","path":"python/mm.html","desc":"多媒体服务"}, "audioop":{"name":"audioop","type":"audioop","path":"python/audioop.html","desc":"处理原始音频数据"}, "aifc":{"name":"aifc","type":"aifc","path":"python/aifc.html","desc":"读写AIFF和AIFC文件"}, "sunau":{"name":"sunau","type":"sunau","path":"python/sunau.html","desc":"读写Sun AU文件"}, "wave":{"name":"wave","type":"wave","path":"python/wave.html","desc":"读取和写入WAV文件"}, "chunk":{"name":"chunk","type":"chunk","path":"python/chunk.html","desc":"读取IFF分块数据"}, "colorsys":{"name":"colorsys","type":"colorsys","path":"python/colorsys.html","desc":"颜色系统之间的转换"}, "imghdr":{"name":"imghdr","type":"imghdr","path":"python/imghdr.html","desc":"确定图像的类型"}, "sndhdr":{"name":"sndhdr","type":"sndhdr","path":"python/sndhdr.html","desc":"确定声音文件的类型"}, "ossaudiodev":{"name":"ossaudiodev","type":"ossaudiodev","path":"python/ossaudiodev.html","desc":"访问与OSS兼容的音频设备"}, "i18n":{"name":"i18n","type":"i18n","path":"python/i18n.html","desc":"国际化"}, "gettext":{"name":"gettext","type":"gettext","path":"python/gettext.html","desc":"多语言国际化服务"}, "locale":{"name":"locale","type":"locale","path":"python/locale.html","desc":"国际化服务"}, "frameworks":{"name":"frameworks","type":"frameworks","path":"python/frameworks.html","desc":"程序框架"}, "turtle":{"name":"turtle","type":"turtle","path":"python/turtle.html","desc":"Turtle graphics(图像)"}, "cmd":{"name":"cmd","type":"cmd","path":"python/cmd.html","desc":"支持面向行的命令解释器"}, "shlex":{"name":"shlex","type":"shlex","path":"python/shlex.html","desc":"简单词法分析"}, "tk":{"name":"tk","type":"tk","path":"python/tk.html","desc":"TK图形用户接口"}, "tkinter":{"name":"tkinter","type":"tkinter","path":"python/tkinter.html","desc":"Tcl/Tk的python接口"}, "tkinter.ttk":{"name":"tkinter.ttk","type":"tkinter.ttk","path":"python/tkinter.ttk.html","desc":"Tk主题化部件"}, "tkinter.tix":{"name":"tkinter.tix","type":"tkinter.tix","path":"python/tkinter.tix.html","desc":"Tk扩展控件"}, "tkinter.scrolledtext":{"name":"tkinter.scrolledtext","type":"tkinter.scrolledtext","path":"python/tkinter.scrolledtext.html","desc":"滚动文本控件"}, "idle":{"name":"idle","type":"idle","path":"python/idle.html","desc":"集成开发与学习环境"}, "othergui":{"name":"othergui","type":"othergui","path":"python/othergui.html","desc":"其他图形用户接口包"}, "development":{"name":"development","type":"development","path":"python/development.html","desc":"开发工具"}, "typing":{"name":"typing","type":"typing","path":"python/typing.html","desc":"支持类型提示"}, "pydoc":{"name":"pydoc","type":"pydoc","path":"python/pydoc.html","desc":"文档生成器和联机帮助系统"}, "doctest":{"name":"doctest","type":"doctest","path":"python/doctest.html","desc":"测试交互式 Python 示例"}, "unittest":{"name":"unittest","type":"unittest","path":"python/unittest.html","desc":"单元测试框架"}, "unittest.mock":{"name":"unittest.mock","type":"unittest.mock","path":"python/unittest.mock.html","desc":"模拟对象库"}, "unittest.mock-examples":{"name":"unittest.mock-examples","type":"unittest.mock-examples","path":"python/unittest.mock-examples.html","desc":"开始使用"}, "2to3":{"name":"2to3","type":"2to3","path":"python/2to3.html","desc":"2to3-Python 2 到 3 代码自动转化"}, "test":{"name":"test","type":"test","path":"python/test.html","desc":"回归测试包为 Python"}, "debug":{"name":"debug","type":"debug","path":"python/debug.html","desc":"调试和分析"}, "bdb":{"name":"bdb","type":"bdb","path":"python/bdb.html","desc":"调试器框架"}, "faulthandler":{"name":"faulthandler","type":"faulthandler","path":"python/faulthandler.html","desc":"转储Python回溯"}, "pdb":{"name":"pdb","type":"pdb","path":"python/pdb.html","desc":"The Python Debugger"}, "profile":{"name":"profile","type":"profile","path":"python/profile.html","desc":"Python分析器"}, "timeit":{"name":"timeit","type":"timeit","path":"python/timeit.html","desc":"测量小代码片段的执行时间"}, "trace":{"name":"trace","type":"trace","path":"python/trace.html","desc":"跟踪或跟踪 Python 语句执行"}, "tracemalloc":{"name":"tracemalloc","type":"tracemalloc","path":"python/tracemalloc.html","desc":"跟踪内存分配"}, "distribution":{"name":"distribution","type":"distribution","path":"python/distribution.html","desc":"软件包装及分销"}, "distutils":{"name":"distutils","type":"distutils","path":"python/distutils.html","desc":"建立和安装的 Python 模块"}, "ensurepip":{"name":"ensurepip","type":"ensurepip","path":"python/ensurepip.html","desc":"引导 pip 安装程序"}, "venv":{"name":"venv","type":"venv","path":"python/venv.html","desc":"创建虚拟环境"}, "zipapp":{"name":"zipapp","type":"zipapp","path":"python/zipapp.html","desc":"管理可执行 python zip档案"}, "python":{"name":"python","type":"python","path":"python/python.html","desc":"Python 运行时服务"}, "sys":{"name":"sys","type":"sys","path":"python/sys.html","desc":"系统特定参数和函数"}, "sysconfig":{"name":"sysconfig","type":"sysconfig","path":"python/sysconfig.html","desc":"提供对 Python 的配置信息的访问"}, "builtins":{"name":"builtins","type":"builtins","path":"python/builtins.html","desc":"内置对象"}, "__main__":{"name":"__main__","type":"__main__","path":"python/__main__.html","desc":"顶级脚本环境"}, "warnings":{"name":"warnings","type":"warnings","path":"python/warnings.html","desc":"警告控制"}, "contextlib":{"name":"contextlib","type":"contextlib","path":"python/contextlib.html","desc":"with语句的上下文实用程序"}, "abc":{"name":"abc","type":"abc","path":"python/abc.html","desc":"抽象基类"}, "atexit":{"name":"atexit","type":"atexit","path":"python/atexit.html","desc":"退出处理程序"}, "traceback":{"name":"traceback","type":"traceback","path":"python/traceback.html","desc":"打印或检索堆栈跟踪"}, "__future__":{"name":"__future__","type":"__future__","path":"python/__future__.html","desc":"未来语句定义"}, "gc":{"name":"gc","type":"gc","path":"python/gc.html","desc":"垃圾回收器接口"}, "inspect":{"name":"inspect","type":"inspect","path":"python/inspect.html","desc":"检查活跃的对象"}, "site":{"name":"site","type":"site","path":"python/site.html","desc":"网站特定的配置挂钩"}, "fpectl":{"name":"fpectl","type":"fpectl","path":"python/fpectl.html","desc":"浮点异常控制"}, "custominterp":{"name":"custominterp","type":"custominterp","path":"python/custominterp.html","desc":"自定义 Python 解释器"}, "code":{"name":"code","type":"code","path":"python/code.html","desc":"解释器基类"}, "codeop":{"name":"codeop","type":"codeop","path":"python/codeop.html","desc":"编译 Python 代码"}, "modules":{"name":"modules","type":"modules","path":"python/modules.html","desc":"导入模块"}, "zipimport":{"name":"zipimport","type":"zipimport","path":"python/zipimport.html","desc":"从 Zip 存档导入模块"}, "pkgutil":{"name":"pkgutil","type":"pkgutil","path":"python/pkgutil.html","desc":"软件包扩展程序"}, "modulefinder":{"name":"modulefinder","type":"modulefinder","path":"python/modulefinder.html","desc":"查找脚本使用的模块"}, "runpy":{"name":"runpy","type":"runpy","path":"python/runpy.html","desc":"定位和执行Python模块"}, "importlib":{"name":"importlib","type":"importlib","path":"python/importlib.html","desc":"执行import"}, "language":{"name":"language","type":"language","path":"python/language.html","desc":"Python 语言服务"}, "parser":{"name":"parser","type":"parser","path":"python/parser.html","desc":"访问 Python 语法树"}, "ast":{"name":"ast","type":"ast","path":"python/ast.html","desc":"抽象语法树"}, "symtable":{"name":"symtable","type":"symtable","path":"python/symtable.html","desc":"访问编译器的符号表"}, "symbol":{"name":"symbol","type":"symbol","path":"python/symbol.html","desc":"常数用 Python 语法树"}, "token":{"name":"token","type":"token","path":"python/token.html","desc":"常数用 Python 语法树"}, "keyword":{"name":"keyword","type":"keyword","path":"python/keyword.html","desc":"测试Python关键字"}, "tokenize":{"name":"tokenize","type":"tokenize","path":"python/tokenize.html","desc":"适用于Python源代码的Tokenizer"}, "tabnanny":{"name":"tabnanny","type":"tabnanny","path":"python/tabnanny.html","desc":"检测模糊缩进"}, "pyclbr":{"name":"pyclbr","type":"pyclbr","path":"python/pyclbr.html","desc":"Python类浏览器支持"}, "py_compile":{"name":"py_compile","type":"py_compile","path":"python/py_compile.html","desc":"编译Python源文件"}, "compileall":{"name":"compileall","type":"compileall","path":"python/compileall.html","desc":"字节编译Python库"}, "dis":{"name":"dis","type":"dis","path":"python/dis.html","desc":"Python 字节码反汇编器"}, "pickletools":{"name":"pickletools","type":"pickletools","path":"python/pickletools.html","desc":"pickle 开发工具"}, "misc":{"name":"misc","type":"misc","path":"python/misc.html","desc":"杂项服务"}, "formatter":{"name":"formatter","type":"formatter","path":"python/formatter.html","desc":"通用输出格式"}, "windows":{"name":"windows","type":"windows","path":"python/windows.html","desc":"MS Windows 专用服务"}, "msilib":{"name":"msilib","type":"msilib","path":"python/msilib.html","desc":"读写Microsoft安装程序文件"}, "msvcrt":{"name":"msvcrt","type":"msvcrt","path":"python/msvcrt.html","desc":"从MS VC ++运行时的有用例程"}, "winreg":{"name":"winreg","type":"winreg","path":"python/winreg.html","desc":"注册表访问"}, "winsound":{"name":"winsound","type":"winsound","path":"python/winsound.html","desc":"Windows的声音播放接口"}, "unix":{"name":"unix","type":"unix","path":"python/unix.html","desc":"Unix 专用服务"}, "posix":{"name":"posix","type":"posix","path":"python/posix.html","desc":"最常见的POSIX系统调用"}, "pwd":{"name":"pwd","type":"pwd","path":"python/pwd.html","desc":"密码数据库"}, "spwd":{"name":"spwd","type":"spwd","path":"python/spwd.html","desc":"影子密码数据库"}, "grp":{"name":"grp","type":"grp","path":"python/grp.html","desc":"群组数据库"}, "crypt":{"name":"crypt","type":"crypt","path":"python/crypt.html","desc":"检查Unix密码的功能"}, "termios":{"name":"termios","type":"termios","path":"python/termios.html","desc":"POSIX style tty control"}, "tty":{"name":"tty","type":"tty","path":"python/tty.html","desc":"终端控制功能"}, "pty":{"name":"pty","type":"pty","path":"python/pty.html","desc":"伪终端实用程序"}, "fcntl":{"name":"fcntl","type":"fcntl","path":"python/fcntl.html","desc":"fcntl和ioctl系统调用"}, "pipes":{"name":"pipes","type":"pipes","path":"python/pipes.html","desc":"shell管道接口"}, "resource":{"name":"resource","type":"resource","path":"python/resource.html","desc":"资源使用信息"}, "nis":{"name":"nis","type":"nis","path":"python/nis.html","desc":"Sun的NIS(黄页)接口"}, "syslog":{"name":"syslog","type":"syslog","path":"python/syslog.html","desc":"Unix syslog库例程"}, "superseded":{"name":"superseded","type":"superseded","path":"python/superseded.html","desc":"废弃的模块"}, "optparse":{"name":"optparse","type":"optparse","path":"python/optparse.html","desc":"解析命令行选项"}, "imp":{"name":"imp","type":"imp","path":"python/imp.html","desc":"访问import内部"}, "BeautifulSoup":{"name":"BeautifulSoup","type":"BeautifulSoup","path":"python/BeautifulSoup.html","desc":"一个HTML或XML的解析库,可以用它来方便的从网页中提取数据"}, "Pillow(PIL)":{"name":"Pillow(PIL)","type":"Pillow","path":"python/Pillow(PIL).html","desc":"功能强大的图像处理库"}, "requests(basic)":{"name":"requests(basic)","type":"requests","path":"python/requests(basic).html","desc":"强大、便捷的HTTP库(基础)"}, "requests(advance)":{"name":"requests(advance)","type":"requests","path":"python/requests(advance).html","desc":"强大、便捷的HTTP库(进阶)"}, "Scrapy":{"name":"Scrapy","type":"Scrapy","path":"python/Scrapy.html","desc":"一个快速、高层次的屏幕抓取和web抓取框架,用于抓取web站点并从页面中提取结构化的数据"}, "abc.abstractmethod":{"name":"abc.abstractmethod","type":"abc","path":"python/abc.html#abc.abstractmethod","desc":"装饰器指示抽象方法"}, "abc.abstractclassmethod":{"name":"abc.abstractclassmethod","type":"abc","path":"python/abc.html#abc.abstractclassmethod","desc":"内建classmethod()的子类,表示抽象类方法"}, "abc.abstractstaticmethod":{"name":"abc.abstractstaticmethod","type":"abc","path":"python/abc.html#abc.abstractstaticmethod","desc":"内建staticmethod()的子类,表示抽象静态方法"}, "abc.abstractproperty":{"name":"abc.abstractproperty","type":"abc","path":"python/abc.html#abc.abstractproperty","desc":"内建property()的子类,表示一个抽象属性"}, "abc.get_cache_token":{"name":"abc.get_cache_token","type":"abc","path":"python/abc.html#abc.get_cache_token","desc":"返回当前抽象基类缓存令牌"}, "aifc.open":{"name":"aifc.open","type":"aifc","path":"python/aifc.html#aifc.open","desc":"打开AIFF或AIFF-C文件并返回对象实例,方法如下所述"}, "array.typecodes":{"name":"array.typecodes","type":"array","path":"python/array.html#array.typecodes","desc":"包含所有可用类型代码的字符串"}, "ast.parse":{"name":"ast.parse","type":"ast","path":"python/ast.html#ast.parse","desc":"将源解析为AST节点"}, "ast.literal_eval":{"name":"ast.literal_eval","type":"ast","path":"python/ast.html#ast.literal_eval","desc":"安全计算表达式节点或包含Python字面值或容器显示的字符串"}, "ast.get_docstring":{"name":"ast.get_docstring","type":"ast","path":"python/ast.html#ast.get_docstring","desc":"Return the docstring of the given node (which must be a FunctionDef, ClassDef or Module node), or None if it has no docstring"}, "ast.fix_missing_locations":{"name":"ast.fix_missing_locations","type":"ast","path":"python/ast.html#ast.fix_missing_locations","desc":"当使用compile()编译节点树时,编译器对于支持它们的每个节点都需要lineno和col_offset属性"}, "ast.increment_lineno":{"name":"ast.increment_lineno","type":"ast","path":"python/ast.html#ast.increment_lineno","desc":"从节点开始,通过n增加树中每个节点的行号"}, "ast.copy_location":{"name":"ast.copy_location","type":"ast","path":"python/ast.html#ast.copy_location","desc":"如果可能,将源位置(lineno和col_offset)从old_node复制到new_node,然后返回new_node "}, "ast.iter_fields":{"name":"ast.iter_fields","type":"ast","path":"python/ast.html#ast.iter_fields","desc":"Yield a tuple of (fieldname, value) for each field in node"}, "ast.iter_child_nodes":{"name":"ast.iter_child_nodes","type":"ast","path":"python/ast.html#ast.iter_child_nodes","desc":"产生节点的所有直接子节点,即作为节点的所有字段和作为节点列表的所有字段项"}, "ast.walk":{"name":"ast.walk","type":"ast","path":"python/ast.html#ast.walk","desc":"递归地以节点(包括节点本身)开始生成树中的所有后代节点,没有指定顺序"}, "ast.dump":{"name":"ast.dump","type":"ast","path":"python/ast.html#ast.dump","desc":"在节点中返回树的格式化转储"}, "asynchat.async_chat.ac_in_buffer_size":{"name":"asynchat.async_chat.ac_in_buffer_size","type":"asynchat","path":"python/asynchat.html#asynchat.async_chat.ac_in_buffer_size","desc":"异步输入缓冲区大小(默认值4096)"}, "asynchat.async_chat.ac_out_buffer_size":{"name":"asynchat.async_chat.ac_out_buffer_size","type":"asynchat","path":"python/asynchat.html#asynchat.async_chat.ac_out_buffer_size","desc":"异步输出缓冲区大小(默认值4096)"}, "asyncore.loop":{"name":"asyncore.loop","type":"asyncore","path":"python/asyncore.html#asyncore.loop","desc":"输入轮询循环,在计数过程或所有打开的通道关闭后终止循环"}, "atexit.register":{"name":"atexit.register","type":"atexit","path":"python/atexit.html#atexit.register","desc":"将func寄存器作为要在终止时执行的函数"}, "atexit.unregister":{"name":"atexit.unregister","type":"atexit","path":"python/atexit.html#atexit.unregister","desc":"从要在解释器关机运行的函数列表中删除func"}, "audioop.add":{"name":"audioop.add","type":"audioop","path":"python/audioop.html#audioop.add","desc":"返回一个片段,它是作为参数传递的两个样本的相加"}, "audioop.adpcm2lin":{"name":"audioop.adpcm2lin","type":"audioop","path":"python/audioop.html#audioop.adpcm2lin","desc":"将Intel / DVI ADPCM编码片段解码为线性片段"}, "audioop.alaw2lin":{"name":"audioop.alaw2lin","type":"audioop","path":"python/audioop.html#audioop.alaw2lin","desc":"将a-LAW编码中的声音片段转换为线性编码的声音片段"}, "audioop.avg":{"name":"audioop.avg","type":"audioop","path":"python/audioop.html#audioop.avg","desc":"返回片段中所有样本的平均值"}, "audioop.avgpp":{"name":"audioop.avgpp","type":"audioop","path":"python/audioop.html#audioop.avgpp","desc":"返回片段中所有样本的平均峰 - 峰值"}, "audioop.bias":{"name":"audioop.bias","type":"audioop","path":"python/audioop.html#audioop.bias","desc":"返回作为原始片段的片段,并向每个样本添加偏差"}, "audioop.byteswap":{"name":"audioop.byteswap","type":"audioop","path":"python/audioop.html#audioop.byteswap","desc":"“Byteswap”片段中的所有样本,并返回修改的片段"}, "audioop.cross":{"name":"audioop.cross","type":"audioop","path":"python/audioop.html#audioop.cross","desc":"返回作为参数传递的片段中的零交叉的数量"}, "audioop.findfactor":{"name":"audioop.findfactor","type":"audioop","path":"python/audioop.html#audioop.findfactor","desc":"返回因子F使得rms(add(fragment, mul(reference, -F))) t4>是最小的,即返回要乘以参考的因子,以使其与片段尽可能匹配"}, "audioop.findfit":{"name":"audioop.findfit","type":"audioop","path":"python/audioop.html#audioop.findfit","desc":"尝试将引用与片段(应为更长的片段)的一部分匹配"}, "audioop.findmax":{"name":"audioop.findmax","type":"audioop","path":"python/audioop.html#audioop.findmax","desc":"搜索片段获取长度长度的切片(不是字节!)with maximum energy, i"}, "audioop.getsample":{"name":"audioop.getsample","type":"audioop","path":"python/audioop.html#audioop.getsample","desc":"返回样本index的值"}, "audioop.lin2adpcm":{"name":"audioop.lin2adpcm","type":"audioop","path":"python/audioop.html#audioop.lin2adpcm","desc":"将采样转换为4位Intel / DVI ADPCM编码"}, "audioop.lin2alaw":{"name":"audioop.lin2alaw","type":"audioop","path":"python/audioop.html#audioop.lin2alaw","desc":"将音频片段中的样本转换为a-LAW编码,并将其作为字节对象返回"}, "audioop.lin2lin":{"name":"audioop.lin2lin","type":"audioop","path":"python/audioop.html#audioop.lin2lin","desc":"以1-,2-,3-和4字节格式转换样本"}, "audioop.lin2ulaw":{"name":"audioop.lin2ulaw","type":"audioop","path":"python/audioop.html#audioop.lin2ulaw","desc":"将音频片段中的样本转换为u-LAW编码,并将其作为字节对象返回"}, "audioop.max":{"name":"audioop.max","type":"audioop","path":"python/audioop.html#audioop.max","desc":"返回片段中所有样本的绝对值的最大值"}, "audioop.maxpp":{"name":"audioop.maxpp","type":"audioop","path":"python/audioop.html#audioop.maxpp","desc":"返回声音片段中的最大峰 - 峰值"}, "audioop.minmax":{"name":"audioop.minmax","type":"audioop","path":"python/audioop.html#audioop.minmax","desc":"返回由声音片段中所有样本的最小值和最大值组成的元组"}, "audioop.mul":{"name":"audioop.mul","type":"audioop","path":"python/audioop.html#audioop.mul","desc":"返回具有原始片段中的所有样本乘以浮点值因子的片段"}, "audioop.ratecv":{"name":"audioop.ratecv","type":"audioop","path":"python/audioop.html#audioop.ratecv","desc":"转换输入片段的帧速率"}, "audioop.reverse":{"name":"audioop.reverse","type":"audioop","path":"python/audioop.html#audioop.reverse","desc":"反转片段中的样本,并返回修改的片段"}, "audioop.rms":{"name":"audioop.rms","type":"audioop","path":"python/audioop.html#audioop.rms","desc":"返回片段的均方根,即sqrt(sum(S_i^2)/n)"}, "audioop.tomono":{"name":"audioop.tomono","type":"audioop","path":"python/audioop.html#audioop.tomono","desc":"将立体声片段转换为单声道片段"}, "audioop.tostereo":{"name":"audioop.tostereo","type":"audioop","path":"python/audioop.html#audioop.tostereo","desc":"从单声道片段生成立体声片段"}, "audioop.ulaw2lin":{"name":"audioop.ulaw2lin","type":"audioop","path":"python/audioop.html#audioop.ulaw2lin","desc":"将u-LAW编码中的声音片段转换为线性编码的声音片段"}, "base64.b64encode":{"name":"base64.b64encode","type":"base64","path":"python/base64.html#base64.b64encode","desc":"使用Base64编码类字节对象s,并返回编码后的字节"}, "base64.b64decode":{"name":"base64.b64decode","type":"base64","path":"python/base64.html#base64.b64decode","desc":"解码Base64编码的类字节对象或ASCII字符串s并返回解码的字节"}, "base64.standard_b64encode":{"name":"base64.standard_b64encode","type":"base64","path":"python/base64.html#base64.standard_b64encode","desc":"使用标准的Base64字母表编码类字节对象 s并返回编码的字节"}, "base64.standard_b64decode":{"name":"base64.standard_b64decode","type":"base64","path":"python/base64.html#base64.standard_b64decode","desc":"使用标准的Base64字母表解码类字节对象或ASCII字符串s并返回解码的字节"}, "base64.urlsafe_b64encode":{"name":"base64.urlsafe_b64encode","type":"base64","path":"python/base64.html#base64.urlsafe_b64encode","desc":"使用URL和文件系统安全的字母表编码类字节对象s,它用-和_分别替换标准的Base64字母表中的+和/,并返回编码的字节"}, "base64.urlsafe_b64decode":{"name":"base64.urlsafe_b64decode","type":"base64","path":"python/base64.html#base64.urlsafe_b64decode","desc":"使用URL及文件系统安全的字母表解码类字节对象或ASCII字符串s,它将标准Base64字母表中的+替换为-、/替换为_,并返回解码后的字节"}, "base64.b32encode":{"name":"base64.b32encode","type":"base64","path":"python/base64.html#base64.b32encode","desc":"使用Base32编码类字节对象s并返回编码后的字节"}, "base64.b32decode":{"name":"base64.b32decode","type":"base64","path":"python/base64.html#base64.b32decode","desc":"解码Base32编码的bytes-like object或ASCII字符串s并返回解码的bytes"}, "base64.b16encode":{"name":"base64.b16encode","type":"base64","path":"python/base64.html#base64.b16encode","desc":"使用Base16编码bytes-like object s并返回编码的bytes"}, "base64.b16decode":{"name":"base64.b16decode","type":"base64","path":"python/base64.html#base64.b16decode","desc":"解码Base16编码的bytes-like object或ASCII字符串s并返回解码的bytes"}, "base64.a85encode":{"name":"base64.a85encode","type":"base64","path":"python/base64.html#base64.a85encode","desc":"使用Ascii85编码bytes-like object b并返回编码的bytes"}, "base64.a85decode":{"name":"base64.a85decode","type":"base64","path":"python/base64.html#base64.a85decode","desc":"解码Ascii85编码的bytes-like object或ASCII字符串b并返回解码的bytes"}, "base64.b85encode":{"name":"base64.b85encode","type":"base64","path":"python/base64.html#base64.b85encode","desc":"使用base85编码bytes-like object b(如git-style binary diffs)并返回编码的bytes"}, "base64.b85decode":{"name":"base64.b85decode","type":"base64","path":"python/base64.html#base64.b85decode","desc":"解码base85编码的bytes-like object或ASCII字符串b并返回解码的bytes"}, "base64.decode":{"name":"base64.decode","type":"base64","path":"python/base64.html#base64.decode","desc":"解码二进制输入文件的内容,并将生成的二进制数据写入输出文件"}, "base64.decodebytes":{"name":"base64.decodebytes","type":"base64","path":"python/base64.html#base64.decodebytes","desc":"解码bytes-like object s,其中必须包含一行或多行base64编码数据,并返回解码的bytes"}, "base64.encode":{"name":"base64.encode","type":"base64","path":"python/base64.html#base64.encode","desc":"编码二进制输入文件的内容,并将生成的base64编码数据写入输出文件"}, "base64.encodebytes":{"name":"base64.encodebytes","type":"base64","path":"python/base64.html#base64.encodebytes","desc":"编码类字节对象s,它可以包含任意二进制数据,并返回base64编码数据的字节,根据RFC 2045 (MIME),在输出的每76个字节之后插入换行符(b'\\n'),并确保末尾有一个换行符"}, "bdb.checkfuncname":{"name":"bdb.checkfuncname","type":"bdb","path":"python/bdb.html#bdb.checkfuncname","desc":"检查我们是否应该在这里断开,这取决于断点b设置的方式"}, "bdb.effective":{"name":"bdb.effective","type":"bdb","path":"python/bdb.html#bdb.effective","desc":"确定此行代码是否存在有效(活动)断点"}, "bdb.set_trace":{"name":"bdb.set_trace","type":"bdb","path":"python/bdb.html#bdb.set_trace","desc":"使用调用者框架中的Bdb实例开始调试"}, "binascii.a2b_uu":{"name":"binascii.a2b_uu","type":"binascii","path":"python/binascii.html#binascii.a2b_uu","desc":"将单行的uuencoded数据转换回二进制并返回二进制数据"}, "binascii.b2a_uu":{"name":"binascii.b2a_uu","type":"binascii","path":"python/binascii.html#binascii.b2a_uu","desc":"将二进制数据转换为一行ASCII字符,返回值是转换后的行,包括换行符"}, "binascii.a2b_base64":{"name":"binascii.a2b_base64","type":"binascii","path":"python/binascii.html#binascii.a2b_base64","desc":"将一个base64数据块转换回二进制并返回二进制数据"}, "binascii.b2a_base64":{"name":"binascii.b2a_base64","type":"binascii","path":"python/binascii.html#binascii.b2a_base64","desc":"在base64编码中将二进制数据转换为一行ASCII字符"}, "binascii.a2b_qp":{"name":"binascii.a2b_qp","type":"binascii","path":"python/binascii.html#binascii.a2b_qp","desc":"将一组引用可打印数据转换回二进制并返回二进制数据"}, "binascii.b2a_qp":{"name":"binascii.b2a_qp","type":"binascii","path":"python/binascii.html#binascii.b2a_qp","desc":"将二进制数据转换为带引号的可打印编码中的ASCII字符行"}, "binascii.a2b_hqx":{"name":"binascii.a2b_hqx","type":"binascii","path":"python/binascii.html#binascii.a2b_hqx","desc":"将binhex4格式的ASCII数据转换为二进制,不进行RLE解压缩"}, "binascii.rledecode_hqx":{"name":"binascii.rledecode_hqx","type":"binascii","path":"python/binascii.html#binascii.rledecode_hqx","desc":"按照binhex4标准对数据执行RLE解压缩"}, "binascii.rlecode_hqx":{"name":"binascii.rlecode_hqx","type":"binascii","path":"python/binascii.html#binascii.rlecode_hqx","desc":"对数据执行binhex4样式RLE压缩并返回结果"}, "binascii.b2a_hqx":{"name":"binascii.b2a_hqx","type":"binascii","path":"python/binascii.html#binascii.b2a_hqx","desc":"执行hexbin4二进制到ASCII的转换并返回结果字符串"}, "binascii.crc_hqx":{"name":"binascii.crc_hqx","type":"binascii","path":"python/binascii.html#binascii.crc_hqx","desc":"计算数据的binhex4 crc值,以值开始作为初始crc,并返回结果"}, "binascii.crc32":{"name":"binascii.crc32","type":"binascii","path":"python/binascii.html#binascii.crc32","desc":"以值的初始CRC开始,计算数据的32位校验和CRC-32"}, "binascii.b2a_hex":{"name":"binascii.b2a_hex","type":"binascii","path":"python/binascii.html#binascii.b2a_hex","desc":"返回二进制数据的十六进制表示"}, "binascii.a2b_hex":{"name":"binascii.a2b_hex","type":"binascii","path":"python/binascii.html#binascii.a2b_hex","desc":"返回由十六进制字符串hexstr表示的二进制数据"}, "binhex.binhex":{"name":"binhex.binhex","type":"binhex","path":"python/binhex.html#binhex.binhex","desc":"将文件名输入的二进制文件转换为binhex文件输出"}, "binhex.hexbin":{"name":"binhex.hexbin","type":"binhex","path":"python/binhex.html#binhex.hexbin","desc":"解码binhex文件输入"}, "bisect.bisect_left":{"name":"bisect.bisect_left","type":"bisect","path":"python/bisect.html#bisect.bisect_left","desc":"在a中找到x的插入点以保持排序顺序"}, "bisect.bisect_right":{"name":"bisect.bisect_right","type":"bisect","path":"python/bisect.html#bisect.bisect_right","desc":"类似于bisect_left(),但返回在a中x的任何现有条目之后(右侧)的插入点"}, "bisect.insort_left":{"name":"bisect.insort_left","type":"bisect","path":"python/bisect.html#bisect.insort_left","desc":"以排序顺序在a中插入x"}, "bisect.insort_right":{"name":"bisect.insort_right","type":"bisect","path":"python/bisect.html#bisect.insort_right","desc":"类似于insort_left(),但在x的任何现有条目后在a中插入x"}, "bz2.open":{"name":"bz2.open","type":"bz2","path":"python/bz2.html#bz2.open","desc":"在二进制或文本模式下打开bzip2压缩文件,返回file object"}, "bz2.compress":{"name":"bz2.compress","type":"bz2","path":"python/bz2.html#bz2.compress","desc":"压缩数据"}, "bz2.decompress":{"name":"bz2.decompress","type":"bz2","path":"python/bz2.html#bz2.decompress","desc":"解压缩数据"}, "calendar.setfirstweekday":{"name":"calendar.setfirstweekday","type":"calendar","path":"python/calendar.html#calendar.setfirstweekday","desc":"设置每周开始的工作日(0是星期一,6是星期日)"}, "calendar.firstweekday":{"name":"calendar.firstweekday","type":"calendar","path":"python/calendar.html#calendar.firstweekday","desc":"返回为平日的当前设置,每个星期开始"}, "calendar.isleap":{"name":"calendar.isleap","type":"calendar","path":"python/calendar.html#calendar.isleap","desc":"如果年是闰年,则返回True,否则False"}, "calendar.leapdays":{"name":"calendar.leapdays","type":"calendar","path":"python/calendar.html#calendar.leapdays","desc":"返回闰年的数目范围内从y1到y2 (专用), y1和y2是几年"}, "calendar.weekday":{"name":"calendar.weekday","type":"calendar","path":"python/calendar.html#calendar.weekday","desc":"返回年(1970 -"}, "calendar.weekheader":{"name":"calendar.weekheader","type":"calendar","path":"python/calendar.html#calendar.weekheader","desc":"返回包含缩写的星期几名称的标头"}, "calendar.monthrange":{"name":"calendar.monthrange","type":"calendar","path":"python/calendar.html#calendar.monthrange","desc":"返回月份,为指定的年、月中的工作日的天数,每月的第一天"}, "calendar.monthcalendar":{"name":"calendar.monthcalendar","type":"calendar","path":"python/calendar.html#calendar.monthcalendar","desc":"返回一个矩阵,代表一个月的日历"}, "calendar.prmonth":{"name":"calendar.prmonth","type":"calendar","path":"python/calendar.html#calendar.prmonth","desc":"打印由month()返回的一个月的日历"}, "calendar.month":{"name":"calendar.month","type":"calendar","path":"python/calendar.html#calendar.month","desc":"使用TextCalendar类的formatmonth()返回多行字符串中的一个月的日历"}, "calendar.prcal":{"name":"calendar.prcal","type":"calendar","path":"python/calendar.html#calendar.prcal","desc":"打印由calendar()返回的整年的日历"}, "calendar.calendar":{"name":"calendar.calendar","type":"calendar","path":"python/calendar.html#calendar.calendar","desc":"使用TextCalendar类的formatyear())作为多行字符串返回整年的3列日历"}, "calendar.timegm":{"name":"calendar.timegm","type":"calendar","path":"python/calendar.html#calendar.timegm","desc":"一个不相关但方便的函数,它需要一个时间元组,例如由time模块中的gmtime()函数返回,并返回相应的Unix时间戳值, 1970,和POSIX编码"}, "calendar.day_name":{"name":"calendar.day_name","type":"calendar","path":"python/calendar.html#calendar.day_name","desc":"一个数组,表示当前的区域设置中的星期数"}, "calendar.day_abbr":{"name":"calendar.day_abbr","type":"calendar","path":"python/calendar.html#calendar.day_abbr","desc":"一个数组,表示当前的区域设置中的缩写的星期数"}, "calendar.month_name":{"name":"calendar.month_name","type":"calendar","path":"python/calendar.html#calendar.month_name","desc":"一个数组,表示今年的几个月中的当前区域设置"}, "calendar.month_abbr":{"name":"calendar.month_abbr","type":"calendar","path":"python/calendar.html#calendar.month_abbr","desc":"一个数组,表示今年的缩写个月中的当前区域设置"}, "cgi.parse":{"name":"cgi.parse","type":"cgi","path":"python/cgi.html#cgi.parse","desc":"在环境或文件中解析查询(文件默认为sys"}, "cgi.parse_qs":{"name":"cgi.parse_qs","type":"cgi","path":"python/cgi.html#cgi.parse_qs","desc":"此模块中已弃用此函数"}, "cgi.parse_qsl":{"name":"cgi.parse_qsl","type":"cgi","path":"python/cgi.html#cgi.parse_qsl","desc":"此模块中已弃用此函数"}, "cgi.parse_multipart":{"name":"cgi.parse_multipart","type":"cgi","path":"python/cgi.html#cgi.parse_multipart","desc":"解析类型multipart / form-data的输入(用于文件上传)"}, "cgi.parse_header":{"name":"cgi.parse_header","type":"cgi","path":"python/cgi.html#cgi.parse_header","desc":"将MIME标头(例如Content-Type)解析为主值和参数字典"}, "cgi.test":{"name":"cgi.test","type":"cgi","path":"python/cgi.html#cgi.test","desc":"稳健的测试CGI脚本,可用作主程序"}, "cgi.print_environ":{"name":"cgi.print_environ","type":"cgi","path":"python/cgi.html#cgi.print_environ","desc":"在HTML中格式化shell环境"}, "cgi.print_form":{"name":"cgi.print_form","type":"cgi","path":"python/cgi.html#cgi.print_form","desc":"在HTML中格式化表单"}, "cgi.print_directory":{"name":"cgi.print_directory","type":"cgi","path":"python/cgi.html#cgi.print_directory","desc":"使用HTML格式化当前目录"}, "cgi.print_environ_usage":{"name":"cgi.print_environ_usage","type":"cgi","path":"python/cgi.html#cgi.print_environ_usage","desc":"在HTML中打印有用(由CGI使用)环境变量的列表"}, "cgi.escape":{"name":"cgi.escape","type":"cgi","path":"python/cgi.html#cgi.escape","desc":"将字符串s中的字符'&','<'和'>'如果您需要显示可能在HTML中包含此类字符的文本,请使用此选项"}, "cgitb.enable":{"name":"cgitb.enable","type":"cgitb","path":"python/cgitb.html#cgitb.enable","desc":"此函数使cgitb模块通过设置sys"}, "cgitb.handler":{"name":"cgitb.handler","type":"cgitb","path":"python/cgitb.html#cgitb.handler","desc":"此函数使用默认设置处理异常 (也即是,在浏览器中显示错误小心但不记录到一个文件中小心)"}, "cmath.phase":{"name":"cmath.phase","type":"cmath","path":"python/cmath.html#cmath.phase","desc":"返回阶段的x (也被称为参数的x),作为一个浮点数"}, "cmath.polar":{"name":"cmath.polar","type":"cmath","path":"python/cmath.html#cmath.polar","desc":"返回在极坐标系中的x表示"}, "cmath.rect":{"name":"cmath.rect","type":"cmath","path":"python/cmath.html#cmath.rect","desc":"返回复数x用极坐标r和phi"}, "cmath.exp":{"name":"cmath.exp","type":"cmath","path":"python/cmath.html#cmath.exp","desc":"返回指数值e**x"}, "cmath.log":{"name":"cmath.log","type":"cmath","path":"python/cmath.html#cmath.log","desc":"返回给定基的x的对数"}, "cmath.log10":{"name":"cmath.log10","type":"cmath","path":"python/cmath.html#cmath.log10","desc":"返回x的对数"}, "cmath.sqrt":{"name":"cmath.sqrt","type":"cmath","path":"python/cmath.html#cmath.sqrt","desc":"返回x的平方根"}, "cmath.acos":{"name":"cmath.acos","type":"cmath","path":"python/cmath.html#cmath.acos","desc":"返回x的反余弦"}, "cmath.asin":{"name":"cmath.asin","type":"cmath","path":"python/cmath.html#cmath.asin","desc":"返回x的反正弦值"}, "cmath.atan":{"name":"cmath.atan","type":"cmath","path":"python/cmath.html#cmath.atan","desc":"返回x的反正切值"}, "cmath.cos":{"name":"cmath.cos","type":"cmath","path":"python/cmath.html#cmath.cos","desc":"返回x的余弦值"}, "cmath.sin":{"name":"cmath.sin","type":"cmath","path":"python/cmath.html#cmath.sin","desc":"返回x的正弦值"}, "cmath.tan":{"name":"cmath.tan","type":"cmath","path":"python/cmath.html#cmath.tan","desc":"返回x的正切值"}, "cmath.acosh":{"name":"cmath.acosh","type":"cmath","path":"python/cmath.html#cmath.acosh","desc":"返回x的反双曲余弦值"}, "cmath.asinh":{"name":"cmath.asinh","type":"cmath","path":"python/cmath.html#cmath.asinh","desc":"返回x的反双曲正弦值"}, "cmath.atanh":{"name":"cmath.atanh","type":"cmath","path":"python/cmath.html#cmath.atanh","desc":"返回x的反双曲正切值"}, "cmath.cosh":{"name":"cmath.cosh","type":"cmath","path":"python/cmath.html#cmath.cosh","desc":"返回x的双曲余弦值"}, "cmath.sinh":{"name":"cmath.sinh","type":"cmath","path":"python/cmath.html#cmath.sinh","desc":"返回x的双曲正弦值"}, "cmath.tanh":{"name":"cmath.tanh","type":"cmath","path":"python/cmath.html#cmath.tanh","desc":"返回x的双曲正切值"}, "cmath.isfinite":{"name":"cmath.isfinite","type":"cmath","path":"python/cmath.html#cmath.isfinite","desc":"如果x的实部和虚部都是有限的,则返回True,否则返回False"}, "cmath.isinf":{"name":"cmath.isinf","type":"cmath","path":"python/cmath.html#cmath.isinf","desc":"如果x的实部或虚部是无穷大,而False则返回True"}, "cmath.isnan":{"name":"cmath.isnan","type":"cmath","path":"python/cmath.html#cmath.isnan","desc":"如果x的实部或虚部是NaN,而False则返回True"}, "cmath.isclose":{"name":"cmath.isclose","type":"cmath","path":"python/cmath.html#cmath.isclose","desc":"如果a和b的值彼此接近,而False则返回True"}, "cmath.pi":{"name":"cmath.pi","type":"cmath","path":"python/cmath.html#cmath.pi","desc":"数学常量π,作为一个浮点数"}, "cmath.e":{"name":"cmath.e","type":"cmath","path":"python/cmath.html#cmath.e","desc":"数学常数e,作为一个浮点数"}, "code.interact":{"name":"code.interact","type":"code","path":"python/code.html#code.interact","desc":"便利功能运行读取 - 打印回路"}, "code.compile_command":{"name":"code.compile_command","type":"code","path":"python/code.html#code.compile_command","desc":"这个函数对于想要模拟Python的解释器主循环(a"}, "codecs.encode":{"name":"codecs.encode","type":"codecs","path":"python/codecs.html#codecs.encode","desc":"使用为编码注册的编解码器编码obj"}, "codecs.decode":{"name":"codecs.decode","type":"codecs","path":"python/codecs.html#codecs.decode","desc":"使用为编码注册的编解码器解码obj"}, "codecs.lookup":{"name":"codecs.lookup","type":"codecs","path":"python/codecs.html#codecs.lookup","desc":"在Python编解码器注册表中查找编解码器信息,并返回如下定义的CodecInfo对象"}, "codecs.getencoder":{"name":"codecs.getencoder","type":"codecs","path":"python/codecs.html#codecs.getencoder","desc":"查找给定编码的编解码器并返回其编码器功能"}, "codecs.getdecoder":{"name":"codecs.getdecoder","type":"codecs","path":"python/codecs.html#codecs.getdecoder","desc":"查找给定编码的编解码器并返回其解码器功能"}, "codecs.getincrementalencoder":{"name":"codecs.getincrementalencoder","type":"codecs","path":"python/codecs.html#codecs.getincrementalencoder","desc":"查找给定编码的编解码器并返回其增量编码器类或工厂功能"}, "codecs.getincrementaldecoder":{"name":"codecs.getincrementaldecoder","type":"codecs","path":"python/codecs.html#codecs.getincrementaldecoder","desc":"查找给定编码的编解码器并返回其增量解码器类或工厂功能"}, "codecs.getreader":{"name":"codecs.getreader","type":"codecs","path":"python/codecs.html#codecs.getreader","desc":"查找给定编码的编解码器并返回它的StreamReader类或工厂函数"}, "codecs.getwriter":{"name":"codecs.getwriter","type":"codecs","path":"python/codecs.html#codecs.getwriter","desc":"查找给定编码的编解码器并返回它的StreamWriter类或工厂函数"}, "codecs.register":{"name":"codecs.register","type":"codecs","path":"python/codecs.html#codecs.register","desc":"注册编解码器搜索功能"}, "codecs.open":{"name":"codecs.open","type":"codecs","path":"python/codecs.html#codecs.open","desc":"使用给定的模式打开编码文件并返回StreamReaderWriter的实例,从而提供透明的编码/解码"}, "codecs.EncodedFile":{"name":"codecs.EncodedFile","type":"codecs","path":"python/codecs.html#codecs.EncodedFile","desc":"返回一个StreamRecoder实例,它提供了透明代码转换的文件的包装版本"}, "codecs.iterencode":{"name":"codecs.iterencode","type":"codecs","path":"python/codecs.html#codecs.iterencode","desc":"使用增量编码器迭代编码迭代器提供的输入"}, "codecs.iterdecode":{"name":"codecs.iterdecode","type":"codecs","path":"python/codecs.html#codecs.iterdecode","desc":"使用增量式解码器迭代解码迭代器提供的输入"}, "codecs.register_error":{"name":"codecs.register_error","type":"codecs","path":"python/codecs.html#codecs.register_error","desc":"在名称name下注册错误处理函数error_handler"}, "codecs.lookup_error":{"name":"codecs.lookup_error","type":"codecs","path":"python/codecs.html#codecs.lookup_error","desc":"返回之前在名称name下注册的错误处理程序"}, "codecs.strict_errors":{"name":"codecs.strict_errors","type":"codecs","path":"python/codecs.html#codecs.strict_errors","desc":"实现'strict'错误处理:每个编码或解码错误都会引发一个UnicodeError"}, "codecs.replace_errors":{"name":"codecs.replace_errors","type":"codecs","path":"python/codecs.html#codecs.replace_errors","desc":"实现'replace'错误处理(仅用于text encodings):替换'?' for encoding errors (to be encoded by the codec), and '\\ufffd' (the Unicode replacement character) for decoding errors"}, "codecs.ignore_errors":{"name":"codecs.ignore_errors","type":"codecs","path":"python/codecs.html#codecs.ignore_errors","desc":"实现'ignore'错误处理:忽略格式错误的数据,继续编码或解码,恕不另行通知"}, "codecs.xmlcharrefreplace_errors":{"name":"codecs.xmlcharrefreplace_errors","type":"codecs","path":"python/codecs.html#codecs.xmlcharrefreplace_errors","desc":"实现'xmlcharrefreplace'错误处理(仅适用于使用text encodings编码):将不可编码字符替换为适当的XML字符引用"}, "codecs.backslashreplace_errors":{"name":"codecs.backslashreplace_errors","type":"codecs","path":"python/codecs.html#codecs.backslashreplace_errors","desc":"实现'backslashreplace'错误处理(仅适用于text encodings):格式错误的数据被替换为反斜杠转义序列"}, "codecs.namereplace_errors":{"name":"codecs.namereplace_errors","type":"codecs","path":"python/codecs.html#codecs.namereplace_errors","desc":"实现'namereplace'错误处理(仅适用于使用text encodings编码):不可编码字符被替换为\\N{"}, "encodings.idna.nameprep":{"name":"encodings.idna.nameprep","type":"codecs","path":"python/codecs.html#encodings.idna.nameprep","desc":"返回标签的名称准备版本"}, "encodings.idna.ToASCII":{"name":"encodings.idna.ToASCII","type":"codecs","path":"python/codecs.html#encodings.idna.ToASCII","desc":"按照 RFC 3490的规定将标签转换为ASCII"}, "encodings.idna.ToUnicode":{"name":"encodings.idna.ToUnicode","type":"codecs","path":"python/codecs.html#encodings.idna.ToUnicode","desc":"按照 RFC 3490的规定将标签转换为Unicode"}, "codecs.BOM":{"name":"codecs.BOM","type":"codecs","path":"python/codecs.html#codecs.BOM","desc":"这些常量定义了各种字节序列,即多个编码的Unicode字节顺序标记(BOM)"}, "codeop.compile_command":{"name":"codeop.compile_command","type":"codeop","path":"python/codeop.html#codeop.compile_command","desc":"尝试编译源,它应是一个Python代码字符串,并且如果source是有效的Python代码,则返回一个代码对象"}, "collections.namedtuple":{"name":"collections.namedtuple","type":"collections","path":"python/collections.html#collections.namedtuple","desc":"返回一个叫做typename的新的元组子类"}, "colorsys.rgb_to_yiq":{"name":"colorsys.rgb_to_yiq","type":"colorsys","path":"python/colorsys.html#colorsys.rgb_to_yiq","desc":"将颜色从RGB坐标转换为YIQ坐标"}, "colorsys.yiq_to_rgb":{"name":"colorsys.yiq_to_rgb","type":"colorsys","path":"python/colorsys.html#colorsys.yiq_to_rgb","desc":"将颜色从YIQ坐标转换为RGB坐标"}, "colorsys.rgb_to_hls":{"name":"colorsys.rgb_to_hls","type":"colorsys","path":"python/colorsys.html#colorsys.rgb_to_hls","desc":"将颜色从RGB坐标转换为HLS坐标"}, "colorsys.hls_to_rgb":{"name":"colorsys.hls_to_rgb","type":"colorsys","path":"python/colorsys.html#colorsys.hls_to_rgb","desc":"将颜色从HLS坐标转换为RGB坐标"}, "colorsys.rgb_to_hsv":{"name":"colorsys.rgb_to_hsv","type":"colorsys","path":"python/colorsys.html#colorsys.rgb_to_hsv","desc":"将颜色从RGB坐标转换为HSV坐标"}, "colorsys.hsv_to_rgb":{"name":"colorsys.hsv_to_rgb","type":"colorsys","path":"python/colorsys.html#colorsys.hsv_to_rgb","desc":"将颜色从HSV坐标转换为RGB坐标"}, "compileall.compile_dir":{"name":"compileall.compile_dir","type":"compileall","path":"python/compileall.html#compileall.compile_dir","desc":"递归地下降由dir命名的目录树,编译所有"}, "compileall.compile_file":{"name":"compileall.compile_file","type":"compileall","path":"python/compileall.html#compileall.compile_file","desc":"使用路径fullname编译文件"}, "compileall.compile_path":{"name":"compileall.compile_path","type":"compileall","path":"python/compileall.html#compileall.compile_path","desc":"字节编译沿sys"}, "concurrent.futures.wait":{"name":"concurrent.futures.wait","type":"concurrent.futures","path":"python/concurrent.futures.html#concurrent.futures.wait","desc":"等待由fs给出的Future实例(可能由不同的Executor实例创建)完成"}, "concurrent.futures.as_completed":{"name":"concurrent.futures.as_completed","type":"concurrent.futures","path":"python/concurrent.futures.html#concurrent.futures.as_completed","desc":"在多个Future实例(可能由不同的Executor实例创建)上的迭代器(iterator)将会被返回,这些Future实例由fs完成(结束或者被停止)时产生(译者注:fs可以是隐含有一系列Future实例以及其他普通值的组合,返回的迭代器迭代的是那些Future实例,不包含普通的值)"}, "configparser.MAX_INTERPOLATION_DEPTH":{"name":"configparser.MAX_INTERPOLATION_DEPTH","type":"configparser","path":"python/configparser.html#configparser.MAX_INTERPOLATION_DEPTH","desc":"当raw参数为false时,get()的递归插值的最大深度"}, "False":{"name":"False","type":"constants","path":"python/constants.html#False","desc":"bool类型的假值"}, "True":{"name":"True","type":"constants","path":"python/constants.html#True","desc":"bool类型的真值"}, "None":{"name":"None","type":"constants","path":"python/constants.html#None","desc":"NoneType 类型的唯一值"}, "NotImplemented":{"name":"NotImplemented","type":"constants","path":"python/constants.html#NotImplemented","desc":"应该由特殊的二元方法返回的特殊值(例如__eq__(), __lt__(), __add__(), __rsub__()等)以指示没有相对于另一类型实现所述操作;可以通过就地二进制特殊方法(例如,__imul__(),__iand__()等)为同一目的"}, "Ellipsis":{"name":"Ellipsis","type":"constants","path":"python/constants.html#Ellipsis","desc":"与"}, "__debug__":{"name":"__debug__","type":"constants","path":"python/constants.html#__debug__","desc":"如果Python未使用-O选项启动,则此常数为true"}, "quit":{"name":"quit","type":"constants","path":"python/constants.html#quit","desc":"打印时打印对象,打印一条消息,如“退出()”或Ctrl-D(即“EOF)退出,并且在调用时,使用指定的退出代码提升SystemExit"}, "copyright":{"name":"copyright","type":"constants","path":"python/constants.html#copyright","desc":"当打印这些对象时,打印一条类似“Type license() to see the full license text”的信息,当调用它们时,则以分页的方式(一次一个屏幕)显示相应的文本"}, "contextlib.contextmanager":{"name":"contextlib.contextmanager","type":"contextlib","path":"python/contextlib.html#contextlib.contextmanager","desc":"这个函数是一个装饰器,它可以用来一个工厂函数用于with语句上下文管理器,而不需要创建一个类或单独的__enter__()和__exit__()方法"}, "contextlib.closing":{"name":"contextlib.closing","type":"contextlib","path":"python/contextlib.html#contextlib.closing","desc":"返回一个上下文管理器,在块完成后关闭事"}, "contextlib.suppress":{"name":"contextlib.suppress","type":"contextlib","path":"python/contextlib.html#contextlib.suppress","desc":"返回上下文管理器,如果它们出现在with语句的主体中,则禁止任何指定的异常,然后使用with语句结束后的第一个语句恢复执行"}, "contextlib.redirect_stdout":{"name":"contextlib.redirect_stdout","type":"contextlib","path":"python/contextlib.html#contextlib.redirect_stdout","desc":"上下文管理器用于将sys"}, "contextlib.redirect_stderr":{"name":"contextlib.redirect_stderr","type":"contextlib","path":"python/contextlib.html#contextlib.redirect_stderr","desc":"与redirect_stdout()类似,但将sys"}, "copy.copy":{"name":"copy.copy","type":"copy","path":"python/copy.html#copy.copy","desc":"返回x的浅拷贝"}, "copy.deepcopy":{"name":"copy.deepcopy","type":"copy","path":"python/copy.html#copy.deepcopy","desc":"返回x的深度副本"}, "copyreg.constructor":{"name":"copyreg.constructor","type":"copyreg","path":"python/copyreg.html#copyreg.constructor","desc":"将对象声明为有效的构造函数"}, "copyreg.pickle":{"name":"copyreg.pickle","type":"copyreg","path":"python/copyreg.html#copyreg.pickle","desc":"声明函数应用作类型类型的对象的“缩减”函数"}, "crypt.crypt":{"name":"crypt.crypt","type":"crypt","path":"python/crypt.html#crypt.crypt","desc":"字通常是在提示或图形界面中输入的用户密码"}, "crypt.mksalt":{"name":"crypt.mksalt","type":"crypt","path":"python/crypt.html#crypt.mksalt","desc":"返回指定方法的随机生成的盐"}, "crypt.METHOD_SHA512":{"name":"crypt.METHOD_SHA512","type":"crypt","path":"python/crypt.html#crypt.METHOD_SHA512","desc":"一个16字符盐和86字符散列的模块化地址格式方法"}, "crypt.METHOD_SHA256":{"name":"crypt.METHOD_SHA256","type":"crypt","path":"python/crypt.html#crypt.METHOD_SHA256","desc":"另一个模块化地址格式方法,具有16个字符的盐和43个字符的哈希"}, "crypt.METHOD_MD5":{"name":"crypt.METHOD_MD5","type":"crypt","path":"python/crypt.html#crypt.METHOD_MD5","desc":"另一个模块化地址格式方法,具有8个字符的盐和22个字符的哈希"}, "crypt.METHOD_CRYPT":{"name":"crypt.METHOD_CRYPT","type":"crypt","path":"python/crypt.html#crypt.METHOD_CRYPT","desc":"传统方法使用2个字符的盐和13个字符的哈希"}, "csv.reader":{"name":"csv.reader","type":"csv","path":"python/csv.html#csv.reader","desc":"返回一个读取器对象,它将在给定的csvfile中迭代"}, "csv.writer":{"name":"csv.writer","type":"csv","path":"python/csv.html#csv.writer","desc":"返回一个writer对象,负责将用户的数据转换为给定类文件对象上的分隔字符串"}, "csv.register_dialect":{"name":"csv.register_dialect","type":"csv","path":"python/csv.html#csv.register_dialect","desc":"将方言与名称相关联"}, "csv.unregister_dialect":{"name":"csv.unregister_dialect","type":"csv","path":"python/csv.html#csv.unregister_dialect","desc":"从方言注册表中删除与名称关联的方言"}, "csv.get_dialect":{"name":"csv.get_dialect","type":"csv","path":"python/csv.html#csv.get_dialect","desc":"返回与名称关联的方言"}, "csv.list_dialects":{"name":"csv.list_dialects","type":"csv","path":"python/csv.html#csv.list_dialects","desc":"返回所有注册方言的名称"}, "csv.field_size_limit":{"name":"csv.field_size_limit","type":"csv","path":"python/csv.html#csv.field_size_limit","desc":"返回解析器允许的当前最大字段大小"}, "csv.QUOTE_ALL":{"name":"csv.QUOTE_ALL","type":"csv","path":"python/csv.html#csv.QUOTE_ALL","desc":"指示writer对象引用所有字段"}, "csv.QUOTE_MINIMAL":{"name":"csv.QUOTE_MINIMAL","type":"csv","path":"python/csv.html#csv.QUOTE_MINIMAL","desc":"指示writer对象仅引用包含特殊字符(如分隔符,quotechar或lineterminator t5>"}, "csv.QUOTE_NONNUMERIC":{"name":"csv.QUOTE_NONNUMERIC","type":"csv","path":"python/csv.html#csv.QUOTE_NONNUMERIC","desc":"指示writer对象引用所有非数字字段"}, "csv.QUOTE_NONE":{"name":"csv.QUOTE_NONE","type":"csv","path":"python/csv.html#csv.QUOTE_NONE","desc":"指示writer对象从不引用字段"}, "ctypes.CFUNCTYPE":{"name":"ctypes.CFUNCTYPE","type":"ctypes","path":"python/ctypes.html#ctypes.CFUNCTYPE","desc":"返回的函数原型创建使用标准C调用约定的函数"}, "ctypes.WINFUNCTYPE":{"name":"ctypes.WINFUNCTYPE","type":"ctypes","path":"python/ctypes.html#ctypes.WINFUNCTYPE","desc":"仅Windows:返回的函数原型创建使用stdcall调用约定的函数,除了在Windows CE上,WINFUNCTYPE()与CFUNCTYPE()该功能将在通话过程中释放GIL"}, "ctypes.PYFUNCTYPE":{"name":"ctypes.PYFUNCTYPE","type":"ctypes","path":"python/ctypes.html#ctypes.PYFUNCTYPE","desc":"返回的函数原型创建使用Python调用约定的函数"}, "ctypes.addressof":{"name":"ctypes.addressof","type":"ctypes","path":"python/ctypes.html#ctypes.addressof","desc":"以整数形式返回内存缓冲区的地址"}, "ctypes.alignment":{"name":"ctypes.alignment","type":"ctypes","path":"python/ctypes.html#ctypes.alignment","desc":"返回ctypes类型的对齐要求"}, "ctypes.byref":{"name":"ctypes.byref","type":"ctypes","path":"python/ctypes.html#ctypes.byref","desc":"返回指向obj的轻量级指针,该指针必须是ctypes类型的实例"}, "ctypes.cast":{"name":"ctypes.cast","type":"ctypes","path":"python/ctypes.html#ctypes.cast","desc":"该函数与C中的cast操作符类似"}, "ctypes.create_string_buffer":{"name":"ctypes.create_string_buffer","type":"ctypes","path":"python/ctypes.html#ctypes.create_string_buffer","desc":"这个函数创建一个可变的字符缓冲区"}, "ctypes.create_unicode_buffer":{"name":"ctypes.create_unicode_buffer","type":"ctypes","path":"python/ctypes.html#ctypes.create_unicode_buffer","desc":"这个函数创建一个可变的unicode字符缓冲区"}, "ctypes.DllCanUnloadNow":{"name":"ctypes.DllCanUnloadNow","type":"ctypes","path":"python/ctypes.html#ctypes.DllCanUnloadNow","desc":"仅Windows:这个函数是一个钩子,它允许实现具有ctypes的进程内COM服务器"}, "ctypes.DllGetClassObject":{"name":"ctypes.DllGetClassObject","type":"ctypes","path":"python/ctypes.html#ctypes.DllGetClassObject","desc":"仅Windows:这个函数是一个钩子,它允许实现具有ctypes的进程内COM服务器"}, "ctypes.util.find_library":{"name":"ctypes.util.find_library","type":"ctypes","path":"python/ctypes.html#ctypes.util.find_library","desc":"尝试找到一个库并返回一个路径名"}, "ctypes.util.find_msvcrt":{"name":"ctypes.util.find_msvcrt","type":"ctypes","path":"python/ctypes.html#ctypes.util.find_msvcrt","desc":"仅Windows:返回Python使用的VC运行时库的文件名,以及扩展模块"}, "ctypes.FormatError":{"name":"ctypes.FormatError","type":"ctypes","path":"python/ctypes.html#ctypes.FormatError","desc":"仅限Windows:返回错误代码代码的文本描述"}, "ctypes.GetLastError":{"name":"ctypes.GetLastError","type":"ctypes","path":"python/ctypes.html#ctypes.GetLastError","desc":"仅Windows:返回调用线程中由Windows设置的最后一个错误代码"}, "ctypes.memmove":{"name":"ctypes.memmove","type":"ctypes","path":"python/ctypes.html#ctypes.memmove","desc":"与标准C memmove库函数相同:将count个字节从src复制到dst"}, "ctypes.memset":{"name":"ctypes.memset","type":"ctypes","path":"python/ctypes.html#ctypes.memset","desc":"与标准C memset库函数相同:使用值c的count字节填充地址dst处的存储器块"}, "ctypes.POINTER":{"name":"ctypes.POINTER","type":"ctypes","path":"python/ctypes.html#ctypes.POINTER","desc":"这个工厂函数创建并返回一个新的ctypes指针类型"}, "ctypes.pointer":{"name":"ctypes.pointer","type":"ctypes","path":"python/ctypes.html#ctypes.pointer","desc":"这个函数创建一个新的指针实例,指向obj"}, "ctypes.resize":{"name":"ctypes.resize","type":"ctypes","path":"python/ctypes.html#ctypes.resize","desc":"此函数调整obj的内部缓冲区,该缓冲区必须是ctypes类型的实例"}, "ctypes.sizeof":{"name":"ctypes.sizeof","type":"ctypes","path":"python/ctypes.html#ctypes.sizeof","desc":"返回ctypes类型或实例内存缓冲区的大小(以字节为单位)"}, "ctypes.string_at":{"name":"ctypes.string_at","type":"ctypes","path":"python/ctypes.html#ctypes.string_at","desc":"此函数返回从内存地址address开始的C字符串作为字节对象"}, "ctypes.WinError":{"name":"ctypes.WinError","type":"ctypes","path":"python/ctypes.html#ctypes.WinError","desc":"仅Windows:这个函数可能是ctypes中命名最差的东西"}, "ctypes.wstring_at":{"name":"ctypes.wstring_at","type":"ctypes","path":"python/ctypes.html#ctypes.wstring_at","desc":"该函数以字符串的形式返回从内存地址地址开始的宽字符串"}, "curses.ascii.isalnum":{"name":"curses.ascii.isalnum","type":"curses.ascii","path":"python/curses.ascii.html#curses.ascii.isalnum","desc":"检查ASCII字母数字字符;它等同于isalpha(c) 或 isdigit(c)"}, "curses.ascii.isalpha":{"name":"curses.ascii.isalpha","type":"curses.ascii","path":"python/curses.ascii.html#curses.ascii.isalpha","desc":"检查ASCII字母字符;它等于isupper(c) 或 islower(c)"}, "curses.ascii.isascii":{"name":"curses.ascii.isascii","type":"curses.ascii","path":"python/curses.ascii.html#curses.ascii.isascii","desc":"检查符合7位ASCII集的字符值"}, "curses.ascii.isblank":{"name":"curses.ascii.isblank","type":"curses.ascii","path":"python/curses.ascii.html#curses.ascii.isblank","desc":"检查ASCII空格字符;空间或水平制表符"}, "curses.ascii.iscntrl":{"name":"curses.ascii.iscntrl","type":"curses.ascii","path":"python/curses.ascii.html#curses.ascii.iscntrl","desc":"检查ASCII控制字符(范围为0x00到0x1f或0x7f)"}, "curses.ascii.isdigit":{"name":"curses.ascii.isdigit","type":"curses.ascii","path":"python/curses.ascii.html#curses.ascii.isdigit","desc":"检查ASCII十进制数字,'0'到'9'"}, "curses.ascii.isgraph":{"name":"curses.ascii.isgraph","type":"curses.ascii","path":"python/curses.ascii.html#curses.ascii.isgraph","desc":"检查ASCII任何可打印字符(空格除外)"}, "curses.ascii.islower":{"name":"curses.ascii.islower","type":"curses.ascii","path":"python/curses.ascii.html#curses.ascii.islower","desc":"检查ASCII小写字符"}, "curses.ascii.isprint":{"name":"curses.ascii.isprint","type":"curses.ascii","path":"python/curses.ascii.html#curses.ascii.isprint","desc":"检查任何ASCII可打印字符(包括空格)"}, "curses.ascii.ispunct":{"name":"curses.ascii.ispunct","type":"curses.ascii","path":"python/curses.ascii.html#curses.ascii.ispunct","desc":"检查任何可打印的ASCII字符,它不是空格或字母数字字符"}, "curses.ascii.isspace":{"name":"curses.ascii.isspace","type":"curses.ascii","path":"python/curses.ascii.html#curses.ascii.isspace","desc":"检查ASCII空格字符;空格,换行,回车,换页,水平制表,垂直制表"}, "curses.ascii.isupper":{"name":"curses.ascii.isupper","type":"curses.ascii","path":"python/curses.ascii.html#curses.ascii.isupper","desc":"检查ASCII大写字母"}, "curses.ascii.isxdigit":{"name":"curses.ascii.isxdigit","type":"curses.ascii","path":"python/curses.ascii.html#curses.ascii.isxdigit","desc":"检查ASCII十六进制数字"}, "curses.ascii.isctrl":{"name":"curses.ascii.isctrl","type":"curses.ascii","path":"python/curses.ascii.html#curses.ascii.isctrl","desc":"检查ASCII控制字符(序数值0到31)"}, "curses.ascii.ismeta":{"name":"curses.ascii.ismeta","type":"curses.ascii","path":"python/curses.ascii.html#curses.ascii.ismeta","desc":"检查非ASCII字符(序数值为0x80及以上)"}, "curses.ascii.ascii":{"name":"curses.ascii.ascii","type":"curses.ascii","path":"python/curses.ascii.html#curses.ascii.ascii","desc":"返回对应于c的低7位的ASCII值"}, "curses.ascii.ctrl":{"name":"curses.ascii.ctrl","type":"curses.ascii","path":"python/curses.ascii.html#curses.ascii.ctrl","desc":"返回与给定字符相对应的控制字符(字符位值按位和0x1f)"}, "curses.ascii.alt":{"name":"curses.ascii.alt","type":"curses.ascii","path":"python/curses.ascii.html#curses.ascii.alt","desc":"返回与给定ASCII字符相对应的8位字符(字符位值以0x80为单位)"}, "curses.ascii.unctrl":{"name":"curses.ascii.unctrl","type":"curses.ascii","path":"python/curses.ascii.html#curses.ascii.unctrl","desc":"返回ASCII字符c的字符串表示形式"}, "curses.ascii.controlnames":{"name":"curses.ascii.controlnames","type":"curses.ascii","path":"python/curses.ascii.html#curses.ascii.controlnames","desc":"一个33个元素的字符串数组,包含从0(NUL)到0x1f(US)的32个ASCII控制字符的ASCII助记符,加上空格字符的助记符SP"}, "curses.baudrate":{"name":"curses.baudrate","type":"curses","path":"python/curses.html#curses.baudrate","desc":"以每秒位数返回终端的输出速度"}, "curses.beep":{"name":"curses.beep","type":"curses","path":"python/curses.html#curses.beep","desc":"发出短注意的声音"}, "curses.can_change_color":{"name":"curses.can_change_color","type":"curses","path":"python/curses.html#curses.can_change_color","desc":"返回 True 或者 False, 具体取决于是否程序员可以更改显示的颜色由终端"}, "curses.cbreak":{"name":"curses.cbreak","type":"curses","path":"python/curses.html#curses.cbreak","desc":"进入 cbreak 模式"}, "curses.color_content":{"name":"curses.color_content","type":"curses","path":"python/curses.html#curses.color_content","desc":"返回一组红绿蓝RGB的颜色强度分量color_number,其值要介于 0 和 COLORS"}, "curses.color_pair":{"name":"curses.color_pair","type":"curses","path":"python/curses.html#curses.color_pair","desc":"返回在指定的颜色显示文本的属性值"}, "curses.curs_set":{"name":"curses.curs_set","type":"curses","path":"python/curses.html#curses.curs_set","desc":"设置光标的状态"}, "curses.def_prog_mode":{"name":"curses.def_prog_mode","type":"curses","path":"python/curses.html#curses.def_prog_mode","desc":"作为"程序"模式,模式正在运行的程序使用curss时保存当前的终端模式"}, "curses.def_shell_mode":{"name":"curses.def_shell_mode","type":"curses","path":"python/curses.html#curses.def_shell_mode","desc":"作为"shell"模式,模式正在运行的程序不使用curses时保存当前的终端模式"}, "curses.delay_output":{"name":"curses.delay_output","type":"curses","path":"python/curses.html#curses.delay_output","desc":"插入一个 ms 毫秒的暂停再输出上"}, "curses.doupdate":{"name":"curses.doupdate","type":"curses","path":"python/curses.html#curses.doupdate","desc":"更新物理屏幕"}, "curses.echo":{"name":"curses.echo","type":"curses","path":"python/curses.html#curses.echo","desc":"进入echo模型"}, "curses.endwin":{"name":"curses.endwin","type":"curses","path":"python/curses.html#curses.endwin","desc":"取消初始化库,和终端回到正常状态"}, "curses.erasechar":{"name":"curses.erasechar","type":"curses","path":"python/curses.html#curses.erasechar","desc":"返回用户当前的擦除字符"}, "curses.filter":{"name":"curses.filter","type":"curses","path":"python/curses.html#curses.filter","desc":"必须在调用initscr()之前调用filter()例程(如果使用)"}, "curses.flash":{"name":"curses.flash","type":"curses","path":"python/curses.html#curses.flash","desc":"闪烁屏幕"}, "curses.flushinp":{"name":"curses.flushinp","type":"curses","path":"python/curses.html#curses.flushinp","desc":"刷新所有输入缓冲区"}, "curses.getmouse":{"name":"curses.getmouse","type":"curses","path":"python/curses.html#curses.getmouse","desc":"After getch() returns KEY_MOUSE to signal a mouse event, this method should be call to retrieve the queued mouse event, represented as a 5-tuple (id, x, y, z, bstate)"}, "curses.getsyx":{"name":"curses.getsyx","type":"curses","path":"python/curses.html#curses.getsyx","desc":"返回y和x中虚拟屏幕光标的当前坐标"}, "curses.getwin":{"name":"curses.getwin","type":"curses","path":"python/curses.html#curses.getwin","desc":"通过前面的putwin()调用读取存储在文件中的窗口相关数据"}, "curses.has_colors":{"name":"curses.has_colors","type":"curses","path":"python/curses.html#curses.has_colors","desc":"如果终端可以显示颜色,则返回True;否则,返回False"}, "curses.has_ic":{"name":"curses.has_ic","type":"curses","path":"python/curses.html#curses.has_ic","desc":"如果终端具有插入和删除字符功能,则返回True"}, "curses.has_il":{"name":"curses.has_il","type":"curses","path":"python/curses.html#curses.has_il","desc":"如果终端具有插入和删除行功能,或者可以使用滚动区域模拟它们,则返回True"}, "curses.has_key":{"name":"curses.has_key","type":"curses","path":"python/curses.html#curses.has_key","desc":"如果当前终端类型识别出具有该值的关键字,则获取关键值ch,并返回True"}, "curses.halfdelay":{"name":"curses.halfdelay","type":"curses","path":"python/curses.html#curses.halfdelay","desc":"用于半延时模式,类似于Cbreak模式,因为用户键入的字符可立即用于程序"}, "curses.init_color":{"name":"curses.init_color","type":"curses","path":"python/curses.html#curses.init_color","desc":"改变颜色的定义,取出要改变的颜色的数字,后面跟着三个RGB值(红色,绿色和蓝色成分的数量)"}, "curses.init_pair":{"name":"curses.init_pair","type":"curses","path":"python/curses.html#curses.init_pair","desc":"更改颜色对的定义"}, "curses.initscr":{"name":"curses.initscr","type":"curses","path":"python/curses.html#curses.initscr","desc":"初始化库"}, "curses.is_term_resized":{"name":"curses.is_term_resized","type":"curses","path":"python/curses.html#curses.is_term_resized","desc":"如果resize_term()会修改窗口结构,则返回True否则返回False"}, "curses.isendwin":{"name":"curses.isendwin","type":"curses","path":"python/curses.html#curses.isendwin","desc":"如果调用了endwin()(即,curses库已被初始化),则返回True"}, "curses.keyname":{"name":"curses.keyname","type":"curses","path":"python/curses.html#curses.keyname","desc":"返回编号为k的密钥的名称"}, "curses.killchar":{"name":"curses.killchar","type":"curses","path":"python/curses.html#curses.killchar","desc":"返回用户的当前行杀死字符"}, "curses.longname":{"name":"curses.longname","type":"curses","path":"python/curses.html#curses.longname","desc":"返回一个字符串,其中包含描述当前终端的terminfo长名称字段"}, "curses.meta":{"name":"curses.meta","type":"curses","path":"python/curses.html#curses.meta","desc":"如果是是1,则允许输入8位字符"}, "curses.mouseinterval":{"name":"curses.mouseinterval","type":"curses","path":"python/curses.html#curses.mouseinterval","desc":"设置按下和释放事件之间可以经过的最大时间(以毫秒为单位),以便将它们识别为点击,并返回上一个间隔值"}, "curses.mousemask":{"name":"curses.mousemask","type":"curses","path":"python/curses.html#curses.mousemask","desc":"设置要报告的鼠标事件,并返回一个元组(availmask, oldmask)"}, "curses.napms":{"name":"curses.napms","type":"curses","path":"python/curses.html#curses.napms","desc":"Sleep for ms milliseconds"}, "curses.newpad":{"name":"curses.newpad","type":"curses","path":"python/curses.html#curses.newpad","desc":"创建并返回指向具有给定行数和列数的新Pad数据结构的指针"}, "curses.newwin":{"name":"curses.newwin","type":"curses","path":"python/curses.html#curses.newwin","desc":"返回一个新的窗口,其左上角位于(begin_y, begin_x),其高度/宽度为nlines < / T3> / NCOLS T4>"}, "curses.nl":{"name":"curses.nl","type":"curses","path":"python/curses.html#curses.nl","desc":"进入换行模式"}, "curses.nocbreak":{"name":"curses.nocbreak","type":"curses","path":"python/curses.html#curses.nocbreak","desc":"离开cbreak模式"}, "curses.noecho":{"name":"curses.noecho","type":"curses","path":"python/curses.html#curses.noecho","desc":"留下回声模式"}, "curses.nonl":{"name":"curses.nonl","type":"curses","path":"python/curses.html#curses.nonl","desc":"离开换行模式"}, "curses.noqiflush":{"name":"curses.noqiflush","type":"curses","path":"python/curses.html#curses.noqiflush","desc":"当使用noqiflush()例程时,与INTR,QUIT和SUSP字符关联的输入和输出队列的正常刷新将不会完成"}, "curses.noraw":{"name":"curses.noraw","type":"curses","path":"python/curses.html#curses.noraw","desc":"保持原始模式"}, "curses.pair_content":{"name":"curses.pair_content","type":"curses","path":"python/curses.html#curses.pair_content","desc":"返回包含请求颜色对的颜色的元组(fg, bg)"}, "curses.pair_number":{"name":"curses.pair_number","type":"curses","path":"python/curses.html#curses.pair_number","desc":"返回由属性值attr设置的颜色对的编号"}, "curses.putp":{"name":"curses.putp","type":"curses","path":"python/curses.html#curses.putp","desc":"Equivalent to tputs(str, 1, putchar); emit the value of a specified terminfo capability for the current terminal"}, "curses.qiflush":{"name":"curses.qiflush","type":"curses","path":"python/curses.html#curses.qiflush","desc":"如果flag为False,则效果与调用noqiflush()相同"}, "curses.raw":{"name":"curses.raw","type":"curses","path":"python/curses.html#curses.raw","desc":"进入原始模式"}, "curses.reset_prog_mode":{"name":"curses.reset_prog_mode","type":"curses","path":"python/curses.html#curses.reset_prog_mode","desc":"如之前由def_prog_mode()保存,将终端恢复到“编程”模式"}, "curses.reset_shell_mode":{"name":"curses.reset_shell_mode","type":"curses","path":"python/curses.html#curses.reset_shell_mode","desc":"如以前由def_shell_mode()保存的,将终端恢复到“shell”模式"}, "curses.resetty":{"name":"curses.resetty","type":"curses","path":"python/curses.html#curses.resetty","desc":"将终端模式的状态恢复到最后一次调用savetty()时的状态"}, "curses.resize_term":{"name":"curses.resize_term","type":"curses","path":"python/curses.html#curses.resize_term","desc":"Backend function used by resizeterm(), performing most of the work; when resizing the windows, resize_term() blank-fills the areas that are extended"}, "curses.resizeterm":{"name":"curses.resizeterm","type":"curses","path":"python/curses.html#curses.resizeterm","desc":"将标准窗口和当前窗口调整为指定尺寸,并调整由记录窗口尺寸的curses库(特别是SIGWINCH处理程序)使用的其他簿记数据"}, "curses.savetty":{"name":"curses.savetty","type":"curses","path":"python/curses.html#curses.savetty","desc":"将终端模式的当前状态保存在缓冲区中,可由resetty()使用"}, "curses.setsyx":{"name":"curses.setsyx","type":"curses","path":"python/curses.html#curses.setsyx","desc":"将虚拟屏幕光标设置为y,x"}, "curses.setupterm":{"name":"curses.setupterm","type":"curses","path":"python/curses.html#curses.setupterm","desc":"初始化终端"}, "curses.start_color":{"name":"curses.start_color","type":"curses","path":"python/curses.html#curses.start_color","desc":"如果程序员想要使用颜色,并且在任何其他颜色操作例程被调用之前必须被调用"}, "curses.termattrs":{"name":"curses.termattrs","type":"curses","path":"python/curses.html#curses.termattrs","desc":"返回终端支持的所有视频属性的逻辑OR"}, "curses.termname":{"name":"curses.termname","type":"curses","path":"python/curses.html#curses.termname","desc":"返回环境变量 TERM的值,截断为14个字符"}, "curses.tigetflag":{"name":"curses.tigetflag","type":"curses","path":"python/curses.html#curses.tigetflag","desc":"返回与terminfo能力名称capname对应的布尔能力的值"}, "curses.tigetnum":{"name":"curses.tigetnum","type":"curses","path":"python/curses.html#curses.tigetnum","desc":"返回与terminfo能力名称capname对应的数字能力的值"}, "curses.tigetstr":{"name":"curses.tigetstr","type":"curses","path":"python/curses.html#curses.tigetstr","desc":"返回与terminfo能力名称capname对应的字符串能力的值"}, "curses.tparm":{"name":"curses.tparm","type":"curses","path":"python/curses.html#curses.tparm","desc":"使用提供的参数实例化字符串str,其中str应该是从terminfo数据库获得的参数化字符串"}, "curses.typeahead":{"name":"curses.typeahead","type":"curses","path":"python/curses.html#curses.typeahead","desc":"指定文件描述符fd用于键入检查"}, "curses.unctrl":{"name":"curses.unctrl","type":"curses","path":"python/curses.html#curses.unctrl","desc":"返回一个字符串,它是字符ch的可打印表示"}, "curses.ungetch":{"name":"curses.ungetch","type":"curses","path":"python/curses.html#curses.ungetch","desc":"按ch,下一个getch()将返回它"}, "curses.update_lines_cols":{"name":"curses.update_lines_cols","type":"curses","path":"python/curses.html#curses.update_lines_cols","desc":"更新 LINES和 COLS"}, "curses.unget_wch":{"name":"curses.unget_wch","type":"curses","path":"python/curses.html#curses.unget_wch","desc":"按ch,下一个get_wch()将返回它"}, "curses.ungetmouse":{"name":"curses.ungetmouse","type":"curses","path":"python/curses.html#curses.ungetmouse","desc":"将KEY_MOUSE事件推入输入队列,将给定的状态数据与它关联"}, "curses.use_env":{"name":"curses.use_env","type":"curses","path":"python/curses.html#curses.use_env","desc":"如果使用,应该在调用initscr()或newterm之前调用此函数"}, "curses.use_default_colors":{"name":"curses.use_default_colors","type":"curses","path":"python/curses.html#curses.use_default_colors","desc":"允许在支持此功能的终端上使用颜色的默认值"}, "curses.wrapper":{"name":"curses.wrapper","type":"curses","path":"python/curses.html#curses.wrapper","desc":"初始化curses并调用另一个可调用的对象,func,它应该是您的curses使用应用程序的其余部分"}, "curses.textpad.rectangle":{"name":"curses.textpad.rectangle","type":"curses","path":"python/curses.html#curses.textpad.rectangle","desc":"绘制一个矩形"}, "curses.ERR":{"name":"curses.ERR","type":"curses","path":"python/curses.html#curses.ERR","desc":"某些返回整数的curses例程(如getch())会在失败时返回ERR"}, "curses.OK":{"name":"curses.OK","type":"curses","path":"python/curses.html#curses.OK","desc":"某些返回整数的curses例程(如napms())会在成功时返回OK"}, "curses.version":{"name":"curses.version","type":"curses","path":"python/curses.html#curses.version","desc":"代表模块当前版本的字符串"}, "curses.panel.bottom_panel":{"name":"curses.panel.bottom_panel","type":"curses.panel","path":"python/curses.panel.html#curses.panel.bottom_panel","desc":"返回面板集中的底部面板"}, "curses.panel.new_panel":{"name":"curses.panel.new_panel","type":"curses.panel","path":"python/curses.panel.html#curses.panel.new_panel","desc":"返回面板对象,将其与给定窗口win关联"}, "curses.panel.top_panel":{"name":"curses.panel.top_panel","type":"curses.panel","path":"python/curses.panel.html#curses.panel.top_panel","desc":"返回面板集中的顶部面板"}, "curses.panel.update_panels":{"name":"curses.panel.update_panels","type":"curses.panel","path":"python/curses.panel.html#curses.panel.update_panels","desc":"在面板集中更改后更新虚拟屏幕"}, "datetime.MINYEAR":{"name":"datetime.MINYEAR","type":"datetime","path":"python/datetime.html#datetime.MINYEAR","desc":"date和datetime对象中允许的最小年份"}, "datetime.MAXYEAR":{"name":"datetime.MAXYEAR","type":"datetime","path":"python/datetime.html#datetime.MAXYEAR","desc":"date和datetime对象中允许的最大年份数"}, "dbm.whichdb":{"name":"dbm.whichdb","type":"dbm","path":"python/dbm.html#dbm.whichdb","desc":"此函数尝试猜测几个简单数据库模块中的哪一个可用 - dbm"}, "dbm.open":{"name":"dbm.open","type":"dbm","path":"python/dbm.html#dbm.open","desc":"打开数据库文件文件并返回相应的对象"}, "dbm.gnu.open":{"name":"dbm.gnu.open","type":"dbm","path":"python/dbm.html#dbm.gnu.open","desc":"打开gdbm数据库并返回一个gdbm对象"}, "dbm.ndbm.open":{"name":"dbm.ndbm.open","type":"dbm","path":"python/dbm.html#dbm.ndbm.open","desc":"打开dbm数据库并返回ndbm对象"}, "dbm.dumb.open":{"name":"dbm.dumb.open","type":"dbm","path":"python/dbm.html#dbm.dumb.open","desc":"打开dumbdbm数据库并返回dumbdbm对象"}, "dbm.ndbm.library":{"name":"dbm.ndbm.library","type":"dbm","path":"python/dbm.html#dbm.ndbm.library","desc":"使用的ndbm实施库的名称"}, "decimal.getcontext":{"name":"decimal.getcontext","type":"decimal","path":"python/decimal.html#decimal.getcontext","desc":"返回活动线程的当前上下文"}, "decimal.setcontext":{"name":"decimal.setcontext","type":"decimal","path":"python/decimal.html#decimal.setcontext","desc":"将活动线程的当前上下文设置为c"}, "decimal.localcontext":{"name":"decimal.localcontext","type":"decimal","path":"python/decimal.html#decimal.localcontext","desc":"返回一个上下文管理器,它将活动线程的当前上下文设置为ctx的副本,并在退出with-statement时恢复前一个上下文"}, "decimal.HAVE_THREADS":{"name":"decimal.HAVE_THREADS","type":"decimal","path":"python/decimal.html#decimal.HAVE_THREADS","desc":"默认值是True"}, "decimal.ROUND_CEILING":{"name":"decimal.ROUND_CEILING","type":"decimal","path":"python/decimal.html#decimal.ROUND_CEILING","desc":"向Infinity展开"}, "decimal.ROUND_DOWN":{"name":"decimal.ROUND_DOWN","type":"decimal","path":"python/decimal.html#decimal.ROUND_DOWN","desc":"向零回合"}, "decimal.ROUND_FLOOR":{"name":"decimal.ROUND_FLOOR","type":"decimal","path":"python/decimal.html#decimal.ROUND_FLOOR","desc":"向-Infinity回合"}, "decimal.ROUND_HALF_DOWN":{"name":"decimal.ROUND_HALF_DOWN","type":"decimal","path":"python/decimal.html#decimal.ROUND_HALF_DOWN","desc":"将关系向最接近零的方向调整"}, "decimal.ROUND_HALF_EVEN":{"name":"decimal.ROUND_HALF_EVEN","type":"decimal","path":"python/decimal.html#decimal.ROUND_HALF_EVEN","desc":"以最接近的偶数整数将关系舍入到最近"}, "decimal.ROUND_HALF_UP":{"name":"decimal.ROUND_HALF_UP","type":"decimal","path":"python/decimal.html#decimal.ROUND_HALF_UP","desc":"离领带最近的距离为零"}, "decimal.ROUND_UP":{"name":"decimal.ROUND_UP","type":"decimal","path":"python/decimal.html#decimal.ROUND_UP","desc":"从零开始回合"}, "decimal.ROUND_05UP":{"name":"decimal.ROUND_05UP","type":"decimal","path":"python/decimal.html#decimal.ROUND_05UP","desc":"如果舍入到零后的最后一位数字为0或5,则从零开始舍去;否则向零回合"}, "difflib.context_diff":{"name":"difflib.context_diff","type":"difflib","path":"python/difflib.html#difflib.context_diff","desc":"比较a和b(字符串列表);在上下文差异格式中返回Δ(生成Δ行的generator)"}, "difflib.get_close_matches":{"name":"difflib.get_close_matches","type":"difflib","path":"python/difflib.html#difflib.get_close_matches","desc":"返回一个最佳的"足够好"匹配列表"}, "difflib.ndiff":{"name":"difflib.ndiff","type":"difflib","path":"python/difflib.html#difflib.ndiff","desc":"比较(字符串列表)a和b;返回 Differ 风格的差异(一个生成差异行的 generator)"}, "difflib.restore":{"name":"difflib.restore","type":"difflib","path":"python/difflib.html#difflib.restore","desc":"返回两个序列生成一个三角洲之一"}, "difflib.unified_diff":{"name":"difflib.unified_diff","type":"difflib","path":"python/difflib.html#difflib.unified_diff","desc":"比较a和b(字符串列表);以统一差分格式返回增量(generator生成增量线)"}, "difflib.diff_bytes":{"name":"difflib.diff_bytes","type":"difflib","path":"python/difflib.html#difflib.diff_bytes","desc":"使用dfunc比较a和b(字节对象列表);以dfunc返回的格式生成一个delta行(也是字节)序列"}, "difflib.IS_LINE_JUNK":{"name":"difflib.IS_LINE_JUNK","type":"difflib","path":"python/difflib.html#difflib.IS_LINE_JUNK","desc":"返回 true 可忽略行"}, "difflib.IS_CHARACTER_JUNK":{"name":"difflib.IS_CHARACTER_JUNK","type":"difflib","path":"python/difflib.html#difflib.IS_CHARACTER_JUNK","desc":"返回 true 可忽略的字符"}, "dis.code_info":{"name":"dis.code_info","type":"dis","path":"python/dis.html#dis.code_info","desc":"返回带有提供的函数,生成器,方法,源代码字符串或代码对象的详细代码对象信息的格式化多行字符串"}, "dis.show_code":{"name":"dis.show_code","type":"dis","path":"python/dis.html#dis.show_code","desc":"将文件(或sys"}, "dis.dis":{"name":"dis.dis","type":"dis","path":"python/dis.html#dis.dis","desc":"拆分x对象"}, "dis.distb":{"name":"dis.distb","type":"dis","path":"python/dis.html#dis.distb","desc":"如果没有通过,则使用最后一个traceback来反汇编回栈顶层函数"}, "dis.disassemble":{"name":"dis.disassemble","type":"dis","path":"python/dis.html#dis.disassemble","desc":"拆分代码对象,如果提供lasti,则指示最后一条指令"}, "dis.get_instructions":{"name":"dis.get_instructions","type":"dis","path":"python/dis.html#dis.get_instructions","desc":"对提供的函数,方法,源代码字符串或代码对象中的指令返回一个迭代器"}, "dis.findlinestarts":{"name":"dis.findlinestarts","type":"dis","path":"python/dis.html#dis.findlinestarts","desc":"这个生成器函数使用代码对象代码的co_firstlineno和co_lnotab属性来找到源代码中行开头的偏移"}, "dis.findlabels":{"name":"dis.findlabels","type":"dis","path":"python/dis.html#dis.findlabels","desc":"检测作为跳转目标的代码对象代码中的所有偏移量,并返回这些偏移量的列表"}, "dis.stack_effect":{"name":"dis.stack_effect","type":"dis","path":"python/dis.html#dis.stack_effect","desc":"计算opcode与参数oparg的堆栈效果"}, "dis.Bytecode.codeobj":{"name":"dis.Bytecode.codeobj","type":"dis","path":"python/dis.html#dis.Bytecode.codeobj","desc":"编译的代码对象"}, "dis.Bytecode.first_line":{"name":"dis.Bytecode.first_line","type":"dis","path":"python/dis.html#dis.Bytecode.first_line","desc":"代码对象的第一个源代码行(如果可用)"}, "dis.Instruction.opcode":{"name":"dis.Instruction.opcode","type":"dis","path":"python/dis.html#dis.Instruction.opcode","desc":"操作的数字代码,对应于下面列出的操作码值和Opcode collections中的字节码值"}, "dis.Instruction.opname":{"name":"dis.Instruction.opname","type":"dis","path":"python/dis.html#dis.Instruction.opname","desc":"操作的人类可读名称"}, "dis.Instruction.arg":{"name":"dis.Instruction.arg","type":"dis","path":"python/dis.html#dis.Instruction.arg","desc":"操作的数字参数(如果有),否则为无"}, "dis.Instruction.argval":{"name":"dis.Instruction.argval","type":"dis","path":"python/dis.html#dis.Instruction.argval","desc":"解析的arg值(如果已知),否则与arg相同"}, "dis.Instruction.argrepr":{"name":"dis.Instruction.argrepr","type":"dis","path":"python/dis.html#dis.Instruction.argrepr","desc":"操作参数的可读描述"}, "dis.Instruction.offset":{"name":"dis.Instruction.offset","type":"dis","path":"python/dis.html#dis.Instruction.offset","desc":"在字节码序列内的操作的开始索引"}, "dis.Instruction.starts_line":{"name":"dis.Instruction.starts_line","type":"dis","path":"python/dis.html#dis.Instruction.starts_line","desc":"由此操作码开始的行(如果有),否则为无"}, "dis.Instruction.is_jump_target":{"name":"dis.Instruction.is_jump_target","type":"dis","path":"python/dis.html#dis.Instruction.is_jump_target","desc":"True如果其他代码跳到此处,否则False"}, "dis.opname":{"name":"dis.opname","type":"dis","path":"python/dis.html#dis.opname","desc":"操作名称序列,使用字节码可索引"}, "dis.opmap":{"name":"dis.opmap","type":"dis","path":"python/dis.html#dis.opmap","desc":"将操作名称映射到字节码的字典"}, "dis.cmp_op":{"name":"dis.cmp_op","type":"dis","path":"python/dis.html#dis.cmp_op","desc":"所有比较操作名称的顺序"}, "dis.hasconst":{"name":"dis.hasconst","type":"dis","path":"python/dis.html#dis.hasconst","desc":"具有常量参数的字节码序列"}, "dis.hasfree":{"name":"dis.hasfree","type":"dis","path":"python/dis.html#dis.hasfree","desc":"访问自由变量的字节码序列(请注意,在本上下文中的“自由”是指内部作用域引用的当前作用域中的名称或从此作用域引用的外部作用域中的名称"}, "dis.hasname":{"name":"dis.hasname","type":"dis","path":"python/dis.html#dis.hasname","desc":"按名称访问属性的字节码序列"}, "dis.hasjrel":{"name":"dis.hasjrel","type":"dis","path":"python/dis.html#dis.hasjrel","desc":"具有相对跳转目标的字节码序列"}, "dis.hasjabs":{"name":"dis.hasjabs","type":"dis","path":"python/dis.html#dis.hasjabs","desc":"具有绝对跳转目标的字节码序列"}, "dis.haslocal":{"name":"dis.haslocal","type":"dis","path":"python/dis.html#dis.haslocal","desc":"访问局部变量的字节码序列"}, "dis.hascompare":{"name":"dis.hascompare","type":"dis","path":"python/dis.html#dis.hascompare","desc":"布尔运算的字节码序列"}, "doctest.register_optionflag":{"name":"doctest.register_optionflag","type":"doctest","path":"python/doctest.html#doctest.register_optionflag","desc":"用给定名称创建一个新选项标志,并返回新标志的整数值"}, "doctest.testfile":{"name":"doctest.testfile","type":"doctest","path":"python/doctest.html#doctest.testfile","desc":"除文件名以外的所有参数都是可选的,并应以关键字形式指定"}, "doctest.testmod":{"name":"doctest.testmod","type":"doctest","path":"python/doctest.html#doctest.testmod","desc":"所有参数都是可选的,除m以外的所有参数均应以关键字形式指定"}, "doctest.run_docstring_examples":{"name":"doctest.run_docstring_examples","type":"doctest","path":"python/doctest.html#doctest.run_docstring_examples","desc":"与对象f关联的测试示例;例如,f可以是字符串,模块,函数或类对象"}, "doctest.DocFileSuite":{"name":"doctest.DocFileSuite","type":"doctest","path":"python/doctest.html#doctest.DocFileSuite","desc":"将doctest测试从一个或多个文本文件转换为unittest"}, "doctest.DocTestSuite":{"name":"doctest.DocTestSuite","type":"doctest","path":"python/doctest.html#doctest.DocTestSuite","desc":"将模块的doctest测试转换为unittest"}, "doctest.set_unittest_reportflags":{"name":"doctest.set_unittest_reportflags","type":"doctest","path":"python/doctest.html#doctest.set_unittest_reportflags","desc":"设置要使用的doctest报告标志"}, "doctest.script_from_examples":{"name":"doctest.script_from_examples","type":"doctest","path":"python/doctest.html#doctest.script_from_examples","desc":"将带有示例的文本转换为脚本"}, "doctest.testsource":{"name":"doctest.testsource","type":"doctest","path":"python/doctest.html#doctest.testsource","desc":"将对象的doctest转换为脚本"}, "doctest.debug":{"name":"doctest.debug","type":"doctest","path":"python/doctest.html#doctest.debug","desc":"调试对象的doctests"}, "doctest.debug_src":{"name":"doctest.debug_src","type":"doctest","path":"python/doctest.html#doctest.debug_src","desc":"用字符串调试doctests"}, "doctest.DONT_ACCEPT_TRUE_FOR_1":{"name":"doctest.DONT_ACCEPT_TRUE_FOR_1","type":"doctest","path":"python/doctest.html#doctest.DONT_ACCEPT_TRUE_FOR_1","desc":"默认情况下,如果期望的输出块仅包含1,则包含1或True的实际输出块被认为是匹配的,对于0与False类似"}, "doctest.DONT_ACCEPT_BLANKLINE":{"name":"doctest.DONT_ACCEPT_BLANKLINE","type":"doctest","path":"python/doctest.html#doctest.DONT_ACCEPT_BLANKLINE","desc":"默认情况下,如果预期的输出块包含仅包含字符串的行,那么该行将匹配实际输出中的空白行"}, "doctest.NORMALIZE_WHITESPACE":{"name":"doctest.NORMALIZE_WHITESPACE","type":"doctest","path":"python/doctest.html#doctest.NORMALIZE_WHITESPACE","desc":"指定时,所有空白(空格和换行符)都被视为相等"}, "doctest.ELLIPSIS":{"name":"doctest.ELLIPSIS","type":"doctest","path":"python/doctest.html#doctest.ELLIPSIS","desc":"指定时,预期输出中的省略号标记("}, "doctest.IGNORE_EXCEPTION_DETAIL":{"name":"doctest.IGNORE_EXCEPTION_DETAIL","type":"doctest","path":"python/doctest.html#doctest.IGNORE_EXCEPTION_DETAIL","desc":"如果指定这个选项,那么当引发的异常的类型与期望的异常类型相同就可以通过的,不会检测异常的详细信息"}, "doctest.SKIP":{"name":"doctest.SKIP","type":"doctest","path":"python/doctest.html#doctest.SKIP","desc":"指定时,请不要运行该示例"}, "doctest.COMPARISON_FLAGS":{"name":"doctest.COMPARISON_FLAGS","type":"doctest","path":"python/doctest.html#doctest.COMPARISON_FLAGS","desc":"将上面的所有比较标志掩盖起来"}, "doctest.REPORT_UDIFF":{"name":"doctest.REPORT_UDIFF","type":"doctest","path":"python/doctest.html#doctest.REPORT_UDIFF","desc":"指定时,涉及多行预期和实际输出的故障将使用统一差异显示"}, "doctest.REPORT_CDIFF":{"name":"doctest.REPORT_CDIFF","type":"doctest","path":"python/doctest.html#doctest.REPORT_CDIFF","desc":"指定时,涉及多行预期输出和实际输出的故障将使用上下文差异显示"}, "doctest.REPORT_NDIFF":{"name":"doctest.REPORT_NDIFF","type":"doctest","path":"python/doctest.html#doctest.REPORT_NDIFF","desc":"When specified, differences are computed by difflib"}, "doctest.REPORT_ONLY_FIRST_FAILURE":{"name":"doctest.REPORT_ONLY_FIRST_FAILURE","type":"doctest","path":"python/doctest.html#doctest.REPORT_ONLY_FIRST_FAILURE","desc":"指定时,显示每个doctest中的第一个失败示例,但禁止所有其他示例的输出"}, "doctest.FAIL_FAST":{"name":"doctest.FAIL_FAST","type":"doctest","path":"python/doctest.html#doctest.FAIL_FAST","desc":"指定时,在第一个失败示例之后退出,不要尝试运行其余示例"}, "doctest.REPORTING_FLAGS":{"name":"doctest.REPORTING_FLAGS","type":"doctest","path":"python/doctest.html#doctest.REPORTING_FLAGS","desc":"将上面的所有报告标记掩盖起来"}, "ensurepip.version":{"name":"ensurepip.version","type":"ensurepip","path":"python/ensurepip.html#ensurepip.version","desc":"返回一个字符串,指定在引导环境时将安装的pip的捆绑版本"}, "ensurepip.bootstrap":{"name":"ensurepip.bootstrap","type":"ensurepip","path":"python/ensurepip.html#ensurepip.bootstrap","desc":"引导pip进入当前或指定的环境"}, "enum.unique":{"name":"enum.unique","type":"enum","path":"python/enum.html#enum.unique","desc":"枚举类装饰器,确保只有一个名称绑定到任何一个值"}, "errno.EPERM":{"name":"errno.EPERM","type":"errno","path":"python/errno.html#errno.EPERM","desc":"操作不允许"}, "errno.ENOENT":{"name":"errno.ENOENT","type":"errno","path":"python/errno.html#errno.ENOENT","desc":"无此文件或目录"}, "errno.ESRCH":{"name":"errno.ESRCH","type":"errno","path":"python/errno.html#errno.ESRCH","desc":"没有这样的过程"}, "errno.EINTR":{"name":"errno.EINTR","type":"errno","path":"python/errno.html#errno.EINTR","desc":"中断系统调用"}, "errno.EIO":{"name":"errno.EIO","type":"errno","path":"python/errno.html#errno.EIO","desc":"I / O错误"}, "errno.ENXIO":{"name":"errno.ENXIO","type":"errno","path":"python/errno.html#errno.ENXIO","desc":"没有这样的设备或地址"}, "errno.E2BIG":{"name":"errno.E2BIG","type":"errno","path":"python/errno.html#errno.E2BIG","desc":"精选列表过长"}, "errno.ENOEXEC":{"name":"errno.ENOEXEC","type":"errno","path":"python/errno.html#errno.ENOEXEC","desc":"Exec格式错误"}, "errno.EBADF":{"name":"errno.EBADF","type":"errno","path":"python/errno.html#errno.EBADF","desc":"错误的文件编号"}, "errno.ECHILD":{"name":"errno.ECHILD","type":"errno","path":"python/errno.html#errno.ECHILD","desc":"没有子进程"}, "errno.EAGAIN":{"name":"errno.EAGAIN","type":"errno","path":"python/errno.html#errno.EAGAIN","desc":"再试一次"}, "errno.ENOMEM":{"name":"errno.ENOMEM","type":"errno","path":"python/errno.html#errno.ENOMEM","desc":"内存不足"}, "errno.EACCES":{"name":"errno.EACCES","type":"errno","path":"python/errno.html#errno.EACCES","desc":"没有权限"}, "errno.EFAULT":{"name":"errno.EFAULT","type":"errno","path":"python/errno.html#errno.EFAULT","desc":"地址错误"}, "errno.ENOTBLK":{"name":"errno.ENOTBLK","type":"errno","path":"python/errno.html#errno.ENOTBLK","desc":"需要块设备"}, "errno.EBUSY":{"name":"errno.EBUSY","type":"errno","path":"python/errno.html#errno.EBUSY","desc":"设备或资源繁忙"}, "errno.EEXIST":{"name":"errno.EEXIST","type":"errno","path":"python/errno.html#errno.EEXIST","desc":"文件已存在"}, "errno.EXDEV":{"name":"errno.EXDEV","type":"errno","path":"python/errno.html#errno.EXDEV","desc":"跨设备链接"}, "errno.ENODEV":{"name":"errno.ENODEV","type":"errno","path":"python/errno.html#errno.ENODEV","desc":"没有这样的设备"}, "errno.ENOTDIR":{"name":"errno.ENOTDIR","type":"errno","path":"python/errno.html#errno.ENOTDIR","desc":"不是目录"}, "errno.EISDIR":{"name":"errno.EISDIR","type":"errno","path":"python/errno.html#errno.EISDIR","desc":"是一个目录"}, "errno.EINVAL":{"name":"errno.EINVAL","type":"errno","path":"python/errno.html#errno.EINVAL","desc":"无效的论点"}, "errno.ENFILE":{"name":"errno.ENFILE","type":"errno","path":"python/errno.html#errno.ENFILE","desc":"文件表溢出"}, "errno.EMFILE":{"name":"errno.EMFILE","type":"errno","path":"python/errno.html#errno.EMFILE","desc":"打开的文件太多"}, "errno.ENOTTY":{"name":"errno.ENOTTY","type":"errno","path":"python/errno.html#errno.ENOTTY","desc":"不是打字机"}, "errno.ETXTBSY":{"name":"errno.ETXTBSY","type":"errno","path":"python/errno.html#errno.ETXTBSY","desc":"文本文件忙"}, "errno.EFBIG":{"name":"errno.EFBIG","type":"errno","path":"python/errno.html#errno.EFBIG","desc":"文件过大"}, "errno.ENOSPC":{"name":"errno.ENOSPC","type":"errno","path":"python/errno.html#errno.ENOSPC","desc":"设备上没有剩余空间"}, "errno.ESPIPE":{"name":"errno.ESPIPE","type":"errno","path":"python/errno.html#errno.ESPIPE","desc":"非法寻求"}, "errno.EROFS":{"name":"errno.EROFS","type":"errno","path":"python/errno.html#errno.EROFS","desc":"只读文件系统"}, "errno.EMLINK":{"name":"errno.EMLINK","type":"errno","path":"python/errno.html#errno.EMLINK","desc":"链接过多"}, "errno.EPIPE":{"name":"errno.EPIPE","type":"errno","path":"python/errno.html#errno.EPIPE","desc":"破碎的管道"}, "errno.EDOM":{"name":"errno.EDOM","type":"errno","path":"python/errno.html#errno.EDOM","desc":"数学参数超出了func的域"}, "errno.ERANGE":{"name":"errno.ERANGE","type":"errno","path":"python/errno.html#errno.ERANGE","desc":"数学结果不可表示"}, "errno.EDEADLK":{"name":"errno.EDEADLK","type":"errno","path":"python/errno.html#errno.EDEADLK","desc":"将发生资源死锁"}, "errno.ENAMETOOLONG":{"name":"errno.ENAMETOOLONG","type":"errno","path":"python/errno.html#errno.ENAMETOOLONG","desc":"文件名太长"}, "errno.ENOLCK":{"name":"errno.ENOLCK","type":"errno","path":"python/errno.html#errno.ENOLCK","desc":"没有可用的记录锁"}, "errno.ENOSYS":{"name":"errno.ENOSYS","type":"errno","path":"python/errno.html#errno.ENOSYS","desc":"功能未实现"}, "errno.ENOTEMPTY":{"name":"errno.ENOTEMPTY","type":"errno","path":"python/errno.html#errno.ENOTEMPTY","desc":"目录不为空"}, "errno.ELOOP":{"name":"errno.ELOOP","type":"errno","path":"python/errno.html#errno.ELOOP","desc":"遇到过多符号链接"}, "errno.EWOULDBLOCK":{"name":"errno.EWOULDBLOCK","type":"errno","path":"python/errno.html#errno.EWOULDBLOCK","desc":"操作会阻塞"}, "errno.ENOMSG":{"name":"errno.ENOMSG","type":"errno","path":"python/errno.html#errno.ENOMSG","desc":"没有所需类型的消息"}, "errno.EIDRM":{"name":"errno.EIDRM","type":"errno","path":"python/errno.html#errno.EIDRM","desc":"标识符已删除"}, "errno.ECHRNG":{"name":"errno.ECHRNG","type":"errno","path":"python/errno.html#errno.ECHRNG","desc":"通道号超出范围"}, "errno.EL2NSYNC":{"name":"errno.EL2NSYNC","type":"errno","path":"python/errno.html#errno.EL2NSYNC","desc":"级别2不同步"}, "errno.EL3HLT":{"name":"errno.EL3HLT","type":"errno","path":"python/errno.html#errno.EL3HLT","desc":"3级暂停"}, "errno.EL3RST":{"name":"errno.EL3RST","type":"errno","path":"python/errno.html#errno.EL3RST","desc":"3级复位"}, "errno.ELNRNG":{"name":"errno.ELNRNG","type":"errno","path":"python/errno.html#errno.ELNRNG","desc":"链接编号超出范围"}, "errno.EUNATCH":{"name":"errno.EUNATCH","type":"errno","path":"python/errno.html#errno.EUNATCH","desc":"未附加协议驱动程序"}, "errno.ENOCSI":{"name":"errno.ENOCSI","type":"errno","path":"python/errno.html#errno.ENOCSI","desc":"没有CSI结构可用"}, "errno.EL2HLT":{"name":"errno.EL2HLT","type":"errno","path":"python/errno.html#errno.EL2HLT","desc":"2级暂停"}, "errno.EBADE":{"name":"errno.EBADE","type":"errno","path":"python/errno.html#errno.EBADE","desc":"交换无效"}, "errno.EBADR":{"name":"errno.EBADR","type":"errno","path":"python/errno.html#errno.EBADR","desc":"请求描述器无效"}, "errno.EXFULL":{"name":"errno.EXFULL","type":"errno","path":"python/errno.html#errno.EXFULL","desc":"充分交换"}, "errno.ENOANO":{"name":"errno.ENOANO","type":"errno","path":"python/errno.html#errno.ENOANO","desc":"无阳极"}, "errno.EBADRQC":{"name":"errno.EBADRQC","type":"errno","path":"python/errno.html#errno.EBADRQC","desc":"请求代码无效"}, "errno.EBADSLT":{"name":"errno.EBADSLT","type":"errno","path":"python/errno.html#errno.EBADSLT","desc":"插槽无效"}, "errno.EDEADLOCK":{"name":"errno.EDEADLOCK","type":"errno","path":"python/errno.html#errno.EDEADLOCK","desc":"文件锁死锁错误"}, "errno.EBFONT":{"name":"errno.EBFONT","type":"errno","path":"python/errno.html#errno.EBFONT","desc":"字体文件格式不正确"}, "errno.ENOSTR":{"name":"errno.ENOSTR","type":"errno","path":"python/errno.html#errno.ENOSTR","desc":"设备不是流"}, "errno.ENODATA":{"name":"errno.ENODATA","type":"errno","path":"python/errno.html#errno.ENODATA","desc":"无可用数据"}, "errno.ETIME":{"name":"errno.ETIME","type":"errno","path":"python/errno.html#errno.ETIME","desc":"计时器已过期"}, "errno.ENOSR":{"name":"errno.ENOSR","type":"errno","path":"python/errno.html#errno.ENOSR","desc":"流出资源"}, "errno.ENONET":{"name":"errno.ENONET","type":"errno","path":"python/errno.html#errno.ENONET","desc":"机器不在网络上"}, "errno.ENOPKG":{"name":"errno.ENOPKG","type":"errno","path":"python/errno.html#errno.ENOPKG","desc":"软件包未安装"}, "errno.EREMOTE":{"name":"errno.EREMOTE","type":"errno","path":"python/errno.html#errno.EREMOTE","desc":"对象是远程的"}, "errno.ENOLINK":{"name":"errno.ENOLINK","type":"errno","path":"python/errno.html#errno.ENOLINK","desc":"链接已断开"}, "errno.EADV":{"name":"errno.EADV","type":"errno","path":"python/errno.html#errno.EADV","desc":"广告错误"}, "errno.ESRMNT":{"name":"errno.ESRMNT","type":"errno","path":"python/errno.html#errno.ESRMNT","desc":"Srmount错误"}, "errno.ECOMM":{"name":"errno.ECOMM","type":"errno","path":"python/errno.html#errno.ECOMM","desc":"发送时发生通信错误"}, "errno.EPROTO":{"name":"errno.EPROTO","type":"errno","path":"python/errno.html#errno.EPROTO","desc":"协议错误"}, "errno.EMULTIHOP":{"name":"errno.EMULTIHOP","type":"errno","path":"python/errno.html#errno.EMULTIHOP","desc":"多点尝试"}, "errno.EDOTDOT":{"name":"errno.EDOTDOT","type":"errno","path":"python/errno.html#errno.EDOTDOT","desc":"RFS具体错误"}, "errno.EBADMSG":{"name":"errno.EBADMSG","type":"errno","path":"python/errno.html#errno.EBADMSG","desc":"不是数据消息"}, "errno.EOVERFLOW":{"name":"errno.EOVERFLOW","type":"errno","path":"python/errno.html#errno.EOVERFLOW","desc":"对于定义的数据类型,值太大"}, "errno.ENOTUNIQ":{"name":"errno.ENOTUNIQ","type":"errno","path":"python/errno.html#errno.ENOTUNIQ","desc":"网络上的名称不唯一"}, "errno.EBADFD":{"name":"errno.EBADFD","type":"errno","path":"python/errno.html#errno.EBADFD","desc":"文件描述器处于坏状态"}, "errno.EREMCHG":{"name":"errno.EREMCHG","type":"errno","path":"python/errno.html#errno.EREMCHG","desc":"远程地址已更改"}, "errno.ELIBACC":{"name":"errno.ELIBACC","type":"errno","path":"python/errno.html#errno.ELIBACC","desc":"无法访问所需的共享库"}, "errno.ELIBBAD":{"name":"errno.ELIBBAD","type":"errno","path":"python/errno.html#errno.ELIBBAD","desc":"访问损坏的共享库"}, "errno.ELIBSCN":{"name":"errno.ELIBSCN","type":"errno","path":"python/errno.html#errno.ELIBSCN","desc":""}, "errno.ELIBMAX":{"name":"errno.ELIBMAX","type":"errno","path":"python/errno.html#errno.ELIBMAX","desc":"正在尝试链接过多的共享库"}, "errno.ELIBEXEC":{"name":"errno.ELIBEXEC","type":"errno","path":"python/errno.html#errno.ELIBEXEC","desc":"无法直接执行共享库"}, "errno.EILSEQ":{"name":"errno.EILSEQ","type":"errno","path":"python/errno.html#errno.EILSEQ","desc":"非法字节序列"}, "errno.ERESTART":{"name":"errno.ERESTART","type":"errno","path":"python/errno.html#errno.ERESTART","desc":"中断的系统调用应重新启动"}, "errno.ESTRPIPE":{"name":"errno.ESTRPIPE","type":"errno","path":"python/errno.html#errno.ESTRPIPE","desc":"流管道错误"}, "errno.EUSERS":{"name":"errno.EUSERS","type":"errno","path":"python/errno.html#errno.EUSERS","desc":"用户过多"}, "errno.ENOTSOCK":{"name":"errno.ENOTSOCK","type":"errno","path":"python/errno.html#errno.ENOTSOCK","desc":"非套接字操作"}, "errno.EDESTADDRREQ":{"name":"errno.EDESTADDRREQ","type":"errno","path":"python/errno.html#errno.EDESTADDRREQ","desc":"需要目标地址"}, "errno.EMSGSIZE":{"name":"errno.EMSGSIZE","type":"errno","path":"python/errno.html#errno.EMSGSIZE","desc":"消息太长"}, "errno.EPROTOTYPE":{"name":"errno.EPROTOTYPE","type":"errno","path":"python/errno.html#errno.EPROTOTYPE","desc":"协议错误类型的套接字"}, "errno.ENOPROTOOPT":{"name":"errno.ENOPROTOOPT","type":"errno","path":"python/errno.html#errno.ENOPROTOOPT","desc":"协议不可用"}, "errno.EPROTONOSUPPORT":{"name":"errno.EPROTONOSUPPORT","type":"errno","path":"python/errno.html#errno.EPROTONOSUPPORT","desc":"不支持协议"}, "errno.ESOCKTNOSUPPORT":{"name":"errno.ESOCKTNOSUPPORT","type":"errno","path":"python/errno.html#errno.ESOCKTNOSUPPORT","desc":"不支持套接字类型"}, "errno.EOPNOTSUPP":{"name":"errno.EOPNOTSUPP","type":"errno","path":"python/errno.html#errno.EOPNOTSUPP","desc":"传输端点上不支持操作"}, "errno.EPFNOSUPPORT":{"name":"errno.EPFNOSUPPORT","type":"errno","path":"python/errno.html#errno.EPFNOSUPPORT","desc":"不支持协议系列"}, "errno.EAFNOSUPPORT":{"name":"errno.EAFNOSUPPORT","type":"errno","path":"python/errno.html#errno.EAFNOSUPPORT","desc":"协议不支持的地址系列"}, "errno.EADDRINUSE":{"name":"errno.EADDRINUSE","type":"errno","path":"python/errno.html#errno.EADDRINUSE","desc":"地址已在使用中"}, "errno.EADDRNOTAVAIL":{"name":"errno.EADDRNOTAVAIL","type":"errno","path":"python/errno.html#errno.EADDRNOTAVAIL","desc":"无法分配请求的地址"}, "errno.ENETDOWN":{"name":"errno.ENETDOWN","type":"errno","path":"python/errno.html#errno.ENETDOWN","desc":"网络已关闭"}, "errno.ENETUNREACH":{"name":"errno.ENETUNREACH","type":"errno","path":"python/errno.html#errno.ENETUNREACH","desc":"网络不可达"}, "errno.ENETRESET":{"name":"errno.ENETRESET","type":"errno","path":"python/errno.html#errno.ENETRESET","desc":"网络由于重置而断开连接"}, "errno.ECONNABORTED":{"name":"errno.ECONNABORTED","type":"errno","path":"python/errno.html#errno.ECONNABORTED","desc":"软件导致连接中止"}, "errno.ECONNRESET":{"name":"errno.ECONNRESET","type":"errno","path":"python/errno.html#errno.ECONNRESET","desc":"连接由对等体复位"}, "errno.ENOBUFS":{"name":"errno.ENOBUFS","type":"errno","path":"python/errno.html#errno.ENOBUFS","desc":"没有可用的缓冲区空间"}, "errno.EISCONN":{"name":"errno.EISCONN","type":"errno","path":"python/errno.html#errno.EISCONN","desc":"传输端点已连接"}, "errno.ENOTCONN":{"name":"errno.ENOTCONN","type":"errno","path":"python/errno.html#errno.ENOTCONN","desc":"传输端点未连接"}, "errno.ESHUTDOWN":{"name":"errno.ESHUTDOWN","type":"errno","path":"python/errno.html#errno.ESHUTDOWN","desc":"传输终端关闭后无法发送"}, "errno.ETOOMANYREFS":{"name":"errno.ETOOMANYREFS","type":"errno","path":"python/errno.html#errno.ETOOMANYREFS","desc":"参数太多:无法拼接"}, "errno.ETIMEDOUT":{"name":"errno.ETIMEDOUT","type":"errno","path":"python/errno.html#errno.ETIMEDOUT","desc":"连接超时"}, "errno.ECONNREFUSED":{"name":"errno.ECONNREFUSED","type":"errno","path":"python/errno.html#errno.ECONNREFUSED","desc":"连接被拒绝"}, "errno.EHOSTDOWN":{"name":"errno.EHOSTDOWN","type":"errno","path":"python/errno.html#errno.EHOSTDOWN","desc":"主机已关闭"}, "errno.EHOSTUNREACH":{"name":"errno.EHOSTUNREACH","type":"errno","path":"python/errno.html#errno.EHOSTUNREACH","desc":"没有到主机的路由"}, "errno.EALREADY":{"name":"errno.EALREADY","type":"errno","path":"python/errno.html#errno.EALREADY","desc":"操作已在进行中"}, "errno.EINPROGRESS":{"name":"errno.EINPROGRESS","type":"errno","path":"python/errno.html#errno.EINPROGRESS","desc":"操作现在进行中"}, "errno.ESTALE":{"name":"errno.ESTALE","type":"errno","path":"python/errno.html#errno.ESTALE","desc":"陈旧的NFS文件句柄"}, "errno.EUCLEAN":{"name":"errno.EUCLEAN","type":"errno","path":"python/errno.html#errno.EUCLEAN","desc":"结构需要清洁"}, "errno.ENOTNAM":{"name":"errno.ENOTNAM","type":"errno","path":"python/errno.html#errno.ENOTNAM","desc":"不是XENIX命名类型文件"}, "errno.ENAVAIL":{"name":"errno.ENAVAIL","type":"errno","path":"python/errno.html#errno.ENAVAIL","desc":"没有XENIX信号量可用"}, "errno.EISNAM":{"name":"errno.EISNAM","type":"errno","path":"python/errno.html#errno.EISNAM","desc":"是一个命名类型文件"}, "errno.EREMOTEIO":{"name":"errno.EREMOTEIO","type":"errno","path":"python/errno.html#errno.EREMOTEIO","desc":"远程I / O错误"}, "errno.EDQUOT":{"name":"errno.EDQUOT","type":"errno","path":"python/errno.html#errno.EDQUOT","desc":"超出配额"}, "faulthandler.dump_traceback":{"name":"faulthandler.dump_traceback","type":"faulthandler","path":"python/faulthandler.html#faulthandler.dump_traceback","desc":"将所有线程的追踪转储到文件中"}, "faulthandler.enable":{"name":"faulthandler.enable","type":"faulthandler","path":"python/faulthandler.html#faulthandler.enable","desc":"启用故障处理程序:安装SIGSEGV,SIGFPE,SIGABRT,SIGBUS和SIGILL如果all_threads为True,则为每个正在运行的线程产生追溯"}, "faulthandler.disable":{"name":"faulthandler.disable","type":"faulthandler","path":"python/faulthandler.html#faulthandler.disable","desc":"禁用故障处理程序:卸载由enable()安装的信号处理程序"}, "faulthandler.is_enabled":{"name":"faulthandler.is_enabled","type":"faulthandler","path":"python/faulthandler.html#faulthandler.is_enabled","desc":"检查故障处理程序是否已启用"}, "faulthandler.dump_traceback_later":{"name":"faulthandler.dump_traceback_later","type":"faulthandler","path":"python/faulthandler.html#faulthandler.dump_traceback_later","desc":"如果重复是True,则在超时超时秒或每个超时 "}, "faulthandler.cancel_dump_traceback_later":{"name":"faulthandler.cancel_dump_traceback_later","type":"faulthandler","path":"python/faulthandler.html#faulthandler.cancel_dump_traceback_later","desc":"取消最后一次调用dump_traceback_later()"}, "faulthandler.register":{"name":"faulthandler.register","type":"faulthandler","path":"python/faulthandler.html#faulthandler.register","desc":"注册用户信号:为signum信号安装处理程序以转储所有线程或当前线程的跟踪(如果all_threads为False ,到文件"}, "faulthandler.unregister":{"name":"faulthandler.unregister","type":"faulthandler","path":"python/faulthandler.html#faulthandler.unregister","desc":"取消注册用户信号:卸载由register()安装的signum信号处理程序"}, "fcntl.fcntl":{"name":"fcntl.fcntl","type":"fcntl","path":"python/fcntl.html#fcntl.fcntl","desc":"在文件描述器fd上执行操作cmd(也接受提供fileno()方法的文件对象)"}, "fcntl.ioctl":{"name":"fcntl.ioctl","type":"fcntl","path":"python/fcntl.html#fcntl.ioctl","desc":"此函数与fcntl()函数相同,只是参数处理更复杂"}, "fcntl.flock":{"name":"fcntl.flock","type":"fcntl","path":"python/fcntl.html#fcntl.flock","desc":"在文件描述器fd上执行锁操作操作(也接受提供fileno()方法的文件对象)"}, "fcntl.lockf":{"name":"fcntl.lockf","type":"fcntl","path":"python/fcntl.html#fcntl.lockf","desc":"这本质上是fcntl()锁定调用的包装"}, "filecmp.cmp":{"name":"filecmp.cmp","type":"filecmp","path":"python/filecmp.html#filecmp.cmp","desc":"比较名为f1和f2的文件,如果它们相等则返回True,否则返回False"}, "filecmp.cmpfiles":{"name":"filecmp.cmpfiles","type":"filecmp","path":"python/filecmp.html#filecmp.cmpfiles","desc":"比较dir1和dir2两个目录中文件,文件的名字由common给出"}, "filecmp.clear_cache":{"name":"filecmp.clear_cache","type":"filecmp","path":"python/filecmp.html#filecmp.clear_cache","desc":"清除filecmp缓存"}, "fileinput.input":{"name":"fileinput.input","type":"fileinput","path":"python/fileinput.html#fileinput.input","desc":"创建FileInput类的实例"}, "fileinput.filename":{"name":"fileinput.filename","type":"fileinput","path":"python/fileinput.html#fileinput.filename","desc":"返回当前正在读取的文件的名称"}, "fileinput.fileno":{"name":"fileinput.fileno","type":"fileinput","path":"python/fileinput.html#fileinput.fileno","desc":"为当前文件返回整数“file描述器”"}, "fileinput.lineno":{"name":"fileinput.lineno","type":"fileinput","path":"python/fileinput.html#fileinput.lineno","desc":"返回刚刚读取的行的累积行号"}, "fileinput.filelineno":{"name":"fileinput.filelineno","type":"fileinput","path":"python/fileinput.html#fileinput.filelineno","desc":"返回当前文件中的行号"}, "fileinput.isfirstline":{"name":"fileinput.isfirstline","type":"fileinput","path":"python/fileinput.html#fileinput.isfirstline","desc":"如果刚刚读取的行是其文件的第一行,则返回true,否则返回false"}, "fileinput.isstdin":{"name":"fileinput.isstdin","type":"fileinput","path":"python/fileinput.html#fileinput.isstdin","desc":"如果最后一行从sys"}, "fileinput.nextfile":{"name":"fileinput.nextfile","type":"fileinput","path":"python/fileinput.html#fileinput.nextfile","desc":"关闭当前文件,以便下一次迭代将从下一个文件读取第一行(如果有的话);未从文件读取的行不会计入累积行计数"}, "fileinput.close":{"name":"fileinput.close","type":"fileinput","path":"python/fileinput.html#fileinput.close","desc":"关闭序列"}, "fileinput.hook_compressed":{"name":"fileinput.hook_compressed","type":"fileinput","path":"python/fileinput.html#fileinput.hook_compressed","desc":"Transparently opens files compressed with gzip and bzip2 (recognized by the extensions '"}, "fileinput.hook_encoded":{"name":"fileinput.hook_encoded","type":"fileinput","path":"python/fileinput.html#fileinput.hook_encoded","desc":"返回使用open()打开每个文件的钩子,使用给定的编码读取文件"}, "fnmatch.fnmatch":{"name":"fnmatch.fnmatch","type":"fnmatch","path":"python/fnmatch.html#fnmatch.fnmatch","desc":"测试filename字符串是否匹配模式字符串,返回True或False"}, "fnmatch.fnmatchcase":{"name":"fnmatch.fnmatchcase","type":"fnmatch","path":"python/fnmatch.html#fnmatch.fnmatchcase","desc":"测试filename是否匹配模式,返回True或False;比较是区分大小写的"}, "fnmatch.filter":{"name":"fnmatch.filter","type":"fnmatch","path":"python/fnmatch.html#fnmatch.filter","desc":"返回与模式匹配的名称列表的子集"}, "fnmatch.translate":{"name":"fnmatch.translate","type":"fnmatch","path":"python/fnmatch.html#fnmatch.translate","desc":"返回转换为正则表达式的shell样式模式"}, "formatter.AS_IS":{"name":"formatter.AS_IS","type":"formatter","path":"python/formatter.html#formatter.AS_IS","desc":"可以在字体规范中使用的值传递给下面描述的push_font()方法,或作为任何其他push_property()方法的新值"}, "fpectl.turnon_sigfpe":{"name":"fpectl.turnon_sigfpe","type":"fpectl","path":"python/fpectl.html#fpectl.turnon_sigfpe","desc":"打开SIGFPE的生成,并设置适当的信号处理程序"}, "fpectl.turnoff_sigfpe":{"name":"fpectl.turnoff_sigfpe","type":"fpectl","path":"python/fpectl.html#fpectl.turnoff_sigfpe","desc":"重置缺省处理浮点异常"}, "fractions.gcd":{"name":"fractions.gcd","type":"fractions","path":"python/fractions.html#fractions.gcd","desc":"返回整数a和b的最大公约数"}, "ftplib.all_errors":{"name":"ftplib.all_errors","type":"ftplib","path":"python/ftplib.html#ftplib.all_errors","desc":"FTP实例的方法可能由于FTP连接问题而引发的所有异常(作为元组)的集合(而不是调用者发出的编程错误)"}, "abs":{"name":"abs","type":"functions","path":"python/functions.html#abs","desc":"返回一个数值的绝对值,参数可以是一个整数或浮点数"}, "all":{"name":"all","type":"functions","path":"python/functions.html#all","desc":"如果iterable中所有的元素都为True,或iterable为空(empty),返回True"}, "any":{"name":"any","type":"functions","path":"python/functions.html#any","desc":"如果iterable里任何一个元素为True,返回 True"}, "ascii":{"name":"ascii","type":"functions","path":"python/functions.html#ascii","desc":"类似repr(),返回一个字符串,包含可打印的对象,但通过 repr() 返回的字符串中非 ASCII 字符,使用 \\x,\\u 或者\\U 进行转义"}, "bin":{"name":"bin","type":"functions","path":"python/functions.html#bin","desc":"将整数转换为二进制字符串"}, "callable":{"name":"callable","type":"functions","path":"python/functions.html#callable","desc":"如果该 object是可调用的,返回 True ,否则返回 False "}, "classmethod":{"name":"classmethod","type":"functions","path":"python/functions.html#classmethod","desc":"将 function 封装成类方法"}, "compile":{"name":"compile","type":"functions","path":"python/functions.html#compile","desc":"将source编译成代码或AST对象"}, "delattr":{"name":"delattr","type":"functions","path":"python/functions.html#delattr","desc":"这是setattr()的相对值"}, "dir":{"name":"dir","type":"functions","path":"python/functions.html#dir","desc":"不带参数时, 返回当前局部作用域中名称的列表"}, "divmod":{"name":"divmod","type":"functions","path":"python/functions.html#divmod","desc":"以两个(非复数)数字作为参数,并在使用整数除法时返回由它们的商和余数组成的一对数字"}, "enumerate":{"name":"enumerate","type":"functions","path":"python/functions.html#enumerate","desc":"返回一个枚举对象"}, "eval":{"name":"eval","type":"functions","path":"python/functions.html#eval","desc":"参数是一个字符串和可选的全局变量和局部变量"}, "exec":{"name":"exec","type":"functions","path":"python/functions.html#exec","desc":"这个函数支持动态执行Python代码"}, "filter":{"name":"filter","type":"functions","path":"python/functions.html#filter","desc":"用iterable中传入function后返回True的元素构造一个迭代器"}, "format":{"name":"format","type":"functions","path":"python/functions.html#format","desc":"将值转换为“格式化”表示,由format_spec控制"}, "getattr":{"name":"getattr","type":"functions","path":"python/functions.html#getattr","desc":"返回对象的命名属性的值"}, "globals":{"name":"globals","type":"functions","path":"python/functions.html#globals","desc":"返回表示当前全局符号表的字典"}, "hasattr":{"name":"hasattr","type":"functions","path":"python/functions.html#hasattr","desc":"参数是一个对象和一个字符串"}, "hash":{"name":"hash","type":"functions","path":"python/functions.html#hash","desc":"注意"}, "help":{"name":"help","type":"functions","path":"python/functions.html#help","desc":"调用内置的帮助系统"}, "hex":{"name":"hex","type":"functions","path":"python/functions.html#hex","desc":"将整数转换为以“0x”为前缀的小写十六进制字符串,例如:"}, "id":{"name":"id","type":"functions","path":"python/functions.html#id","desc":"返回一个对象的“身份”"}, "input":{"name":"input","type":"functions","path":"python/functions.html#input","desc":"如果存在提示符参数,则将其写入标准输出而不带结尾换行符"}, "isinstance":{"name":"isinstance","type":"functions","path":"python/functions.html#isinstance","desc":"如果object是clsaainfo的一个实例(或者是classinfo的直接、间接或虚拟子类的实例),那么则返回true"}, "issubclass":{"name":"issubclass","type":"functions","path":"python/functions.html#issubclass","desc":"如果 class 是classinfo的子类(直接、 间接或 虚拟) 则返回 true "}, "iter":{"name":"iter","type":"functions","path":"python/functions.html#iter","desc":"返回一个迭代器对象"}, "len":{"name":"len","type":"functions","path":"python/functions.html#len","desc":"返回对象的长度(项目数量)"}, "locals":{"name":"locals","type":"functions","path":"python/functions.html#locals","desc":"更新和返回表示当前局部符号表的字典"}, "map":{"name":"map","type":"functions","path":"python/functions.html#map","desc":"返回一个迭代器,对iterable的每个项应用function,并yield结果"}, "max":{"name":"max","type":"functions","path":"python/functions.html#max","desc":"返回iterable中的最大项或两个或更多个参数中最大的项"}, "min":{"name":"min","type":"functions","path":"python/functions.html#min","desc":"返回可迭代中的最小项或两个或更多个参数中的最小项"}, "next":{"name":"next","type":"functions","path":"python/functions.html#next","desc":"通过调用__next__()方法从迭代器中检索下一个项目"}, "oct":{"name":"oct","type":"functions","path":"python/functions.html#oct","desc":"将整数转换为八进制字符串"}, "open":{"name":"open","type":"functions","path":"python/functions.html#open","desc":"打开 file 并返回一个相应的 文件对象"}, "pow":{"name":"pow","type":"functions","path":"python/functions.html#pow","desc":"返回x的y次方; 如果提供z参数, 返回x 的y次方再除以z的余数 (计算效率比pow(x, y) % z更高)"}, "print":{"name":"print","type":"functions","path":"python/functions.html#print","desc":"将object打印到文本流file,由sep分隔,尾部接end"}, "repr":{"name":"repr","type":"functions","path":"python/functions.html#repr","desc":"返回一个包含对象可打印表示的字符串"}, "reversed":{"name":"reversed","type":"functions","path":"python/functions.html#reversed","desc":"返回一个反向iterator"}, "round":{"name":"round","type":"functions","path":"python/functions.html#round","desc":"返回number舍入到小数点后ndigits位的浮点值"}, "setattr":{"name":"setattr","type":"functions","path":"python/functions.html#setattr","desc":"它与getattr()相对应"}, "sorted":{"name":"sorted","type":"functions","path":"python/functions.html#sorted","desc":"依据iterable中的元素返回一个新的排好序的列表"}, "staticmethod":{"name":"staticmethod","type":"functions","path":"python/functions.html#staticmethod","desc":"为函数返回一个静态方法"}, "sum":{"name":"sum","type":"functions","path":"python/functions.html#sum","desc":"从左到右总计start和可迭代的项目并返回总数"}, "super":{"name":"super","type":"functions","path":"python/functions.html#super","desc":"返回一个代理对象,它委托方法给父类或者type的同级类"}, "vars":{"name":"vars","type":"functions","path":"python/functions.html#vars","desc":"返回一个模块、字典、类、实例或者其它任何一个具有__dict__属性的对象的__dict__属性"}, "zip":{"name":"zip","type":"functions","path":"python/functions.html#zip","desc":"创建一个迭代器,聚合来自每个迭代器的元素"}, "__import__":{"name":"__import__","type":"functions","path":"python/functions.html#__import__","desc":"注意"}, "functools.cmp_to_key":{"name":"functools.cmp_to_key","type":"functools","path":"python/functools.html#functools.cmp_to_key","desc":"将旧风格的比较函数转换为key函数"}, "functools.lru_cache":{"name":"functools.lru_cache","type":"functools","path":"python/functools.html#functools.lru_cache","desc":"装饰器用一个memoizing可调用函数来包装一个函数,它可以保存最近的maxsize个调用"}, "functools.total_ordering":{"name":"functools.total_ordering","type":"functools","path":"python/functools.html#functools.total_ordering","desc":"给定一个定义了一个或多个富比较排序方法的类,该方法提供了一个类装饰器"}, "functools.partial":{"name":"functools.partial","type":"functools","path":"python/functools.html#functools.partial","desc":"返回一个新的partial对象,该对象在调用时的行为将类似采用位置参数args和关键字参数keywords对func的调用"}, "functools.reduce":{"name":"functools.reduce","type":"functools","path":"python/functools.html#functools.reduce","desc":"将带有两个参数的 function 从左到右累积应用到 sequence 的元素中,以将该序列规约为单个值"}, "functools.singledispatch":{"name":"functools.singledispatch","type":"functools","path":"python/functools.html#functools.singledispatch","desc":"将函数转换为single-dispatch generic function"}, "functools.update_wrapper":{"name":"functools.update_wrapper","type":"functools","path":"python/functools.html#functools.update_wrapper","desc":"更新一个 wrapper 函数让其更像一个 wrapped 函数"}, "functools.wraps":{"name":"functools.wraps","type":"functools","path":"python/functools.html#functools.wraps","desc":"这是一个方便的函数,用于在定义包装器函数时调用update_wrapper()作为函数装饰器"}, "gc.enable":{"name":"gc.enable","type":"gc","path":"python/gc.html#gc.enable","desc":"启用自动垃圾容器"}, "gc.disable":{"name":"gc.disable","type":"gc","path":"python/gc.html#gc.disable","desc":"禁用自动垃圾容器"}, "gc.isenabled":{"name":"gc.isenabled","type":"gc","path":"python/gc.html#gc.isenabled","desc":"如果启用了自动容器,则返回true"}, "gc.collect":{"name":"gc.collect","type":"gc","path":"python/gc.html#gc.collect","desc":"没有参数,运行一个完整的容器"}, "gc.set_debug":{"name":"gc.set_debug","type":"gc","path":"python/gc.html#gc.set_debug","desc":"设置垃圾容器调试标志"}, "gc.get_debug":{"name":"gc.get_debug","type":"gc","path":"python/gc.html#gc.get_debug","desc":"返回当前设置的调试标志"}, "gc.get_objects":{"name":"gc.get_objects","type":"gc","path":"python/gc.html#gc.get_objects","desc":"返回收集器跟踪的所有对象的列表,不包括返回的列表"}, "gc.get_stats":{"name":"gc.get_stats","type":"gc","path":"python/gc.html#gc.get_stats","desc":"从解释器启动后,返回包含容器统计信息的三个每代字典的列表"}, "gc.set_threshold":{"name":"gc.set_threshold","type":"gc","path":"python/gc.html#gc.set_threshold","desc":"设置垃圾容器阈值(容器频率)"}, "gc.get_count":{"name":"gc.get_count","type":"gc","path":"python/gc.html#gc.get_count","desc":"将当前容器计数返回为(count0, count1, count2)的元组"}, "gc.get_threshold":{"name":"gc.get_threshold","type":"gc","path":"python/gc.html#gc.get_threshold","desc":"将当前容器阈值作为(threshold0, threshold1, threshold2)的元组返回"}, "gc.get_referrers":{"name":"gc.get_referrers","type":"gc","path":"python/gc.html#gc.get_referrers","desc":"返回直接引用任何obj的对象列表"}, "gc.get_referents":{"name":"gc.get_referents","type":"gc","path":"python/gc.html#gc.get_referents","desc":"返回由任何参数直接引用的对象列表"}, "gc.is_tracked":{"name":"gc.is_tracked","type":"gc","path":"python/gc.html#gc.is_tracked","desc":"如果对象当前由垃圾收集器跟踪,则返回True,否则返回False"}, "gc.garbage":{"name":"gc.garbage","type":"gc","path":"python/gc.html#gc.garbage","desc":"收集器发现无法访问但无法释放的对象列表(无法收集的对象)"}, "gc.callbacks":{"name":"gc.callbacks","type":"gc","path":"python/gc.html#gc.callbacks","desc":"将由容器之前和之后的垃圾收集器调用的回调列表"}, "gc.DEBUG_STATS":{"name":"gc.DEBUG_STATS","type":"gc","path":"python/gc.html#gc.DEBUG_STATS","desc":"容器期间打印统计信息"}, "gc.DEBUG_COLLECTABLE":{"name":"gc.DEBUG_COLLECTABLE","type":"gc","path":"python/gc.html#gc.DEBUG_COLLECTABLE","desc":"打印有关可找到的可收集对象的信息"}, "gc.DEBUG_UNCOLLECTABLE":{"name":"gc.DEBUG_UNCOLLECTABLE","type":"gc","path":"python/gc.html#gc.DEBUG_UNCOLLECTABLE","desc":"打印找到的不可收集对象的信息(收集器不能访问但不能释放的对象)"}, "gc.DEBUG_SAVEALL":{"name":"gc.DEBUG_SAVEALL","type":"gc","path":"python/gc.html#gc.DEBUG_SAVEALL","desc":"设置时,找到的所有无法访问的对象将被附加到垃圾,而不是被释放"}, "gc.DEBUG_LEAK":{"name":"gc.DEBUG_LEAK","type":"gc","path":"python/gc.html#gc.DEBUG_LEAK","desc":"收集器打印有关泄漏程序的信息(等于DEBUG_COLLECTABLE | DEBUG_UNCOLLECTABLE | DEBUG_SAVEALL)"}, "getopt.getopt":{"name":"getopt.getopt","type":"getopt","path":"python/getopt.html#getopt.getopt","desc":"解析命令行选项和参数列表"}, "getopt.gnu_getopt":{"name":"getopt.gnu_getopt","type":"getopt","path":"python/getopt.html#getopt.gnu_getopt","desc":"此函数的工作原理类似于getopt(),除了默认情况下使用GNU样式扫描模式"}, "getpass.getpass":{"name":"getpass.getpass","type":"getpass","path":"python/getpass.html#getpass.getpass","desc":"提示用户输入密码,而不回显"}, "getpass.getuser":{"name":"getpass.getuser","type":"getpass","path":"python/getpass.html#getpass.getuser","desc":"返回用户的“登录名”"}, "gettext.bindtextdomain":{"name":"gettext.bindtextdomain","type":"gettext","path":"python/gettext.html#gettext.bindtextdomain","desc":"将域绑定到语言环境目录localedir"}, "gettext.bind_textdomain_codeset":{"name":"gettext.bind_textdomain_codeset","type":"gettext","path":"python/gettext.html#gettext.bind_textdomain_codeset","desc":"将域绑定到代码集,更改由gettext()函数系列返回的字符串的编码"}, "gettext.textdomain":{"name":"gettext.textdomain","type":"gettext","path":"python/gettext.html#gettext.textdomain","desc":"更改或查询当前全局域"}, "gettext.gettext":{"name":"gettext.gettext","type":"gettext","path":"python/gettext.html#gettext.gettext","desc":"根据当前的全局域,语言和区域设置目录返回消息的本地化转换"}, "gettext.lgettext":{"name":"gettext.lgettext","type":"gettext","path":"python/gettext.html#gettext.lgettext","desc":"等同于gettext(),但是如果未使用bind_textdomain_codeset()显式设置其他编码,则会在首选系统编码中返回翻译"}, "gettext.dgettext":{"name":"gettext.dgettext","type":"gettext","path":"python/gettext.html#gettext.dgettext","desc":"像gettext(),但查看指定的域中的消息"}, "gettext.ldgettext":{"name":"gettext.ldgettext","type":"gettext","path":"python/gettext.html#gettext.ldgettext","desc":"等同于dgettext(),但如果未使用bind_textdomain_codeset()显式设置其他编码,则会在首选系统编码中返回翻译"}, "gettext.ngettext":{"name":"gettext.ngettext","type":"gettext","path":"python/gettext.html#gettext.ngettext","desc":"像gettext(),但是考虑复数形式"}, "gettext.lngettext":{"name":"gettext.lngettext","type":"gettext","path":"python/gettext.html#gettext.lngettext","desc":"等同于ngettext(),但是如果未使用bind_textdomain_codeset()显式设置其他编码,则会在首选系统编码中返回翻译"}, "gettext.dngettext":{"name":"gettext.dngettext","type":"gettext","path":"python/gettext.html#gettext.dngettext","desc":"像ngettext(),但查看指定的域中的消息"}, "gettext.ldngettext":{"name":"gettext.ldngettext","type":"gettext","path":"python/gettext.html#gettext.ldngettext","desc":"等同于dngettext(),但如果未使用bind_textdomain_codeset()显式设置其他编码,则会在首选系统编码中返回翻译"}, "gettext.find":{"name":"gettext.find","type":"gettext","path":"python/gettext.html#gettext.find","desc":"此函数实现标准的"}, "gettext.translation":{"name":"gettext.translation","type":"gettext","path":"python/gettext.html#gettext.translation","desc":"返回基于域,localedir和语言的Translations实例,这些实例首先传递给find()获取关联的"}, "gettext.install":{"name":"gettext.install","type":"gettext","path":"python/gettext.html#gettext.install","desc":"This installs the function _() in Python’s builtins namespace, based on domain, localedir, and codeset which are passed to the function translation()"}, "glob.glob":{"name":"glob.glob","type":"glob","path":"python/glob.html#glob.glob","desc":"返回一个与pathname匹配的路径组成的list,该list可能为空"}, "glob.iglob":{"name":"glob.iglob","type":"glob","path":"python/glob.html#glob.iglob","desc":"返回一个 iterator 迭代器,它产生与 glob() 相同的结果,但同时不会存储它们"}, "glob.escape":{"name":"glob.escape","type":"glob","path":"python/glob.html#glob.escape","desc":"转义所有的特殊字符('?','*'和'['])"}, "grp.getgrgid":{"name":"grp.getgrgid","type":"grp","path":"python/grp.html#grp.getgrgid","desc":"返回给定数字组ID的组数据库条目"}, "grp.getgrnam":{"name":"grp.getgrnam","type":"grp","path":"python/grp.html#grp.getgrnam","desc":"返回给定组名的组数据库条目"}, "grp.getgrall":{"name":"grp.getgrall","type":"grp","path":"python/grp.html#grp.getgrall","desc":"以任意顺序返回所有可用组条目的列表"}, "gzip.open":{"name":"gzip.open","type":"gzip","path":"python/gzip.html#gzip.open","desc":"在二进制或文本模式下打开gzip压缩文件,返回file object"}, "gzip.compress":{"name":"gzip.compress","type":"gzip","path":"python/gzip.html#gzip.compress","desc":"压缩 data ,返回包含压缩数据的bytes 对象"}, "gzip.decompress":{"name":"gzip.decompress","type":"gzip","path":"python/gzip.html#gzip.decompress","desc":"解压缩 data ,返回包含未压缩数据的bytes 对象"}, "hashlib.new":{"name":"hashlib.new","type":"hashlib","path":"python/hashlib.html#hashlib.new","desc":"是一个通用构造函数,它接受所需算法的字符串名称作为其第一个参数"}, "hashlib.pbkdf2_hmac":{"name":"hashlib.pbkdf2_hmac","type":"hashlib","path":"python/hashlib.html#hashlib.pbkdf2_hmac","desc":"该函数提供 PKCS #5 基于密码的密钥派生函数 2"}, "hashlib.algorithms_guaranteed":{"name":"hashlib.algorithms_guaranteed","type":"hashlib","path":"python/hashlib.html#hashlib.algorithms_guaranteed","desc":"包含保证在所有平台上此模块支持的哈希算法的名称的集合"}, "hashlib.algorithms_available":{"name":"hashlib.algorithms_available","type":"hashlib","path":"python/hashlib.html#hashlib.algorithms_available","desc":"一组包含在运行的Python解释器中可用的哈希算法的名称"}, "hashlib.hash.digest_size":{"name":"hashlib.hash.digest_size","type":"hashlib","path":"python/hashlib.html#hashlib.hash.digest_size","desc":"以字节为单位的哈希结果的大小"}, "hashlib.hash.block_size":{"name":"hashlib.hash.block_size","type":"hashlib","path":"python/hashlib.html#hashlib.hash.block_size","desc":"以字节为单位的哈希算法的内部块的大小"}, "heapq.heappush":{"name":"heapq.heappush","type":"heapq","path":"python/heapq.html#heapq.heappush","desc":"将值item推到heap上,保持堆不变"}, "heapq.heappop":{"name":"heapq.heappop","type":"heapq","path":"python/heapq.html#heapq.heappop","desc":"从heap中弹出并返回最小的项,保持堆不变"}, "heapq.heappushpop":{"name":"heapq.heappushpop","type":"heapq","path":"python/heapq.html#heapq.heappushpop","desc":"在堆上按项,然后弹出并返回堆中的最小项"}, "heapq.heapify":{"name":"heapq.heapify","type":"heapq","path":"python/heapq.html#heapq.heapify","desc":"在线性时间内,将列表x放入堆中"}, "heapq.heapreplace":{"name":"heapq.heapreplace","type":"heapq","path":"python/heapq.html#heapq.heapreplace","desc":"从堆中弹出并返回最小的项,并推送新的项"}, "heapq.merge":{"name":"heapq.merge","type":"heapq","path":"python/heapq.html#heapq.merge","desc":"将多个排序的输入合并到单个排序的输出(例如,合并来自多个日志文件的带时间戳的条目)"}, "heapq.nlargest":{"name":"heapq.nlargest","type":"heapq","path":"python/heapq.html#heapq.nlargest","desc":"返回可迭代定义的数据集中n最大元素的列表"}, "heapq.nsmallest":{"name":"heapq.nsmallest","type":"heapq","path":"python/heapq.html#heapq.nsmallest","desc":"返回可迭代定义的数据集中n最小元素的列表"}, "hmac.new":{"name":"hmac.new","type":"hmac","path":"python/hmac.html#hmac.new","desc":"返回一个新的hmac对象"}, "hmac.compare_digest":{"name":"hmac.compare_digest","type":"hmac","path":"python/hmac.html#hmac.compare_digest","desc":"返回a == b"}, "html.entities.entitydefs":{"name":"html.entities.entitydefs","type":"html.entities","path":"python/html.entities.html#html.entities.entitydefs","desc":"将XHTML 1"}, "html.entities.name2codepoint":{"name":"html.entities.name2codepoint","type":"html.entities","path":"python/html.entities.html#html.entities.name2codepoint","desc":"将HTML实体名称映射到Unicode代码点的字典"}, "html.entities.codepoint2name":{"name":"html.entities.codepoint2name","type":"html.entities","path":"python/html.entities.html#html.entities.codepoint2name","desc":"将Unicode代码点映射到HTML实体名称的字典"}, "html.escape":{"name":"html.escape","type":"html","path":"python/html.html#html.escape","desc":"转换字符串s中的&、<和>字符为HTML安全的序列"}, "html.unescape":{"name":"html.unescape","type":"html","path":"python/html.html#html.unescape","desc":"转换字符串s中所有命名和数字字符引用(例如>、>、&x3e;)为对应的Unicode字符"}, "http.client.HTTP_PORT":{"name":"http.client.HTTP_PORT","type":"http.client","path":"python/http.client.html#http.client.HTTP_PORT","desc":"HTTP协议的默认端口值(总为 80)"}, "http.client.HTTPS_PORT":{"name":"http.client.HTTPS_PORT","type":"http.client","path":"python/http.client.html#http.client.HTTPS_PORT","desc":"HTTPS协议的默认端口值(总为 443)"}, "http.client.responses":{"name":"http.client.responses","type":"http.client","path":"python/http.client.html#http.client.responses","desc":"该字典类匹配HTTP1"}, "imaplib.Internaldate2tuple":{"name":"imaplib.Internaldate2tuple","type":"imaplib","path":"python/imaplib.html#imaplib.Internaldate2tuple","desc":"解析IMAP4 INTERNALDATE字符串并返回相应的本地时间"}, "imaplib.Int2AP":{"name":"imaplib.Int2AP","type":"imaplib","path":"python/imaplib.html#imaplib.Int2AP","desc":"使用集合[A "}, "imaplib.ParseFlags":{"name":"imaplib.ParseFlags","type":"imaplib","path":"python/imaplib.html#imaplib.ParseFlags","desc":"将IMAP4 FLAGS响应转换为单个标志的元组"}, "imaplib.Time2Internaldate":{"name":"imaplib.Time2Internaldate","type":"imaplib","path":"python/imaplib.html#imaplib.Time2Internaldate","desc":"将date_time转换为IMAP4 INTERNALDATE表示形式"}, "imghdr.what":{"name":"imghdr.what","type":"imghdr","path":"python/imghdr.html#imghdr.what","desc":"测试由filename命名的文件中包含的图像数据,并返回描述图像类型的字符串"}, "imghdr.tests":{"name":"imghdr.tests","type":"imghdr","path":"python/imghdr.html#imghdr.tests","desc":"执行单独测试的函数列表"}, "imp.get_magic":{"name":"imp.get_magic","type":"imp","path":"python/imp.html#imp.get_magic","desc":"返回用于识别字节编译代码文件("}, "imp.get_suffixes":{"name":"imp.get_suffixes","type":"imp","path":"python/imp.html#imp.get_suffixes","desc":"返回一个3元素元组的列表,每个元组描述特定类型的模块"}, "imp.find_module":{"name":"imp.find_module","type":"imp","path":"python/imp.html#imp.find_module","desc":"尝试找到名称"}, "imp.load_module":{"name":"imp.load_module","type":"imp","path":"python/imp.html#imp.load_module","desc":"加载以前由find_module()发现的模块(或通过其他方式进行的搜索,产生兼容的结果)"}, "imp.new_module":{"name":"imp.new_module","type":"imp","path":"python/imp.html#imp.new_module","desc":"返回一个名为name的新模块对象"}, "imp.reload":{"name":"imp.reload","type":"imp","path":"python/imp.html#imp.reload","desc":"重新载入先前导入的模块"}, "imp.cache_from_source":{"name":"imp.cache_from_source","type":"imp","path":"python/imp.html#imp.cache_from_source","desc":"将 PEP 3147路径返回到与源路径相关联的字节编译文件"}, "imp.source_from_cache":{"name":"imp.source_from_cache","type":"imp","path":"python/imp.html#imp.source_from_cache","desc":"给定路径到 PEP 3147文件名,返回关联的源代码文件路径"}, "imp.get_tag":{"name":"imp.get_tag","type":"imp","path":"python/imp.html#imp.get_tag","desc":"返回与get_magic()返回的Python的幻数的版本匹配的 PEP 3147魔术标记字符串"}, "imp.lock_held":{"name":"imp.lock_held","type":"imp","path":"python/imp.html#imp.lock_held","desc":"如果全局导入锁定当前持有,则返回True,否则False"}, "imp.acquire_lock":{"name":"imp.acquire_lock","type":"imp","path":"python/imp.html#imp.acquire_lock","desc":"获取当前线程的解释器的全局导入锁"}, "imp.release_lock":{"name":"imp.release_lock","type":"imp","path":"python/imp.html#imp.release_lock","desc":"释放解释器的全局导入锁定"}, "imp.PY_SOURCE":{"name":"imp.PY_SOURCE","type":"imp","path":"python/imp.html#imp.PY_SOURCE","desc":"找到该模块作为源文件"}, "imp.PY_COMPILED":{"name":"imp.PY_COMPILED","type":"imp","path":"python/imp.html#imp.PY_COMPILED","desc":"该模块被找到为编译代码对象文件"}, "imp.C_EXTENSION":{"name":"imp.C_EXTENSION","type":"imp","path":"python/imp.html#imp.C_EXTENSION","desc":"该模块被找到为可动态加载的共享库"}, "imp.PKG_DIRECTORY":{"name":"imp.PKG_DIRECTORY","type":"imp","path":"python/imp.html#imp.PKG_DIRECTORY","desc":"该模块被找到作为包目录"}, "imp.C_BUILTIN":{"name":"imp.C_BUILTIN","type":"imp","path":"python/imp.html#imp.C_BUILTIN","desc":"该模块被找到作为内建模块"}, "imp.PY_FROZEN":{"name":"imp.PY_FROZEN","type":"imp","path":"python/imp.html#imp.PY_FROZEN","desc":"该模块被发现为冻结模块"}, "importlib.__import__":{"name":"importlib.__import__","type":"importlib","path":"python/importlib.html#importlib.__import__","desc":"内置__import__()函数的实现"}, "importlib.import_module":{"name":"importlib.import_module","type":"importlib","path":"python/importlib.html#importlib.import_module","desc":"导入一个模块"}, "importlib.find_loader":{"name":"importlib.find_loader","type":"importlib","path":"python/importlib.html#importlib.find_loader","desc":"查找模块的加载程序,可选地在指定的路径中"}, "importlib.invalidate_caches":{"name":"importlib.invalidate_caches","type":"importlib","path":"python/importlib.html#importlib.invalidate_caches","desc":"使存储在sys"}, "importlib.reload":{"name":"importlib.reload","type":"importlib","path":"python/importlib.html#importlib.reload","desc":"重新载入先前导入的 module"}, "importlib.machinery.all_suffixes":{"name":"importlib.machinery.all_suffixes","type":"importlib","path":"python/importlib.html#importlib.machinery.all_suffixes","desc":"返回表示由标准导入机制识别的模块的所有文件后缀的字符串组合列表"}, "importlib.util.cache_from_source":{"name":"importlib.util.cache_from_source","type":"importlib","path":"python/importlib.html#importlib.util.cache_from_source","desc":"Return the PEP 3147/PEP 488 path to the byte-compiled file associated with the source path"}, "importlib.util.source_from_cache":{"name":"importlib.util.source_from_cache","type":"importlib","path":"python/importlib.html#importlib.util.source_from_cache","desc":"将路径指定给 PEP 3147文件名,返回关联的源代码文件路径"}, "importlib.util.decode_source":{"name":"importlib.util.decode_source","type":"importlib","path":"python/importlib.html#importlib.util.decode_source","desc":"解码表示源代码的给定字节,并将其作为带有通用换行符的字符串返回(如importlib"}, "importlib.util.resolve_name":{"name":"importlib.util.resolve_name","type":"importlib","path":"python/importlib.html#importlib.util.resolve_name","desc":"将相对模块名称解析为绝对模块名称"}, "importlib.util.find_spec":{"name":"importlib.util.find_spec","type":"importlib","path":"python/importlib.html#importlib.util.find_spec","desc":"查找模块的spec,可选地相对于指定的包名称"}, "importlib.util.module_from_spec":{"name":"importlib.util.module_from_spec","type":"importlib","path":"python/importlib.html#importlib.util.module_from_spec","desc":"根据spec和spec"}, "importlib.util.module_for_loader":{"name":"importlib.util.module_for_loader","type":"importlib","path":"python/importlib.html#importlib.util.module_for_loader","desc":"用于importlib"}, "importlib.util.set_loader":{"name":"importlib.util.set_loader","type":"importlib","path":"python/importlib.html#importlib.util.set_loader","desc":"用于importlib"}, "importlib.util.set_package":{"name":"importlib.util.set_package","type":"importlib","path":"python/importlib.html#importlib.util.set_package","desc":"用于importlib"}, "importlib.util.spec_from_loader":{"name":"importlib.util.spec_from_loader","type":"importlib","path":"python/importlib.html#importlib.util.spec_from_loader","desc":"基于加载程序创建ModuleSpec实例的工厂函数"}, "importlib.util.spec_from_file_location":{"name":"importlib.util.spec_from_file_location","type":"importlib","path":"python/importlib.html#importlib.util.spec_from_file_location","desc":"基于文件路径创建ModuleSpec实例的工厂函数"}, "inspect.getmembers":{"name":"inspect.getmembers","type":"inspect","path":"python/inspect.html#inspect.getmembers","desc":"返回按名称排序的(name, value)列表中的所有成员对象"}, "inspect.getmoduleinfo":{"name":"inspect.getmoduleinfo","type":"inspect","path":"python/inspect.html#inspect.getmoduleinfo","desc":"返回一个命名元组 ModuleInfo(name, suffix, mode, module_type)描述Python如何解释由path标识的文件是模块,或者返回None,如果没被标识为模块"}, "inspect.getmodulename":{"name":"inspect.getmodulename","type":"inspect","path":"python/inspect.html#inspect.getmodulename","desc":"返回由文件path命名的模块的名称,不包括封装包的名称"}, "inspect.ismodule":{"name":"inspect.ismodule","type":"inspect","path":"python/inspect.html#inspect.ismodule","desc":"如果对象是模块,则返回true"}, "inspect.isclass":{"name":"inspect.isclass","type":"inspect","path":"python/inspect.html#inspect.isclass","desc":"如果对象是一个类,无论是内置的还是用Python代码创建的,则返回true"}, "inspect.ismethod":{"name":"inspect.ismethod","type":"inspect","path":"python/inspect.html#inspect.ismethod","desc":"如果对象是用Python编写的绑定方法,则返回true"}, "inspect.isfunction":{"name":"inspect.isfunction","type":"inspect","path":"python/inspect.html#inspect.isfunction","desc":"如果对象是一个Python函数(包含由lambda表达式创建的函数),则返回true"}, "inspect.isgeneratorfunction":{"name":"inspect.isgeneratorfunction","type":"inspect","path":"python/inspect.html#inspect.isgeneratorfunction","desc":"如果对象是Python生成器函数,则返回true"}, "inspect.isgenerator":{"name":"inspect.isgenerator","type":"inspect","path":"python/inspect.html#inspect.isgenerator","desc":"如果对象是一个生成器,则返回true"}, "inspect.iscoroutinefunction":{"name":"inspect.iscoroutinefunction","type":"inspect","path":"python/inspect.html#inspect.iscoroutinefunction","desc":"如果对象是coroutine function(用async def语法定义的函数),则返回true"}, "inspect.iscoroutine":{"name":"inspect.iscoroutine","type":"inspect","path":"python/inspect.html#inspect.iscoroutine","desc":"如果对象是由async def函数创建的coroutine,则返回true"}, "inspect.isawaitable":{"name":"inspect.isawaitable","type":"inspect","path":"python/inspect.html#inspect.isawaitable","desc":"如果对象可以在await表达式中使用,则返回true"}, "inspect.istraceback":{"name":"inspect.istraceback","type":"inspect","path":"python/inspect.html#inspect.istraceback","desc":"如果对象是回溯,则返回true"}, "inspect.isframe":{"name":"inspect.isframe","type":"inspect","path":"python/inspect.html#inspect.isframe","desc":"如果对象是一个框架,则返回true"}, "inspect.iscode":{"name":"inspect.iscode","type":"inspect","path":"python/inspect.html#inspect.iscode","desc":"如果对象是代码,则返回true"}, "inspect.isbuiltin":{"name":"inspect.isbuiltin","type":"inspect","path":"python/inspect.html#inspect.isbuiltin","desc":"如果对象是内置函数或绑定的内置方法,则返回true"}, "inspect.isroutine":{"name":"inspect.isroutine","type":"inspect","path":"python/inspect.html#inspect.isroutine","desc":"如果对象是用户定义的或内置的函数或方法,则返回true"}, "inspect.isabstract":{"name":"inspect.isabstract","type":"inspect","path":"python/inspect.html#inspect.isabstract","desc":"如果对象是抽象基类,则返回true"}, "inspect.ismethoddescriptor":{"name":"inspect.ismethoddescriptor","type":"inspect","path":"python/inspect.html#inspect.ismethoddescriptor","desc":"如果对象是方法描述符,则返回true,但如果ismethod(),isclass(),isfunction()或isbuiltin()是真的"}, "inspect.isdatadescriptor":{"name":"inspect.isdatadescriptor","type":"inspect","path":"python/inspect.html#inspect.isdatadescriptor","desc":"如果对象是数据描述符,则返回true"}, "inspect.isgetsetdescriptor":{"name":"inspect.isgetsetdescriptor","type":"inspect","path":"python/inspect.html#inspect.isgetsetdescriptor","desc":"如果对象是getset描述符,则返回true"}, "inspect.ismemberdescriptor":{"name":"inspect.ismemberdescriptor","type":"inspect","path":"python/inspect.html#inspect.ismemberdescriptor","desc":"如果对象是成员描述符,则返回true"}, "inspect.getdoc":{"name":"inspect.getdoc","type":"inspect","path":"python/inspect.html#inspect.getdoc","desc":"获取一个对象的文档字符串,用cleandoc()清理"}, "inspect.getcomments":{"name":"inspect.getcomments","type":"inspect","path":"python/inspect.html#inspect.getcomments","desc":"在单个字符串中返回紧接在对象源代码之前(对于类,函数或方法)或Python源文件顶部(如果对象是模块)的任何注释行"}, "inspect.getfile":{"name":"inspect.getfile","type":"inspect","path":"python/inspect.html#inspect.getfile","desc":"返回定义了对象的(文本或二进制)文件的名称"}, "inspect.getmodule":{"name":"inspect.getmodule","type":"inspect","path":"python/inspect.html#inspect.getmodule","desc":"尝试猜测某个对象是在哪个模块中定义的"}, "inspect.getsourcefile":{"name":"inspect.getsourcefile","type":"inspect","path":"python/inspect.html#inspect.getsourcefile","desc":"返回定义了对象的Python源文件的名称"}, "inspect.getsourcelines":{"name":"inspect.getsourcelines","type":"inspect","path":"python/inspect.html#inspect.getsourcelines","desc":"返回一个对象的源代码行和起始行号的列表"}, "inspect.getsource":{"name":"inspect.getsource","type":"inspect","path":"python/inspect.html#inspect.getsource","desc":"返回一个对象的源代码文本"}, "inspect.cleandoc":{"name":"inspect.cleandoc","type":"inspect","path":"python/inspect.html#inspect.cleandoc","desc":"清除缩排以排列代码块的文档字符串中的缩进"}, "inspect.signature":{"name":"inspect.signature","type":"inspect","path":"python/inspect.html#inspect.signature","desc":"为给定的callable返回一个Signature对象:"}, "inspect.getclasstree":{"name":"inspect.getclasstree","type":"inspect","path":"python/inspect.html#inspect.getclasstree","desc":"将给定的类列表排列成嵌套列表的层次结构"}, "inspect.getargspec":{"name":"inspect.getargspec","type":"inspect","path":"python/inspect.html#inspect.getargspec","desc":"获取Python函数参数的名称和默认值"}, "inspect.getfullargspec":{"name":"inspect.getfullargspec","type":"inspect","path":"python/inspect.html#inspect.getfullargspec","desc":"获取Python函数参数的名称和默认值"}, "inspect.getargvalues":{"name":"inspect.getargvalues","type":"inspect","path":"python/inspect.html#inspect.getargvalues","desc":"获取有关传递到特定框架的参数的信息"}, "inspect.formatargspec":{"name":"inspect.formatargspec","type":"inspect","path":"python/inspect.html#inspect.formatargspec","desc":"根据getargspec()或getfullargspec()返回的值格式化漂亮的参数规范"}, "inspect.formatargvalues":{"name":"inspect.formatargvalues","type":"inspect","path":"python/inspect.html#inspect.formatargvalues","desc":"根据getargvalues()返回的四个值格式化漂亮的参数规范"}, "inspect.getmro":{"name":"inspect.getmro","type":"inspect","path":"python/inspect.html#inspect.getmro","desc":"以方法解析顺序返回cls基类的元组,包括cls"}, "inspect.getcallargs":{"name":"inspect.getcallargs","type":"inspect","path":"python/inspect.html#inspect.getcallargs","desc":"将args和kwds绑定到Python函数或方法func的参数名称,就好像它们是用它们调用的一样"}, "inspect.getclosurevars":{"name":"inspect.getclosurevars","type":"inspect","path":"python/inspect.html#inspect.getclosurevars","desc":"获取Python函数或方法func中的外部名称引用到其当前值的映射"}, "inspect.unwrap":{"name":"inspect.unwrap","type":"inspect","path":"python/inspect.html#inspect.unwrap","desc":"获取由func包装的对象"}, "inspect.getframeinfo":{"name":"inspect.getframeinfo","type":"inspect","path":"python/inspect.html#inspect.getframeinfo","desc":"获取关于帧或追溯对象的信息"}, "inspect.getouterframes":{"name":"inspect.getouterframes","type":"inspect","path":"python/inspect.html#inspect.getouterframes","desc":"获取一个帧和所有外部帧的帧记录列表"}, "inspect.getinnerframes":{"name":"inspect.getinnerframes","type":"inspect","path":"python/inspect.html#inspect.getinnerframes","desc":"获取追踪帧和所有内部帧的帧记录列表"}, "inspect.currentframe":{"name":"inspect.currentframe","type":"inspect","path":"python/inspect.html#inspect.currentframe","desc":"返回当前调用者的堆栈框架的框架对象"}, "inspect.stack":{"name":"inspect.stack","type":"inspect","path":"python/inspect.html#inspect.stack","desc":"返回调用者堆栈的帧记录列表"}, "inspect.trace":{"name":"inspect.trace","type":"inspect","path":"python/inspect.html#inspect.trace","desc":"返回当前帧与当前正在处理异常的帧之间的堆栈的帧记录列表"}, "inspect.getattr_static":{"name":"inspect.getattr_static","type":"inspect","path":"python/inspect.html#inspect.getattr_static","desc":"通过描述符协议,__getattr__()或__getattribute__()检索属性而不触发动态查找"}, "inspect.getgeneratorstate":{"name":"inspect.getgeneratorstate","type":"inspect","path":"python/inspect.html#inspect.getgeneratorstate","desc":"获取生成器迭代器的当前状态"}, "inspect.getcoroutinestate":{"name":"inspect.getcoroutinestate","type":"inspect","path":"python/inspect.html#inspect.getcoroutinestate","desc":"获取协程对象的当前状态"}, "inspect.getgeneratorlocals":{"name":"inspect.getgeneratorlocals","type":"inspect","path":"python/inspect.html#inspect.getgeneratorlocals","desc":"获取generator中的实时局部变量映射到它们的当前值"}, "inspect.getcoroutinelocals":{"name":"inspect.getcoroutinelocals","type":"inspect","path":"python/inspect.html#inspect.getcoroutinelocals","desc":"这个函数类似于getgeneratorlocals(),但是对由async def函数创建的协程对象起作用"}, "io.open":{"name":"io.open","type":"io","path":"python/io.html#io.open","desc":"这是内置open()函数的别名"}, "io.DEFAULT_BUFFER_SIZE":{"name":"io.DEFAULT_BUFFER_SIZE","type":"io","path":"python/io.html#io.DEFAULT_BUFFER_SIZE","desc":"包含由模块的缓冲I / O类使用的默认缓冲区大小的int"}, "ipaddress.ip_address":{"name":"ipaddress.ip_address","type":"ipaddress","path":"python/ipaddress.html#ipaddress.ip_address","desc":"根据作为参数传递的IP地址,返回IPv4Address或IPv6Address对象"}, "ipaddress.ip_network":{"name":"ipaddress.ip_network","type":"ipaddress","path":"python/ipaddress.html#ipaddress.ip_network","desc":"根据作为参数传递的IP地址,返回IPv4Network或IPv6Network对象"}, "ipaddress.ip_interface":{"name":"ipaddress.ip_interface","type":"ipaddress","path":"python/ipaddress.html#ipaddress.ip_interface","desc":"根据作为参数传递的IP地址,返回IPv4Interface或IPv6Interface对象"}, "ipaddress.v4_int_to_packed":{"name":"ipaddress.v4_int_to_packed","type":"ipaddress","path":"python/ipaddress.html#ipaddress.v4_int_to_packed","desc":"将地址表示为网络(big-endian)顺序中的4个打包字节"}, "ipaddress.v6_int_to_packed":{"name":"ipaddress.v6_int_to_packed","type":"ipaddress","path":"python/ipaddress.html#ipaddress.v6_int_to_packed","desc":"将地址表示为网络(big-endian)顺序中的16个打包字节"}, "ipaddress.summarize_address_range":{"name":"ipaddress.summarize_address_range","type":"ipaddress","path":"python/ipaddress.html#ipaddress.summarize_address_range","desc":"返回给定第一个和最后一个IP地址的汇总网络范围的迭代器"}, "ipaddress.collapse_addresses":{"name":"ipaddress.collapse_addresses","type":"ipaddress","path":"python/ipaddress.html#ipaddress.collapse_addresses","desc":"返回折叠的IPv4Network或IPv6Network对象的迭代器"}, "ipaddress.get_mixed_type_key":{"name":"ipaddress.get_mixed_type_key","type":"ipaddress","path":"python/ipaddress.html#ipaddress.get_mixed_type_key","desc":"返回适用于在网络和地址之间排序的键"}, "itertools.accumulate":{"name":"itertools.accumulate","type":"itertools","path":"python/itertools.html#itertools.accumulate","desc":"创建的迭代对象返回被计算的sums值或者其它二元函数的结果(通过指定func参数)"}, "itertools.chain":{"name":"itertools.chain","type":"itertools","path":"python/itertools.html#itertools.chain","desc":"创建一个迭代器,从第一个迭代器返回元素,直到它耗尽,然后继续下一个迭代器,直到所有的迭代器都用尽"}, "itertools.combinations":{"name":"itertools.combinations","type":"itertools","path":"python/itertools.html#itertools.combinations","desc":"从输入可迭代返回r个元素的长度子序列"}, "itertools.combinations_with_replacement":{"name":"itertools.combinations_with_replacement","type":"itertools","path":"python/itertools.html#itertools.combinations_with_replacement","desc":"从输入可迭代返回元素的r长度子序列,允许单个元素重复一次以上"}, "itertools.compress":{"name":"itertools.compress","type":"itertools","path":"python/itertools.html#itertools.compress","desc":"创建一个迭代器,用于过滤数据中的元素,只返回在选择器中具有对应元素的元素,其计算结果为True"}, "itertools.count":{"name":"itertools.count","type":"itertools","path":"python/itertools.html#itertools.count","desc":"使迭代器以数字开始开始返回均匀间隔的值"}, "itertools.cycle":{"name":"itertools.cycle","type":"itertools","path":"python/itertools.html#itertools.cycle","desc":"使迭代器从可迭代器返回元素并保存每个元素的副本"}, "itertools.dropwhile":{"name":"itertools.dropwhile","type":"itertools","path":"python/itertools.html#itertools.dropwhile","desc":"创建一个迭代器,只要谓词为真,就从迭代中删除元素;之后,返回每个元素"}, "itertools.filterfalse":{"name":"itertools.filterfalse","type":"itertools","path":"python/itertools.html#itertools.filterfalse","desc":"创建一个迭代器,过滤可迭代元素,只返回谓词为False的元素"}, "itertools.groupby":{"name":"itertools.groupby","type":"itertools","path":"python/itertools.html#itertools.groupby","desc":"创建一个迭代器,从可迭代返回连续的键和组"}, "itertools.islice":{"name":"itertools.islice","type":"itertools","path":"python/itertools.html#itertools.islice","desc":"让一个迭代器从它返回选定的元素"}, "itertools.permutations":{"name":"itertools.permutations","type":"itertools","path":"python/itertools.html#itertools.permutations","desc":"返回可迭代中的元素的连续r长度排列"}, "itertools.product":{"name":"itertools.product","type":"itertools","path":"python/itertools.html#itertools.product","desc":"输入迭代的笛卡尔乘积"}, "itertools.repeat":{"name":"itertools.repeat","type":"itertools","path":"python/itertools.html#itertools.repeat","desc":"创建一个反复返回对象的迭代器"}, "itertools.starmap":{"name":"itertools.starmap","type":"itertools","path":"python/itertools.html#itertools.starmap","desc":"创建一个迭代器,使用从可迭代获得的参数计算函数"}, "itertools.takewhile":{"name":"itertools.takewhile","type":"itertools","path":"python/itertools.html#itertools.takewhile","desc":"创建一个迭代器,只要谓词为真,它就返回可迭代的元素"}, "itertools.tee":{"name":"itertools.tee","type":"itertools","path":"python/itertools.html#itertools.tee","desc":"从单个可迭代中返回n独立迭代器"}, "itertools.zip_longest":{"name":"itertools.zip_longest","type":"itertools","path":"python/itertools.html#itertools.zip_longest","desc":"创建一个迭代器,聚合来自每个迭代器的元素"}, "json.dump":{"name":"json.dump","type":"json","path":"python/json.html#json.dump","desc":"将obj序列化为fp(a "}, "json.dumps":{"name":"json.dumps","type":"json","path":"python/json.html#json.dumps","desc":"使用此conversion table将obj序列化为JSON格式的str"}, "json.load":{"name":"json.load","type":"json","path":"python/json.html#json.load","desc":"使用 这个转换表 将 fp (一个包含 JSON 文档并支持 "}, "json.loads":{"name":"json.loads","type":"json","path":"python/json.html#json.loads","desc":"使用此conversion table将包含JSON文档的s(a str实例)解压缩为Python对象"}, "keyword.iskeyword":{"name":"keyword.iskeyword","type":"keyword","path":"python/keyword.html#keyword.iskeyword","desc":"如果 s 是一个 Python 关键字则返回True"}, "keyword.kwlist":{"name":"keyword.kwlist","type":"keyword","path":"python/keyword.html#keyword.kwlist","desc":"包含定义为解释器的所有关键字的序列"}, "linecache.getline":{"name":"linecache.getline","type":"linecache","path":"python/linecache.html#linecache.getline","desc":"从名为filename的文件中获取行lineno"}, "linecache.clearcache":{"name":"linecache.clearcache","type":"linecache","path":"python/linecache.html#linecache.clearcache","desc":"清除缓存"}, "linecache.checkcache":{"name":"linecache.checkcache","type":"linecache","path":"python/linecache.html#linecache.checkcache","desc":"检查缓存的有效性"}, "linecache.lazycache":{"name":"linecache.lazycache","type":"linecache","path":"python/linecache.html#linecache.lazycache","desc":"捕获有关非基于文件的模块的足够详细信息,以允许稍后通过getline()获取其行,即使module_globals在后面的调用中为None"}, "locale.setlocale":{"name":"locale.setlocale","type":"locale","path":"python/locale.html#locale.setlocale","desc":"如果给定locale且None,setlocale()修改类别的区域设置"}, "locale.localeconv":{"name":"locale.localeconv","type":"locale","path":"python/locale.html#locale.localeconv","desc":"将本地约定的数据库作为字典返回"}, "locale.nl_langinfo":{"name":"locale.nl_langinfo","type":"locale","path":"python/locale.html#locale.nl_langinfo","desc":"将一些特定于语言环境的信息作为字符串返回"}, "locale.getdefaultlocale":{"name":"locale.getdefaultlocale","type":"locale","path":"python/locale.html#locale.getdefaultlocale","desc":"尝试确定默认语言环境设置,并以(语言 代码, 编码) "}, "locale.getlocale":{"name":"locale.getlocale","type":"locale","path":"python/locale.html#locale.getlocale","desc":"将指定语言代码类别的当前设置作为包含语言代码,编码的序列返回"}, "locale.getpreferredencoding":{"name":"locale.getpreferredencoding","type":"locale","path":"python/locale.html#locale.getpreferredencoding","desc":"根据用户偏好返回用于文本数据的编码"}, "locale.normalize":{"name":"locale.normalize","type":"locale","path":"python/locale.html#locale.normalize","desc":"返回给定语言环境名称的标准化语言环境代码"}, "locale.resetlocale":{"name":"locale.resetlocale","type":"locale","path":"python/locale.html#locale.resetlocale","desc":"将类别的区域设置设置为默认设置"}, "locale.strcoll":{"name":"locale.strcoll","type":"locale","path":"python/locale.html#locale.strcoll","desc":"根据当前LC_COLLATE设置比较两个字符串"}, "locale.strxfrm":{"name":"locale.strxfrm","type":"locale","path":"python/locale.html#locale.strxfrm","desc":"将字符串转换为可在区域设置感知比较中使用的字符串"}, "locale.format":{"name":"locale.format","type":"locale","path":"python/locale.html#locale.format","desc":"根据当前的LC_NUMERIC设置格式化数字val"}, "locale.format_string":{"name":"locale.format_string","type":"locale","path":"python/locale.html#locale.format_string","desc":"按格式 % val处理格式说明符,但会考虑当前的区域设置"}, "locale.currency":{"name":"locale.currency","type":"locale","path":"python/locale.html#locale.currency","desc":"根据当前的LC_MONETARY设置格式化数字val"}, "locale.str":{"name":"locale.str","type":"locale","path":"python/locale.html#locale.str","desc":"使用与内建函数str(float)相同的格式格式化浮点数,但会考虑小数点"}, "locale.delocalize":{"name":"locale.delocalize","type":"locale","path":"python/locale.html#locale.delocalize","desc":"在LC_NUMERIC设置后,将字符串转换为规范化的数字字符串"}, "locale.atof":{"name":"locale.atof","type":"locale","path":"python/locale.html#locale.atof","desc":"将字符串转换为浮点数,紧跟LC_NUMERIC设置"}, "locale.atoi":{"name":"locale.atoi","type":"locale","path":"python/locale.html#locale.atoi","desc":"将字符串转换为整数,遵循LC_NUMERIC约定"}, "locale.CODESET":{"name":"locale.CODESET","type":"locale","path":"python/locale.html#locale.CODESET","desc":"获取一个字符串,其中包含所选语言环境中使用的字符编码的名称"}, "locale.D_T_FMT":{"name":"locale.D_T_FMT","type":"locale","path":"python/locale.html#locale.D_T_FMT","desc":"获取可用作time"}, "locale.D_FMT":{"name":"locale.D_FMT","type":"locale","path":"python/locale.html#locale.D_FMT","desc":"获取可用作time"}, "locale.T_FMT":{"name":"locale.T_FMT","type":"locale","path":"python/locale.html#locale.T_FMT","desc":"获取可用作time"}, "locale.T_FMT_AMPM":{"name":"locale.T_FMT_AMPM","type":"locale","path":"python/locale.html#locale.T_FMT_AMPM","desc":"获取time"}, "locale.RADIXCHAR":{"name":"locale.RADIXCHAR","type":"locale","path":"python/locale.html#locale.RADIXCHAR","desc":"获取基数字符(小数点,十进制逗号等))"}, "locale.THOUSEP":{"name":"locale.THOUSEP","type":"locale","path":"python/locale.html#locale.THOUSEP","desc":"获取数千(三位数的组)的分隔符"}, "locale.YESEXPR":{"name":"locale.YESEXPR","type":"locale","path":"python/locale.html#locale.YESEXPR","desc":"获取可以与正则表达式函数一起使用的正则表达式,以识别对是/否问题的肯定响应"}, "locale.NOEXPR":{"name":"locale.NOEXPR","type":"locale","path":"python/locale.html#locale.NOEXPR","desc":"获取可以与regex(3)函数一起使用的正则表达式来识别对是/否问题的否定响应"}, "locale.CRNCYSTR":{"name":"locale.CRNCYSTR","type":"locale","path":"python/locale.html#locale.CRNCYSTR","desc":"获取货币符号,如果符号应出现在值前面,则以“ - ”开头,如果符号应出现在值后面,则为“+”,如果符号应替换基数字符,则为“"}, "locale.ERA":{"name":"locale.ERA","type":"locale","path":"python/locale.html#locale.ERA","desc":"获取表示当前语言环境中使用的时代的字符串"}, "locale.ERA_D_T_FMT":{"name":"locale.ERA_D_T_FMT","type":"locale","path":"python/locale.html#locale.ERA_D_T_FMT","desc":"获取time"}, "locale.ERA_D_FMT":{"name":"locale.ERA_D_FMT","type":"locale","path":"python/locale.html#locale.ERA_D_FMT","desc":"获取time"}, "locale.ERA_T_FMT":{"name":"locale.ERA_T_FMT","type":"locale","path":"python/locale.html#locale.ERA_T_FMT","desc":"获取time"}, "locale.ALT_DIGITS":{"name":"locale.ALT_DIGITS","type":"locale","path":"python/locale.html#locale.ALT_DIGITS","desc":"获取用于表示值0到99的最多100个值的表示"}, "locale.LC_CTYPE":{"name":"locale.LC_CTYPE","type":"locale","path":"python/locale.html#locale.LC_CTYPE","desc":"字符类型函数的区域设置类别"}, "locale.LC_COLLATE":{"name":"locale.LC_COLLATE","type":"locale","path":"python/locale.html#locale.LC_COLLATE","desc":"用于排序字符串的区域设置类别"}, "locale.LC_TIME":{"name":"locale.LC_TIME","type":"locale","path":"python/locale.html#locale.LC_TIME","desc":"时间格式化的区域设置类别"}, "locale.LC_MONETARY":{"name":"locale.LC_MONETARY","type":"locale","path":"python/locale.html#locale.LC_MONETARY","desc":"货币值格式化的区域设置类别"}, "locale.LC_MESSAGES":{"name":"locale.LC_MESSAGES","type":"locale","path":"python/locale.html#locale.LC_MESSAGES","desc":"消息显示的区域设置类别"}, "locale.LC_NUMERIC":{"name":"locale.LC_NUMERIC","type":"locale","path":"python/locale.html#locale.LC_NUMERIC","desc":"格式化数字的区域设置类别"}, "locale.LC_ALL":{"name":"locale.LC_ALL","type":"locale","path":"python/locale.html#locale.LC_ALL","desc":"所有区域设置的组合"}, "locale.CHAR_MAX":{"name":"locale.CHAR_MAX","type":"locale","path":"python/locale.html#locale.CHAR_MAX","desc":"这是用于localeconv()返回的不同值的符号常量"}, "logging.config.dictConfig":{"name":"logging.config.dictConfig","type":"logging.config","path":"python/logging.config.html#logging.config.dictConfig","desc":"Takes the logging configuration from a dictionary"}, "logging.config.fileConfig":{"name":"logging.config.fileConfig","type":"logging.config","path":"python/logging.config.html#logging.config.fileConfig","desc":"从configparser -format文件读取日志记录配置"}, "logging.config.listen":{"name":"logging.config.listen","type":"logging.config","path":"python/logging.config.html#logging.config.listen","desc":"在指定的端口起一个socket服务器,以监听新的配置"}, "logging.config.stopListening":{"name":"logging.config.stopListening","type":"logging.config","path":"python/logging.config.html#logging.config.stopListening","desc":"停止listen()返回的服务器的监听"}, "logging.getLogger":{"name":"logging.getLogger","type":"logging","path":"python/logging.html#logging.getLogger","desc":"返回具有指定名称的记录器,如果名称为无,则返回一个记录器,它是层次结构的根记录器"}, "logging.getLoggerClass":{"name":"logging.getLoggerClass","type":"logging","path":"python/logging.html#logging.getLoggerClass","desc":"Return either the standard Logger class, or the last class passed to setLoggerClass()"}, "logging.getLogRecordFactory":{"name":"logging.getLogRecordFactory","type":"logging","path":"python/logging.html#logging.getLogRecordFactory","desc":"Return a callable which is used to create a LogRecord"}, "logging.debug":{"name":"logging.debug","type":"logging","path":"python/logging.html#logging.debug","desc":"Logs a message with level DEBUG on the root logger"}, "logging.info":{"name":"logging.info","type":"logging","path":"python/logging.html#logging.info","desc":"Logs a message with level INFO on the root logger"}, "logging.warning":{"name":"logging.warning","type":"logging","path":"python/logging.html#logging.warning","desc":"Logs a message with level WARNING on the root logger"}, "logging.error":{"name":"logging.error","type":"logging","path":"python/logging.html#logging.error","desc":"Logs a message with level ERROR on the root logger"}, "logging.critical":{"name":"logging.critical","type":"logging","path":"python/logging.html#logging.critical","desc":"Logs a message with level CRITICAL on the root logger"}, "logging.exception":{"name":"logging.exception","type":"logging","path":"python/logging.html#logging.exception","desc":"Logs a message with level ERROR on the root logger"}, "logging.log":{"name":"logging.log","type":"logging","path":"python/logging.html#logging.log","desc":"Logs a message with level level on the root logger"}, "logging.disable":{"name":"logging.disable","type":"logging","path":"python/logging.html#logging.disable","desc":"Provides an overriding level lvl for all loggers which takes precedence over the logger’s own level"}, "logging.addLevelName":{"name":"logging.addLevelName","type":"logging","path":"python/logging.html#logging.addLevelName","desc":"Associates level lvl with text levelName in an internal dictionary, which is used to map numeric levels to a textual representation, for example when a Formatter formats a message"}, "logging.getLevelName":{"name":"logging.getLevelName","type":"logging","path":"python/logging.html#logging.getLevelName","desc":"Returns the textual representation of logging level lvl"}, "logging.makeLogRecord":{"name":"logging.makeLogRecord","type":"logging","path":"python/logging.html#logging.makeLogRecord","desc":"Creates and returns a new LogRecord instance whose attributes are defined by attrdict"}, "logging.basicConfig":{"name":"logging.basicConfig","type":"logging","path":"python/logging.html#logging.basicConfig","desc":"Does basic configuration for the logging system by creating a StreamHandler with a default Formatter and adding it to the root logger"}, "logging.shutdown":{"name":"logging.shutdown","type":"logging","path":"python/logging.html#logging.shutdown","desc":"Informs the logging system to perform an orderly shutdown by flushing and closing all handlers"}, "logging.setLoggerClass":{"name":"logging.setLoggerClass","type":"logging","path":"python/logging.html#logging.setLoggerClass","desc":"Tells the logging system to use the class klass when instantiating a logger"}, "logging.setLogRecordFactory":{"name":"logging.setLogRecordFactory","type":"logging","path":"python/logging.html#logging.setLogRecordFactory","desc":"Set a callable which is used to create a LogRecord"}, "logging.captureWarnings":{"name":"logging.captureWarnings","type":"logging","path":"python/logging.html#logging.captureWarnings","desc":"This function is used to turn the capture of warnings by logging on and off"}, "lzma.open":{"name":"lzma.open","type":"lzma","path":"python/lzma.html#lzma.open","desc":"以二进制或文本模式打开LZMA压缩文件,返回file object"}, "lzma.compress":{"name":"lzma.compress","type":"lzma","path":"python/lzma.html#lzma.compress","desc":"压缩数据(a bytes对象),将压缩数据作为bytes对象返回"}, "lzma.decompress":{"name":"lzma.decompress","type":"lzma","path":"python/lzma.html#lzma.decompress","desc":"解压缩数据(a bytes对象),将未压缩数据作为bytes对象返回"}, "lzma.is_check_supported":{"name":"lzma.is_check_supported","type":"lzma","path":"python/lzma.html#lzma.is_check_supported","desc":"如果在此系统上支持给定的完整性检查,则返回true"}, "mailcap.findmatch":{"name":"mailcap.findmatch","type":"mailcap","path":"python/mailcap.html#mailcap.findmatch","desc":"返回一个2元组;第一个元素是包含要执行的命令行的字符串(可以传递到os"}, "mailcap.getcaps":{"name":"mailcap.getcaps","type":"mailcap","path":"python/mailcap.html#mailcap.getcaps","desc":"返回将MIME类型映射到mailcap文件条目列表的字典"}, "marshal.dump":{"name":"marshal.dump","type":"marshal","path":"python/marshal.html#marshal.dump","desc":"在打开的文件上写入值"}, "marshal.load":{"name":"marshal.load","type":"marshal","path":"python/marshal.html#marshal.load","desc":"从打开的文件中读取一个值并返回"}, "marshal.dumps":{"name":"marshal.dumps","type":"marshal","path":"python/marshal.html#marshal.dumps","desc":"返回dump(value, 文件)将写入文件的字符串"}, "marshal.loads":{"name":"marshal.loads","type":"marshal","path":"python/marshal.html#marshal.loads","desc":"将字符串转换为值"}, "marshal.version":{"name":"marshal.version","type":"marshal","path":"python/marshal.html#marshal.version","desc":"表示模块使用的格式"}, "math.ceil":{"name":"math.ceil","type":"math","path":"python/math.html#math.ceil","desc":"Return the ceiling of x, 大于等于 x 的最小整数"}, "math.copysign":{"name":"math.copysign","type":"math","path":"python/math.html#math.copysign","desc":"返回x的绝对值大小和y的符号"}, "math.fabs":{"name":"math.fabs","type":"math","path":"python/math.html#math.fabs","desc":"返回x的绝对值"}, "math.factorial":{"name":"math.factorial","type":"math","path":"python/math.html#math.factorial","desc":"返回x的阶乘"}, "math.floor":{"name":"math.floor","type":"math","path":"python/math.html#math.floor","desc":"Return the floor of x, 小于等于 x的最大整数"}, "math.fmod":{"name":"math.fmod","type":"math","path":"python/math.html#math.fmod","desc":"返回由平台C库定义的fmod(x, y)"}, "math.frexp":{"name":"math.frexp","type":"math","path":"python/math.html#math.frexp","desc":"将x的尾数和指数作为对(m, e)返回"}, "math.fsum":{"name":"math.fsum","type":"math","path":"python/math.html#math.fsum","desc":"在可迭代中返回值的准确浮动点总和"}, "math.gcd":{"name":"math.gcd","type":"math","path":"python/math.html#math.gcd","desc":"返回整数a和b的最大公约数"}, "math.isclose":{"name":"math.isclose","type":"math","path":"python/math.html#math.isclose","desc":"如果a和b的值彼此接近,则返回True, 反之则False"}, "math.isfinite":{"name":"math.isfinite","type":"math","path":"python/math.html#math.isfinite","desc":"如果x既不是无穷大也不是NaN,则返回True,否则返回False"}, "math.isinf":{"name":"math.isinf","type":"math","path":"python/math.html#math.isinf","desc":"如果x是正或负无穷大,则返回True,否则返回False"}, "math.isnan":{"name":"math.isnan","type":"math","path":"python/math.html#math.isnan","desc":"如果x是NaN(不是数字),则返回True,否则返回False"}, "math.ldexp":{"name":"math.ldexp","type":"math","path":"python/math.html#math.ldexp","desc":"返回x * (2 ** i)"}, "math.modf":{"name":"math.modf","type":"math","path":"python/math.html#math.modf","desc":"返回x的小数和整数部分"}, "math.trunc":{"name":"math.trunc","type":"math","path":"python/math.html#math.trunc","desc":"将Real值x返回到Integral(通常为整数)"}, "math.exp":{"name":"math.exp","type":"math","path":"python/math.html#math.exp","desc":"返回 e**x (e的x幂方)"}, "math.expm1":{"name":"math.expm1","type":"math","path":"python/math.html#math.expm1","desc":"返回e ** x - 1"}, "math.log":{"name":"math.log","type":"math","path":"python/math.html#math.log","desc":"具有一个参数,返回的x (以e) 的自然对数"}, "math.log1p":{"name":"math.log1p","type":"math","path":"python/math.html#math.log1p","desc":"返回1 + x (底数e) 的自然对数"}, "math.log2":{"name":"math.log2","type":"math","path":"python/math.html#math.log2","desc":"返回x的基2对数"}, "math.log10":{"name":"math.log10","type":"math","path":"python/math.html#math.log10","desc":"返回x的对数"}, "math.pow":{"name":"math.pow","type":"math","path":"python/math.html#math.pow","desc":"返回x的y次幂"}, "math.sqrt":{"name":"math.sqrt","type":"math","path":"python/math.html#math.sqrt","desc":"返回 x 的平方根"}, "math.acos":{"name":"math.acos","type":"math","path":"python/math.html#math.acos","desc":"返回以弧度表示的角的x,余弦"}, "math.asin":{"name":"math.asin","type":"math","path":"python/math.html#math.asin","desc":"返回以弧度表示的正弦值的x"}, "math.atan":{"name":"math.atan","type":"math","path":"python/math.html#math.atan","desc":"返回反正切值的x,以弧度为单位"}, "math.atan2":{"name":"math.atan2","type":"math","path":"python/math.html#math.atan2","desc":"以弧度返回atan(y / x)"}, "math.cos":{"name":"math.cos","type":"math","path":"python/math.html#math.cos","desc":"返回x弧度的余弦值"}, "math.hypot":{"name":"math.hypot","type":"math","path":"python/math.html#math.hypot","desc":"返回欧氏方程,sqrt(x * x + y * y)"}, "math.sin":{"name":"math.sin","type":"math","path":"python/math.html#math.sin","desc":"返回x弧度的正弦值"}, "math.tan":{"name":"math.tan","type":"math","path":"python/math.html#math.tan","desc":"返回x弧度的正切值"}, "math.degrees":{"name":"math.degrees","type":"math","path":"python/math.html#math.degrees","desc":"将角度x从弧度转换为度"}, "math.radians":{"name":"math.radians","type":"math","path":"python/math.html#math.radians","desc":"将角度x从度转换为弧度"}, "math.acosh":{"name":"math.acosh","type":"math","path":"python/math.html#math.acosh","desc":"返回x的反双曲余弦值"}, "math.asinh":{"name":"math.asinh","type":"math","path":"python/math.html#math.asinh","desc":"返回x的反双曲正弦值"}, "math.atanh":{"name":"math.atanh","type":"math","path":"python/math.html#math.atanh","desc":"返回x的反双曲正切值"}, "math.cosh":{"name":"math.cosh","type":"math","path":"python/math.html#math.cosh","desc":"返回x的双曲余弦值"}, "math.sinh":{"name":"math.sinh","type":"math","path":"python/math.html#math.sinh","desc":"返回x的双曲正弦值"}, "math.tanh":{"name":"math.tanh","type":"math","path":"python/math.html#math.tanh","desc":"返回x的双曲正切值"}, "math.erf":{"name":"math.erf","type":"math","path":"python/math.html#math.erf","desc":"在x返回错误函数"}, "math.erfc":{"name":"math.erfc","type":"math","path":"python/math.html#math.erfc","desc":"返回在x的余误差函数"}, "math.gamma":{"name":"math.gamma","type":"math","path":"python/math.html#math.gamma","desc":"返回 x 的 Gamma function (伽马函数)"}, "math.lgamma":{"name":"math.lgamma","type":"math","path":"python/math.html#math.lgamma","desc":"返回伽玛函数在x的绝对值的自然对数"}, "math.pi":{"name":"math.pi","type":"math","path":"python/math.html#math.pi","desc":"数学常量 π = 3"}, "math.e":{"name":"math.e","type":"math","path":"python/math.html#math.e","desc":"数学常数 e = 2"}, "math.inf":{"name":"math.inf","type":"math","path":"python/math.html#math.inf","desc":"浮点正无穷大"}, "math.nan":{"name":"math.nan","type":"math","path":"python/math.html#math.nan","desc":"浮点数“不是数字”(NaN)值"}, "mimetypes.guess_type":{"name":"mimetypes.guess_type","type":"mimetypes","path":"python/mimetypes.html#mimetypes.guess_type","desc":"根据文件名或URL(由url给出)猜测文件类型"}, "mimetypes.guess_all_extensions":{"name":"mimetypes.guess_all_extensions","type":"mimetypes","path":"python/mimetypes.html#mimetypes.guess_all_extensions","desc":"根据由类型给出的MIME类型猜测文件的扩展名"}, "mimetypes.guess_extension":{"name":"mimetypes.guess_extension","type":"mimetypes","path":"python/mimetypes.html#mimetypes.guess_extension","desc":"根据由类型给出的MIME类型猜测文件的扩展名"}, "mimetypes.init":{"name":"mimetypes.init","type":"mimetypes","path":"python/mimetypes.html#mimetypes.init","desc":"初始化内部数据结构"}, "mimetypes.read_mime_types":{"name":"mimetypes.read_mime_types","type":"mimetypes","path":"python/mimetypes.html#mimetypes.read_mime_types","desc":"加载文件filename中给出的类型映射(如果存在)"}, "mimetypes.add_type":{"name":"mimetypes.add_type","type":"mimetypes","path":"python/mimetypes.html#mimetypes.add_type","desc":"将MIME类型类型的映射添加到扩展ext"}, "mimetypes.inited":{"name":"mimetypes.inited","type":"mimetypes","path":"python/mimetypes.html#mimetypes.inited","desc":"指示全局数据结构是否已被初始化的标志"}, "mimetypes.knownfiles":{"name":"mimetypes.knownfiles","type":"mimetypes","path":"python/mimetypes.html#mimetypes.knownfiles","desc":"通常安装的类型映射文件名列表"}, "mimetypes.suffix_map":{"name":"mimetypes.suffix_map","type":"mimetypes","path":"python/mimetypes.html#mimetypes.suffix_map","desc":"字典映射后缀到后缀"}, "mimetypes.encodings_map":{"name":"mimetypes.encodings_map","type":"mimetypes","path":"python/mimetypes.html#mimetypes.encodings_map","desc":"将文件扩展名映射到编码类型"}, "mimetypes.types_map":{"name":"mimetypes.types_map","type":"mimetypes","path":"python/mimetypes.html#mimetypes.types_map","desc":"字典映射MIME类型的文件扩展名"}, "mimetypes.common_types":{"name":"mimetypes.common_types","type":"mimetypes","path":"python/mimetypes.html#mimetypes.common_types","desc":""}, "modulefinder.AddPackagePath":{"name":"modulefinder.AddPackagePath","type":"modulefinder","path":"python/modulefinder.html#modulefinder.AddPackagePath","desc":"记录在指定的路径中可以找到名为pkg_name的包"}, "modulefinder.ReplacePackage":{"name":"modulefinder.ReplacePackage","type":"modulefinder","path":"python/modulefinder.html#modulefinder.ReplacePackage","desc":"允许指定名为oldname的模块实际上是名为newname的包"}, "msilib.FCICreate":{"name":"msilib.FCICreate","type":"msilib","path":"python/msilib.html#msilib.FCICreate","desc":"创建名为cabname的新CAB文件"}, "msilib.UuidCreate":{"name":"msilib.UuidCreate","type":"msilib","path":"python/msilib.html#msilib.UuidCreate","desc":"返回新的唯一标识符的字符串表示形式"}, "msilib.OpenDatabase":{"name":"msilib.OpenDatabase","type":"msilib","path":"python/msilib.html#msilib.OpenDatabase","desc":"通过调用MsiOpenDatabase返回一个新的数据库对象"}, "msilib.CreateRecord":{"name":"msilib.CreateRecord","type":"msilib","path":"python/msilib.html#msilib.CreateRecord","desc":"通过调用MSICreateRecord()返回一个新的记录对象"}, "msilib.init_database":{"name":"msilib.init_database","type":"msilib","path":"python/msilib.html#msilib.init_database","desc":"Create and return a new database name, initialize it with schema, and set the properties ProductName, ProductCode, ProductVersion, and Manufacturer"}, "msilib.add_data":{"name":"msilib.add_data","type":"msilib","path":"python/msilib.html#msilib.add_data","desc":"将所有记录添加到数据库中名为表的表"}, "msilib.add_tables":{"name":"msilib.add_tables","type":"msilib","path":"python/msilib.html#msilib.add_tables","desc":"将模块中的所有表内容添加到数据库"}, "msilib.add_stream":{"name":"msilib.add_stream","type":"msilib","path":"python/msilib.html#msilib.add_stream","desc":"将路径添加到数据库的_Stream表中,流名称为name"}, "msilib.gen_uuid":{"name":"msilib.gen_uuid","type":"msilib","path":"python/msilib.html#msilib.gen_uuid","desc":"以MSI通常需要的格式返回新的UUID"}, "msilib.sequence":{"name":"msilib.sequence","type":"msilib","path":"python/msilib.html#msilib.sequence","desc":"此模块包含标准序列表的表内容:AdminExecuteSequence,AdminUISequence,AdvtExecuteSequence,InstallExecuteSequence和 InstallUISequence"}, "msilib.text":{"name":"msilib.text","type":"msilib","path":"python/msilib.html#msilib.text","desc":"此模块包含标准安装程序操作的UIText和ActionText表的定义"}, "msvcrt.locking":{"name":"msvcrt.locking","type":"msvcrt","path":"python/msvcrt.html#msvcrt.locking","desc":"根据C运行时文件描述器fd锁定文件的一部分"}, "msvcrt.setmode":{"name":"msvcrt.setmode","type":"msvcrt","path":"python/msvcrt.html#msvcrt.setmode","desc":"设置文件描述器fd的行末翻译模式"}, "msvcrt.open_osfhandle":{"name":"msvcrt.open_osfhandle","type":"msvcrt","path":"python/msvcrt.html#msvcrt.open_osfhandle","desc":"从文件句柄句柄创建C运行时文件描述器"}, "msvcrt.get_osfhandle":{"name":"msvcrt.get_osfhandle","type":"msvcrt","path":"python/msvcrt.html#msvcrt.get_osfhandle","desc":"返回文件描述器fd的文件句柄"}, "msvcrt.kbhit":{"name":"msvcrt.kbhit","type":"msvcrt","path":"python/msvcrt.html#msvcrt.kbhit","desc":"如果键盘正在等待读取,则返回true"}, "msvcrt.getch":{"name":"msvcrt.getch","type":"msvcrt","path":"python/msvcrt.html#msvcrt.getch","desc":"读取按键并将结果字符作为字节字符串返回"}, "msvcrt.getwch":{"name":"msvcrt.getwch","type":"msvcrt","path":"python/msvcrt.html#msvcrt.getwch","desc":"getch()的宽字符变量,返回Unicode值"}, "msvcrt.getche":{"name":"msvcrt.getche","type":"msvcrt","path":"python/msvcrt.html#msvcrt.getche","desc":"类似于getch(),但是如果它代表一个可打印的字符,keypress将被回显"}, "msvcrt.getwche":{"name":"msvcrt.getwche","type":"msvcrt","path":"python/msvcrt.html#msvcrt.getwche","desc":"getche()的宽字符变体,返回Unicode值"}, "msvcrt.putch":{"name":"msvcrt.putch","type":"msvcrt","path":"python/msvcrt.html#msvcrt.putch","desc":"将字节字符串char打印到控制台,无需缓冲"}, "msvcrt.putwch":{"name":"msvcrt.putwch","type":"msvcrt","path":"python/msvcrt.html#msvcrt.putwch","desc":"宽字符变体putch(),接受Unicode值"}, "msvcrt.ungetch":{"name":"msvcrt.ungetch","type":"msvcrt","path":"python/msvcrt.html#msvcrt.ungetch","desc":"导致字节串char被“推回”到控制台缓冲区;它将是由getch()或getche()读取的下一个字符"}, "msvcrt.ungetwch":{"name":"msvcrt.ungetwch","type":"msvcrt","path":"python/msvcrt.html#msvcrt.ungetwch","desc":"ungetch()的宽字符变体,接受Unicode值"}, "msvcrt.heapmin":{"name":"msvcrt.heapmin","type":"msvcrt","path":"python/msvcrt.html#msvcrt.heapmin","desc":"强制malloc()堆清理自己并将未使用的块返回到操作系统"}, "msvcrt.LK_LOCK":{"name":"msvcrt.LK_LOCK","type":"msvcrt","path":"python/msvcrt.html#msvcrt.LK_LOCK","desc":"锁定指定的字节"}, "msvcrt.LK_NBLCK":{"name":"msvcrt.LK_NBLCK","type":"msvcrt","path":"python/msvcrt.html#msvcrt.LK_NBLCK","desc":"锁定指定的字节"}, "msvcrt.LK_UNLCK":{"name":"msvcrt.LK_UNLCK","type":"msvcrt","path":"python/msvcrt.html#msvcrt.LK_UNLCK","desc":"解锁指定的字节,必须先前已锁定"}, "multiprocessing.Pipe":{"name":"multiprocessing.Pipe","type":"multiprocessing","path":"python/multiprocessing.html#multiprocessing.Pipe","desc":"Returns a pair (conn1, conn2) of Connection objects representing the ends of a pipe"}, "multiprocessing.active_children":{"name":"multiprocessing.active_children","type":"multiprocessing","path":"python/multiprocessing.html#multiprocessing.active_children","desc":"Return list of all live children of the current process"}, "multiprocessing.cpu_count":{"name":"multiprocessing.cpu_count","type":"multiprocessing","path":"python/multiprocessing.html#multiprocessing.cpu_count","desc":"返回系统中的CPU数量"}, "multiprocessing.current_process":{"name":"multiprocessing.current_process","type":"multiprocessing","path":"python/multiprocessing.html#multiprocessing.current_process","desc":"Return the Process object corresponding to the current process"}, "multiprocessing.freeze_support":{"name":"multiprocessing.freeze_support","type":"multiprocessing","path":"python/multiprocessing.html#multiprocessing.freeze_support","desc":"Add support for when a program which uses multiprocessing has been frozen to produce a Windows executable"}, "multiprocessing.get_all_start_methods":{"name":"multiprocessing.get_all_start_methods","type":"multiprocessing","path":"python/multiprocessing.html#multiprocessing.get_all_start_methods","desc":"Returns a list of the supported start methods, the first of which is the default"}, "multiprocessing.get_context":{"name":"multiprocessing.get_context","type":"multiprocessing","path":"python/multiprocessing.html#multiprocessing.get_context","desc":"Return a context object which has the same attributes as the multiprocessing module"}, "multiprocessing.get_start_method":{"name":"multiprocessing.get_start_method","type":"multiprocessing","path":"python/multiprocessing.html#multiprocessing.get_start_method","desc":"Return the name of start method used for starting processes"}, "multiprocessing.set_executable":{"name":"multiprocessing.set_executable","type":"multiprocessing","path":"python/multiprocessing.html#multiprocessing.set_executable","desc":"Sets the path of the Python interpreter to use when starting a child process"}, "multiprocessing.set_start_method":{"name":"multiprocessing.set_start_method","type":"multiprocessing","path":"python/multiprocessing.html#multiprocessing.set_start_method","desc":"Set the method which should be used to start child processes"}, "multiprocessing.Value":{"name":"multiprocessing.Value","type":"multiprocessing","path":"python/multiprocessing.html#multiprocessing.Value","desc":"返回从共享内存分配的ctypes对象"}, "multiprocessing.Array":{"name":"multiprocessing.Array","type":"multiprocessing","path":"python/multiprocessing.html#multiprocessing.Array","desc":"Return a ctypes array allocated from shared memory"}, "multiprocessing.sharedctypes.RawArray":{"name":"multiprocessing.sharedctypes.RawArray","type":"multiprocessing","path":"python/multiprocessing.html#multiprocessing.sharedctypes.RawArray","desc":"Return a ctypes array allocated from shared memory"}, "multiprocessing.sharedctypes.RawValue":{"name":"multiprocessing.sharedctypes.RawValue","type":"multiprocessing","path":"python/multiprocessing.html#multiprocessing.sharedctypes.RawValue","desc":"Return a ctypes object allocated from shared memory"}, "multiprocessing.sharedctypes.Array":{"name":"multiprocessing.sharedctypes.Array","type":"multiprocessing","path":"python/multiprocessing.html#multiprocessing.sharedctypes.Array","desc":"The same as RawArray() except that depending on the value of lock a process-safe synchronization wrapper may be returned instead of a raw ctypes array"}, "multiprocessing.sharedctypes.Value":{"name":"multiprocessing.sharedctypes.Value","type":"multiprocessing","path":"python/multiprocessing.html#multiprocessing.sharedctypes.Value","desc":"The same as RawValue() except that depending on the value of lock a process-safe synchronization wrapper may be returned instead of a raw ctypes object"}, "multiprocessing.sharedctypes.copy":{"name":"multiprocessing.sharedctypes.copy","type":"multiprocessing","path":"python/multiprocessing.html#multiprocessing.sharedctypes.copy","desc":"Return a ctypes object allocated from shared memory which is a copy of the ctypes object obj"}, "multiprocessing.sharedctypes.synchronized":{"name":"multiprocessing.sharedctypes.synchronized","type":"multiprocessing","path":"python/multiprocessing.html#multiprocessing.sharedctypes.synchronized","desc":"Return a process-safe wrapper object for a ctypes object which uses lock to synchronize access"}, "multiprocessing.sharedctypes.multiprocessing.Manager":{"name":"multiprocessing.sharedctypes.multiprocessing.Manager","type":"multiprocessing","path":"python/multiprocessing.html#multiprocessing.sharedctypes.multiprocessing.Manager","desc":"Returns a started SyncManager object which can be used for sharing objects between processes"}, "multiprocessing.connection.deliver_challenge":{"name":"multiprocessing.connection.deliver_challenge","type":"multiprocessing","path":"python/multiprocessing.html#multiprocessing.connection.deliver_challenge","desc":"Send a randomly generated message to the other end of the connection and wait for a reply"}, "multiprocessing.connection.answer_challenge":{"name":"multiprocessing.connection.answer_challenge","type":"multiprocessing","path":"python/multiprocessing.html#multiprocessing.connection.answer_challenge","desc":"Receive a message, calculate the digest of the message using authkey as the key, and then send the digest back"}, "multiprocessing.connection.Client":{"name":"multiprocessing.connection.Client","type":"multiprocessing","path":"python/multiprocessing.html#multiprocessing.connection.Client","desc":"Attempt to set up a connection to the listener which is using address address, returning a Connection"}, "multiprocessing.connection.wait":{"name":"multiprocessing.connection.wait","type":"multiprocessing","path":"python/multiprocessing.html#multiprocessing.connection.wait","desc":"Wait till an object in object_list is ready"}, "multiprocessing.get_logger":{"name":"multiprocessing.get_logger","type":"multiprocessing","path":"python/multiprocessing.html#multiprocessing.get_logger","desc":"Returns the logger used by multiprocessing"}, "multiprocessing.log_to_stderr":{"name":"multiprocessing.log_to_stderr","type":"multiprocessing","path":"python/multiprocessing.html#multiprocessing.log_to_stderr","desc":"This function performs a call to get_logger() but in addition to returning the logger created by get_logger, it adds a handler which sends output to sys"}, "nis.match":{"name":"nis.match","type":"nis","path":"python/nis.html#nis.match","desc":"返回映射mapname中键的匹配,如果没有匹配,则引入错误(nis"}, "nis.cat":{"name":"nis.cat","type":"nis","path":"python/nis.html#nis.cat","desc":"将键的字典映射到值,使match(键, mapname)== value / t2>"}, "nis.maps":{"name":"nis.maps","type":"nis","path":"python/nis.html#nis.maps","desc":"返回所有有效地图的列表"}, "nis.get_default_domain":{"name":"nis.get_default_domain","type":"nis","path":"python/nis.html#nis.get_default_domain","desc":"返回系统默认NIS域"}, "nntplib.decode_header":{"name":"nntplib.decode_header","type":"nntplib","path":"python/nntplib.html#nntplib.decode_header","desc":"解码标头值,取消转义任何转义的非ASCII字符"}, "operator.lt":{"name":"operator.lt","type":"operator","path":"python/operator.html#operator.lt","desc":"在a和b之间执行“丰富比较”"}, "operator.not_":{"name":"operator.not_","type":"operator","path":"python/operator.html#operator.not_","desc":"返回not obj"}, "operator.truth":{"name":"operator.truth","type":"operator","path":"python/operator.html#operator.truth","desc":"如果obj为真,则返回True,否则返回False"}, "operator.is_":{"name":"operator.is_","type":"operator","path":"python/operator.html#operator.is_","desc":"返回a 是 b"}, "operator.is_not":{"name":"operator.is_not","type":"operator","path":"python/operator.html#operator.is_not","desc":"返回a 是 不是 b"}, "operator.abs":{"name":"operator.abs","type":"operator","path":"python/operator.html#operator.abs","desc":"返回obj的绝对值"}, "operator.add":{"name":"operator.add","type":"operator","path":"python/operator.html#operator.add","desc":"返回a + b,对于a和b t5 >数字"}, "operator.and_":{"name":"operator.and_","type":"operator","path":"python/operator.html#operator.and_","desc":"返回按位和a和b"}, "operator.floordiv":{"name":"operator.floordiv","type":"operator","path":"python/operator.html#operator.floordiv","desc":"返回a // b"}, "operator.index":{"name":"operator.index","type":"operator","path":"python/operator.html#operator.index","desc":"返回a转换为整数"}, "operator.inv":{"name":"operator.inv","type":"operator","path":"python/operator.html#operator.inv","desc":"返回数字obj的按位逆"}, "operator.lshift":{"name":"operator.lshift","type":"operator","path":"python/operator.html#operator.lshift","desc":"返回a向左移动b"}, "operator.mod":{"name":"operator.mod","type":"operator","path":"python/operator.html#operator.mod","desc":"返回a % b"}, "operator.mul":{"name":"operator.mul","type":"operator","path":"python/operator.html#operator.mul","desc":"返回a * b,对于a和b t5 >数字"}, "operator.matmul":{"name":"operator.matmul","type":"operator","path":"python/operator.html#operator.matmul","desc":"返回a @ b"}, "operator.neg":{"name":"operator.neg","type":"operator","path":"python/operator.html#operator.neg","desc":"返回obj否定(-obj)"}, "operator.or_":{"name":"operator.or_","type":"operator","path":"python/operator.html#operator.or_","desc":"返回按位或a和b"}, "operator.pos":{"name":"operator.pos","type":"operator","path":"python/operator.html#operator.pos","desc":"返回obj正(+obj)"}, "operator.pow":{"name":"operator.pow","type":"operator","path":"python/operator.html#operator.pow","desc":"对于a和b,返回a ** b t5>数字"}, "operator.rshift":{"name":"operator.rshift","type":"operator","path":"python/operator.html#operator.rshift","desc":"返回a向右移动b"}, "operator.sub":{"name":"operator.sub","type":"operator","path":"python/operator.html#operator.sub","desc":"返回a - b"}, "operator.truediv":{"name":"operator.truediv","type":"operator","path":"python/operator.html#operator.truediv","desc":"返回a / b其中2/3为"}, "operator.xor":{"name":"operator.xor","type":"operator","path":"python/operator.html#operator.xor","desc":"返回a和b的逐位异或"}, "operator.concat":{"name":"operator.concat","type":"operator","path":"python/operator.html#operator.concat","desc":"对于a和b返回a + b序列"}, "operator.contains":{"name":"operator.contains","type":"operator","path":"python/operator.html#operator.contains","desc":"返回 t> a中的测试结果b "}, "operator.countOf":{"name":"operator.countOf","type":"operator","path":"python/operator.html#operator.countOf","desc":"返回a中b的出现次数"}, "operator.delitem":{"name":"operator.delitem","type":"operator","path":"python/operator.html#operator.delitem","desc":"删除索引b处a的值"}, "operator.getitem":{"name":"operator.getitem","type":"operator","path":"python/operator.html#operator.getitem","desc":"返回a在索引b的值"}, "operator.indexOf":{"name":"operator.indexOf","type":"operator","path":"python/operator.html#operator.indexOf","desc":"返回a中b的第一个出现的索引"}, "operator.setitem":{"name":"operator.setitem","type":"operator","path":"python/operator.html#operator.setitem","desc":"将索引b处的a值设置为c"}, "operator.length_hint":{"name":"operator.length_hint","type":"operator","path":"python/operator.html#operator.length_hint","desc":"返回对象o的估计长度"}, "operator.attrgetter":{"name":"operator.attrgetter","type":"operator","path":"python/operator.html#operator.attrgetter","desc":"返回从其操作数获取attr的可调用对象"}, "operator.itemgetter":{"name":"operator.itemgetter","type":"operator","path":"python/operator.html#operator.itemgetter","desc":"返回使用操作数的__getitem__()方法从其操作数获取项的可调用对象"}, "operator.methodcaller":{"name":"operator.methodcaller","type":"operator","path":"python/operator.html#operator.methodcaller","desc":"返回在其操作数上调用方法name的可调用对象"}, "operator.iadd":{"name":"operator.iadd","type":"operator","path":"python/operator.html#operator.iadd","desc":"a = iadd(a, b) is equivalent to a += b"}, "operator.iand":{"name":"operator.iand","type":"operator","path":"python/operator.html#operator.iand","desc":"a = iand(a, b) is equivalent to a &= b"}, "operator.iconcat":{"name":"operator.iconcat","type":"operator","path":"python/operator.html#operator.iconcat","desc":"a = iconcat(a, b) is equivalent to a += b for a and b sequences"}, "operator.ifloordiv":{"name":"operator.ifloordiv","type":"operator","path":"python/operator.html#operator.ifloordiv","desc":"a = ifloordiv(a, b) is equivalent to a //= b"}, "operator.ilshift":{"name":"operator.ilshift","type":"operator","path":"python/operator.html#operator.ilshift","desc":"a = ilshift(a, b) is equivalent to a <<= b"}, "operator.imod":{"name":"operator.imod","type":"operator","path":"python/operator.html#operator.imod","desc":"a = imod(a, b) is equivalent to a %= b"}, "operator.imul":{"name":"operator.imul","type":"operator","path":"python/operator.html#operator.imul","desc":"a = imul(a, b) is equivalent to a *= b"}, "operator.imatmul":{"name":"operator.imatmul","type":"operator","path":"python/operator.html#operator.imatmul","desc":"a = imatmul(a, b) is equivalent to a @= b"}, "operator.ior":{"name":"operator.ior","type":"operator","path":"python/operator.html#operator.ior","desc":"a = ior(a, b) is equivalent to a |= b"}, "operator.ipow":{"name":"operator.ipow","type":"operator","path":"python/operator.html#operator.ipow","desc":"a = ipow(a, b) is equivalent to a **= b"}, "operator.irshift":{"name":"operator.irshift","type":"operator","path":"python/operator.html#operator.irshift","desc":"a = irshift(a, b) is equivalent to a >>= b"}, "operator.isub":{"name":"operator.isub","type":"operator","path":"python/operator.html#operator.isub","desc":"a = isub(a, b) is equivalent to a -= b"}, "operator.itruediv":{"name":"operator.itruediv","type":"operator","path":"python/operator.html#operator.itruediv","desc":"a = itruediv(a, b) is equivalent to a /= b"}, "operator.ixor":{"name":"operator.ixor","type":"operator","path":"python/operator.html#operator.ixor","desc":"a = ixor(a, b) is equivalent to a ^= b"}, "os.ctermid":{"name":"os.ctermid","type":"os","path":"python/os.html#os.ctermid","desc":"返回与进程的控制终端对应的文件名"}, "os.fsencode":{"name":"os.fsencode","type":"os","path":"python/os.html#os.fsencode","desc":"在Windows上使用'surrogateescape'错误处理程序或'strict'编码文件名返回bytes不变"}, "os.fsdecode":{"name":"os.fsdecode","type":"os","path":"python/os.html#os.fsdecode","desc":"在Windows上使用'surrogateescape'错误处理程序或'strict'对文件系统进行解码filename返回str不变"}, "os.getenv":{"name":"os.getenv","type":"os","path":"python/os.html#os.getenv","desc":"如果它存在,则返回环境变量键的值;如果不存在,则返回默认值"}, "os.getenvb":{"name":"os.getenvb","type":"os","path":"python/os.html#os.getenvb","desc":"如果它存在,则返回环境变量键的值;如果不存在,则返回默认值"}, "os.get_exec_path":{"name":"os.get_exec_path","type":"os","path":"python/os.html#os.get_exec_path","desc":"在启动进程时,返回将搜索命名可执行文件的目录列表,类似于shell"}, "os.getegid":{"name":"os.getegid","type":"os","path":"python/os.html#os.getegid","desc":"返回当前进程的有效组标识"}, "os.geteuid":{"name":"os.geteuid","type":"os","path":"python/os.html#os.geteuid","desc":"返回当前进程的有效用户标识"}, "os.getgid":{"name":"os.getgid","type":"os","path":"python/os.html#os.getgid","desc":"返回当前进程的实际组ID"}, "os.getgrouplist":{"name":"os.getgrouplist","type":"os","path":"python/os.html#os.getgrouplist","desc":"返回user所属的组ID的列表"}, "os.getgroups":{"name":"os.getgroups","type":"os","path":"python/os.html#os.getgroups","desc":"返回与当前进程关联的补充组标识的列表"}, "os.getlogin":{"name":"os.getlogin","type":"os","path":"python/os.html#os.getlogin","desc":"Return the name of the user logged in on the controlling terminal of the process"}, "os.getpgid":{"name":"os.getpgid","type":"os","path":"python/os.html#os.getpgid","desc":"用进程id pid返回进程的进程组ID"}, "os.getpgrp":{"name":"os.getpgrp","type":"os","path":"python/os.html#os.getpgrp","desc":"返回当前进程组的ID"}, "os.getpid":{"name":"os.getpid","type":"os","path":"python/os.html#os.getpid","desc":"返回当前进程id"}, "os.getppid":{"name":"os.getppid","type":"os","path":"python/os.html#os.getppid","desc":"返回父进程的进程ID"}, "os.getpriority":{"name":"os.getpriority","type":"os","path":"python/os.html#os.getpriority","desc":"获取计划调度优先级"}, "os.getresuid":{"name":"os.getresuid","type":"os","path":"python/os.html#os.getresuid","desc":"返回一个元组(ruid,euid,suid),表示当前进程的真实,有效和保存的用户id"}, "os.getresgid":{"name":"os.getresgid","type":"os","path":"python/os.html#os.getresgid","desc":"返回一个元组(rgid,egid,sgid),表示当前进程的真实,有效和保存的组ID"}, "os.getuid":{"name":"os.getuid","type":"os","path":"python/os.html#os.getuid","desc":"返回当前进程的真实用户ID"}, "os.initgroups":{"name":"os.initgroups","type":"os","path":"python/os.html#os.initgroups","desc":"调用系统initgroups()初始化组访问列表,其中包含指定用户名所属的所有组以及指定的组ID"}, "os.putenv":{"name":"os.putenv","type":"os","path":"python/os.html#os.putenv","desc":"将名为key的环境变量设置为字符串值"}, "os.setegid":{"name":"os.setegid","type":"os","path":"python/os.html#os.setegid","desc":"设置当前进程的有效组ID"}, "os.seteuid":{"name":"os.seteuid","type":"os","path":"python/os.html#os.seteuid","desc":"设置当前进程的有效用户标识"}, "os.setgid":{"name":"os.setgid","type":"os","path":"python/os.html#os.setgid","desc":"设置当前进程的组ID"}, "os.setgroups":{"name":"os.setgroups","type":"os","path":"python/os.html#os.setgroups","desc":"将与当前进程关联的补充组标识列表设置为组"}, "os.setpgrp":{"name":"os.setpgrp","type":"os","path":"python/os.html#os.setpgrp","desc":"根据所实现的版本,调用系统调用setpgrp()或setpgrp(0, 0)任何)"}, "os.setpgid":{"name":"os.setpgid","type":"os","path":"python/os.html#os.setpgid","desc":"调用系统调用setpgid()将id为pid的进程的进程组id设置为id为pgrp的进程组"}, "os.setpriority":{"name":"os.setpriority","type":"os","path":"python/os.html#os.setpriority","desc":"设置节目安排优先级"}, "os.setregid":{"name":"os.setregid","type":"os","path":"python/os.html#os.setregid","desc":"设置当前进程的真实和有效的组ID"}, "os.setresgid":{"name":"os.setresgid","type":"os","path":"python/os.html#os.setresgid","desc":"设置当前进程的真实,有效和保存的组ID"}, "os.setresuid":{"name":"os.setresuid","type":"os","path":"python/os.html#os.setresuid","desc":"设置当前进程的真实,有效和保存的用户标识"}, "os.setreuid":{"name":"os.setreuid","type":"os","path":"python/os.html#os.setreuid","desc":"设置当前进程的真实和有效的用户ID"}, "os.getsid":{"name":"os.getsid","type":"os","path":"python/os.html#os.getsid","desc":"调用系统调用getsid()"}, "os.setsid":{"name":"os.setsid","type":"os","path":"python/os.html#os.setsid","desc":"调用系统调用setsid()"}, "os.setuid":{"name":"os.setuid","type":"os","path":"python/os.html#os.setuid","desc":"设置当前进程的用户标识"}, "os.strerror":{"name":"os.strerror","type":"os","path":"python/os.html#os.strerror","desc":"返回代码中与错误代码对应的错误消息"}, "os.umask":{"name":"os.umask","type":"os","path":"python/os.html#os.umask","desc":"设置当前的数字umask并返回先前的umask"}, "os.uname":{"name":"os.uname","type":"os","path":"python/os.html#os.uname","desc":"返回标识当前操作系统的信息"}, "os.unsetenv":{"name":"os.unsetenv","type":"os","path":"python/os.html#os.unsetenv","desc":"取消设置(删除)名为键的环境变量"}, "os.fdopen":{"name":"os.fdopen","type":"os","path":"python/os.html#os.fdopen","desc":"返回连接到文件描述符fd的打开文件对象"}, "os.close":{"name":"os.close","type":"os","path":"python/os.html#os.close","desc":"关闭文件描述符fd"}, "os.closerange":{"name":"os.closerange","type":"os","path":"python/os.html#os.closerange","desc":"将所有文件描述符从fd_low(包括)关闭到fd_high(不包括),忽略错误"}, "os.device_encoding":{"name":"os.device_encoding","type":"os","path":"python/os.html#os.device_encoding","desc":"如果连接到终端,则返回描述与fd关联的设备的编码的字符串;否则返回None"}, "os.dup":{"name":"os.dup","type":"os","path":"python/os.html#os.dup","desc":"返回文件描述符fd的副本"}, "os.dup2":{"name":"os.dup2","type":"os","path":"python/os.html#os.dup2","desc":"复制文件描述符fd到fd2,必要时关闭后者"}, "os.fchmod":{"name":"os.fchmod","type":"os","path":"python/os.html#os.fchmod","desc":"将由fd给出的文件模式更改为数字模式"}, "os.fchown":{"name":"os.fchown","type":"os","path":"python/os.html#os.fchown","desc":"将由fd给出的文件的所有者和组标识更改为数字uid和gid"}, "os.fdatasync":{"name":"os.fdatasync","type":"os","path":"python/os.html#os.fdatasync","desc":"用filedescriptor fd强制将文件写入磁盘"}, "os.fpathconf":{"name":"os.fpathconf","type":"os","path":"python/os.html#os.fpathconf","desc":"返回与打开文件相关的系统配置信息"}, "os.fstat":{"name":"os.fstat","type":"os","path":"python/os.html#os.fstat","desc":"获取文件描述符fd的状态"}, "os.fstatvfs":{"name":"os.fstatvfs","type":"os","path":"python/os.html#os.fstatvfs","desc":"返回包含与文件描述符fd关联的文件的文件系统的信息,如statvfs()"}, "os.fsync":{"name":"os.fsync","type":"os","path":"python/os.html#os.fsync","desc":"用filedescriptor fd强制将文件写入磁盘"}, "os.ftruncate":{"name":"os.ftruncate","type":"os","path":"python/os.html#os.ftruncate","desc":"截断与文件描述符fd相对应的文件,以便它的大小最多为长度个字节"}, "os.get_blocking":{"name":"os.get_blocking","type":"os","path":"python/os.html#os.get_blocking","desc":"获取文件描述符的阻塞模式:False如果O_NONBLOCK标志被设置,True如果标志被清除"}, "os.isatty":{"name":"os.isatty","type":"os","path":"python/os.html#os.isatty","desc":"如果文件描述符fd打开并连接到类似tty(-like)的设备,则返回True,否则False"}, "os.lockf":{"name":"os.lockf","type":"os","path":"python/os.html#os.lockf","desc":"在打开的文件描述符上应用,测试或移除POSIX锁"}, "os.lseek":{"name":"os.lseek","type":"os","path":"python/os.html#os.lseek","desc":"Set the current position of file descriptor fd to position pos, modified by how: SEEK_SET or 0 to set the position relative to the beginning of the file; SEEK_CUR or 1 to set it relative to the current position; SEEK_END or 2 to set it relative to the end of the file"}, "os.open":{"name":"os.open","type":"os","path":"python/os.html#os.open","desc":"根据flags打开文件path,并根据mode设置不同的标志"}, "os.openpty":{"name":"os.openpty","type":"os","path":"python/os.html#os.openpty","desc":"打开一个新的伪终端对"}, "os.pipe":{"name":"os.pipe","type":"os","path":"python/os.html#os.pipe","desc":"创建一个管道"}, "os.pipe2":{"name":"os.pipe2","type":"os","path":"python/os.html#os.pipe2","desc":"使用flags自动设置一个管道"}, "os.posix_fallocate":{"name":"os.posix_fallocate","type":"os","path":"python/os.html#os.posix_fallocate","desc":"确保为fd指定的文件分配足够的磁盘空间,该文件从offset开始并继续处理len字节"}, "os.posix_fadvise":{"name":"os.posix_fadvise","type":"os","path":"python/os.html#os.posix_fadvise","desc":"宣布打算以特定模式访问数据,从而允许内核进行优化"}, "os.pread":{"name":"os.pread","type":"os","path":"python/os.html#os.pread","desc":"从文件描述符fd中读取offset位置处的文件描述符"}, "os.pwrite":{"name":"os.pwrite","type":"os","path":"python/os.html#os.pwrite","desc":"将bytestring从offset写入文件描述符fd,使文件偏移保持不变"}, "os.read":{"name":"os.read","type":"os","path":"python/os.html#os.read","desc":"从文件描述符fd中最多读取n个字节"}, "os.sendfile":{"name":"os.sendfile","type":"os","path":"python/os.html#os.sendfile","desc":"从offset开始,将count字节从中的文件描述符复制到文件描述符out"}, "os.set_blocking":{"name":"os.set_blocking","type":"os","path":"python/os.html#os.set_blocking","desc":"设置指定文件描述符的阻止模式"}, "os.readv":{"name":"os.readv","type":"os","path":"python/os.html#os.readv","desc":"从文件描述符fd中读入多个可变的bytes-like objects 缓冲区"}, "os.tcgetpgrp":{"name":"os.tcgetpgrp","type":"os","path":"python/os.html#os.tcgetpgrp","desc":"返回由fd(由os"}, "os.tcsetpgrp":{"name":"os.tcsetpgrp","type":"os","path":"python/os.html#os.tcsetpgrp","desc":"将与由fd(由os"}, "os.ttyname":{"name":"os.ttyname","type":"os","path":"python/os.html#os.ttyname","desc":"返回一个字符串,它指定与文件描述符fd关联的终端设备"}, "os.write":{"name":"os.write","type":"os","path":"python/os.html#os.write","desc":"将str中的字节串写入文件描述符fd"}, "os.writev":{"name":"os.writev","type":"os","path":"python/os.html#os.writev","desc":"将buffers的内容写入文件描述符fd"}, "os.get_terminal_size":{"name":"os.get_terminal_size","type":"os","path":"python/os.html#os.get_terminal_size","desc":"以(列, 行),terminal_size类型的元组的形式返回终端窗口的大小"}, "os.get_inheritable":{"name":"os.get_inheritable","type":"os","path":"python/os.html#os.get_inheritable","desc":"获取指定文件描述符的“可继承”标志(布尔值)"}, "os.set_inheritable":{"name":"os.set_inheritable","type":"os","path":"python/os.html#os.set_inheritable","desc":"设置指定文件描述符的“可继承”标志"}, "os.get_handle_inheritable":{"name":"os.get_handle_inheritable","type":"os","path":"python/os.html#os.get_handle_inheritable","desc":"获取指定句柄的“可继承”标志(布尔值)"}, "os.set_handle_inheritable":{"name":"os.set_handle_inheritable","type":"os","path":"python/os.html#os.set_handle_inheritable","desc":"设置指定句柄的“可继承”标志"}, "os.access":{"name":"os.access","type":"os","path":"python/os.html#os.access","desc":"使用real uid / gid来测试对路径的访问"}, "os.chdir":{"name":"os.chdir","type":"os","path":"python/os.html#os.chdir","desc":"将当前工作目录更改为路径"}, "os.chflags":{"name":"os.chflags","type":"os","path":"python/os.html#os.chflags","desc":"将路径的标志设置为数字标志"}, "os.chmod":{"name":"os.chmod","type":"os","path":"python/os.html#os.chmod","desc":"将路径的模式更改为数字模式"}, "os.chown":{"name":"os.chown","type":"os","path":"python/os.html#os.chown","desc":"将path的所有者和组标识更改为数字uid和gid"}, "os.chroot":{"name":"os.chroot","type":"os","path":"python/os.html#os.chroot","desc":"将当前进程的根目录更改为路径"}, "os.fchdir":{"name":"os.fchdir","type":"os","path":"python/os.html#os.fchdir","desc":"将当前工作目录更改为由文件描述符fd表示的目录"}, "os.getcwd":{"name":"os.getcwd","type":"os","path":"python/os.html#os.getcwd","desc":"返回表示当前工作目录的字符串"}, "os.getcwdb":{"name":"os.getcwdb","type":"os","path":"python/os.html#os.getcwdb","desc":"返回表示当前工作目录的字符串"}, "os.lchflags":{"name":"os.lchflags","type":"os","path":"python/os.html#os.lchflags","desc":"将path的标志设置为数字标志,如chflags(),但不要遵循符号链接"}, "os.lchmod":{"name":"os.lchmod","type":"os","path":"python/os.html#os.lchmod","desc":"将路径的模式更改为数字模式"}, "os.lchown":{"name":"os.lchown","type":"os","path":"python/os.html#os.lchown","desc":"将path的所有者和组标识更改为数字uid和gid"}, "os.link":{"name":"os.link","type":"os","path":"python/os.html#os.link","desc":"Create a hard link pointing to src named dst"}, "os.listdir":{"name":"os.listdir","type":"os","path":"python/os.html#os.listdir","desc":"返回一个list,包含给定path 目录下所有条目的名字"}, "os.lstat":{"name":"os.lstat","type":"os","path":"python/os.html#os.lstat","desc":"在给定路径上执行与lstat()系统调用等价的操作"}, "os.mkdir":{"name":"os.mkdir","type":"os","path":"python/os.html#os.mkdir","desc":"创建一个名称为path的目录,模式为mode"}, "os.makedirs":{"name":"os.makedirs","type":"os","path":"python/os.html#os.makedirs","desc":"递归创建目录的函数"}, "os.mkfifo":{"name":"os.mkfifo","type":"os","path":"python/os.html#os.mkfifo","desc":"使用数字模式模式创建名为path的FIFO(命名管道)"}, "os.mknod":{"name":"os.mknod","type":"os","path":"python/os.html#os.mknod","desc":"创建一个名为path的文件系统节点(文件,设备专用文件或命名管道)"}, "os.major":{"name":"os.major","type":"os","path":"python/os.html#os.major","desc":"从原始设备编号(通常是stat中的st_dev或st_rdev字段)中提取设备主编号"}, "os.minor":{"name":"os.minor","type":"os","path":"python/os.html#os.minor","desc":"从原始设备编号(通常是stat中的st_dev或st_rdev字段)中提取设备次要编号"}, "os.makedev":{"name":"os.makedev","type":"os","path":"python/os.html#os.makedev","desc":"从主要和次要设备编号构成原始设备编号"}, "os.pathconf":{"name":"os.pathconf","type":"os","path":"python/os.html#os.pathconf","desc":"返回与指定文件相关的系统配置信息"}, "os.readlink":{"name":"os.readlink","type":"os","path":"python/os.html#os.readlink","desc":"返回表示符号链接指向的路径的字符串"}, "os.remove":{"name":"os.remove","type":"os","path":"python/os.html#os.remove","desc":"删除(删除)文件路径"}, "os.removedirs":{"name":"os.removedirs","type":"os","path":"python/os.html#os.removedirs","desc":"递归地删除目录"}, "os.rename":{"name":"os.rename","type":"os","path":"python/os.html#os.rename","desc":"将文件或目录src重命名为dst"}, "os.renames":{"name":"os.renames","type":"os","path":"python/os.html#os.renames","desc":"重命名函数递归处理目录或文件,像rename()一样工作,除了首先尝试创建新路径名所需的任何中间目录之外"}, "os.replace":{"name":"os.replace","type":"os","path":"python/os.html#os.replace","desc":"将文件或目录src重命名为dst"}, "os.rmdir":{"name":"os.rmdir","type":"os","path":"python/os.html#os.rmdir","desc":"删除(删除)目录路径"}, "os.scandir":{"name":"os.scandir","type":"os","path":"python/os.html#os.scandir","desc":"返回与path给出的目录条目对应的DirEntry对象的迭代器"}, "os.stat":{"name":"os.stat","type":"os","path":"python/os.html#os.stat","desc":"获取文件或文件描述符的状态"}, "os.stat_float_times":{"name":"os.stat_float_times","type":"os","path":"python/os.html#os.stat_float_times","desc":"确定stat_result是否将时间戳记表示为浮动对象"}, "os.statvfs":{"name":"os.statvfs","type":"os","path":"python/os.html#os.statvfs","desc":"在给定路径上执行statvfs()系统调用"}, "os.symlink":{"name":"os.symlink","type":"os","path":"python/os.html#os.symlink","desc":"创建一个指向名为dst的src的符号链接"}, "os.sync":{"name":"os.sync","type":"os","path":"python/os.html#os.sync","desc":"强制将所有内容写入磁盘"}, "os.truncate":{"name":"os.truncate","type":"os","path":"python/os.html#os.truncate","desc":"截断与路径对应的文件,以便它的大小至多为长度字节"}, "os.unlink":{"name":"os.unlink","type":"os","path":"python/os.html#os.unlink","desc":"删除(删除)文件路径"}, "os.utime":{"name":"os.utime","type":"os","path":"python/os.html#os.utime","desc":"设置由path指定的文件的访问和修改时间"}, "os.walk":{"name":"os.walk","type":"os","path":"python/os.html#os.walk","desc":"遍历目录树,自顶向下或自底向上生成目录树下的文件名"}, "os.fwalk":{"name":"os.fwalk","type":"os","path":"python/os.html#os.fwalk","desc":"行为与walk()非常类似,不同的是它产生一个4元组(dirpath, dirnames, filenames, dirfd),并支持dir_fd"}, "os.getxattr":{"name":"os.getxattr","type":"os","path":"python/os.html#os.getxattr","desc":"为路径返回扩展文件系统属性属性的值"}, "os.listxattr":{"name":"os.listxattr","type":"os","path":"python/os.html#os.listxattr","desc":"返回路径上的扩展文件系统属性列表"}, "os.removexattr":{"name":"os.removexattr","type":"os","path":"python/os.html#os.removexattr","desc":"从路径中删除扩展文件系统属性属性"}, "os.setxattr":{"name":"os.setxattr","type":"os","path":"python/os.html#os.setxattr","desc":"将路径上的扩展文件系统属性属性设置为值"}, "os.abort":{"name":"os.abort","type":"os","path":"python/os.html#os.abort","desc":"生成一个SIGABRT信号给当前进程"}, "os.execl":{"name":"os.execl","type":"os","path":"python/os.html#os.execl","desc":"这些功能都执行一个新程序,取代当前进程;他们不回来"}, "os._exit":{"name":"os._exit","type":"os","path":"python/os.html#os._exit","desc":"状态n退出进程,无需调用清理处理程序,刷新stdio缓冲区等"}, "os.fork":{"name":"os.fork","type":"os","path":"python/os.html#os.fork","desc":"叉一个孩子的过程"}, "os.forkpty":{"name":"os.forkpty","type":"os","path":"python/os.html#os.forkpty","desc":"用一个新的伪终端作为孩子的控制终端,把一个子进程分叉开来"}, "os.kill":{"name":"os.kill","type":"os","path":"python/os.html#os.kill","desc":"发送信号sig到进程pid"}, "os.killpg":{"name":"os.killpg","type":"os","path":"python/os.html#os.killpg","desc":"Send the signal sig to the process group pgid"}, "os.nice":{"name":"os.nice","type":"os","path":"python/os.html#os.nice","desc":"将increment添加到进程的“niceness”中"}, "os.plock":{"name":"os.plock","type":"os","path":"python/os.html#os.plock","desc":"将程序段锁定到内存中"}, "os.popen":{"name":"os.popen","type":"os","path":"python/os.html#os.popen","desc":"从命令cmd打开管道"}, "os.spawnl":{"name":"os.spawnl","type":"os","path":"python/os.html#os.spawnl","desc":"在新进程中执行程序路径"}, "os.startfile":{"name":"os.startfile","type":"os","path":"python/os.html#os.startfile","desc":"用相关的应用程序启动一个文件"}, "os.system":{"name":"os.system","type":"os","path":"python/os.html#os.system","desc":"在子shell中执行命令(一个字符串)"}, "os.times":{"name":"os.times","type":"os","path":"python/os.html#os.times","desc":"返回当前的全局流程时间"}, "os.wait":{"name":"os.wait","type":"os","path":"python/os.html#os.wait","desc":"等待子进程完成,并返回一个包含它的pid和退出状态指示的元组:一个16位数字,其低字节是杀死进程的信号编号,其高字节是退出状态(如果信号数字为零);如果生成核心文件,则设置低字节的高位"}, "os.waitid":{"name":"os.waitid","type":"os","path":"python/os.html#os.waitid","desc":"等待一个或多个子进程的完成"}, "os.waitpid":{"name":"os.waitpid","type":"os","path":"python/os.html#os.waitpid","desc":"这个功能的细节在Unix和Windows上有所不同"}, "os.wait3":{"name":"os.wait3","type":"os","path":"python/os.html#os.wait3","desc":"类似于waitpid(),除了没有给出进程ID参数并且返回包含子进程ID,退出状态指示和资源使用信息的3元素元组"}, "os.wait4":{"name":"os.wait4","type":"os","path":"python/os.html#os.wait4","desc":"类似于waitpid(),除了包含子进程ID,退出状态指示和资源使用信息的3元素元组之外,它被返回"}, "os.WCOREDUMP":{"name":"os.WCOREDUMP","type":"os","path":"python/os.html#os.WCOREDUMP","desc":"如果为进程生成核心转储,则返回True,否则返回False"}, "os.WIFCONTINUED":{"name":"os.WIFCONTINUED","type":"os","path":"python/os.html#os.WIFCONTINUED","desc":"如果进程从作业控制停止继续,则返回True,否则返回False"}, "os.WIFSTOPPED":{"name":"os.WIFSTOPPED","type":"os","path":"python/os.html#os.WIFSTOPPED","desc":"如果进程已停止,则返回True,否则返回False"}, "os.WIFSIGNALED":{"name":"os.WIFSIGNALED","type":"os","path":"python/os.html#os.WIFSIGNALED","desc":"如果进程由于信号而退出,则返回True,否则返回False"}, "os.WIFEXITED":{"name":"os.WIFEXITED","type":"os","path":"python/os.html#os.WIFEXITED","desc":"如果进程使用exit(2)系统调用退出,则返回True,否则返回False"}, "os.WEXITSTATUS":{"name":"os.WEXITSTATUS","type":"os","path":"python/os.html#os.WEXITSTATUS","desc":"如果WIFEXITED(status)为true,则返回整型参数到exit(2)系统调用"}, "os.WSTOPSIG":{"name":"os.WSTOPSIG","type":"os","path":"python/os.html#os.WSTOPSIG","desc":"返回导致进程停止的信号"}, "os.WTERMSIG":{"name":"os.WTERMSIG","type":"os","path":"python/os.html#os.WTERMSIG","desc":"返回导致进程退出的信号"}, "os.sched_get_priority_min":{"name":"os.sched_get_priority_min","type":"os","path":"python/os.html#os.sched_get_priority_min","desc":"获取策略的最低优先级值"}, "os.sched_get_priority_max":{"name":"os.sched_get_priority_max","type":"os","path":"python/os.html#os.sched_get_priority_max","desc":"获取策略的最大优先级值"}, "os.sched_setscheduler":{"name":"os.sched_setscheduler","type":"os","path":"python/os.html#os.sched_setscheduler","desc":"使用PID pid设置进程的调度策略"}, "os.sched_getscheduler":{"name":"os.sched_getscheduler","type":"os","path":"python/os.html#os.sched_getscheduler","desc":"用PID pid返回进程的调度策略"}, "os.sched_setparam":{"name":"os.sched_setparam","type":"os","path":"python/os.html#os.sched_setparam","desc":"使用PID pid为进程设置调度参数"}, "os.sched_getparam":{"name":"os.sched_getparam","type":"os","path":"python/os.html#os.sched_getparam","desc":"将具有PID pid的进程的调度参数作为sched_param实例返回"}, "os.sched_rr_get_interval":{"name":"os.sched_rr_get_interval","type":"os","path":"python/os.html#os.sched_rr_get_interval","desc":"用PID pid返回循环过程的秒数"}, "os.sched_yield":{"name":"os.sched_yield","type":"os","path":"python/os.html#os.sched_yield","desc":"自愿放弃CPU"}, "os.sched_setaffinity":{"name":"os.sched_setaffinity","type":"os","path":"python/os.html#os.sched_setaffinity","desc":"用PID pid(或当前进程,如果为零)限制进程到一组CPU"}, "os.sched_getaffinity":{"name":"os.sched_getaffinity","type":"os","path":"python/os.html#os.sched_getaffinity","desc":"返回具有PID pid(或当前过程,如果为零)的过程的CPU集合限制为"}, "os.confstr":{"name":"os.confstr","type":"os","path":"python/os.html#os.confstr","desc":"返回字符串值的系统配置值"}, "os.cpu_count":{"name":"os.cpu_count","type":"os","path":"python/os.html#os.cpu_count","desc":"返回系统中的CPU数量"}, "os.getloadavg":{"name":"os.getloadavg","type":"os","path":"python/os.html#os.getloadavg","desc":"如果无法获得负载平均值,则返回系统运行队列中过去1分钟,5分钟和15分钟内平均的进程数量或引发OSError"}, "os.sysconf":{"name":"os.sysconf","type":"os","path":"python/os.html#os.sysconf","desc":"返回整数值的系统配置值"}, "os.urandom":{"name":"os.urandom","type":"os","path":"python/os.html#os.urandom","desc":"返回n个字节的用以加密的随机字符串"}, "os.name":{"name":"os.name","type":"os","path":"python/os.html#os.name","desc":"导入的操作系统相关模块的名称"}, "os.environ":{"name":"os.environ","type":"os","path":"python/os.html#os.environ","desc":"表示字符串环境的mapping对象"}, "os.environb":{"name":"os.environb","type":"os","path":"python/os.html#os.environb","desc":"字节版本的environ:表示环境为字节字符串的mapping对象"}, "os.PRIO_PROCESS":{"name":"os.PRIO_PROCESS","type":"os","path":"python/os.html#os.PRIO_PROCESS","desc":"getpriority()和setpriority()函数的参数"}, "os.supports_bytes_environ":{"name":"os.supports_bytes_environ","type":"os","path":"python/os.html#os.supports_bytes_environ","desc":"TrueFalse在Windows上)"}, "os.F_LOCK":{"name":"os.F_LOCK","type":"os","path":"python/os.html#os.F_LOCK","desc":"指定lockf()执行什么操作的标志"}, "os.SEEK_SET":{"name":"os.SEEK_SET","type":"os","path":"python/os.html#os.SEEK_SET","desc":"lseek()函数的参数"}, "os.O_RDONLY":{"name":"os.O_RDONLY","type":"os","path":"python/os.html#os.O_RDONLY","desc":"这些常量在Unix和Windows上可用"}, "os.O_DSYNC":{"name":"os.O_DSYNC","type":"os","path":"python/os.html#os.O_DSYNC","desc":"这些常量仅在Unix上可用"}, "os.O_BINARY":{"name":"os.O_BINARY","type":"os","path":"python/os.html#os.O_BINARY","desc":"这些常量仅在Windows上可用"}, "os.O_ASYNC":{"name":"os.O_ASYNC","type":"os","path":"python/os.html#os.O_ASYNC","desc":"这些常量是GNU扩展,如果它们没有被C库定义则不存在"}, "os.POSIX_FADV_NORMAL":{"name":"os.POSIX_FADV_NORMAL","type":"os","path":"python/os.html#os.POSIX_FADV_NORMAL","desc":"可以在posix_fadvise()的advice中使用的标志指定可能使用的访问模式"}, "os.SF_NODISKIO":{"name":"os.SF_NODISKIO","type":"os","path":"python/os.html#os.SF_NODISKIO","desc":"sendfile()函数的参数,如果实现支持它们的话"}, "os.F_OK":{"name":"os.F_OK","type":"os","path":"python/os.html#os.F_OK","desc":"作为access()的mode参数传递的值分别用于测试path的存在性,可读性,可写性和可执行性"}, "os.pathconf_names":{"name":"os.pathconf_names","type":"os","path":"python/os.html#os.pathconf_names","desc":"将由pathconf()和fpathconf()接受的字典映射名称转换为主机操作系统为这些名称定义的整数值"}, "os.supports_dir_fd":{"name":"os.supports_dir_fd","type":"os","path":"python/os.html#os.supports_dir_fd","desc":"Set对象指示os模块中的哪些函数允许使用它们的dir_fd参数"}, "os.supports_effective_ids":{"name":"os.supports_effective_ids","type":"os","path":"python/os.html#os.supports_effective_ids","desc":"指示os模块中的哪些函数允许os"}, "os.supports_fd":{"name":"os.supports_fd","type":"os","path":"python/os.html#os.supports_fd","desc":"Set对象指示os模块中的哪些函数允许将路径参数指定为打开的文件描述符"}, "os.supports_follow_symlinks":{"name":"os.supports_follow_symlinks","type":"os","path":"python/os.html#os.supports_follow_symlinks","desc":"Set对象指示os模块中的哪些函数允许使用它们的follow_symlinks参数"}, "os.XATTR_SIZE_MAX":{"name":"os.XATTR_SIZE_MAX","type":"os","path":"python/os.html#os.XATTR_SIZE_MAX","desc":"扩展属性值的最大大小可以是"}, "os.XATTR_CREATE":{"name":"os.XATTR_CREATE","type":"os","path":"python/os.html#os.XATTR_CREATE","desc":"这是setxattr()中flags参数的可能值"}, "os.XATTR_REPLACE":{"name":"os.XATTR_REPLACE","type":"os","path":"python/os.html#os.XATTR_REPLACE","desc":"这是setxattr()中flags参数的可能值"}, "os.EX_OK":{"name":"os.EX_OK","type":"os","path":"python/os.html#os.EX_OK","desc":"退出代码意味着没有发生错误"}, "os.EX_USAGE":{"name":"os.EX_USAGE","type":"os","path":"python/os.html#os.EX_USAGE","desc":"退出代码意味着命令被错误地使用,例如给出错误的参数数量"}, "os.EX_DATAERR":{"name":"os.EX_DATAERR","type":"os","path":"python/os.html#os.EX_DATAERR","desc":"退出代码意味着输入数据不正确"}, "os.EX_NOINPUT":{"name":"os.EX_NOINPUT","type":"os","path":"python/os.html#os.EX_NOINPUT","desc":"退出代码意味着输入文件不存在或不可读"}, "os.EX_NOUSER":{"name":"os.EX_NOUSER","type":"os","path":"python/os.html#os.EX_NOUSER","desc":"退出代码,意味着指定的用户不存在"}, "os.EX_NOHOST":{"name":"os.EX_NOHOST","type":"os","path":"python/os.html#os.EX_NOHOST","desc":"退出代码,意味着指定的主机不存在"}, "os.EX_UNAVAILABLE":{"name":"os.EX_UNAVAILABLE","type":"os","path":"python/os.html#os.EX_UNAVAILABLE","desc":"退出代码,这意味着所需的服务不可用"}, "os.EX_SOFTWARE":{"name":"os.EX_SOFTWARE","type":"os","path":"python/os.html#os.EX_SOFTWARE","desc":"退出代码意味着检测到内部软件错误"}, "os.EX_OSERR":{"name":"os.EX_OSERR","type":"os","path":"python/os.html#os.EX_OSERR","desc":"退出代码意味着检测到操作系统错误,例如无法分叉或创建管道"}, "os.EX_OSFILE":{"name":"os.EX_OSFILE","type":"os","path":"python/os.html#os.EX_OSFILE","desc":"退出代码意味着某些系统文件不存在,无法打开或出现其他类型的错误"}, "os.EX_CANTCREAT":{"name":"os.EX_CANTCREAT","type":"os","path":"python/os.html#os.EX_CANTCREAT","desc":"退出代码意味着无法创建用户指定的输出文件"}, "os.EX_IOERR":{"name":"os.EX_IOERR","type":"os","path":"python/os.html#os.EX_IOERR","desc":"退出代码意味着在某个文件上执行I / O时发生错误"}, "os.EX_TEMPFAIL":{"name":"os.EX_TEMPFAIL","type":"os","path":"python/os.html#os.EX_TEMPFAIL","desc":"退出代码意味着发生了临时故障"}, "os.EX_PROTOCOL":{"name":"os.EX_PROTOCOL","type":"os","path":"python/os.html#os.EX_PROTOCOL","desc":"退出代码意味着协议交换是非法的,无效的或不被理解的"}, "os.EX_NOPERM":{"name":"os.EX_NOPERM","type":"os","path":"python/os.html#os.EX_NOPERM","desc":"退出代码意味着没有足够的权限执行操作(但不适用于文件系统问题)"}, "os.EX_CONFIG":{"name":"os.EX_CONFIG","type":"os","path":"python/os.html#os.EX_CONFIG","desc":"退出代码意味着发生某种配置错误"}, "os.EX_NOTFOUND":{"name":"os.EX_NOTFOUND","type":"os","path":"python/os.html#os.EX_NOTFOUND","desc":"退出代码意味着类似“未找到条目”"}, "os.P_NOWAIT":{"name":"os.P_NOWAIT","type":"os","path":"python/os.html#os.P_NOWAIT","desc":"spawn*系列函数的mode参数的可能值"}, "os.P_WAIT":{"name":"os.P_WAIT","type":"os","path":"python/os.html#os.P_WAIT","desc":"spawn*系列函数的模式参数的可能值"}, "os.P_DETACH":{"name":"os.P_DETACH","type":"os","path":"python/os.html#os.P_DETACH","desc":"spawn*系列函数的mode参数的可能值"}, "os.P_PID":{"name":"os.P_PID","type":"os","path":"python/os.html#os.P_PID","desc":"这些是waitid()中idtype的可能值"}, "os.WEXITED":{"name":"os.WEXITED","type":"os","path":"python/os.html#os.WEXITED","desc":"可以在waitid()的options中使用的标志指定要等待的子信号"}, "os.CLD_EXITED":{"name":"os.CLD_EXITED","type":"os","path":"python/os.html#os.CLD_EXITED","desc":"这些是由waitid()返回的结果中si_code的可能值"}, "os.WNOHANG":{"name":"os.WNOHANG","type":"os","path":"python/os.html#os.WNOHANG","desc":"如果没有子进程状态立即可用,waitpid()选项立即返回"}, "os.WCONTINUED":{"name":"os.WCONTINUED","type":"os","path":"python/os.html#os.WCONTINUED","desc":"此选项会导致子进程在自上次报告状态后已从作业控制停止继续进行报告"}, "os.WUNTRACED":{"name":"os.WUNTRACED","type":"os","path":"python/os.html#os.WUNTRACED","desc":"这个选项会导致子进程被报告,如果它们已经被停止,但是它们的当前状态自停止以来还没有被报告"}, "os.SCHED_OTHER":{"name":"os.SCHED_OTHER","type":"os","path":"python/os.html#os.SCHED_OTHER","desc":"默认调度策略"}, "os.SCHED_BATCH":{"name":"os.SCHED_BATCH","type":"os","path":"python/os.html#os.SCHED_BATCH","desc":"为尝试保留计算机其余部分的交互性的CPU密集型进程调度策略"}, "os.SCHED_IDLE":{"name":"os.SCHED_IDLE","type":"os","path":"python/os.html#os.SCHED_IDLE","desc":"为极低优先级的后台任务调度策略"}, "os.SCHED_SPORADIC":{"name":"os.SCHED_SPORADIC","type":"os","path":"python/os.html#os.SCHED_SPORADIC","desc":"针对零星服务器程序的调度策略"}, "os.SCHED_FIFO":{"name":"os.SCHED_FIFO","type":"os","path":"python/os.html#os.SCHED_FIFO","desc":"先进先出调度策略"}, "os.SCHED_RR":{"name":"os.SCHED_RR","type":"os","path":"python/os.html#os.SCHED_RR","desc":"循环调度策略"}, "os.SCHED_RESET_ON_FORK":{"name":"os.SCHED_RESET_ON_FORK","type":"os","path":"python/os.html#os.SCHED_RESET_ON_FORK","desc":"该标志可以与任何其他调度策略进行或运算"}, "os.confstr_names":{"name":"os.confstr_names","type":"os","path":"python/os.html#os.confstr_names","desc":"由confstr()接受的字典映射名称与主机操作系统为这些名称定义的整数值"}, "os.sysconf_names":{"name":"os.sysconf_names","type":"os","path":"python/os.html#os.sysconf_names","desc":"由sysconf()接受的字典映射名称与主机操作系统为这些名称定义的整数值"}, "os.curdir":{"name":"os.curdir","type":"os","path":"python/os.html#os.curdir","desc":"操作系统用来引用当前目录的常量字符串"}, "os.pardir":{"name":"os.pardir","type":"os","path":"python/os.html#os.pardir","desc":"操作系统用来引用父目录的常量字符串"}, "os.sep":{"name":"os.sep","type":"os","path":"python/os.html#os.sep","desc":"操作系统用来分隔路径名组件的字符"}, "os.altsep":{"name":"os.altsep","type":"os","path":"python/os.html#os.altsep","desc":"操作系统用来分隔路径名组件的替代字符,或者如果只有一个分隔符字符,则None"}, "os.extsep":{"name":"os.extsep","type":"os","path":"python/os.html#os.extsep","desc":"将基本文件名与扩展名分开的字符;例如,'"}, "os.pathsep":{"name":"os.pathsep","type":"os","path":"python/os.html#os.pathsep","desc":"The character conventionally used by the operating system to separate search path components (as in PATH), such as ':' for POSIX or ';' for Windows"}, "os.defpath":{"name":"os.defpath","type":"os","path":"python/os.html#os.defpath","desc":"如果环境没有'PATH'键,exec*p*和spawn*p*使用的默认搜索路径"}, "os.linesep":{"name":"os.linesep","type":"os","path":"python/os.html#os.linesep","desc":"用于在当前平台上分隔(或相反,终止)行的字符串"}, "os.devnull":{"name":"os.devnull","type":"os","path":"python/os.html#os.devnull","desc":"空设备的文件路径"}, "os.RTLD_LAZY":{"name":"os.RTLD_LAZY","type":"os","path":"python/os.html#os.RTLD_LAZY","desc":"用于setdlopenflags()和getdlopenflags()函数的标志"}, "os.path.abspath":{"name":"os.path.abspath","type":"os.path","path":"python/os.path.html#os.path.abspath","desc":"返回一个标准的绝对路径名 path"}, "os.path.basename":{"name":"os.path.basename","type":"os.path","path":"python/os.path.html#os.path.basename","desc":"返回路径名path的最后一级的名称"}, "os.path.commonpath":{"name":"os.path.commonpath","type":"os.path","path":"python/os.path.html#os.path.commonpath","desc":"返回 paths参数中,所有路径序列中共有的最长的路径"}, "os.path.commonprefix":{"name":"os.path.commonprefix","type":"os.path","path":"python/os.path.html#os.path.commonprefix","desc":"返回列表中所有路径的前缀的最长路径前缀(逐个字符)"}, "os.path.dirname":{"name":"os.path.dirname","type":"os.path","path":"python/os.path.html#os.path.dirname","desc":"返回 path中的目录名"}, "os.path.exists":{"name":"os.path.exists","type":"os.path","path":"python/os.path.html#os.path.exists","desc":"如果路径指向现有路径或打开的文件描述器,则返回True"}, "os.path.lexists":{"name":"os.path.lexists","type":"os.path","path":"python/os.path.html#os.path.lexists","desc":"如果 path 指向现有的路径,则返回 True"}, "os.path.expanduser":{"name":"os.path.expanduser","type":"os.path","path":"python/os.path.html#os.path.expanduser","desc":"在Unix和Windows上,将参数中原始的~或~user部分用user主目录替换"}, "os.path.expandvars":{"name":"os.path.expandvars","type":"os.path","path":"python/os.path.html#os.path.expandvars","desc":"返回参数,其中的环境变量被扩展"}, "os.path.getatime":{"name":"os.path.getatime","type":"os.path","path":"python/os.path.html#os.path.getatime","desc":"返回 path的上次访问时间"}, "os.path.getmtime":{"name":"os.path.getmtime","type":"os.path","path":"python/os.path.html#os.path.getmtime","desc":"返回path的最后修改时间"}, "os.path.getctime":{"name":"os.path.getctime","type":"os.path","path":"python/os.path.html#os.path.getctime","desc":"返回系统的ctime,在某些系统(如Unix)上是最后元数据更改的时间,在其他系统(如Windows)上,是路径的创建时间"}, "os.path.getsize":{"name":"os.path.getsize","type":"os.path","path":"python/os.path.html#os.path.getsize","desc":"返回path的大小,以字节为单位"}, "os.path.isabs":{"name":"os.path.isabs","type":"os.path","path":"python/os.path.html#os.path.isabs","desc":"如果路径是绝对路径名,则返回True"}, "os.path.isfile":{"name":"os.path.isfile","type":"os.path","path":"python/os.path.html#os.path.isfile","desc":"如果路径是现有的常规文件,则返回True"}, "os.path.isdir":{"name":"os.path.isdir","type":"os.path","path":"python/os.path.html#os.path.isdir","desc":"如果文件是目录,则返回True"}, "os.path.islink":{"name":"os.path.islink","type":"os.path","path":"python/os.path.html#os.path.islink","desc":"如果路径指的是符号链接的目录条目,则返回True"}, "os.path.ismount":{"name":"os.path.ismount","type":"os.path","path":"python/os.path.html#os.path.ismount","desc":"如果路径名路径是安装点,则返回True在POSIX上,函数检查路径的父节点,path/"}, "os.path.join":{"name":"os.path.join","type":"os.path","path":"python/os.path.html#os.path.join","desc":"将一个或多个路径正确地连接起来"}, "os.path.normcase":{"name":"os.path.normcase","type":"os.path","path":"python/os.path.html#os.path.normcase","desc":"标准化路径名的大小写"}, "os.path.normpath":{"name":"os.path.normpath","type":"os.path","path":"python/os.path.html#os.path.normpath","desc":"通过折叠冗余分隔符和上级引用来归一化路径名,以使A//B,A/B/,A/"}, "os.path.realpath":{"name":"os.path.realpath","type":"os.path","path":"python/os.path.html#os.path.realpath","desc":"返回指定的文件名的规范名字,并消除路径中遇到的任何符号链接(如果操作系统支持的话)"}, "os.path.relpath":{"name":"os.path.relpath","type":"os.path","path":"python/os.path.html#os.path.relpath","desc":"返回自当前目录或者可选的start 目录的 path相对文件路径"}, "os.path.samefile":{"name":"os.path.samefile","type":"os.path","path":"python/os.path.html#os.path.samefile","desc":"如果两个路径名参数都指向相同的文件或目录,则返回True"}, "os.path.sameopenfile":{"name":"os.path.sameopenfile","type":"os.path","path":"python/os.path.html#os.path.sameopenfile","desc":"如果文件描述器fp1和fp2指向同一文件,则返回True"}, "os.path.samestat":{"name":"os.path.samestat","type":"os.path","path":"python/os.path.html#os.path.samestat","desc":"如果统计数据元组stat1和stat2指向同一文件,则返回True"}, "os.path.split":{"name":"os.path.split","type":"os.path","path":"python/os.path.html#os.path.split","desc":"将路径名path拆分为一个元组对(head, tail),其中tail是路径名的最后一个部分,head是前面的所有内容"}, "os.path.splitdrive":{"name":"os.path.splitdrive","type":"os.path","path":"python/os.path.html#os.path.splitdrive","desc":"将路径名路径拆分为(drive, tail)其中drive为挂载点或空字符串"}, "os.path.splitext":{"name":"os.path.splitext","type":"os.path","path":"python/os.path.html#os.path.splitext","desc":"Split the pathname path into a pair (root, ext) such that root + ext == path, and ext is empty or begins with a period and contains at most one period"}, "os.path.splitunc":{"name":"os.path.splitunc","type":"os.path","path":"python/os.path.html#os.path.splitunc","desc":"自3"}, "os.path.supports_unicode_filenames":{"name":"os.path.supports_unicode_filenames","type":"os.path","path":"python/os.path.html#os.path.supports_unicode_filenames","desc":"True如果任意Unicode字符串可以用作文件名(在文件系统限制的限制之内)"}, "ossaudiodev.open":{"name":"ossaudiodev.open","type":"ossaudiodev","path":"python/ossaudiodev.html#ossaudiodev.open","desc":"打开音频设备并返回OSS音频设备对象"}, "ossaudiodev.openmixer":{"name":"ossaudiodev.openmixer","type":"ossaudiodev","path":"python/ossaudiodev.html#ossaudiodev.openmixer","desc":"打开混音器设备并返回OSS混音器设备对象"}, "parser.expr":{"name":"parser.expr","type":"parser","path":"python/parser.html#parser.expr","desc":"expr()函数解析参数source,就像它是compile(source, 'file)的输入"}, "parser.suite":{"name":"parser.suite","type":"parser","path":"python/parser.html#parser.suite","desc":"suite()函数解析参数source,就像它是compile(source, 'file)的输入"}, "parser.sequence2st":{"name":"parser.sequence2st","type":"parser","path":"python/parser.html#parser.sequence2st","desc":"此函数接受表示为序列的解析树,并在可能的情况下构建内部表示"}, "parser.tuple2st":{"name":"parser.tuple2st","type":"parser","path":"python/parser.html#parser.tuple2st","desc":"这与sequence2st()具有相同的功能"}, "parser.st2list":{"name":"parser.st2list","type":"parser","path":"python/parser.html#parser.st2list","desc":"此函数在st中接受来自调用者的ST对象,并返回表示等效解析树的Python列表"}, "parser.st2tuple":{"name":"parser.st2tuple","type":"parser","path":"python/parser.html#parser.st2tuple","desc":"此函数在st中接受来自调用者的ST对象,并返回表示等效解析树的Python元组"}, "parser.compilest":{"name":"parser.compilest","type":"parser","path":"python/parser.html#parser.compilest","desc":"Python字节编译器可以在ST对象上调用以产生代码对象,这些对象可以用作调用内建exec()或eval()函数的一部分"}, "parser.isexpr":{"name":"parser.isexpr","type":"parser","path":"python/parser.html#parser.isexpr","desc":"当st表示'eval'形式时,此函数返回true,否则返回false"}, "parser.issuite":{"name":"parser.issuite","type":"parser","path":"python/parser.html#parser.issuite","desc":"此函数镜像isexpr(),因为它报告ST对象是否表示'exec'形式,通常称为“套件”"}, "parser.STType":{"name":"parser.STType","type":"parser","path":"python/parser.html#parser.STType","desc":"由expr(),suite()和sequence2st()返回的对象类型"}, "pathlib.PurePath.parts":{"name":"pathlib.PurePath.parts","type":"pathlib","path":"python/pathlib.html#pathlib.PurePath.parts","desc":"可以访问路径各个组件的元组:"}, "pathlib.PurePath.drive":{"name":"pathlib.PurePath.drive","type":"pathlib","path":"python/pathlib.html#pathlib.PurePath.drive","desc":"表示驱动器盘符或名称的字符串(如果有):"}, "pathlib.PurePath.root":{"name":"pathlib.PurePath.root","type":"pathlib","path":"python/pathlib.html#pathlib.PurePath.root","desc":"表示(本地或全局)根(如果有)的字符串:"}, "pathlib.PurePath.anchor":{"name":"pathlib.PurePath.anchor","type":"pathlib","path":"python/pathlib.html#pathlib.PurePath.anchor","desc":"驱动器和根目录的连接:"}, "pathlib.PurePath.parents":{"name":"pathlib.PurePath.parents","type":"pathlib","path":"python/pathlib.html#pathlib.PurePath.parents","desc":"提供对路径的逻辑祖先的访问的不可变序列:"}, "pathlib.PurePath.parent":{"name":"pathlib.PurePath.parent","type":"pathlib","path":"python/pathlib.html#pathlib.PurePath.parent","desc":"路径的逻辑父代:"}, "pathlib.PurePath.name":{"name":"pathlib.PurePath.name","type":"pathlib","path":"python/pathlib.html#pathlib.PurePath.name","desc":"表示最终路径组件的字符串,不包括驱动器和根目录(如果有):"}, "pathlib.PurePath.suffix":{"name":"pathlib.PurePath.suffix","type":"pathlib","path":"python/pathlib.html#pathlib.PurePath.suffix","desc":"最终组件的文件扩展名(如果有):"}, "pathlib.PurePath.suffixes":{"name":"pathlib.PurePath.suffixes","type":"pathlib","path":"python/pathlib.html#pathlib.PurePath.suffixes","desc":"路径的文件扩展名列表:"}, "pathlib.PurePath.stem":{"name":"pathlib.PurePath.stem","type":"pathlib","path":"python/pathlib.html#pathlib.PurePath.stem","desc":"最终路径组件,不带其后缀:"}, "pdb.run":{"name":"pdb.run","type":"pdb","path":"python/pdb.html#pdb.run","desc":"在调试器控制下执行statement(作为字符串或代码对象)"}, "pdb.runeval":{"name":"pdb.runeval","type":"pdb","path":"python/pdb.html#pdb.runeval","desc":"在调试器控制下计算表达式(作为字符串或代码对象)"}, "pdb.runcall":{"name":"pdb.runcall","type":"pdb","path":"python/pdb.html#pdb.runcall","desc":"使用给定的参数调用函数(函数或方法对象,而不是字符串)"}, "pdb.set_trace":{"name":"pdb.set_trace","type":"pdb","path":"python/pdb.html#pdb.set_trace","desc":"在调用堆栈框架处输入调试器"}, "pdb.post_mortem":{"name":"pdb.post_mortem","type":"pdb","path":"python/pdb.html#pdb.post_mortem","desc":"输入给定traceback对象的事后调试"}, "pdb.pm":{"name":"pdb.pm","type":"pdb","path":"python/pdb.html#pdb.pm","desc":"输入在sys"}, "pickle.dump":{"name":"pickle.dump","type":"pickle","path":"python/pickle.html#pickle.dump","desc":"将obj的腌制表示写入打开的file object 文件"}, "pickle.dumps":{"name":"pickle.dumps","type":"pickle","path":"python/pickle.html#pickle.dumps","desc":"将对象的腌制表示作为bytes对象返回,而不是将其写入文件"}, "pickle.load":{"name":"pickle.load","type":"pickle","path":"python/pickle.html#pickle.load","desc":"从打开的文件对象file读取pickled对象表示形式,并返回其中重新构建的对象层次结构"}, "pickle.loads":{"name":"pickle.loads","type":"pickle","path":"python/pickle.html#pickle.loads","desc":"从bytes对象读取腌制对象层次结构,并返回其中指定的重构对象层次结构"}, "pickle.HIGHEST_PROTOCOL":{"name":"pickle.HIGHEST_PROTOCOL","type":"pickle","path":"python/pickle.html#pickle.HIGHEST_PROTOCOL","desc":"整数,最高的protocol version可用"}, "pickle.DEFAULT_PROTOCOL":{"name":"pickle.DEFAULT_PROTOCOL","type":"pickle","path":"python/pickle.html#pickle.DEFAULT_PROTOCOL","desc":"整数,默认的protocol version用于酸洗"}, "pickletools.dis":{"name":"pickletools.dis","type":"pickletools","path":"python/pickletools.html#pickletools.dis","desc":"版本3"}, "pickletools.genops":{"name":"pickletools.genops","type":"pickletools","path":"python/pickletools.html#pickletools.genops","desc":"在pickle中的所有操作码上提供iterator,返回(操作码, arg, pos) 三元组"}, "pickletools.optimize":{"name":"pickletools.optimize","type":"pickletools","path":"python/pickletools.html#pickletools.optimize","desc":"在删除未使用的PUT操作码后,返回一个新的等效pickle字符串"}, "pkgutil.extend_path":{"name":"pkgutil.extend_path","type":"pkgutil","path":"python/pkgutil.html#pkgutil.extend_path","desc":"扩展组成包的模块的搜索路径"}, "pkgutil.find_loader":{"name":"pkgutil.find_loader","type":"pkgutil","path":"python/pkgutil.html#pkgutil.find_loader","desc":"针对给定的全名,检索 PEP 302模块加载程序"}, "pkgutil.get_importer":{"name":"pkgutil.get_importer","type":"pkgutil","path":"python/pkgutil.html#pkgutil.get_importer","desc":"针对给定的path_item,检索 PEP 302导入器"}, "pkgutil.get_loader":{"name":"pkgutil.get_loader","type":"pkgutil","path":"python/pkgutil.html#pkgutil.get_loader","desc":"为module_or_name获取 PEP 302“loader”对象"}, "pkgutil.iter_importers":{"name":"pkgutil.iter_importers","type":"pkgutil","path":"python/pkgutil.html#pkgutil.iter_importers","desc":"给定模块名称的产出 PEP 302导入器"}, "pkgutil.iter_modules":{"name":"pkgutil.iter_modules","type":"pkgutil","path":"python/pkgutil.html#pkgutil.iter_modules","desc":"对路径上的所有子模块,产生(module_finder, 名称, ispkg) ,如果路径为None,则sys"}, "pkgutil.walk_packages":{"name":"pkgutil.walk_packages","type":"pkgutil","path":"python/pkgutil.html#pkgutil.walk_packages","desc":"对于所有模块在路径上递归生成(module_finder, 名称, ispkg)或者,如果路径是None,所有可访问的模块"}, "pkgutil.get_data":{"name":"pkgutil.get_data","type":"pkgutil","path":"python/pkgutil.html#pkgutil.get_data","desc":"从包中获取资源"}, "platform.architecture":{"name":"platform.architecture","type":"platform","path":"python/platform.html#platform.architecture","desc":"查询给定的可执行文件(默认为Python解释器二进制)以获取体系结构的各种信息"}, "platform.machine":{"name":"platform.machine","type":"platform","path":"python/platform.html#platform.machine","desc":"返回机器类型,例如'i386'"}, "platform.node":{"name":"platform.node","type":"platform","path":"python/platform.html#platform.node","desc":"返回计算机的网络名称(可能不完全限定!)"}, "platform.platform":{"name":"platform.platform","type":"platform","path":"python/platform.html#platform.platform","desc":"返回一个标识基础平台的单个字符串,尽可能使用尽可能多的有用信息"}, "platform.processor":{"name":"platform.processor","type":"platform","path":"python/platform.html#platform.processor","desc":"返回(实际)处理器名称,例如'amdk6'"}, "platform.python_build":{"name":"platform.python_build","type":"platform","path":"python/platform.html#platform.python_build","desc":"返回一个元组(buildno, builddate)将Python内部版本号和日期说明为字符串"}, "platform.python_compiler":{"name":"platform.python_compiler","type":"platform","path":"python/platform.html#platform.python_compiler","desc":"返回一个字符串,标识用于编译Python的编译器"}, "platform.python_branch":{"name":"platform.python_branch","type":"platform","path":"python/platform.html#platform.python_branch","desc":"返回一个标识Python实现SCM分支的字符串"}, "platform.python_implementation":{"name":"platform.python_implementation","type":"platform","path":"python/platform.html#platform.python_implementation","desc":"返回一个标识Python实现的字符串"}, "platform.python_revision":{"name":"platform.python_revision","type":"platform","path":"python/platform.html#platform.python_revision","desc":"返回一个标识Python实现SCM修订版本的字符串"}, "platform.python_version":{"name":"platform.python_version","type":"platform","path":"python/platform.html#platform.python_version","desc":"以字符串'major"}, "platform.python_version_tuple":{"name":"platform.python_version_tuple","type":"platform","path":"python/platform.html#platform.python_version_tuple","desc":"返回字符串的tuple (major, minor, patchlevel)的Python版本"}, "platform.release":{"name":"platform.release","type":"platform","path":"python/platform.html#platform.release","desc":"返回系统的版本,例如'2"}, "platform.system":{"name":"platform.system","type":"platform","path":"python/platform.html#platform.system","desc":"返回系统/操作系统名称,例如'Linux','Windows'或'Java'"}, "platform.system_alias":{"name":"platform.system_alias","type":"platform","path":"python/platform.html#platform.system_alias","desc":"Returns (system, release, version) aliased to common marketing names used for some systems"}, "platform.version":{"name":"platform.version","type":"platform","path":"python/platform.html#platform.version","desc":"返回系统的发布版本,例如'#3 on degas'"}, "platform.uname":{"name":"platform.uname","type":"platform","path":"python/platform.html#platform.uname","desc":"相当便携的uname接口"}, "platform.java_ver":{"name":"platform.java_ver","type":"platform","path":"python/platform.html#platform.java_ver","desc":"Jython的版本接口"}, "platform.win32_ver":{"name":"platform.win32_ver","type":"platform","path":"python/platform.html#platform.win32_ver","desc":"从Windows注册表获取其他版本信息,并返回元组(发布, 版本, csd, ptype) t4>指OS版本,版本号,CSD级别(服务封装)和OS类型(多/单处理器)"}, "platform.popen":{"name":"platform.popen","type":"platform","path":"python/platform.html#platform.popen","desc":"便携式popen()接口"}, "platform.mac_ver":{"name":"platform.mac_ver","type":"platform","path":"python/platform.html#platform.mac_ver","desc":"Get Mac OS version information and return it as tuple (release, versioninfo, machine) with versioninfo being a tuple (version, dev_stage, non_release_version)"}, "platform.dist":{"name":"platform.dist","type":"platform","path":"python/platform.html#platform.dist","desc":"这是linux_distribution()的另一个名称"}, "platform.linux_distribution":{"name":"platform.linux_distribution","type":"platform","path":"python/platform.html#platform.linux_distribution","desc":"尝试确定Linux操作系统分发名称的名称"}, "platform.libc_ver":{"name":"platform.libc_ver","type":"platform","path":"python/platform.html#platform.libc_ver","desc":"尝试确定可执行文件(默认为 Python 解释器) 链接的 libc 版本"}, "plistlib.load":{"name":"plistlib.load","type":"plistlib","path":"python/plistlib.html#plistlib.load","desc":"读取plist文件"}, "plistlib.loads":{"name":"plistlib.loads","type":"plistlib","path":"python/plistlib.html#plistlib.loads","desc":"从字节对象加载plist"}, "plistlib.dump":{"name":"plistlib.dump","type":"plistlib","path":"python/plistlib.html#plistlib.dump","desc":"将值写入plist文件"}, "plistlib.dumps":{"name":"plistlib.dumps","type":"plistlib","path":"python/plistlib.html#plistlib.dumps","desc":"将值返回为plist格式的字节对象"}, "plistlib.readPlist":{"name":"plistlib.readPlist","type":"plistlib","path":"python/plistlib.html#plistlib.readPlist","desc":"读取plist文件"}, "plistlib.writePlist":{"name":"plistlib.writePlist","type":"plistlib","path":"python/plistlib.html#plistlib.writePlist","desc":"将rootObject写入XML plist文件"}, "plistlib.readPlistFromBytes":{"name":"plistlib.readPlistFromBytes","type":"plistlib","path":"python/plistlib.html#plistlib.readPlistFromBytes","desc":"从字节对象读取plist数据"}, "plistlib.writePlistToBytes":{"name":"plistlib.writePlistToBytes","type":"plistlib","path":"python/plistlib.html#plistlib.writePlistToBytes","desc":"返回rootObject作为XML plist格式的字节对象"}, "plistlib.FMT_XML":{"name":"plistlib.FMT_XML","type":"plistlib","path":"python/plistlib.html#plistlib.FMT_XML","desc":"plist文件的XML格式"}, "plistlib.FMT_BINARY":{"name":"plistlib.FMT_BINARY","type":"plistlib","path":"python/plistlib.html#plistlib.FMT_BINARY","desc":"plist文件的二进制格式"}, "posix.environ":{"name":"posix.environ","type":"posix","path":"python/posix.html#posix.environ","desc":"表示解释器启动时的字符串环境的字典"}, "pprint.pformat":{"name":"pprint.pformat","type":"pprint","path":"python/pprint.html#pprint.pformat","desc":"以字符串的形式返回object的打印结果"}, "pprint.pprint":{"name":"pprint.pprint","type":"pprint","path":"python/pprint.html#pprint.pprint","desc":"将object打印到stream中,结尾输出新行"}, "pprint.isreadable":{"name":"pprint.isreadable","type":"pprint","path":"python/pprint.html#pprint.isreadable","desc":"判断 object 的打印结果是否“可读”,或者能否用 eval()来重新构造值"}, "pprint.isrecursive":{"name":"pprint.isrecursive","type":"pprint","path":"python/pprint.html#pprint.isrecursive","desc":"判断object是否需要递归打印"}, "pprint.saferepr":{"name":"pprint.saferepr","type":"pprint","path":"python/pprint.html#pprint.saferepr","desc":"返回object的字符串表示,对于递归的数据结构有保护"}, "profile.run":{"name":"profile.run","type":"profile","path":"python/profile.html#profile.run","desc":"此函数接受可传递到exec()函数的单个参数,以及可选的文件名"}, "profile.runctx":{"name":"profile.runctx","type":"profile","path":"python/profile.html#profile.runctx","desc":"此函数类似于run(),添加了参数以提供命令字符串的全局和本地化字典"}, "pty.fork":{"name":"pty.fork","type":"pty","path":"python/pty.html#pty.fork","desc":"叉子"}, "pty.openpty":{"name":"pty.openpty","type":"pty","path":"python/pty.html#pty.openpty","desc":"打开一个新的伪终端对,使用os"}, "pty.spawn":{"name":"pty.spawn","type":"pty","path":"python/pty.html#pty.spawn","desc":"产生一个进程,并将其控制终端与当前进程的标准io连接"}, "pwd.getpwuid":{"name":"pwd.getpwuid","type":"pwd","path":"python/pwd.html#pwd.getpwuid","desc":"返回给定数字用户ID的密码数据库条目"}, "pwd.getpwnam":{"name":"pwd.getpwnam","type":"pwd","path":"python/pwd.html#pwd.getpwnam","desc":"返回给定用户名的密码数据库条目"}, "pwd.getpwall":{"name":"pwd.getpwall","type":"pwd","path":"python/pwd.html#pwd.getpwall","desc":"以任意顺序返回所有可用密码数据库条目的列表"}, "pyclbr.readmodule":{"name":"pyclbr.readmodule","type":"pyclbr","path":"python/pyclbr.html#pyclbr.readmodule","desc":"读取一个模块并返回一个字典映射类名到类描述器对象"}, "pyclbr.readmodule_ex":{"name":"pyclbr.readmodule_ex","type":"pyclbr","path":"python/pyclbr.html#pyclbr.readmodule_ex","desc":"像readmodule(),但返回的字典,除了将类名映射到类描述器对象之外,还将顶级函数名映射到函数描述器对象"}, "xml.parsers.expat.ErrorString":{"name":"xml.parsers.expat.ErrorString","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.ErrorString","desc":"返回给定错误号errno的说明字符串"}, "xml.parsers.expat.ParserCreate":{"name":"xml.parsers.expat.ParserCreate","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.ParserCreate","desc":"创建并返回一个新的xmlparser对象"}, "xml.parsers.expat.XMLParserType":{"name":"xml.parsers.expat.XMLParserType","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.XMLParserType","desc":"来自ParserCreate()函数的返回值的类型"}, "xml.parsers.expat.errors.codes":{"name":"xml.parsers.expat.errors.codes","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.codes","desc":"将数字错误代码映射到其字符串描述的字典"}, "xml.parsers.expat.errors.messages":{"name":"xml.parsers.expat.errors.messages","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.messages","desc":"将字符串描述映射到其错误代码的字典"}, "xml.parsers.expat.errors.XML_ERROR_ATTRIBUTE_EXTERNAL_ENTITY_REF":{"name":"xml.parsers.expat.errors.XML_ERROR_ATTRIBUTE_EXTERNAL_ENTITY_REF","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_ATTRIBUTE_EXTERNAL_ENTITY_REF","desc":"引用到外部实体而不是内部实体的属性值中的实体引用"}, "xml.parsers.expat.errors.XML_ERROR_BAD_CHAR_REF":{"name":"xml.parsers.expat.errors.XML_ERROR_BAD_CHAR_REF","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_BAD_CHAR_REF","desc":"字符引用指的是XML中非法字符(例如,字符0或'�')"}, "xml.parsers.expat.errors.XML_ERROR_BINARY_ENTITY_REF":{"name":"xml.parsers.expat.errors.XML_ERROR_BINARY_ENTITY_REF","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_BINARY_ENTITY_REF","desc":"实体引用指的是用符号声明的实体,因此不能被解析"}, "xml.parsers.expat.errors.XML_ERROR_DUPLICATE_ATTRIBUTE":{"name":"xml.parsers.expat.errors.XML_ERROR_DUPLICATE_ATTRIBUTE","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_DUPLICATE_ATTRIBUTE","desc":"一个属性在开始标记中多次使用"}, "xml.parsers.expat.errors.XML_ERROR_INVALID_TOKEN":{"name":"xml.parsers.expat.errors.XML_ERROR_INVALID_TOKEN","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_INVALID_TOKEN","desc":"在输入字节无法正确分配给字符时引发;例如,UTF-8输入流中的NUL字节(值0)"}, "xml.parsers.expat.errors.XML_ERROR_JUNK_AFTER_DOC_ELEMENT":{"name":"xml.parsers.expat.errors.XML_ERROR_JUNK_AFTER_DOC_ELEMENT","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_JUNK_AFTER_DOC_ELEMENT","desc":"文档元素之后出现了除空格之外的其他内容"}, "xml.parsers.expat.errors.XML_ERROR_MISPLACED_XML_PI":{"name":"xml.parsers.expat.errors.XML_ERROR_MISPLACED_XML_PI","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_MISPLACED_XML_PI","desc":"在除了输入数据的开始之外的某处发现了XML声明"}, "xml.parsers.expat.errors.XML_ERROR_NO_ELEMENTS":{"name":"xml.parsers.expat.errors.XML_ERROR_NO_ELEMENTS","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_NO_ELEMENTS","desc":"文档不包含元素(XML要求所有文档只包含一个顶级元素)"}, "xml.parsers.expat.errors.XML_ERROR_NO_MEMORY":{"name":"xml.parsers.expat.errors.XML_ERROR_NO_MEMORY","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_NO_MEMORY","desc":"Expat无法在内部分配内存"}, "xml.parsers.expat.errors.XML_ERROR_PARAM_ENTITY_REF":{"name":"xml.parsers.expat.errors.XML_ERROR_PARAM_ENTITY_REF","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_PARAM_ENTITY_REF","desc":"发现不允许参数实体引用的位置"}, "xml.parsers.expat.errors.XML_ERROR_PARTIAL_CHAR":{"name":"xml.parsers.expat.errors.XML_ERROR_PARTIAL_CHAR","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_PARTIAL_CHAR","desc":"在输入中找到不完整的字符"}, "xml.parsers.expat.errors.XML_ERROR_RECURSIVE_ENTITY_REF":{"name":"xml.parsers.expat.errors.XML_ERROR_RECURSIVE_ENTITY_REF","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_RECURSIVE_ENTITY_REF","desc":"实体引用包含对同一实体的另一引用;可能通过不同的名称,并且可能间接"}, "xml.parsers.expat.errors.XML_ERROR_SYNTAX":{"name":"xml.parsers.expat.errors.XML_ERROR_SYNTAX","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_SYNTAX","desc":"遇到一些未指定的语法错误"}, "xml.parsers.expat.errors.XML_ERROR_TAG_MISMATCH":{"name":"xml.parsers.expat.errors.XML_ERROR_TAG_MISMATCH","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_TAG_MISMATCH","desc":"结束标记与最内部的开始标记不匹配"}, "xml.parsers.expat.errors.XML_ERROR_UNCLOSED_TOKEN":{"name":"xml.parsers.expat.errors.XML_ERROR_UNCLOSED_TOKEN","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_UNCLOSED_TOKEN","desc":"某些令牌(例如开始标签)在流结束或遇到下一个令牌之前未关闭"}, "xml.parsers.expat.errors.XML_ERROR_UNDEFINED_ENTITY":{"name":"xml.parsers.expat.errors.XML_ERROR_UNDEFINED_ENTITY","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_UNDEFINED_ENTITY","desc":"引用未定义的实体"}, "xml.parsers.expat.errors.XML_ERROR_UNKNOWN_ENCODING":{"name":"xml.parsers.expat.errors.XML_ERROR_UNKNOWN_ENCODING","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_UNKNOWN_ENCODING","desc":"Expat不支持文档编码"}, "xml.parsers.expat.errors.XML_ERROR_UNCLOSED_CDATA_SECTION":{"name":"xml.parsers.expat.errors.XML_ERROR_UNCLOSED_CDATA_SECTION","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_UNCLOSED_CDATA_SECTION","desc":"未关闭标有CDATA的部分"}, "xml.parsers.expat.errors.XML_ERROR_NOT_STANDALONE":{"name":"xml.parsers.expat.errors.XML_ERROR_NOT_STANDALONE","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_NOT_STANDALONE","desc":"解析器确定文档不是“独立”,尽管它声明自己在XML声明中,并且设置了NotStandaloneHandler并返回0"}, "xml.parsers.expat.errors.XML_ERROR_FEATURE_REQUIRES_XML_DTD":{"name":"xml.parsers.expat.errors.XML_ERROR_FEATURE_REQUIRES_XML_DTD","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_FEATURE_REQUIRES_XML_DTD","desc":"需要操作,需要编译DTD支持,但是在没有DTD支持的情况下配置了Expat"}, "xml.parsers.expat.errors.XML_ERROR_CANT_CHANGE_FEATURE_ONCE_PARSING":{"name":"xml.parsers.expat.errors.XML_ERROR_CANT_CHANGE_FEATURE_ONCE_PARSING","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_CANT_CHANGE_FEATURE_ONCE_PARSING","desc":"在解析开始后请求行为更改,只能在解析开始前更改"}, "xml.parsers.expat.errors.XML_ERROR_UNBOUND_PREFIX":{"name":"xml.parsers.expat.errors.XML_ERROR_UNBOUND_PREFIX","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_UNBOUND_PREFIX","desc":""}, "xml.parsers.expat.errors.XML_ERROR_UNDECLARING_PREFIX":{"name":"xml.parsers.expat.errors.XML_ERROR_UNDECLARING_PREFIX","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_UNDECLARING_PREFIX","desc":"该文档试图删除与前缀相关联的名称空间声明"}, "xml.parsers.expat.errors.XML_ERROR_INCOMPLETE_PE":{"name":"xml.parsers.expat.errors.XML_ERROR_INCOMPLETE_PE","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_INCOMPLETE_PE","desc":"参数实体包含不完整标记"}, "xml.parsers.expat.errors.XML_ERROR_XML_DECL":{"name":"xml.parsers.expat.errors.XML_ERROR_XML_DECL","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_XML_DECL","desc":"文档根本没有文档元素"}, "xml.parsers.expat.errors.XML_ERROR_TEXT_DECL":{"name":"xml.parsers.expat.errors.XML_ERROR_TEXT_DECL","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_TEXT_DECL","desc":"解析外部实体中的文本声明时出错"}, "xml.parsers.expat.errors.XML_ERROR_PUBLICID":{"name":"xml.parsers.expat.errors.XML_ERROR_PUBLICID","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_PUBLICID","desc":"在公共ID中找到不允许的字符"}, "xml.parsers.expat.errors.XML_ERROR_SUSPENDED":{"name":"xml.parsers.expat.errors.XML_ERROR_SUSPENDED","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_SUSPENDED","desc":"请求的操作是在已暂停的解析器上进行的,但不允许"}, "xml.parsers.expat.errors.XML_ERROR_NOT_SUSPENDED":{"name":"xml.parsers.expat.errors.XML_ERROR_NOT_SUSPENDED","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_NOT_SUSPENDED","desc":"当解析器未被挂起时,尝试恢复解析器"}, "xml.parsers.expat.errors.XML_ERROR_ABORTED":{"name":"xml.parsers.expat.errors.XML_ERROR_ABORTED","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_ABORTED","desc":"这不应该报告给Python应用程序"}, "xml.parsers.expat.errors.XML_ERROR_FINISHED":{"name":"xml.parsers.expat.errors.XML_ERROR_FINISHED","type":"pyexpat","path":"python/pyexpat.html#xml.parsers.expat.errors.XML_ERROR_FINISHED","desc":"所请求的操作是在已完成解析输入的解析器上进行的,但不允许"}, "py_compile.compile":{"name":"py_compile.compile","type":"py_compile","path":"python/py_compile.html#py_compile.compile","desc":"将源文件编译为字节代码并写出字节代码高速缓存文件"}, "py_compile.main":{"name":"py_compile.main","type":"py_compile","path":"python/py_compile.html#py_compile.main","desc":"编译几个源文件"}, "quopri.decode":{"name":"quopri.decode","type":"quopri","path":"python/quopri.html#quopri.decode","desc":"解码输入文件的内容,并将生成的解码二进制数据写入输出文件"}, "quopri.encode":{"name":"quopri.encode","type":"quopri","path":"python/quopri.html#quopri.encode","desc":"编码输入文件的内容,并将生成的可引用数据写入输出文件"}, "quopri.decodestring":{"name":"quopri.decodestring","type":"quopri","path":"python/quopri.html#quopri.decodestring","desc":"类似于decode(),除了它接受源bytes并返回对应的解码的bytes"}, "quopri.encodestring":{"name":"quopri.encodestring","type":"quopri","path":"python/quopri.html#quopri.encodestring","desc":"像encode(),除了它接受源bytes并返回相应的编码的bytes"}, "random.seed":{"name":"random.seed","type":"random","path":"python/random.html#random.seed","desc":"初始化生成器的随机数"}, "random.getstate":{"name":"random.getstate","type":"random","path":"python/random.html#random.getstate","desc":"返回捕获生成器的当前内部状态的对象"}, "random.setstate":{"name":"random.setstate","type":"random","path":"python/random.html#random.setstate","desc":"状态应该从先前对getstate()的调用获得,并且setstate()将生成器的内部状态恢复为是在当时getstate()被调用"}, "random.getrandbits":{"name":"random.getrandbits","type":"random","path":"python/random.html#random.getrandbits","desc":"返回一个 k 位(bit) 的随机整数(译者注:如k=8,返回8bit范围内的随机数,即0-255的随机数)该方法与MersenneTwister生成器一起提供,并且一些其他生成器也可以将其提供为API的可选部分"}, "random.randrange":{"name":"random.randrange","type":"random","path":"python/random.html#random.randrange","desc":"从range(start, stop, step)返回一个start到end范围内的随机整数(译者注:start,end,step都是整数,不包含end),可以指定step"}, "random.randint":{"name":"random.randint","type":"random","path":"python/random.html#random.randint","desc":"返回一个随机整数N,a <= N <= b"}, "random.choice":{"name":"random.choice","type":"random","path":"python/random.html#random.choice","desc":"从非空序列seq返回一个随机元素"}, "random.shuffle":{"name":"random.shuffle","type":"random","path":"python/random.html#random.shuffle","desc":"原地搅乱序列x"}, "random.sample":{"name":"random.sample","type":"random","path":"python/random.html#random.sample","desc":"返回从群体序列或集合中选择的唯一元素的k长度列表"}, "random.random":{"name":"random.random","type":"random","path":"python/random.html#random.random","desc":"返回下一个在范围 [0"}, "random.uniform":{"name":"random.uniform","type":"random","path":"python/random.html#random.uniform","desc":"Return a random floating point number N such that a <= N <= b for a <= b and b <= N <= a for b < a"}, "random.triangular":{"name":"random.triangular","type":"random","path":"python/random.html#random.triangular","desc":"返回随机浮点数 N 使得 low <= N <= high"}, "random.betavariate":{"name":"random.betavariate","type":"random","path":"python/random.html#random.betavariate","desc":"Beta分布"}, "random.expovariate":{"name":"random.expovariate","type":"random","path":"python/random.html#random.expovariate","desc":"指数分布"}, "random.gammavariate":{"name":"random.gammavariate","type":"random","path":"python/random.html#random.gammavariate","desc":"伽玛分布"}, "random.gauss":{"name":"random.gauss","type":"random","path":"python/random.html#random.gauss","desc":"高斯分布"}, "random.lognormvariate":{"name":"random.lognormvariate","type":"random","path":"python/random.html#random.lognormvariate","desc":"对数正态分布"}, "random.normalvariate":{"name":"random.normalvariate","type":"random","path":"python/random.html#random.normalvariate","desc":"正态分布"}, "random.vonmisesvariate":{"name":"random.vonmisesvariate","type":"random","path":"python/random.html#random.vonmisesvariate","desc":"mu is the mean angle, expressed in radians between 0 and 2*pi, and kappa is the concentration parameter, which must be greater than or equal to zero"}, "random.paretovariate":{"name":"random.paretovariate","type":"random","path":"python/random.html#random.paretovariate","desc":"帕累托分布"}, "random.weibullvariate":{"name":"random.weibullvariate","type":"random","path":"python/random.html#random.weibullvariate","desc":"Weibull分布"}, "re.compile":{"name":"re.compile","type":"re","path":"python/re.html#re.compile","desc":"将正则表达式模式编译成正则表达式对象,其 match() 和 search() 方法可用于匹配,描述如下"}, "re.search":{"name":"re.search","type":"re","path":"python/re.html#re.search","desc":"顺序扫描 string ,寻找正则表达式 pattern 产生匹配的第一个位置,并返回相应的 match object"}, "re.match":{"name":"re.match","type":"re","path":"python/re.html#re.match","desc":"若在 string 起始位置的0个或多个字符匹配正则表达式 pattern,返回相应的 match object"}, "re.fullmatch":{"name":"re.fullmatch","type":"re","path":"python/re.html#re.fullmatch","desc":"如果整个字符串匹配正则表达式pattern,则返回相应的match object"}, "re.split":{"name":"re.split","type":"re","path":"python/re.html#re.split","desc":"根据pattern的出现拆分字符串"}, "re.findall":{"name":"re.findall","type":"re","path":"python/re.html#re.findall","desc":"返回字符串中pattern的所有非重叠匹配项作为字符串列表"}, "re.finditer":{"name":"re.finditer","type":"re","path":"python/re.html#re.finditer","desc":"在字符串中的RE 模式的所有非重叠匹配中返回产生match objects的iterator"}, "re.sub":{"name":"re.sub","type":"re","path":"python/re.html#re.sub","desc":"将string中最左侧非重叠出现的pattern替换为repl,返回所获得的字符串"}, "re.subn":{"name":"re.subn","type":"re","path":"python/re.html#re.subn","desc":"执行与sub()相同的操作,但返回一个元组(new_string, number_of_subs_made)"}, "re.escape":{"name":"re.escape","type":"re","path":"python/re.html#re.escape","desc":"转义模式中除ASCII字母、数字和'_'之外的所有字符"}, "re.purge":{"name":"re.purge","type":"re","path":"python/re.html#re.purge","desc":"清除正则表达式缓存"}, "re.A":{"name":"re.A","type":"re","path":"python/re.html#re.A","desc":"让 \\w, \\W, \\b, \\B, \\d, \\D, \\s and \\S 执行纯 ASCII 匹配,而不是全部Unicode匹配(译注:因为Unicode中存在多国文字页面,所以上述字符存在多个码点,作用相同而二进制不同)"}, "re.DEBUG":{"name":"re.DEBUG","type":"re","path":"python/re.html#re.DEBUG","desc":"显示关于编译表达式的调试信息"}, "re.I":{"name":"re.I","type":"re","path":"python/re.html#re.I","desc":"执行不区分大小写的匹配;如[A-Z]也会匹配小写字母"}, "re.L":{"name":"re.L","type":"re","path":"python/re.html#re.L","desc":"Make \\w,\\W,\\b,\\B,\\s和\\S取决于当前的语言环境"}, "re.M":{"name":"re.M","type":"re","path":"python/re.html#re.M","desc":"指定时,模式字符'^'匹配字符串的开头和每行的开始处(紧跟在每个换行符后面);和模式字符'$'匹配字符串的末尾和每行的末尾(紧接在每个换行符的前面)"}, "re.S":{"name":"re.S","type":"re","path":"python/re.html#re.S","desc":"制作'"}, "re.X":{"name":"re.X","type":"re","path":"python/re.html#re.X","desc":"该标志允许您编写正则表达式,通过允许您在视觉上分离模式的逻辑部分并添加注释,该正则表达式看起来更好,并且更易读"}, "readline.parse_and_bind":{"name":"readline.parse_and_bind","type":"readline","path":"python/readline.html#readline.parse_and_bind","desc":"执行string参数中提供的init行"}, "readline.read_init_file":{"name":"readline.read_init_file","type":"readline","path":"python/readline.html#readline.read_init_file","desc":"执行readline初始化文件"}, "readline.get_line_buffer":{"name":"readline.get_line_buffer","type":"readline","path":"python/readline.html#readline.get_line_buffer","desc":"返回行缓冲区的当前内容(rl_line_buffer在底层库中)"}, "readline.insert_text":{"name":"readline.insert_text","type":"readline","path":"python/readline.html#readline.insert_text","desc":"在光标位置的行缓冲区中插入文本"}, "readline.redisplay":{"name":"readline.redisplay","type":"readline","path":"python/readline.html#readline.redisplay","desc":"更改屏幕上显示的内容以反映行缓冲区的当前内容"}, "readline.read_history_file":{"name":"readline.read_history_file","type":"readline","path":"python/readline.html#readline.read_history_file","desc":"加载阅读历史记录文件,并将其附加到历史记录列表"}, "readline.write_history_file":{"name":"readline.write_history_file","type":"readline","path":"python/readline.html#readline.write_history_file","desc":"将历史记录列表保存到阅读历史记录文件,覆盖任何现有文件"}, "readline.append_history_file":{"name":"readline.append_history_file","type":"readline","path":"python/readline.html#readline.append_history_file","desc":"将最后的nelements项目追加到文件中"}, "readline.get_history_length":{"name":"readline.get_history_length","type":"readline","path":"python/readline.html#readline.get_history_length","desc":"设置或返回要保存在历史记录文件中的所需行数"}, "readline.clear_history":{"name":"readline.clear_history","type":"readline","path":"python/readline.html#readline.clear_history","desc":"清除当前历史记录"}, "readline.get_current_history_length":{"name":"readline.get_current_history_length","type":"readline","path":"python/readline.html#readline.get_current_history_length","desc":"返回当前在历史记录中的项目数"}, "readline.get_history_item":{"name":"readline.get_history_item","type":"readline","path":"python/readline.html#readline.get_history_item","desc":"返回索引的历史记录项目的当前内容"}, "readline.remove_history_item":{"name":"readline.remove_history_item","type":"readline","path":"python/readline.html#readline.remove_history_item","desc":"从历史记录中删除其位置指定的历史记录项"}, "readline.replace_history_item":{"name":"readline.replace_history_item","type":"readline","path":"python/readline.html#readline.replace_history_item","desc":"用行替换其位置指定的历史记录项"}, "readline.add_history":{"name":"readline.add_history","type":"readline","path":"python/readline.html#readline.add_history","desc":"将行附加到历史记录缓冲区,就好像它是最后一行键入的"}, "readline.set_startup_hook":{"name":"readline.set_startup_hook","type":"readline","path":"python/readline.html#readline.set_startup_hook","desc":"设置或删除由底层库的rl_startup_hook回调调用的函数"}, "readline.set_pre_input_hook":{"name":"readline.set_pre_input_hook","type":"readline","path":"python/readline.html#readline.set_pre_input_hook","desc":"设置或删除由底层库的rl_pre_input_hook回调调用的函数"}, "readline.set_completer":{"name":"readline.set_completer","type":"readline","path":"python/readline.html#readline.set_completer","desc":"设置或删除完成器功能"}, "readline.get_completer":{"name":"readline.get_completer","type":"readline","path":"python/readline.html#readline.get_completer","desc":"获取完成器函数,或None如果未设置完成器函数"}, "readline.get_begidx":{"name":"readline.get_begidx","type":"readline","path":"python/readline.html#readline.get_begidx","desc":"获取完成范围的开始或结束索引"}, "readline.set_completion_display_matches_hook":{"name":"readline.set_completion_display_matches_hook","type":"readline","path":"python/readline.html#readline.set_completion_display_matches_hook","desc":"设置或删除完成显示功能"}, "reprlib.repr":{"name":"reprlib.repr","type":"reprlib","path":"python/reprlib.html#reprlib.repr","desc":"这是aRepr的repr()方法"}, "reprlib.recursive_repr":{"name":"reprlib.recursive_repr","type":"reprlib","path":"python/reprlib.html#reprlib.recursive_repr","desc":"装饰器用于检测同一线程中的递归调用的__repr__()方法"}, "reprlib.aRepr":{"name":"reprlib.aRepr","type":"reprlib","path":"python/reprlib.html#reprlib.aRepr","desc":"这是 repr 用来提供如下所述的 repr() 函数的一个实例"}, "resource.getrlimit":{"name":"resource.getrlimit","type":"resource","path":"python/resource.html#resource.getrlimit","desc":"使用资源的当前软和硬限制返回元组(软, 硬) 如果底层系统调用意外失败,则引发ValueError(如果指定了无效资源)或error"}, "resource.setrlimit":{"name":"resource.setrlimit","type":"resource","path":"python/resource.html#resource.setrlimit","desc":"设置资源的新限制"}, "resource.prlimit":{"name":"resource.prlimit","type":"resource","path":"python/resource.html#resource.prlimit","desc":"在一个函数中组合setrlimit()和getrlimit(),并支持获取和设置任意进程的资源限制"}, "resource.getrusage":{"name":"resource.getrusage","type":"resource","path":"python/resource.html#resource.getrusage","desc":"此函数返回描述由当前进程或其子进程消耗的资源的对象,由who参数指定"}, "resource.getpagesize":{"name":"resource.getpagesize","type":"resource","path":"python/resource.html#resource.getpagesize","desc":"返回系统页面中的字节数"}, "resource.RLIM_INFINITY":{"name":"resource.RLIM_INFINITY","type":"resource","path":"python/resource.html#resource.RLIM_INFINITY","desc":"常量用于表示无限资源的限制"}, "resource.RLIMIT_CORE":{"name":"resource.RLIMIT_CORE","type":"resource","path":"python/resource.html#resource.RLIMIT_CORE","desc":"当前进程可以创建的核心文件的最大大小(以字节为单位)"}, "resource.RLIMIT_CPU":{"name":"resource.RLIMIT_CPU","type":"resource","path":"python/resource.html#resource.RLIMIT_CPU","desc":"进程可以使用的最大处理器时间量(以秒为单位)"}, "resource.RLIMIT_FSIZE":{"name":"resource.RLIMIT_FSIZE","type":"resource","path":"python/resource.html#resource.RLIMIT_FSIZE","desc":"进程可能创建的文件的最大大小"}, "resource.RLIMIT_DATA":{"name":"resource.RLIMIT_DATA","type":"resource","path":"python/resource.html#resource.RLIMIT_DATA","desc":"进程堆的最大大小(以字节为单位)"}, "resource.RLIMIT_STACK":{"name":"resource.RLIMIT_STACK","type":"resource","path":"python/resource.html#resource.RLIMIT_STACK","desc":"当前进程的调用堆栈的最大大小(以字节为单位)"}, "resource.RLIMIT_RSS":{"name":"resource.RLIMIT_RSS","type":"resource","path":"python/resource.html#resource.RLIMIT_RSS","desc":"应该为进程提供的最大驻留集大小"}, "resource.RLIMIT_NPROC":{"name":"resource.RLIMIT_NPROC","type":"resource","path":"python/resource.html#resource.RLIMIT_NPROC","desc":""}, "resource.RLIMIT_NOFILE":{"name":"resource.RLIMIT_NOFILE","type":"resource","path":"python/resource.html#resource.RLIMIT_NOFILE","desc":"当前进程的打开文件描述器的最大数量"}, "resource.RLIMIT_OFILE":{"name":"resource.RLIMIT_OFILE","type":"resource","path":"python/resource.html#resource.RLIMIT_OFILE","desc":"RLIMIT_NOFILE的BSD名称"}, "resource.RLIMIT_MEMLOCK":{"name":"resource.RLIMIT_MEMLOCK","type":"resource","path":"python/resource.html#resource.RLIMIT_MEMLOCK","desc":"可以在内存中锁定的最大地址空间"}, "resource.RLIMIT_VMEM":{"name":"resource.RLIMIT_VMEM","type":"resource","path":"python/resource.html#resource.RLIMIT_VMEM","desc":"过程可能占用的映射内存的最大区域"}, "resource.RLIMIT_AS":{"name":"resource.RLIMIT_AS","type":"resource","path":"python/resource.html#resource.RLIMIT_AS","desc":"进程可能占用的地址空间的最大区域(以字节为单位)"}, "resource.RLIMIT_MSGQUEUE":{"name":"resource.RLIMIT_MSGQUEUE","type":"resource","path":"python/resource.html#resource.RLIMIT_MSGQUEUE","desc":"可分配给POSIX消息队列的字节数"}, "resource.RLIMIT_NICE":{"name":"resource.RLIMIT_NICE","type":"resource","path":"python/resource.html#resource.RLIMIT_NICE","desc":"进程的最高级别的水平(计算为20 - rlim_cur)"}, "resource.RLIMIT_RTPRIO":{"name":"resource.RLIMIT_RTPRIO","type":"resource","path":"python/resource.html#resource.RLIMIT_RTPRIO","desc":"实时优先级的上限"}, "resource.RLIMIT_RTTIME":{"name":"resource.RLIMIT_RTTIME","type":"resource","path":"python/resource.html#resource.RLIMIT_RTTIME","desc":"进程可以在实时调度下花费的CPU时间的时间限制(以微秒为单位),而不会阻塞系统调用"}, "resource.RLIMIT_SIGPENDING":{"name":"resource.RLIMIT_SIGPENDING","type":"resource","path":"python/resource.html#resource.RLIMIT_SIGPENDING","desc":"进程可能排队的信号数"}, "resource.RLIMIT_SBSIZE":{"name":"resource.RLIMIT_SBSIZE","type":"resource","path":"python/resource.html#resource.RLIMIT_SBSIZE","desc":"此用户的套接字缓冲区使用的最大大小(以字节为单位)"}, "resource.RLIMIT_SWAP":{"name":"resource.RLIMIT_SWAP","type":"resource","path":"python/resource.html#resource.RLIMIT_SWAP","desc":"可由此用户ID的所有进程保留或使用的交换空间的最大大小(以字节为单位)"}, "resource.RLIMIT_NPTS":{"name":"resource.RLIMIT_NPTS","type":"resource","path":"python/resource.html#resource.RLIMIT_NPTS","desc":"此用户ID创建的伪终端的最大数量"}, "resource.RUSAGE_SELF":{"name":"resource.RUSAGE_SELF","type":"resource","path":"python/resource.html#resource.RUSAGE_SELF","desc":"传递到getrusage()以请求调用进程消耗的资源,这是进程中的所有线程使用的资源的总和"}, "resource.RUSAGE_CHILDREN":{"name":"resource.RUSAGE_CHILDREN","type":"resource","path":"python/resource.html#resource.RUSAGE_CHILDREN","desc":"传递到getrusage()以请求已终止并等待的调用进程的子进程消耗的资源"}, "resource.RUSAGE_BOTH":{"name":"resource.RUSAGE_BOTH","type":"resource","path":"python/resource.html#resource.RUSAGE_BOTH","desc":"Pass to getrusage() to request resources consumed by both the current process and child processes"}, "resource.RUSAGE_THREAD":{"name":"resource.RUSAGE_THREAD","type":"resource","path":"python/resource.html#resource.RUSAGE_THREAD","desc":"传递到getrusage()以请求当前线程使用的资源"}, "runpy.run_module":{"name":"runpy.run_module","type":"runpy","path":"python/runpy.html#runpy.run_module","desc":"执行指定模块的代码,并返回结果模块全局字典"}, "runpy.run_path":{"name":"runpy.run_path","type":"runpy","path":"python/runpy.html#runpy.run_path","desc":"在指定的文件系统位置执行代码,并返回结果模块全局字典"}, "select.devpoll":{"name":"select.devpoll","type":"select","path":"python/select.html#select.devpoll","desc":"(仅在Solaris和衍生产品上受支持"}, "select.epoll":{"name":"select.epoll","type":"select","path":"python/select.html#select.epoll","desc":"(仅在Linux 2"}, "select.poll":{"name":"select.poll","type":"select","path":"python/select.html#select.poll","desc":"(不受所有操作系统支持"}, "select.kqueue":{"name":"select.kqueue","type":"select","path":"python/select.html#select.kqueue","desc":"(仅在BSD上支持"}, "select.kevent":{"name":"select.kevent","type":"select","path":"python/select.html#select.kevent","desc":"(仅在BSD上支持"}, "select.select":{"name":"select.select","type":"select","path":"python/select.html#select.select","desc":"这是Unix select()系统调用的简单接口"}, "shelve.open":{"name":"shelve.open","type":"shelve","path":"python/shelve.html#shelve.open","desc":"打开持久性字典"}, "shlex.split":{"name":"shlex.split","type":"shlex","path":"python/shlex.html#shlex.split","desc":"使用类shell语法拆分字符串s"}, "shlex.quote":{"name":"shlex.quote","type":"shlex","path":"python/shlex.html#shlex.quote","desc":"返回字符串s的shell转义版本"}, "shutil.copyfileobj":{"name":"shutil.copyfileobj","type":"shutil","path":"python/shutil.html#shutil.copyfileobj","desc":"将类似文件的对象fsrc的内容复制到类似文件的对象fdst"}, "shutil.copyfile":{"name":"shutil.copyfile","type":"shutil","path":"python/shutil.html#shutil.copyfile","desc":"将名为src的文件的内容(无元数据)复制到名为dst的文件,然后返回dst"}, "shutil.copymode":{"name":"shutil.copymode","type":"shutil","path":"python/shutil.html#shutil.copymode","desc":"将权限位从src复制到dst"}, "shutil.copystat":{"name":"shutil.copystat","type":"shutil","path":"python/shutil.html#shutil.copystat","desc":"将权限位,最后访问时间,上次修改时间和标志从src复制到dst"}, "shutil.copy":{"name":"shutil.copy","type":"shutil","path":"python/shutil.html#shutil.copy","desc":"将文件src复制到文件或目录dst"}, "shutil.copy2":{"name":"shutil.copy2","type":"shutil","path":"python/shutil.html#shutil.copy2","desc":"与copy()相同,但copy2()也尝试保留所有文件元数据"}, "shutil.ignore_patterns":{"name":"shutil.ignore_patterns","type":"shutil","path":"python/shutil.html#shutil.ignore_patterns","desc":"此工厂函数创建一个函数,可用作copytree()的忽略参数的可调用函数,忽略与glob类型模式"}, "shutil.copytree":{"name":"shutil.copytree","type":"shutil","path":"python/shutil.html#shutil.copytree","desc":"递归地复制以src为根的整个目录树,返回目标目录"}, "shutil.rmtree":{"name":"shutil.rmtree","type":"shutil","path":"python/shutil.html#shutil.rmtree","desc":"删除整个目录树; 路径必须指向目录(而不是指向目录的符号链接)"}, "shutil.move":{"name":"shutil.move","type":"shutil","path":"python/shutil.html#shutil.move","desc":"递归地将文件或目录(src)移动到另一个位置(dst),并返回目标"}, "shutil.disk_usage":{"name":"shutil.disk_usage","type":"shutil","path":"python/shutil.html#shutil.disk_usage","desc":"将给定路径的磁盘使用情况统计信息作为named tuple返回总计,使用和免费是总的,已用和可用空间的量,以字节为单位"}, "shutil.chown":{"name":"shutil.chown","type":"shutil","path":"python/shutil.html#shutil.chown","desc":"更改给定路径的所有者用户和/或组"}, "shutil.which":{"name":"shutil.which","type":"shutil","path":"python/shutil.html#shutil.which","desc":"返回可执行文件的路径,如果给定的cmd被调用,它将运行"}, "shutil.make_archive":{"name":"shutil.make_archive","type":"shutil","path":"python/shutil.html#shutil.make_archive","desc":"创建归档文件(例如zip或tar)并返回其名称"}, "shutil.get_archive_formats":{"name":"shutil.get_archive_formats","type":"shutil","path":"python/shutil.html#shutil.get_archive_formats","desc":"返回支持的归档格式列表"}, "shutil.register_archive_format":{"name":"shutil.register_archive_format","type":"shutil","path":"python/shutil.html#shutil.register_archive_format","desc":"为格式名称注册档案库"}, "shutil.unregister_archive_format":{"name":"shutil.unregister_archive_format","type":"shutil","path":"python/shutil.html#shutil.unregister_archive_format","desc":"从支持的格式列表中删除归档格式名称"}, "shutil.unpack_archive":{"name":"shutil.unpack_archive","type":"shutil","path":"python/shutil.html#shutil.unpack_archive","desc":"分拆归档"}, "shutil.register_unpack_format":{"name":"shutil.register_unpack_format","type":"shutil","path":"python/shutil.html#shutil.register_unpack_format","desc":"注册分拆格式"}, "shutil.unregister_unpack_format":{"name":"shutil.unregister_unpack_format","type":"shutil","path":"python/shutil.html#shutil.unregister_unpack_format","desc":"取消注册分拆格式"}, "shutil.get_unpack_formats":{"name":"shutil.get_unpack_formats","type":"shutil","path":"python/shutil.html#shutil.get_unpack_formats","desc":"返回分拆的所有注册格式的列表"}, "shutil.get_terminal_size":{"name":"shutil.get_terminal_size","type":"shutil","path":"python/shutil.html#shutil.get_terminal_size","desc":"获取终端窗口的大小"}, "signal.alarm":{"name":"signal.alarm","type":"signal","path":"python/signal.html#signal.alarm","desc":"如果时间不为零,则此功能请求在时间秒内将SIGALRM信号发送到过程"}, "signal.getsignal":{"name":"signal.getsignal","type":"signal","path":"python/signal.html#signal.getsignal","desc":"返回信号signalnum的当前信号处理程序"}, "signal.pause":{"name":"signal.pause","type":"signal","path":"python/signal.html#signal.pause","desc":"使该过程睡眠直到接收到信号;那么将调用适当的处理程序"}, "signal.pthread_kill":{"name":"signal.pthread_kill","type":"signal","path":"python/signal.html#signal.pthread_kill","desc":"将信号signalnum发送到线程thread_id,这是与调用者相同的进程中的另一个线程"}, "signal.pthread_sigmask":{"name":"signal.pthread_sigmask","type":"signal","path":"python/signal.html#signal.pthread_sigmask","desc":"获取和/或更改调用线程的信号掩码"}, "signal.setitimer":{"name":"signal.setitimer","type":"signal","path":"python/signal.html#signal.setitimer","desc":"设置由指定的给定间隔定时器(signal"}, "signal.getitimer":{"name":"signal.getitimer","type":"signal","path":"python/signal.html#signal.getitimer","desc":"返回由指定的给定间隔定时器的当前值,其中"}, "signal.set_wakeup_fd":{"name":"signal.set_wakeup_fd","type":"signal","path":"python/signal.html#signal.set_wakeup_fd","desc":"将唤醒文件描述器设置为fd"}, "signal.siginterrupt":{"name":"signal.siginterrupt","type":"signal","path":"python/signal.html#signal.siginterrupt","desc":"更改系统呼叫重新启动行为:如果标志为False,系统呼叫将在由信号signalnum中断时重新启动,否则系统呼叫将中断"}, "signal.signal":{"name":"signal.signal","type":"signal","path":"python/signal.html#signal.signal","desc":"将信号signalnum的处理程序设置为处理程序"}, "signal.sigpending":{"name":"signal.sigpending","type":"signal","path":"python/signal.html#signal.sigpending","desc":"检查等待传递到调用线程的信号集合(即,在阻塞时已经产生的信号)"}, "signal.sigwait":{"name":"signal.sigwait","type":"signal","path":"python/signal.html#signal.sigwait","desc":"挂起调用线程的执行,直到发送信号集sigset中指定的信号之一"}, "signal.sigwaitinfo":{"name":"signal.sigwaitinfo","type":"signal","path":"python/signal.html#signal.sigwaitinfo","desc":"挂起调用线程的执行,直到发送信号集sigset中指定的信号之一"}, "signal.sigtimedwait":{"name":"signal.sigtimedwait","type":"signal","path":"python/signal.html#signal.sigtimedwait","desc":"像sigwaitinfo(),但是需要一个额外的超时参数指定超时"}, "signal.SIG_DFL":{"name":"signal.SIG_DFL","type":"signal","path":"python/signal.html#signal.SIG_DFL","desc":"这是两个标准信号处理选项之一;它将简单地执行信号的默认功能"}, "signal.SIG_IGN":{"name":"signal.SIG_IGN","type":"signal","path":"python/signal.html#signal.SIG_IGN","desc":"这是另一个标准信号处理程序,它将简单地忽略给定的信号"}, "signal.CTRL_C_EVENT":{"name":"signal.CTRL_C_EVENT","type":"signal","path":"python/signal.html#signal.CTRL_C_EVENT","desc":"对应于Ctrl+C击键事件的信号"}, "signal.CTRL_BREAK_EVENT":{"name":"signal.CTRL_BREAK_EVENT","type":"signal","path":"python/signal.html#signal.CTRL_BREAK_EVENT","desc":"对应于Ctrl+Break击键事件的信号"}, "signal.NSIG":{"name":"signal.NSIG","type":"signal","path":"python/signal.html#signal.NSIG","desc":"一个多于最高信号数的数"}, "signal.ITIMER_REAL":{"name":"signal.ITIMER_REAL","type":"signal","path":"python/signal.html#signal.ITIMER_REAL","desc":"实时递减间隔定时器,并在到期时递送SIGALRM"}, "signal.ITIMER_VIRTUAL":{"name":"signal.ITIMER_VIRTUAL","type":"signal","path":"python/signal.html#signal.ITIMER_VIRTUAL","desc":"仅在进程正在执行时减少间隔定时器,并在到期时传递SIGVTALRM"}, "signal.ITIMER_PROF":{"name":"signal.ITIMER_PROF","type":"signal","path":"python/signal.html#signal.ITIMER_PROF","desc":"递减间隔定时器,当进程执行时和系统代表进程执行时"}, "signal.SIG_BLOCK":{"name":"signal.SIG_BLOCK","type":"signal","path":"python/signal.html#signal.SIG_BLOCK","desc":"如何参数到pthread_sigmask()的可能值,表示要阻止信号"}, "signal.SIG_UNBLOCK":{"name":"signal.SIG_UNBLOCK","type":"signal","path":"python/signal.html#signal.SIG_UNBLOCK","desc":"如何参数到pthread_sigmask()的可能值,表示要解除阻塞信号"}, "signal.SIG_SETMASK":{"name":"signal.SIG_SETMASK","type":"signal","path":"python/signal.html#signal.SIG_SETMASK","desc":"如何参数到pthread_sigmask()的可能值,表示要替换信号掩码"}, "site.main":{"name":"site.main","type":"site","path":"python/site.html#site.main","desc":"将所有标准站点特定目录添加到模块搜索路径"}, "site.addsitedir":{"name":"site.addsitedir","type":"site","path":"python/site.html#site.addsitedir","desc":"将目录添加到sys"}, "site.getsitepackages":{"name":"site.getsitepackages","type":"site","path":"python/site.html#site.getsitepackages","desc":"返回一个包含所有全局site-packages目录的列表"}, "site.getuserbase":{"name":"site.getuserbase","type":"site","path":"python/site.html#site.getuserbase","desc":"返回用户基本目录USER_BASE的路径"}, "site.getusersitepackages":{"name":"site.getusersitepackages","type":"site","path":"python/site.html#site.getusersitepackages","desc":"返回用户特定的site-packages目录USER_SITE的路径"}, "site.PREFIXES":{"name":"site.PREFIXES","type":"site","path":"python/site.html#site.PREFIXES","desc":"site-packages目录的前缀列表"}, "site.ENABLE_USER_SITE":{"name":"site.ENABLE_USER_SITE","type":"site","path":"python/site.html#site.ENABLE_USER_SITE","desc":"标志显示用户site-packages目录的状态"}, "sndhdr.what":{"name":"sndhdr.what","type":"sndhdr","path":"python/sndhdr.html#sndhdr.what","desc":"使用whathdr()确定存储在文件filename中的声音数据类型"}, "sndhdr.whathdr":{"name":"sndhdr.whathdr","type":"sndhdr","path":"python/sndhdr.html#sndhdr.whathdr","desc":"基于文件头确定存储在文件中的声音数据的类型"}, "socket.socket":{"name":"socket.socket","type":"socket","path":"python/socket.html#socket.socket","desc":"使用给定的地址族、套接字类型和协议号创建一个新的套接字"}, "socket.socketpair":{"name":"socket.socketpair","type":"socket","path":"python/socket.html#socket.socketpair","desc":"使用所给的地址族,套接字类型和协议号创建一对已连接的socket 对象"}, "socket.create_connection":{"name":"socket.create_connection","type":"socket","path":"python/socket.html#socket.create_connection","desc":"连接到监听网络地址(一个2-tuple(host,port)),然后返回`socket`对象"}, "socket.fromfd":{"name":"socket.fromfd","type":"socket","path":"python/socket.html#socket.fromfd","desc":"复制文件描述符fd(由文件对象的fileno()方法返回的整数),并根据结果构建一个套接字对象"}, "socket.fromshare":{"name":"socket.fromshare","type":"socket","path":"python/socket.html#socket.fromshare","desc":"使用从`socket"}, "socket.getaddrinfo":{"name":"socket.getaddrinfo","type":"socket","path":"python/socket.html#socket.getaddrinfo","desc":"将 host/port 参数转换为一个5元组序列,其中包含创建连接到该服务的套接字的所有必要参数"}, "socket.getfqdn":{"name":"socket.getfqdn","type":"socket","path":"python/socket.html#socket.getfqdn","desc":"Return a fully qualified domain name for name"}, "socket.gethostbyname":{"name":"socket.gethostbyname","type":"socket","path":"python/socket.html#socket.gethostbyname","desc":"将主机名转换为IPv4地址格式"}, "socket.gethostbyname_ex":{"name":"socket.gethostbyname_ex","type":"socket","path":"python/socket.html#socket.gethostbyname_ex","desc":"Translate a host name to IPv4 address format, extended interface"}, "socket.gethostname":{"name":"socket.gethostname","type":"socket","path":"python/socket.html#socket.gethostname","desc":"Return a string containing the hostname of the machine where the Python interpreter is currently executing"}, "socket.gethostbyaddr":{"name":"socket.gethostbyaddr","type":"socket","path":"python/socket.html#socket.gethostbyaddr","desc":"Return a triple (hostname, aliaslist, ipaddrlist) where hostname is the primary host name responding to the given ip_address, aliaslist is a (possibly empty) list of alternative host names for the same address, and ipaddrlist is a list of IPv4/v6 addresses for the same interface on the same host (most likely containing only a single address)"}, "socket.getnameinfo":{"name":"socket.getnameinfo","type":"socket","path":"python/socket.html#socket.getnameinfo","desc":"Translate a socket address sockaddr into a 2-tuple (host, port)"}, "socket.getprotobyname":{"name":"socket.getprotobyname","type":"socket","path":"python/socket.html#socket.getprotobyname","desc":"Translate an Internet protocol name (for example, 'icmp') to a constant suitable for passing as the (optional) third argument to the socket() function"}, "socket.getservbyname":{"name":"socket.getservbyname","type":"socket","path":"python/socket.html#socket.getservbyname","desc":"Translate an Internet service name and protocol name to a port number for that service"}, "socket.getservbyport":{"name":"socket.getservbyport","type":"socket","path":"python/socket.html#socket.getservbyport","desc":"Translate an Internet port number and protocol name to a service name for that service"}, "socket.ntohl":{"name":"socket.ntohl","type":"socket","path":"python/socket.html#socket.ntohl","desc":"将32位正整数从网络字节顺序转换为主机字节顺序"}, "socket.ntohs":{"name":"socket.ntohs","type":"socket","path":"python/socket.html#socket.ntohs","desc":"Convert 16-bit positive integers from network to host byte order"}, "socket.htonl":{"name":"socket.htonl","type":"socket","path":"python/socket.html#socket.htonl","desc":"Convert 32-bit positive integers from host to network byte order"}, "socket.htons":{"name":"socket.htons","type":"socket","path":"python/socket.html#socket.htons","desc":"Convert 16-bit positive integers from host to network byte order"}, "socket.inet_aton":{"name":"socket.inet_aton","type":"socket","path":"python/socket.html#socket.inet_aton","desc":"Convert an IPv4 address from dotted-quad string format (for example, ‘123"}, "socket.inet_ntoa":{"name":"socket.inet_ntoa","type":"socket","path":"python/socket.html#socket.inet_ntoa","desc":"Convert a 32-bit packed IPv4 address (a bytes-like object four bytes in length) to its standard dotted-quad string representation (for example, ‘123"}, "socket.inet_pton":{"name":"socket.inet_pton","type":"socket","path":"python/socket.html#socket.inet_pton","desc":"将IP地址从其特定类型的字符串格式转换为压缩的二进制格式"}, "socket.inet_ntop":{"name":"socket.inet_ntop","type":"socket","path":"python/socket.html#socket.inet_ntop","desc":"Convert a packed IP address (a bytes-like object of some number of bytes) to its standard, family-specific string representation (for example, '7"}, "socket.CMSG_LEN":{"name":"socket.CMSG_LEN","type":"socket","path":"python/socket.html#socket.CMSG_LEN","desc":"Return the total length, without trailing padding, of an ancillary data item with associated data of the given length"}, "socket.CMSG_SPACE":{"name":"socket.CMSG_SPACE","type":"socket","path":"python/socket.html#socket.CMSG_SPACE","desc":"Return the buffer size needed for recvmsg() to receive an ancillary data item with associated data of the given length, along with any trailing padding"}, "socket.getdefaulttimeout":{"name":"socket.getdefaulttimeout","type":"socket","path":"python/socket.html#socket.getdefaulttimeout","desc":"返回新套接字对象的默认超时值(以秒为单位)(浮点数)"}, "socket.setdefaulttimeout":{"name":"socket.setdefaulttimeout","type":"socket","path":"python/socket.html#socket.setdefaulttimeout","desc":"为新的套接字对象设置默认超时(以秒为单位)(float)"}, "socket.sethostname":{"name":"socket.sethostname","type":"socket","path":"python/socket.html#socket.sethostname","desc":"将计算机的主机名设置为名称"}, "socket.if_nameindex":{"name":"socket.if_nameindex","type":"socket","path":"python/socket.html#socket.if_nameindex","desc":"Return a list of network interface information (index int, name string) tuples"}, "socket.if_nametoindex":{"name":"socket.if_nametoindex","type":"socket","path":"python/socket.html#socket.if_nametoindex","desc":"Return a network interface index number corresponding to an interface name"}, "socket.if_indextoname":{"name":"socket.if_indextoname","type":"socket","path":"python/socket.html#socket.if_indextoname","desc":"Return a network interface name corresponding to an interface index number"}, "socket.AF_UNIX":{"name":"socket.AF_UNIX","type":"socket","path":"python/socket.html#socket.AF_UNIX","desc":"这些常量表示地址(和协议)族,用于 socket() 的第一个参数"}, "socket.SOCK_STREAM":{"name":"socket.SOCK_STREAM","type":"socket","path":"python/socket.html#socket.SOCK_STREAM","desc":"这些常量表示套接字类型,用于 socket() 的第二个参数"}, "socket.SOCK_CLOEXEC":{"name":"socket.SOCK_CLOEXEC","type":"socket","path":"python/socket.html#socket.SOCK_CLOEXEC","desc":"这两个常量(如果已定义)可以与套接字类型结合使用,并允许你以原子方式设置一些标志(从而避免可能的竞争条件和需要单独调用)"}, "socket.AF_CAN":{"name":"socket.AF_CAN","type":"socket","path":"python/socket.html#socket.AF_CAN","desc":"Many constants of these forms, documented in the Linux documentation, are also defined in the socket module"}, "socket.CAN_BCM":{"name":"socket.CAN_BCM","type":"socket","path":"python/socket.html#socket.CAN_BCM","desc":"CAN_BCM, in the CAN protocol family, is the broadcast manager (BCM) protocol"}, "socket.CAN_RAW_FD_FRAMES":{"name":"socket.CAN_RAW_FD_FRAMES","type":"socket","path":"python/socket.html#socket.CAN_RAW_FD_FRAMES","desc":"Enables CAN FD support in a CAN_RAW socket"}, "socket.AF_RDS":{"name":"socket.AF_RDS","type":"socket","path":"python/socket.html#socket.AF_RDS","desc":"Many constants of these forms, documented in the Linux documentation, are also defined in the socket module"}, "socket.AF_LINK":{"name":"socket.AF_LINK","type":"socket","path":"python/socket.html#socket.AF_LINK","desc":"Availability: BSD, OSX"}, "socket.has_ipv6":{"name":"socket.has_ipv6","type":"socket","path":"python/socket.html#socket.has_ipv6","desc":"This constant contains a boolean value which indicates if IPv6 is supported on this platform"}, "socket.BDADDR_ANY":{"name":"socket.BDADDR_ANY","type":"socket","path":"python/socket.html#socket.BDADDR_ANY","desc":"These are string constants containing Bluetooth addresses with special meanings"}, "socket.HCI_FILTER":{"name":"socket.HCI_FILTER","type":"socket","path":"python/socket.html#socket.HCI_FILTER","desc":"For use with BTPROTO_HCI"}, "socket.SocketType":{"name":"socket.SocketType","type":"socket","path":"python/socket.html#socket.SocketType","desc":"这是一个代表socket对象类型的Python类型对象"}, "spwd.getspnam":{"name":"spwd.getspnam","type":"spwd","path":"python/spwd.html#spwd.getspnam","desc":"返回给定用户名的影子密码数据库条目"}, "spwd.getspall":{"name":"spwd.getspall","type":"spwd","path":"python/spwd.html#spwd.getspall","desc":"以任意顺序返回所有可用shadow密码数据库条目的列表"}, "sqlite3.connect":{"name":"sqlite3.connect","type":"sqlite3","path":"python/sqlite3.html#sqlite3.connect","desc":"打开到SQLite数据库文件database的连接"}, "sqlite3.register_converter":{"name":"sqlite3.register_converter","type":"sqlite3","path":"python/sqlite3.html#sqlite3.register_converter","desc":"注册可调用对象用来将来自数据库的bytestring转换成为自定义的Python类型"}, "sqlite3.register_adapter":{"name":"sqlite3.register_adapter","type":"sqlite3","path":"python/sqlite3.html#sqlite3.register_adapter","desc":"注册可调用对象用来将自定义的 Python 类型type转换为 SQLite 的支持的类型"}, "sqlite3.complete_statement":{"name":"sqlite3.complete_statement","type":"sqlite3","path":"python/sqlite3.html#sqlite3.complete_statement","desc":"如果字符串sql包含一个或多个以分号结束的完整的SQL语句则返回True"}, "sqlite3.enable_callback_tracebacks":{"name":"sqlite3.enable_callback_tracebacks","type":"sqlite3","path":"python/sqlite3.html#sqlite3.enable_callback_tracebacks","desc":"默认情况下你不会在用户定义的函数、 聚合、 转换器、 授权者回调等地方得到回溯对象(调用栈对象)"}, "sqlite3.version":{"name":"sqlite3.version","type":"sqlite3","path":"python/sqlite3.html#sqlite3.version","desc":"该模块的字符串形式的版本号"}, "sqlite3.version_info":{"name":"sqlite3.version_info","type":"sqlite3","path":"python/sqlite3.html#sqlite3.version_info","desc":"该模块的整数元组形式的版本号"}, "sqlite3.sqlite_version":{"name":"sqlite3.sqlite_version","type":"sqlite3","path":"python/sqlite3.html#sqlite3.sqlite_version","desc":"运行期SQLite库的版本号,字符串形式"}, "sqlite3.sqlite_version_info":{"name":"sqlite3.sqlite_version_info","type":"sqlite3","path":"python/sqlite3.html#sqlite3.sqlite_version_info","desc":"运行期SQLite库的版本号,整数元组形式"}, "sqlite3.PARSE_DECLTYPES":{"name":"sqlite3.PARSE_DECLTYPES","type":"sqlite3","path":"python/sqlite3.html#sqlite3.PARSE_DECLTYPES","desc":"该常量用于connect()函数的detect_types参数"}, "sqlite3.PARSE_COLNAMES":{"name":"sqlite3.PARSE_COLNAMES","type":"sqlite3","path":"python/sqlite3.html#sqlite3.PARSE_COLNAMES","desc":"该常量用于connect()函数的detect_types参数"}, "ssl.wrap_socket":{"name":"ssl.wrap_socket","type":"ssl","path":"python/ssl.html#ssl.wrap_socket","desc":"Takes an instance sock of socket"}, "ssl.create_default_context":{"name":"ssl.create_default_context","type":"ssl","path":"python/ssl.html#ssl.create_default_context","desc":"Return a new SSLContext object with default settings for the given purpose"}, "ssl.RAND_bytes":{"name":"ssl.RAND_bytes","type":"ssl","path":"python/ssl.html#ssl.RAND_bytes","desc":"Return num cryptographically strong pseudo-random bytes"}, "ssl.RAND_pseudo_bytes":{"name":"ssl.RAND_pseudo_bytes","type":"ssl","path":"python/ssl.html#ssl.RAND_pseudo_bytes","desc":"Return (bytes, is_cryptographic): bytes are num pseudo-random bytes, is_cryptographic is True if the bytes generated are cryptographically strong"}, "ssl.RAND_status":{"name":"ssl.RAND_status","type":"ssl","path":"python/ssl.html#ssl.RAND_status","desc":"Return True if the SSL pseudo-random number generator has been seeded with ‘enough’ randomness, and False otherwise"}, "ssl.RAND_egd":{"name":"ssl.RAND_egd","type":"ssl","path":"python/ssl.html#ssl.RAND_egd","desc":"If you are running an entropy-gathering daemon (EGD) somewhere, and path is the pathname of a socket connection open to it, this will read 256 bytes of randomness from the socket, and add it to the SSL pseudo-random number generator to increase the security of generated secret keys"}, "ssl.RAND_add":{"name":"ssl.RAND_add","type":"ssl","path":"python/ssl.html#ssl.RAND_add","desc":"Mix the given bytes into the SSL pseudo-random number generator"}, "ssl.match_hostname":{"name":"ssl.match_hostname","type":"ssl","path":"python/ssl.html#ssl.match_hostname","desc":"Verify that cert (in decoded format as returned by SSLSocket"}, "ssl.cert_time_to_seconds":{"name":"ssl.cert_time_to_seconds","type":"ssl","path":"python/ssl.html#ssl.cert_time_to_seconds","desc":"Return the time in seconds since the Epoch, given the cert_time string representing the “notBefore” or “notAfter” date from a certificate in "%b %d %H:%M:%S %Y %Z" strptime format (C locale)"}, "ssl.get_server_certificate":{"name":"ssl.get_server_certificate","type":"ssl","path":"python/ssl.html#ssl.get_server_certificate","desc":"Given the address addr of an SSL-protected server, as a (hostname, port-number) pair, fetches the server’s certificate, and returns it as a PEM-encoded string"}, "ssl.DER_cert_to_PEM_cert":{"name":"ssl.DER_cert_to_PEM_cert","type":"ssl","path":"python/ssl.html#ssl.DER_cert_to_PEM_cert","desc":"Given a certificate as a DER-encoded blob of bytes, returns a PEM-encoded string version of the same certificate"}, "ssl.PEM_cert_to_DER_cert":{"name":"ssl.PEM_cert_to_DER_cert","type":"ssl","path":"python/ssl.html#ssl.PEM_cert_to_DER_cert","desc":"Given a certificate as an ASCII PEM string, returns a DER-encoded sequence of bytes for that same certificate"}, "ssl.get_default_verify_paths":{"name":"ssl.get_default_verify_paths","type":"ssl","path":"python/ssl.html#ssl.get_default_verify_paths","desc":"Returns a named tuple with paths to OpenSSL’s default cafile and capath"}, "ssl.enum_certificates":{"name":"ssl.enum_certificates","type":"ssl","path":"python/ssl.html#ssl.enum_certificates","desc":"Retrieve certificates from Windows’ system cert store"}, "ssl.enum_crls":{"name":"ssl.enum_crls","type":"ssl","path":"python/ssl.html#ssl.enum_crls","desc":"Retrieve CRLs from Windows’ system cert store"}, "ssl.CERT_NONE":{"name":"ssl.CERT_NONE","type":"ssl","path":"python/ssl.html#ssl.CERT_NONE","desc":"Possible value for SSLContext"}, "ssl.CERT_OPTIONAL":{"name":"ssl.CERT_OPTIONAL","type":"ssl","path":"python/ssl.html#ssl.CERT_OPTIONAL","desc":"Possible value for SSLContext"}, "ssl.CERT_REQUIRED":{"name":"ssl.CERT_REQUIRED","type":"ssl","path":"python/ssl.html#ssl.CERT_REQUIRED","desc":"Possible value for SSLContext"}, "ssl.VERIFY_DEFAULT":{"name":"ssl.VERIFY_DEFAULT","type":"ssl","path":"python/ssl.html#ssl.VERIFY_DEFAULT","desc":"Possible value for SSLContext"}, "ssl.VERIFY_CRL_CHECK_LEAF":{"name":"ssl.VERIFY_CRL_CHECK_LEAF","type":"ssl","path":"python/ssl.html#ssl.VERIFY_CRL_CHECK_LEAF","desc":"Possible value for SSLContext"}, "ssl.VERIFY_CRL_CHECK_CHAIN":{"name":"ssl.VERIFY_CRL_CHECK_CHAIN","type":"ssl","path":"python/ssl.html#ssl.VERIFY_CRL_CHECK_CHAIN","desc":"Possible value for SSLContext"}, "ssl.VERIFY_X509_STRICT":{"name":"ssl.VERIFY_X509_STRICT","type":"ssl","path":"python/ssl.html#ssl.VERIFY_X509_STRICT","desc":"Possible value for SSLContext"}, "ssl.VERIFY_X509_TRUSTED_FIRST":{"name":"ssl.VERIFY_X509_TRUSTED_FIRST","type":"ssl","path":"python/ssl.html#ssl.VERIFY_X509_TRUSTED_FIRST","desc":"Possible value for SSLContext"}, "ssl.PROTOCOL_SSLv23":{"name":"ssl.PROTOCOL_SSLv23","type":"ssl","path":"python/ssl.html#ssl.PROTOCOL_SSLv23","desc":"Selects the highest protocol version that both the client and server support"}, "ssl.PROTOCOL_SSLv2":{"name":"ssl.PROTOCOL_SSLv2","type":"ssl","path":"python/ssl.html#ssl.PROTOCOL_SSLv2","desc":"Selects SSL version 2 as the channel encryption protocol"}, "ssl.PROTOCOL_SSLv3":{"name":"ssl.PROTOCOL_SSLv3","type":"ssl","path":"python/ssl.html#ssl.PROTOCOL_SSLv3","desc":"Selects SSL version 3 as the channel encryption protocol"}, "ssl.PROTOCOL_TLSv1":{"name":"ssl.PROTOCOL_TLSv1","type":"ssl","path":"python/ssl.html#ssl.PROTOCOL_TLSv1","desc":"Selects TLS version 1"}, "ssl.PROTOCOL_TLSv1_1":{"name":"ssl.PROTOCOL_TLSv1_1","type":"ssl","path":"python/ssl.html#ssl.PROTOCOL_TLSv1_1","desc":"Selects TLS version 1"}, "ssl.PROTOCOL_TLSv1_2":{"name":"ssl.PROTOCOL_TLSv1_2","type":"ssl","path":"python/ssl.html#ssl.PROTOCOL_TLSv1_2","desc":"使用TLSv1"}, "ssl.OP_ALL":{"name":"ssl.OP_ALL","type":"ssl","path":"python/ssl.html#ssl.OP_ALL","desc":"Enables workarounds for various bugs present in other SSL implementations"}, "ssl.OP_NO_SSLv2":{"name":"ssl.OP_NO_SSLv2","type":"ssl","path":"python/ssl.html#ssl.OP_NO_SSLv2","desc":"Prevents an SSLv2 connection"}, "ssl.OP_NO_SSLv3":{"name":"ssl.OP_NO_SSLv3","type":"ssl","path":"python/ssl.html#ssl.OP_NO_SSLv3","desc":"Prevents an SSLv3 connection"}, "ssl.OP_NO_TLSv1":{"name":"ssl.OP_NO_TLSv1","type":"ssl","path":"python/ssl.html#ssl.OP_NO_TLSv1","desc":"Prevents a TLSv1 connection"}, "ssl.OP_NO_TLSv1_1":{"name":"ssl.OP_NO_TLSv1_1","type":"ssl","path":"python/ssl.html#ssl.OP_NO_TLSv1_1","desc":"Prevents a TLSv1"}, "ssl.OP_NO_TLSv1_2":{"name":"ssl.OP_NO_TLSv1_2","type":"ssl","path":"python/ssl.html#ssl.OP_NO_TLSv1_2","desc":"Prevents a TLSv1"}, "ssl.OP_CIPHER_SERVER_PREFERENCE":{"name":"ssl.OP_CIPHER_SERVER_PREFERENCE","type":"ssl","path":"python/ssl.html#ssl.OP_CIPHER_SERVER_PREFERENCE","desc":"Use the server’s cipher ordering preference, rather than the client’s"}, "ssl.OP_SINGLE_DH_USE":{"name":"ssl.OP_SINGLE_DH_USE","type":"ssl","path":"python/ssl.html#ssl.OP_SINGLE_DH_USE","desc":"Prevents re-use of the same DH key for distinct SSL sessions"}, "ssl.OP_SINGLE_ECDH_USE":{"name":"ssl.OP_SINGLE_ECDH_USE","type":"ssl","path":"python/ssl.html#ssl.OP_SINGLE_ECDH_USE","desc":"Prevents re-use of the same ECDH key for distinct SSL sessions"}, "ssl.OP_NO_COMPRESSION":{"name":"ssl.OP_NO_COMPRESSION","type":"ssl","path":"python/ssl.html#ssl.OP_NO_COMPRESSION","desc":"Disable compression on the SSL channel"}, "ssl.HAS_ALPN":{"name":"ssl.HAS_ALPN","type":"ssl","path":"python/ssl.html#ssl.HAS_ALPN","desc":"Whether the OpenSSL library has built-in support for the Application-Layer Protocol Negotiation TLS extension as described in RFC 7301"}, "ssl.HAS_ECDH":{"name":"ssl.HAS_ECDH","type":"ssl","path":"python/ssl.html#ssl.HAS_ECDH","desc":"Whether the OpenSSL library has built-in support for Elliptic Curve-based Diffie-Hellman key exchange"}, "ssl.HAS_SNI":{"name":"ssl.HAS_SNI","type":"ssl","path":"python/ssl.html#ssl.HAS_SNI","desc":"Whether the OpenSSL library has built-in support for the Server Name Indication extension (as defined in RFC 4366)"}, "ssl.HAS_NPN":{"name":"ssl.HAS_NPN","type":"ssl","path":"python/ssl.html#ssl.HAS_NPN","desc":"Whether the OpenSSL library has built-in support for Next Protocol Negotiation as described in the NPN draft specification"}, "ssl.CHANNEL_BINDING_TYPES":{"name":"ssl.CHANNEL_BINDING_TYPES","type":"ssl","path":"python/ssl.html#ssl.CHANNEL_BINDING_TYPES","desc":"List of supported TLS channel binding types"}, "ssl.OPENSSL_VERSION":{"name":"ssl.OPENSSL_VERSION","type":"ssl","path":"python/ssl.html#ssl.OPENSSL_VERSION","desc":"The version string of the OpenSSL library loaded by the interpreter:"}, "ssl.OPENSSL_VERSION_INFO":{"name":"ssl.OPENSSL_VERSION_INFO","type":"ssl","path":"python/ssl.html#ssl.OPENSSL_VERSION_INFO","desc":"A tuple of five integers representing version information about the OpenSSL library:"}, "ssl.OPENSSL_VERSION_NUMBER":{"name":"ssl.OPENSSL_VERSION_NUMBER","type":"ssl","path":"python/ssl.html#ssl.OPENSSL_VERSION_NUMBER","desc":"The raw version number of the OpenSSL library, as a single integer:"}, "ssl.ALERT_DESCRIPTION_HANDSHAKE_FAILURE":{"name":"ssl.ALERT_DESCRIPTION_HANDSHAKE_FAILURE","type":"ssl","path":"python/ssl.html#ssl.ALERT_DESCRIPTION_HANDSHAKE_FAILURE","desc":"Alert Descriptions from RFC 5246 and others"}, "ssl.Purpose.SERVER_AUTH":{"name":"ssl.Purpose.SERVER_AUTH","type":"ssl","path":"python/ssl.html#ssl.Purpose.SERVER_AUTH","desc":"Option for create_default_context() and SSLContext"}, "ssl.Purpose.CLIENT_AUTH":{"name":"ssl.Purpose.CLIENT_AUTH","type":"ssl","path":"python/ssl.html#ssl.Purpose.CLIENT_AUTH","desc":"Option for create_default_context() and SSLContext"}, "stat.S_ISDIR":{"name":"stat.S_ISDIR","type":"stat","path":"python/stat.html#stat.S_ISDIR","desc":"如果mode来自一个目录,返回非零"}, "stat.S_ISCHR":{"name":"stat.S_ISCHR","type":"stat","path":"python/stat.html#stat.S_ISCHR","desc":"如果mode来自特殊的字符设备文件,返回非零"}, "stat.S_ISBLK":{"name":"stat.S_ISBLK","type":"stat","path":"python/stat.html#stat.S_ISBLK","desc":"如果mode来自特殊的块设备文件,返回非零"}, "stat.S_ISREG":{"name":"stat.S_ISREG","type":"stat","path":"python/stat.html#stat.S_ISREG","desc":"如果mode来自一个正常的文件,返回非零"}, "stat.S_ISFIFO":{"name":"stat.S_ISFIFO","type":"stat","path":"python/stat.html#stat.S_ISFIFO","desc":"如果mode来自FIFO(命名管道),返回非零"}, "stat.S_ISLNK":{"name":"stat.S_ISLNK","type":"stat","path":"python/stat.html#stat.S_ISLNK","desc":"如果mode来自一个符号链接,返回非零"}, "stat.S_ISSOCK":{"name":"stat.S_ISSOCK","type":"stat","path":"python/stat.html#stat.S_ISSOCK","desc":"如果mode来自一个套接字,返回非零"}, "stat.S_ISDOOR":{"name":"stat.S_ISDOOR","type":"stat","path":"python/stat.html#stat.S_ISDOOR","desc":"如果模式是从门返回非零"}, "stat.S_ISPORT":{"name":"stat.S_ISPORT","type":"stat","path":"python/stat.html#stat.S_ISPORT","desc":"如果模式来自事件端口,则返回非零"}, "stat.S_ISWHT":{"name":"stat.S_ISWHT","type":"stat","path":"python/stat.html#stat.S_ISWHT","desc":"如果模式来自白光,返回非零"}, "stat.S_IMODE":{"name":"stat.S_IMODE","type":"stat","path":"python/stat.html#stat.S_IMODE","desc":"返回可以由os"}, "stat.S_IFMT":{"name":"stat.S_IFMT","type":"stat","path":"python/stat.html#stat.S_IFMT","desc":"返回描述文件类型的文件模式部分(由上面的S_IS*()函数使用)"}, "stat.filemode":{"name":"stat.filemode","type":"stat","path":"python/stat.html#stat.filemode","desc":"将文件的模式转换为格式为'-rwxrwxrwx'的字符串"}, "stat.ST_MODE":{"name":"stat.ST_MODE","type":"stat","path":"python/stat.html#stat.ST_MODE","desc":"inode 保护模式"}, "stat.ST_INO":{"name":"stat.ST_INO","type":"stat","path":"python/stat.html#stat.ST_INO","desc":"inode 节点号"}, "stat.ST_DEV":{"name":"stat.ST_DEV","type":"stat","path":"python/stat.html#stat.ST_DEV","desc":"inode 驻留的设备"}, "stat.ST_NLINK":{"name":"stat.ST_NLINK","type":"stat","path":"python/stat.html#stat.ST_NLINK","desc":"inode 的链接数"}, "stat.ST_UID":{"name":"stat.ST_UID","type":"stat","path":"python/stat.html#stat.ST_UID","desc":"所有者的用户ID"}, "stat.ST_GID":{"name":"stat.ST_GID","type":"stat","path":"python/stat.html#stat.ST_GID","desc":"所有者的组ID"}, "stat.ST_SIZE":{"name":"stat.ST_SIZE","type":"stat","path":"python/stat.html#stat.ST_SIZE","desc":"一个普通文件的字节大小;等待某些特殊文件的数据量"}, "stat.ST_ATIME":{"name":"stat.ST_ATIME","type":"stat","path":"python/stat.html#stat.ST_ATIME","desc":"上次访问的时间"}, "stat.ST_MTIME":{"name":"stat.ST_MTIME","type":"stat","path":"python/stat.html#stat.ST_MTIME","desc":"最后一次修改的时间"}, "stat.ST_CTIME":{"name":"stat.ST_CTIME","type":"stat","path":"python/stat.html#stat.ST_CTIME","desc":"由操作系统报告的"ctime""}, "stat.S_IFSOCK":{"name":"stat.S_IFSOCK","type":"stat","path":"python/stat.html#stat.S_IFSOCK","desc":"套接字"}, "stat.S_IFLNK":{"name":"stat.S_IFLNK","type":"stat","path":"python/stat.html#stat.S_IFLNK","desc":"符号链接"}, "stat.S_IFREG":{"name":"stat.S_IFREG","type":"stat","path":"python/stat.html#stat.S_IFREG","desc":"常规文件"}, "stat.S_IFBLK":{"name":"stat.S_IFBLK","type":"stat","path":"python/stat.html#stat.S_IFBLK","desc":"块设备"}, "stat.S_IFDIR":{"name":"stat.S_IFDIR","type":"stat","path":"python/stat.html#stat.S_IFDIR","desc":"目录"}, "stat.S_IFCHR":{"name":"stat.S_IFCHR","type":"stat","path":"python/stat.html#stat.S_IFCHR","desc":"字符设备"}, "stat.S_IFIFO":{"name":"stat.S_IFIFO","type":"stat","path":"python/stat.html#stat.S_IFIFO","desc":"先进先出"}, "stat.S_IFDOOR":{"name":"stat.S_IFDOOR","type":"stat","path":"python/stat.html#stat.S_IFDOOR","desc":"门"}, "stat.S_IFPORT":{"name":"stat.S_IFPORT","type":"stat","path":"python/stat.html#stat.S_IFPORT","desc":"事件端口"}, "stat.S_IFWHT":{"name":"stat.S_IFWHT","type":"stat","path":"python/stat.html#stat.S_IFWHT","desc":"Whiteout"}, "stat.S_ISUID":{"name":"stat.S_ISUID","type":"stat","path":"python/stat.html#stat.S_ISUID","desc":"设置 UID 位"}, "stat.S_ISGID":{"name":"stat.S_ISGID","type":"stat","path":"python/stat.html#stat.S_ISGID","desc":"设置组 ID 位"}, "stat.S_ISVTX":{"name":"stat.S_ISVTX","type":"stat","path":"python/stat.html#stat.S_ISVTX","desc":"粘滞位"}, "stat.S_IRWXU":{"name":"stat.S_IRWXU","type":"stat","path":"python/stat.html#stat.S_IRWXU","desc":"文件所有者权限掩码"}, "stat.S_IRUSR":{"name":"stat.S_IRUSR","type":"stat","path":"python/stat.html#stat.S_IRUSR","desc":"所有者拥有读取权限"}, "stat.S_IWUSR":{"name":"stat.S_IWUSR","type":"stat","path":"python/stat.html#stat.S_IWUSR","desc":"所有者具有写入权限"}, "stat.S_IXUSR":{"name":"stat.S_IXUSR","type":"stat","path":"python/stat.html#stat.S_IXUSR","desc":"所有者具有执行权限"}, "stat.S_IRWXG":{"name":"stat.S_IRWXG","type":"stat","path":"python/stat.html#stat.S_IRWXG","desc":"组权限掩码"}, "stat.S_IRGRP":{"name":"stat.S_IRGRP","type":"stat","path":"python/stat.html#stat.S_IRGRP","desc":"组具有读取权限"}, "stat.S_IWGRP":{"name":"stat.S_IWGRP","type":"stat","path":"python/stat.html#stat.S_IWGRP","desc":"组具有写入权限"}, "stat.S_IXGRP":{"name":"stat.S_IXGRP","type":"stat","path":"python/stat.html#stat.S_IXGRP","desc":"组具有执行权限"}, "stat.S_IRWXO":{"name":"stat.S_IRWXO","type":"stat","path":"python/stat.html#stat.S_IRWXO","desc":"其他人(不在组中的人)的权限掩码"}, "stat.S_IROTH":{"name":"stat.S_IROTH","type":"stat","path":"python/stat.html#stat.S_IROTH","desc":"其他人具有读取权限"}, "stat.S_IWOTH":{"name":"stat.S_IWOTH","type":"stat","path":"python/stat.html#stat.S_IWOTH","desc":"其他人具有写入权限"}, "stat.S_IXOTH":{"name":"stat.S_IXOTH","type":"stat","path":"python/stat.html#stat.S_IXOTH","desc":"其他人具有执行权限"}, "stat.S_ENFMT":{"name":"stat.S_ENFMT","type":"stat","path":"python/stat.html#stat.S_ENFMT","desc":"V 系统文件锁定的执法行动"}, "stat.S_IREAD":{"name":"stat.S_IREAD","type":"stat","path":"python/stat.html#stat.S_IREAD","desc":"S_IRUSR的Unix V7同义词"}, "stat.S_IWRITE":{"name":"stat.S_IWRITE","type":"stat","path":"python/stat.html#stat.S_IWRITE","desc":"S_IWUSR的Unix V7同义词"}, "stat.S_IEXEC":{"name":"stat.S_IEXEC","type":"stat","path":"python/stat.html#stat.S_IEXEC","desc":"S_IXUSR的Unix V7同义词"}, "stat.UF_NODUMP":{"name":"stat.UF_NODUMP","type":"stat","path":"python/stat.html#stat.UF_NODUMP","desc":"不转储文件"}, "stat.UF_IMMUTABLE":{"name":"stat.UF_IMMUTABLE","type":"stat","path":"python/stat.html#stat.UF_IMMUTABLE","desc":"该文件不能更改"}, "stat.UF_APPEND":{"name":"stat.UF_APPEND","type":"stat","path":"python/stat.html#stat.UF_APPEND","desc":"该文件可能只被追加到"}, "stat.UF_OPAQUE":{"name":"stat.UF_OPAQUE","type":"stat","path":"python/stat.html#stat.UF_OPAQUE","desc":"该目录是不透明的通过联盟的堆栈查看时"}, "stat.UF_NOUNLINK":{"name":"stat.UF_NOUNLINK","type":"stat","path":"python/stat.html#stat.UF_NOUNLINK","desc":"该文件可能不能重命名或删除"}, "stat.UF_COMPRESSED":{"name":"stat.UF_COMPRESSED","type":"stat","path":"python/stat.html#stat.UF_COMPRESSED","desc":"该文件存储压缩 (Mac OS X 10"}, "stat.UF_HIDDEN":{"name":"stat.UF_HIDDEN","type":"stat","path":"python/stat.html#stat.UF_HIDDEN","desc":"该文件不应显示在GUI中(Mac OS X 10"}, "stat.SF_ARCHIVED":{"name":"stat.SF_ARCHIVED","type":"stat","path":"python/stat.html#stat.SF_ARCHIVED","desc":"该文件可能被存档"}, "stat.SF_IMMUTABLE":{"name":"stat.SF_IMMUTABLE","type":"stat","path":"python/stat.html#stat.SF_IMMUTABLE","desc":"该文件不能更改"}, "stat.SF_APPEND":{"name":"stat.SF_APPEND","type":"stat","path":"python/stat.html#stat.SF_APPEND","desc":"该文件可能只被追加到"}, "stat.SF_NOUNLINK":{"name":"stat.SF_NOUNLINK","type":"stat","path":"python/stat.html#stat.SF_NOUNLINK","desc":"该文件可能不能重命名或删除"}, "stat.SF_SNAPSHOT":{"name":"stat.SF_SNAPSHOT","type":"stat","path":"python/stat.html#stat.SF_SNAPSHOT","desc":"该文件是一个快照文件"}, "stat.FILE_ATTRIBUTE_ARCHIVE":{"name":"stat.FILE_ATTRIBUTE_ARCHIVE","type":"stat","path":"python/stat.html#stat.FILE_ATTRIBUTE_ARCHIVE","desc":"版本3"}, "statistics.mean":{"name":"statistics.mean","type":"statistics","path":"python/statistics.html#statistics.mean","desc":"返回数据的样本算术平均值,实数值的序列或迭代器"}, "statistics.median":{"name":"statistics.median","type":"statistics","path":"python/statistics.html#statistics.median","desc":"使用常用的“中间两个平均值”方法返回数值数据的中值(中间值)"}, "statistics.median_low":{"name":"statistics.median_low","type":"statistics","path":"python/statistics.html#statistics.median_low","desc":"返回数值数据的低中位数"}, "statistics.median_high":{"name":"statistics.median_high","type":"statistics","path":"python/statistics.html#statistics.median_high","desc":"返回数据的高中位数"}, "statistics.median_grouped":{"name":"statistics.median_grouped","type":"statistics","path":"python/statistics.html#statistics.median_grouped","desc":"使用内插法返回分组连续数据的中值,计算为第50个百分位数"}, "statistics.mode":{"name":"statistics.mode","type":"statistics","path":"python/statistics.html#statistics.mode","desc":"从离散或标称数据返回最常用的数据点"}, "statistics.pstdev":{"name":"statistics.pstdev","type":"statistics","path":"python/statistics.html#statistics.pstdev","desc":"返回总体标准差(总体方差的平方根)"}, "statistics.pvariance":{"name":"statistics.pvariance","type":"statistics","path":"python/statistics.html#statistics.pvariance","desc":"返回数据的总体方差,实数值的非空迭代"}, "statistics.stdev":{"name":"statistics.stdev","type":"statistics","path":"python/statistics.html#statistics.stdev","desc":"返回样本标准偏差(样本方差的平方根)"}, "statistics.variance":{"name":"statistics.variance","type":"statistics","path":"python/statistics.html#statistics.variance","desc":"返回数据的样本方差,这是至少两个实数值的迭代"}, "string.capwords":{"name":"string.capwords","type":"string","path":"python/string.html#string.capwords","desc":"使用str"}, "string.ascii_letters":{"name":"string.ascii_letters","type":"string","path":"python/string.html#string.ascii_letters","desc":"与此级联(即包含)的 ascii_lowercase 和 ascii_uppercase 描述见下文"}, "string.ascii_lowercase":{"name":"string.ascii_lowercase","type":"string","path":"python/string.html#string.ascii_lowercase","desc":"小写字母 'abcdefghijklmnopqrstuvwxyz'"}, "string.ascii_uppercase":{"name":"string.ascii_uppercase","type":"string","path":"python/string.html#string.ascii_uppercase","desc":"大写字母 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'"}, "string.digits":{"name":"string.digits","type":"string","path":"python/string.html#string.digits","desc":"字符串 '0123456789'"}, "string.hexdigits":{"name":"string.hexdigits","type":"string","path":"python/string.html#string.hexdigits","desc":"字符串 '0123456789abcdefABCDEF'"}, "string.octdigits":{"name":"string.octdigits","type":"string","path":"python/string.html#string.octdigits","desc":"字符串'01234567'"}, "string.punctuation":{"name":"string.punctuation","type":"string","path":"python/string.html#string.punctuation","desc":"在 C语言 中被定义为ASCII 字符的字符集合而成的字符串"}, "string.printable":{"name":"string.printable","type":"string","path":"python/string.html#string.printable","desc":"被定义为printable的ASCII 字符集合而成的字符串,这是一个包含了 位数, ascii字符, 标点符号, 和空格"}, "string.whitespace":{"name":"string.whitespace","type":"string","path":"python/string.html#string.whitespace","desc":"包含所有ASCII中可当作空白的字符集合而成的字符串"}, "stringprep.in_table_a1":{"name":"stringprep.in_table_a1","type":"stringprep","path":"python/stringprep.html#stringprep.in_table_a1","desc":"确定代码是否在表A"}, "stringprep.in_table_b1":{"name":"stringprep.in_table_b1","type":"stringprep","path":"python/stringprep.html#stringprep.in_table_b1","desc":"确定代码是否在表B"}, "stringprep.map_table_b2":{"name":"stringprep.map_table_b2","type":"stringprep","path":"python/stringprep.html#stringprep.map_table_b2","desc":"根据表B"}, "stringprep.map_table_b3":{"name":"stringprep.map_table_b3","type":"stringprep","path":"python/stringprep.html#stringprep.map_table_b3","desc":"根据表B"}, "stringprep.in_table_c11":{"name":"stringprep.in_table_c11","type":"stringprep","path":"python/stringprep.html#stringprep.in_table_c11","desc":"确定代码是否在表C"}, "stringprep.in_table_c12":{"name":"stringprep.in_table_c12","type":"stringprep","path":"python/stringprep.html#stringprep.in_table_c12","desc":"确定代码是否在表C"}, "stringprep.in_table_c11_c12":{"name":"stringprep.in_table_c11_c12","type":"stringprep","path":"python/stringprep.html#stringprep.in_table_c11_c12","desc":"确定代码是否在表C1(空间字符,C"}, "stringprep.in_table_c21":{"name":"stringprep.in_table_c21","type":"stringprep","path":"python/stringprep.html#stringprep.in_table_c21","desc":"确定代码是否在表C"}, "stringprep.in_table_c22":{"name":"stringprep.in_table_c22","type":"stringprep","path":"python/stringprep.html#stringprep.in_table_c22","desc":"确定代码是否在表C"}, "stringprep.in_table_c21_c22":{"name":"stringprep.in_table_c21_c22","type":"stringprep","path":"python/stringprep.html#stringprep.in_table_c21_c22","desc":"确定代码是否在表C"}, "stringprep.in_table_c3":{"name":"stringprep.in_table_c3","type":"stringprep","path":"python/stringprep.html#stringprep.in_table_c3","desc":"确定代码是否在表C3(私人使用)中"}, "stringprep.in_table_c4":{"name":"stringprep.in_table_c4","type":"stringprep","path":"python/stringprep.html#stringprep.in_table_c4","desc":"确定代码是否在表C"}, "stringprep.in_table_c5":{"name":"stringprep.in_table_c5","type":"stringprep","path":"python/stringprep.html#stringprep.in_table_c5","desc":"确定代码是否在表C5(代理代码)中"}, "stringprep.in_table_c6":{"name":"stringprep.in_table_c6","type":"stringprep","path":"python/stringprep.html#stringprep.in_table_c6","desc":"确定代码是否在表C"}, "stringprep.in_table_c7":{"name":"stringprep.in_table_c7","type":"stringprep","path":"python/stringprep.html#stringprep.in_table_c7","desc":"确定代码是否在表C"}, "stringprep.in_table_c8":{"name":"stringprep.in_table_c8","type":"stringprep","path":"python/stringprep.html#stringprep.in_table_c8","desc":"确定代码是否在表C"}, "stringprep.in_table_c9":{"name":"stringprep.in_table_c9","type":"stringprep","path":"python/stringprep.html#stringprep.in_table_c9","desc":"确定代码是否在表C"}, "stringprep.in_table_d1":{"name":"stringprep.in_table_d1","type":"stringprep","path":"python/stringprep.html#stringprep.in_table_d1","desc":"确定代码是否在表D"}, "stringprep.in_table_d2":{"name":"stringprep.in_table_d2","type":"stringprep","path":"python/stringprep.html#stringprep.in_table_d2","desc":"确定代码是否在表D"}, "struct.pack":{"name":"struct.pack","type":"struct","path":"python/struct.html#struct.pack","desc":"Return a bytes object containing the values v1, v2, "}, "struct.pack_into":{"name":"struct.pack_into","type":"struct","path":"python/struct.html#struct.pack_into","desc":"根据格式字符串fmt封装值v1,v2,并将压缩字节写入可写缓冲区缓冲区从位置偏移开始"}, "struct.unpack":{"name":"struct.unpack","type":"struct","path":"python/struct.html#struct.unpack","desc":"从缓冲器缓冲器分离(假定由pack(fmt, "}, "struct.unpack_from":{"name":"struct.unpack_from","type":"struct","path":"python/struct.html#struct.unpack_from","desc":"根据格式字符串fmt从缓冲区开始分离偏移"}, "struct.iter_unpack":{"name":"struct.iter_unpack","type":"struct","path":"python/struct.html#struct.iter_unpack","desc":"根据格式字符串fmt从缓冲区缓冲区中迭代分离"}, "struct.calcsize":{"name":"struct.calcsize","type":"struct","path":"python/struct.html#struct.calcsize","desc":"返回对应于格式字符串的结构(以及由此产生的pack(fmt, "}, "subprocess.run":{"name":"subprocess.run","type":"subprocess","path":"python/subprocess.html#subprocess.run","desc":"运行args描述的命令"}, "subprocess.call":{"name":"subprocess.call","type":"subprocess","path":"python/subprocess.html#subprocess.call","desc":"执行args 描述的命令"}, "subprocess.check_call":{"name":"subprocess.check_call","type":"subprocess","path":"python/subprocess.html#subprocess.check_call","desc":"执行带参数的命令"}, "subprocess.check_output":{"name":"subprocess.check_output","type":"subprocess","path":"python/subprocess.html#subprocess.check_output","desc":"使用参数运行命令并返回其输出"}, "subprocess.getstatusoutput":{"name":"subprocess.getstatusoutput","type":"subprocess","path":"python/subprocess.html#subprocess.getstatusoutput","desc":"返回在shell中执行cmd的(status, output)"}, "subprocess.getoutput":{"name":"subprocess.getoutput","type":"subprocess","path":"python/subprocess.html#subprocess.getoutput","desc":"返回在shell中执行cmd的输出(标准输出和标准错误)"}, "subprocess.DEVNULL":{"name":"subprocess.DEVNULL","type":"subprocess","path":"python/subprocess.html#subprocess.DEVNULL","desc":"可用作Popen的stdin、stdout或stderr参数的特殊值,指示将使用os"}, "subprocess.PIPE":{"name":"subprocess.PIPE","type":"subprocess","path":"python/subprocess.html#subprocess.PIPE","desc":"可用作Popen的stdin、stdout或stderr参数的特殊值,表示应打开相应标准流的管道"}, "subprocess.STDOUT":{"name":"subprocess.STDOUT","type":"subprocess","path":"python/subprocess.html#subprocess.STDOUT","desc":"可用作Popen的stderr参数的特殊值,表示标准错误应与标准输出放在同一句柄中"}, "subprocess.STD_INPUT_HANDLE":{"name":"subprocess.STD_INPUT_HANDLE","type":"subprocess","path":"python/subprocess.html#subprocess.STD_INPUT_HANDLE","desc":"标准输入设备"}, "subprocess.STD_OUTPUT_HANDLE":{"name":"subprocess.STD_OUTPUT_HANDLE","type":"subprocess","path":"python/subprocess.html#subprocess.STD_OUTPUT_HANDLE","desc":"标准输出设备"}, "subprocess.STD_ERROR_HANDLE":{"name":"subprocess.STD_ERROR_HANDLE","type":"subprocess","path":"python/subprocess.html#subprocess.STD_ERROR_HANDLE","desc":"标准错误设备"}, "subprocess.SW_HIDE":{"name":"subprocess.SW_HIDE","type":"subprocess","path":"python/subprocess.html#subprocess.SW_HIDE","desc":"隐藏窗口"}, "subprocess.STARTF_USESTDHANDLES":{"name":"subprocess.STARTF_USESTDHANDLES","type":"subprocess","path":"python/subprocess.html#subprocess.STARTF_USESTDHANDLES","desc":"表示STARTUPINFO"}, "subprocess.STARTF_USESHOWWINDOW":{"name":"subprocess.STARTF_USESHOWWINDOW","type":"subprocess","path":"python/subprocess.html#subprocess.STARTF_USESHOWWINDOW","desc":"表示STARTUPINFO"}, "subprocess.CREATE_NEW_CONSOLE":{"name":"subprocess.CREATE_NEW_CONSOLE","type":"subprocess","path":"python/subprocess.html#subprocess.CREATE_NEW_CONSOLE","desc":"新的进程将具有一个新的控制台,而不是继承它父进程的控制台(默认行为)"}, "subprocess.CREATE_NEW_PROCESS_GROUP":{"name":"subprocess.CREATE_NEW_PROCESS_GROUP","type":"subprocess","path":"python/subprocess.html#subprocess.CREATE_NEW_PROCESS_GROUP","desc":"一个Popen creationflags参数,以指定将创建一个新进程组"}, "sunau.open":{"name":"sunau.open","type":"sunau","path":"python/sunau.html#sunau.open","desc":"如果文件是字符串,请按该名称打开该文件,否则将其视为可搜索的类文件对象"}, "sunau.openfp":{"name":"sunau.openfp","type":"sunau","path":"python/sunau.html#sunau.openfp","desc":"为维持向后兼容性的open()的同义词"}, "sunau.AUDIO_FILE_MAGIC":{"name":"sunau.AUDIO_FILE_MAGIC","type":"sunau","path":"python/sunau.html#sunau.AUDIO_FILE_MAGIC","desc":"每个有效的Sun AU文件的整数开始,以big-endian形式存储"}, "sunau.AUDIO_FILE_ENCODING_MULAW_8":{"name":"sunau.AUDIO_FILE_ENCODING_MULAW_8","type":"sunau","path":"python/sunau.html#sunau.AUDIO_FILE_ENCODING_MULAW_8","desc":"此模块支持的AU头中的编码字段的值"}, "sunau.AUDIO_FILE_ENCODING_FLOAT":{"name":"sunau.AUDIO_FILE_ENCODING_FLOAT","type":"sunau","path":"python/sunau.html#sunau.AUDIO_FILE_ENCODING_FLOAT","desc":"来自AU头的编码字段的其他已知值,但不受此模块支持"}, "symbol.sym_name":{"name":"symbol.sym_name","type":"symbol","path":"python/symbol.html#symbol.sym_name","desc":"将此模块中定义的常量的数字值映射回名称字符串的字典,从而允许生成更加人性化的解析树表示"}, "symtable.symtable":{"name":"symtable.symtable","type":"symtable","path":"python/symtable.html#symtable.symtable","desc":"返回对于Python源代码代码的toplevel SymbolTable"}, "sys.call_tracing":{"name":"sys.call_tracing","type":"sys","path":"python/sys.html#sys.call_tracing","desc":"在跟踪启用时调用func(*args)"}, "sys._clear_type_cache":{"name":"sys._clear_type_cache","type":"sys","path":"python/sys.html#sys._clear_type_cache","desc":"清除内部类型缓存"}, "sys._current_frames":{"name":"sys._current_frames","type":"sys","path":"python/sys.html#sys._current_frames","desc":"返回一个字典,该函数被调用时,将每个线程的标识符映射到当前在该线程中处于活动状态的最上面的堆栈帧"}, "sys._debugmallocstats":{"name":"sys._debugmallocstats","type":"sys","path":"python/sys.html#sys._debugmallocstats","desc":"打印低级别信息以了解CPython内存分配器的状态"}, "sys.displayhook":{"name":"sys.displayhook","type":"sys","path":"python/sys.html#sys.displayhook","desc":"如果值不是None,则此函数将repr(value)打印到sys"}, "sys.excepthook":{"name":"sys.excepthook","type":"sys","path":"python/sys.html#sys.excepthook","desc":"这个函数打印出一个给定的回溯和例外情况给sys"}, "sys.exc_info":{"name":"sys.exc_info","type":"sys","path":"python/sys.html#sys.exc_info","desc":"这个函数返回一个包含三个值的元组,该元组提供有关当前正在处理的异常的信息"}, "sys.exit":{"name":"sys.exit","type":"sys","path":"python/sys.html#sys.exit","desc":"从Python退出"}, "sys.getallocatedblocks":{"name":"sys.getallocatedblocks","type":"sys","path":"python/sys.html#sys.getallocatedblocks","desc":"不管大小如何,都返回当前由解释器分配的内存块数量"}, "sys.getcheckinterval":{"name":"sys.getcheckinterval","type":"sys","path":"python/sys.html#sys.getcheckinterval","desc":"返回解释器的“检查间隔”;请参阅setcheckinterval()"}, "sys.getdefaultencoding":{"name":"sys.getdefaultencoding","type":"sys","path":"python/sys.html#sys.getdefaultencoding","desc":"返回Unicode实现使用的当前默认字符串编码的名称"}, "sys.getdlopenflags":{"name":"sys.getdlopenflags","type":"sys","path":"python/sys.html#sys.getdlopenflags","desc":"返回用于dlopen()调用的标志的当前值"}, "sys.getfilesystemencoding":{"name":"sys.getfilesystemencoding","type":"sys","path":"python/sys.html#sys.getfilesystemencoding","desc":"返回用于将Unicode文件名转换为系统文件名的编码名称"}, "sys.getrefcount":{"name":"sys.getrefcount","type":"sys","path":"python/sys.html#sys.getrefcount","desc":"返回对象的引用计数"}, "sys.getrecursionlimit":{"name":"sys.getrecursionlimit","type":"sys","path":"python/sys.html#sys.getrecursionlimit","desc":"返回递归限制的当前值,即Python解释器堆栈的最大深度"}, "sys.getsizeof":{"name":"sys.getsizeof","type":"sys","path":"python/sys.html#sys.getsizeof","desc":"以字节为单位返回对象的大小"}, "sys.getswitchinterval":{"name":"sys.getswitchinterval","type":"sys","path":"python/sys.html#sys.getswitchinterval","desc":"返回解释器的“线程切换间隔”;请参阅setswitchinterval()"}, "sys._getframe":{"name":"sys._getframe","type":"sys","path":"python/sys.html#sys._getframe","desc":"从调用堆栈中返回一个框架对象"}, "sys.getprofile":{"name":"sys.getprofile","type":"sys","path":"python/sys.html#sys.getprofile","desc":"Get the profiler function as set by setprofile()"}, "sys.gettrace":{"name":"sys.gettrace","type":"sys","path":"python/sys.html#sys.gettrace","desc":"获取由settrace()设置的跟踪函数"}, "sys.getwindowsversion":{"name":"sys.getwindowsversion","type":"sys","path":"python/sys.html#sys.getwindowsversion","desc":"返回描述当前正在运行的Windows版本的命名元组"}, "sys.get_coroutine_wrapper":{"name":"sys.get_coroutine_wrapper","type":"sys","path":"python/sys.html#sys.get_coroutine_wrapper","desc":"返回None,或由set_coroutine_wrapper()设置的包装器"}, "sys.intern":{"name":"sys.intern","type":"sys","path":"python/sys.html#sys.intern","desc":"在“interned”字符串表中输入字符串,并返回字符串 - 字符串本身或副本"}, "sys.is_finalizing":{"name":"sys.is_finalizing","type":"sys","path":"python/sys.html#sys.is_finalizing","desc":"如果Python解释器shutting down,则返回True,否则返回False"}, "sys.setcheckinterval":{"name":"sys.setcheckinterval","type":"sys","path":"python/sys.html#sys.setcheckinterval","desc":"设置解释器的“检查间隔”"}, "sys.setdlopenflags":{"name":"sys.setdlopenflags","type":"sys","path":"python/sys.html#sys.setdlopenflags","desc":"设置解释器用于dlopen()调用的标志,例如当解释器加载扩展模块时"}, "sys.setrecursionlimit":{"name":"sys.setrecursionlimit","type":"sys","path":"python/sys.html#sys.setrecursionlimit","desc":"将Python解释器堆栈的最大深度设置为limit"}, "sys.setswitchinterval":{"name":"sys.setswitchinterval","type":"sys","path":"python/sys.html#sys.setswitchinterval","desc":"设置解释器的线程切换间隔(以秒为单位)"}, "sys.settrace":{"name":"sys.settrace","type":"sys","path":"python/sys.html#sys.settrace","desc":"设置系统的跟踪功能,它允许你在Python中实现一个Python源代码调试器"}, "sys.settscdump":{"name":"sys.settscdump","type":"sys","path":"python/sys.html#sys.settscdump","desc":"如果on_flag为真,则使用Pentium时间戳计数器激活VM测量结果的转储"}, "sys.set_coroutine_wrapper":{"name":"sys.set_coroutine_wrapper","type":"sys","path":"python/sys.html#sys.set_coroutine_wrapper","desc":"Allows intercepting creation of coroutine objects (only ones that are created by an async def function; generators decorated with types"}, "sys.abiflags":{"name":"sys.abiflags","type":"sys","path":"python/sys.html#sys.abiflags","desc":"在使用标准configure脚本构建Python的POSIX系统上,它包含由 PEP 3149指定的ABI标志"}, "sys.argv":{"name":"sys.argv","type":"sys","path":"python/sys.html#sys.argv","desc":"传递给Python脚本的命令行参数列表"}, "sys.base_exec_prefix":{"name":"sys.base_exec_prefix","type":"sys","path":"python/sys.html#sys.base_exec_prefix","desc":"在Python启动过程中,在site"}, "sys.base_prefix":{"name":"sys.base_prefix","type":"sys","path":"python/sys.html#sys.base_prefix","desc":"在Python启动过程中,在site"}, "sys.byteorder":{"name":"sys.byteorder","type":"sys","path":"python/sys.html#sys.byteorder","desc":"本地字节顺序的指示符"}, "sys.builtin_module_names":{"name":"sys.builtin_module_names","type":"sys","path":"python/sys.html#sys.builtin_module_names","desc":"一个字符串元组,给出了编译到这个Python解释器中的所有模块的名称"}, "sys.copyright":{"name":"sys.copyright","type":"sys","path":"python/sys.html#sys.copyright","desc":"包含与Python解释器相关的版权的字符串"}, "sys.dllhandle":{"name":"sys.dllhandle","type":"sys","path":"python/sys.html#sys.dllhandle","desc":"整数指定Python DLL的句柄"}, "sys.dont_write_bytecode":{"name":"sys.dont_write_bytecode","type":"sys","path":"python/sys.html#sys.dont_write_bytecode","desc":"如果这是真的,Python将不会尝试在导入源模块时编写"}, "sys.__displayhook__":{"name":"sys.__displayhook__","type":"sys","path":"python/sys.html#sys.__displayhook__","desc":"这些对象在程序开始时包含displayhook和excepthook的原始值"}, "sys.exec_prefix":{"name":"sys.exec_prefix","type":"sys","path":"python/sys.html#sys.exec_prefix","desc":"一个字符串,其中给出了特定于站点的目录前缀,其中安装了与平台相关的Python文件;默认情况下,这也是'/usr/local'"}, "sys.executable":{"name":"sys.executable","type":"sys","path":"python/sys.html#sys.executable","desc":"一个字符串,给出Python解释器的可执行二进制文件的绝对路径,在这种情况下是合理的"}, "sys.flags":{"name":"sys.flags","type":"sys","path":"python/sys.html#sys.flags","desc":"struct sequence flags暴露了命令行标志的状态"}, "sys.float_info":{"name":"sys.float_info","type":"sys","path":"python/sys.html#sys.float_info","desc":"包含关于浮点类型信息的struct sequence"}, "sys.float_repr_style":{"name":"sys.float_repr_style","type":"sys","path":"python/sys.html#sys.float_repr_style","desc":"一个字符串,指示repr()函数如何为浮点操作"}, "sys.hash_info":{"name":"sys.hash_info","type":"sys","path":"python/sys.html#sys.hash_info","desc":"给出数字散列实现参数的struct sequence"}, "sys.hexversion":{"name":"sys.hexversion","type":"sys","path":"python/sys.html#sys.hexversion","desc":"版本号编码为单个整数"}, "sys.implementation":{"name":"sys.implementation","type":"sys","path":"python/sys.html#sys.implementation","desc":"包含有关当前正在运行的Python解释器的实现信息的对象"}, "sys.int_info":{"name":"sys.int_info","type":"sys","path":"python/sys.html#sys.int_info","desc":"一个struct sequence,它包含关于Python内部整数表示的信息"}, "sys.__interactivehook__":{"name":"sys.__interactivehook__","type":"sys","path":"python/sys.html#sys.__interactivehook__","desc":"当该属性存在时,当解释器以interactive mode启动时,它的值会自动调用(不带参数)"}, "sys.last_type":{"name":"sys.last_type","type":"sys","path":"python/sys.html#sys.last_type","desc":"这三个变量并不总是被定义的;它们在未处理异常时设置,并且解释器打印错误消息和堆栈回溯"}, "sys.maxsize":{"name":"sys.maxsize","type":"sys","path":"python/sys.html#sys.maxsize","desc":"一个给出最大值的整数是一个Py_ssize_t类型的变量"}, "sys.maxunicode":{"name":"sys.maxunicode","type":"sys","path":"python/sys.html#sys.maxunicode","desc":"一个给出最大Unicode码点值的整数,即1114111(0x10FFFF,十六进制)"}, "sys.meta_path":{"name":"sys.meta_path","type":"sys","path":"python/sys.html#sys.meta_path","desc":"调用其find_spec()方法的meta path finder对象的列表,以查看其中一个对象是否可以找到要导入的模块"}, "sys.modules":{"name":"sys.modules","type":"sys","path":"python/sys.html#sys.modules","desc":"这是一个将模块名称映射到已经加载的模块的字典"}, "sys.path":{"name":"sys.path","type":"sys","path":"python/sys.html#sys.path","desc":"指定模块搜索路径的字符串列表"}, "sys.path_hooks":{"name":"sys.path_hooks","type":"sys","path":"python/sys.html#sys.path_hooks","desc":"可以使用路径参数尝试为路径创建finder的可调用列表"}, "sys.path_importer_cache":{"name":"sys.path_importer_cache","type":"sys","path":"python/sys.html#sys.path_importer_cache","desc":"作为finder对象缓存的字典"}, "sys.platform":{"name":"sys.platform","type":"sys","path":"python/sys.html#sys.platform","desc":"例如,该字符串包含一个平台标识符,可用于将特定于平台的组件附加到sys"}, "sys.prefix":{"name":"sys.prefix","type":"sys","path":"python/sys.html#sys.prefix","desc":"一个字符串,它给出了特定于站点的目录前缀,其中安装了与平台无关的Python文件;默认情况下,这是字符串'/usr/local'"}, "sys.ps1":{"name":"sys.ps1","type":"sys","path":"python/sys.html#sys.ps1","desc":"指定解释器的主要和次要提示的字符串"}, "sys.stdin":{"name":"sys.stdin","type":"sys","path":"python/sys.html#sys.stdin","desc":"解释器用于标准输入,输出和错误的File objects:"}, "sys.__stdin__":{"name":"sys.__stdin__","type":"sys","path":"python/sys.html#sys.__stdin__","desc":"这些对象在程序开始时包含stdin,stderr和stdout的原始值"}, "sys.thread_info":{"name":"sys.thread_info","type":"sys","path":"python/sys.html#sys.thread_info","desc":"包含关于线程实现的信息的struct sequence"}, "sys.tracebacklimit":{"name":"sys.tracebacklimit","type":"sys","path":"python/sys.html#sys.tracebacklimit","desc":"当此变量设置为整数值时,它确定发生未处理的异常时打印的追溯信息的最大级别数"}, "sys.version":{"name":"sys.version","type":"sys","path":"python/sys.html#sys.version","desc":"一个字符串,其中包含Python解释器的版本号以及所使用的内部版本号和编译器的附加信息"}, "sys.api_version":{"name":"sys.api_version","type":"sys","path":"python/sys.html#sys.api_version","desc":"此解释器的C API版本"}, "sys.version_info":{"name":"sys.version_info","type":"sys","path":"python/sys.html#sys.version_info","desc":"一个包含版本号五个组成部分的元组:major、minor、micro、releaselevel和serial"}, "sys.warnoptions":{"name":"sys.warnoptions","type":"sys","path":"python/sys.html#sys.warnoptions","desc":"这是警告框架的实施细节;不要修改这个值"}, "sys.winver":{"name":"sys.winver","type":"sys","path":"python/sys.html#sys.winver","desc":"用于在Windows平台上形成注册表项的版本号"}, "sys._xoptions":{"name":"sys._xoptions","type":"sys","path":"python/sys.html#sys._xoptions","desc":"通过-X命令行选项传递的各种实现特定标志的字典"}, "sysconfig.get_config_vars":{"name":"sysconfig.get_config_vars","type":"sysconfig","path":"python/sysconfig.html#sysconfig.get_config_vars","desc":"没有参数,返回与当前平台相关的所有配置变量的字典"}, "sysconfig.get_config_var":{"name":"sysconfig.get_config_var","type":"sysconfig","path":"python/sysconfig.html#sysconfig.get_config_var","desc":"返回单个变量名称的值"}, "sysconfig.get_scheme_names":{"name":"sysconfig.get_scheme_names","type":"sysconfig","path":"python/sysconfig.html#sysconfig.get_scheme_names","desc":"返回包含sysconfig中当前支持的所有方案的元组"}, "sysconfig.get_path_names":{"name":"sysconfig.get_path_names","type":"sysconfig","path":"python/sysconfig.html#sysconfig.get_path_names","desc":"返回包含当前在sysconfig中支持的所有路径名的元组"}, "sysconfig.get_path":{"name":"sysconfig.get_path","type":"sysconfig","path":"python/sysconfig.html#sysconfig.get_path","desc":"从名为方案的安装方案中返回与路径名称对应的安装路径"}, "sysconfig.get_paths":{"name":"sysconfig.get_paths","type":"sysconfig","path":"python/sysconfig.html#sysconfig.get_paths","desc":"返回包含与安装方案对应的所有安装路径的字典"}, "sysconfig.get_python_version":{"name":"sysconfig.get_python_version","type":"sysconfig","path":"python/sysconfig.html#sysconfig.get_python_version","desc":"将MAJOR"}, "sysconfig.get_platform":{"name":"sysconfig.get_platform","type":"sysconfig","path":"python/sysconfig.html#sysconfig.get_platform","desc":"返回一个标识当前平台的字符串"}, "sysconfig.is_python_build":{"name":"sysconfig.is_python_build","type":"sysconfig","path":"python/sysconfig.html#sysconfig.is_python_build","desc":"如果当前Python安装是从源代码构建的,则返回True"}, "sysconfig.parse_config_h":{"name":"sysconfig.parse_config_h","type":"sysconfig","path":"python/sysconfig.html#sysconfig.parse_config_h","desc":"解析config"}, "sysconfig.get_config_h_filename":{"name":"sysconfig.get_config_h_filename","type":"sysconfig","path":"python/sysconfig.html#sysconfig.get_config_h_filename","desc":"返回pyconfig"}, "sysconfig.get_makefile_filename":{"name":"sysconfig.get_makefile_filename","type":"sysconfig","path":"python/sysconfig.html#sysconfig.get_makefile_filename","desc":"返回Makefile的路径"}, "syslog.syslog":{"name":"syslog.syslog","type":"syslog","path":"python/syslog.html#syslog.syslog","desc":"将字符串消息发送到系统记录器"}, "syslog.openlog":{"name":"syslog.openlog","type":"syslog","path":"python/syslog.html#syslog.openlog","desc":"可以通过调用openlog()来设置后续syslog()调用的日志记录选项"}, "syslog.closelog":{"name":"syslog.closelog","type":"syslog","path":"python/syslog.html#syslog.closelog","desc":"重置系统日志模块值并调用系统库closelog()"}, "syslog.setlogmask":{"name":"syslog.setlogmask","type":"syslog","path":"python/syslog.html#syslog.setlogmask","desc":"将优先级掩码设置为maskpri,并返回上一个掩码值"}, "tabnanny.check":{"name":"tabnanny.check","type":"tabnanny","path":"python/tabnanny.html#tabnanny.check","desc":"如果file_or_dir是目录而不是符号链接,则递归下降由file_or_dir命名的目录树,检查所有"}, "tabnanny.tokeneater":{"name":"tabnanny.tokeneater","type":"tabnanny","path":"python/tabnanny.html#tabnanny.tokeneater","desc":"此函数由check()用作函数tokenize"}, "tabnanny.verbose":{"name":"tabnanny.verbose","type":"tabnanny","path":"python/tabnanny.html#tabnanny.verbose","desc":"指示是否打印详细消息的标志"}, "tabnanny.filename_only":{"name":"tabnanny.filename_only","type":"tabnanny","path":"python/tabnanny.html#tabnanny.filename_only","desc":"指示是否仅打印包含空格相关问题的文件的文件名的标志"}, "tarfile.open":{"name":"tarfile.open","type":"tarfile","path":"python/tarfile.html#tarfile.open","desc":"为路径名名称返回TarFile对象"}, "tarfile.is_tarfile":{"name":"tarfile.is_tarfile","type":"tarfile","path":"python/tarfile.html#tarfile.is_tarfile","desc":"返回True如果名称是tar存档文件,tarfile模块可以读取"}, "tarfile.ENCODING":{"name":"tarfile.ENCODING","type":"tarfile","path":"python/tarfile.html#tarfile.ENCODING","desc":"Windows上的默认字符编码:'utf-8'否则为sys"}, "tarfile.USTAR_FORMAT":{"name":"tarfile.USTAR_FORMAT","type":"tarfile","path":"python/tarfile.html#tarfile.USTAR_FORMAT","desc":"POSIX"}, "tarfile.GNU_FORMAT":{"name":"tarfile.GNU_FORMAT","type":"tarfile","path":"python/tarfile.html#tarfile.GNU_FORMAT","desc":"GNU tar格式"}, "tarfile.PAX_FORMAT":{"name":"tarfile.PAX_FORMAT","type":"tarfile","path":"python/tarfile.html#tarfile.PAX_FORMAT","desc":"POSIX"}, "tarfile.DEFAULT_FORMAT":{"name":"tarfile.DEFAULT_FORMAT","type":"tarfile","path":"python/tarfile.html#tarfile.DEFAULT_FORMAT","desc":"用于创建归档的默认格式"}, "tempfile.TemporaryFile":{"name":"tempfile.TemporaryFile","type":"tempfile","path":"python/tempfile.html#tempfile.TemporaryFile","desc":"返回一个类文件对象以提供临时的数据存储空间"}, "tempfile.NamedTemporaryFile":{"name":"tempfile.NamedTemporaryFile","type":"tempfile","path":"python/tempfile.html#tempfile.NamedTemporaryFile","desc":"此函数与TemporaryFile()完全一样,除了文件保证在文件系统中有一个可见的名称(在Unix上,目录项没有取消链接)"}, "tempfile.SpooledTemporaryFile":{"name":"tempfile.SpooledTemporaryFile","type":"tempfile","path":"python/tempfile.html#tempfile.SpooledTemporaryFile","desc":"This function operates exactly as TemporaryFile() does, except that data is spooled in memory until the file size exceeds max_size, or until the file’s fileno() method is called, at which point the contents are written to disk and operation proceeds as with TemporaryFile()"}, "tempfile.TemporaryDirectory":{"name":"tempfile.TemporaryDirectory","type":"tempfile","path":"python/tempfile.html#tempfile.TemporaryDirectory","desc":"此函数使用与mkdtemp()相同的规则安全地创建临时目录"}, "tempfile.mkstemp":{"name":"tempfile.mkstemp","type":"tempfile","path":"python/tempfile.html#tempfile.mkstemp","desc":"以最安全的方式创建临时文件"}, "tempfile.mkdtemp":{"name":"tempfile.mkdtemp","type":"tempfile","path":"python/tempfile.html#tempfile.mkdtemp","desc":"以最安全的方式创建临时目录"}, "tempfile.gettempdir":{"name":"tempfile.gettempdir","type":"tempfile","path":"python/tempfile.html#tempfile.gettempdir","desc":"返回用于临时文件的目录的名称"}, "tempfile.gettempdirb":{"name":"tempfile.gettempdirb","type":"tempfile","path":"python/tempfile.html#tempfile.gettempdirb","desc":"与gettempdir()相同,但返回值以字节为单位"}, "tempfile.gettempprefix":{"name":"tempfile.gettempprefix","type":"tempfile","path":"python/tempfile.html#tempfile.gettempprefix","desc":"返回用于创建临时文件的文件名前缀"}, "tempfile.gettempprefixb":{"name":"tempfile.gettempprefixb","type":"tempfile","path":"python/tempfile.html#tempfile.gettempprefixb","desc":"与gettempprefix()相同,但返回值以字节为单位"}, "tempfile.mktemp":{"name":"tempfile.mktemp","type":"tempfile","path":"python/tempfile.html#tempfile.mktemp","desc":"从版本2"}, "tempfile.tempdir":{"name":"tempfile.tempdir","type":"tempfile","path":"python/tempfile.html#tempfile.tempdir","desc":"当设置为除None之外的值时,此变量为此模块中定义的所有函数定义dir参数的默认值"}, "termios.tcgetattr":{"name":"termios.tcgetattr","type":"termios","path":"python/termios.html#termios.tcgetattr","desc":"Return a list containing the tty attributes for file descriptor fd, as follows: [iflag, oflag, cflag, lflag, ispeed, ospeed, cc] where cc is a list of the tty special characters (each a string of length 1, except the items with indices VMIN and VTIME, which are integers when these fields are defined)"}, "termios.tcsetattr":{"name":"termios.tcsetattr","type":"termios","path":"python/termios.html#termios.tcsetattr","desc":"从属性中设置文件描述器fd的tty属性,这是像tcgetattr()返回的列表"}, "termios.tcsendbreak":{"name":"termios.tcsendbreak","type":"termios","path":"python/termios.html#termios.tcsendbreak","desc":"发送休息描述器fd"}, "termios.tcdrain":{"name":"termios.tcdrain","type":"termios","path":"python/termios.html#termios.tcdrain","desc":"等待直到所有写入文件描述器fd的输出被发送"}, "termios.tcflush":{"name":"termios.tcflush","type":"termios","path":"python/termios.html#termios.tcflush","desc":"舍弃队列中的数据描述器fd"}, "termios.tcflow":{"name":"termios.tcflow","type":"termios","path":"python/termios.html#termios.tcflow","desc":"暂停或继续输入或输出到文件描述器fd"}, "test.support.forget":{"name":"test.support.forget","type":"test","path":"python/test.html#test.support.forget","desc":"从sys"}, "test.support.is_resource_enabled":{"name":"test.support.is_resource_enabled","type":"test","path":"python/test.html#test.support.is_resource_enabled","desc":"如果资源已启用并可用,则返回True"}, "test.support.requires":{"name":"test.support.requires","type":"test","path":"python/test.html#test.support.requires","desc":"引发ResourceDenied如果资源不可用"}, "test.support.findfile":{"name":"test.support.findfile","type":"test","path":"python/test.html#test.support.findfile","desc":"返回到名为filename的文件的路径"}, "test.support.run_unittest":{"name":"test.support.run_unittest","type":"test","path":"python/test.html#test.support.run_unittest","desc":"执行传递给函数的unittest"}, "test.support.run_doctest":{"name":"test.support.run_doctest","type":"test","path":"python/test.html#test.support.run_doctest","desc":"在给定的模块上运行doctest"}, "test.support.check_warnings":{"name":"test.support.check_warnings","type":"test","path":"python/test.html#test.support.check_warnings","desc":"warnings"}, "test.support.captured_stdin":{"name":"test.support.captured_stdin","type":"test","path":"python/test.html#test.support.captured_stdin","desc":"使用io"}, "test.support.temp_dir":{"name":"test.support.temp_dir","type":"test","path":"python/test.html#test.support.temp_dir","desc":"在路径创建临时目录并生成目录的上下文管理器"}, "test.support.change_cwd":{"name":"test.support.change_cwd","type":"test","path":"python/test.html#test.support.change_cwd","desc":"临时将当前工作目录更改为路径并生成目录的上下文管理器"}, "test.support.temp_cwd":{"name":"test.support.temp_cwd","type":"test","path":"python/test.html#test.support.temp_cwd","desc":"临时创建新目录并更改当前工作目录(CWD)的上下文管理器"}, "test.support.temp_umask":{"name":"test.support.temp_umask","type":"test","path":"python/test.html#test.support.temp_umask","desc":"临时设置进程umask的上下文管理器"}, "test.support.can_symlink":{"name":"test.support.can_symlink","type":"test","path":"python/test.html#test.support.can_symlink","desc":"如果操作系统支持符号链接,则返回True,否则返回False"}, "test.support.skip_unless_symlink":{"name":"test.support.skip_unless_symlink","type":"test","path":"python/test.html#test.support.skip_unless_symlink","desc":"一个装饰器,用于运行需要支持符号链接的测试"}, "test.support.anticipate_failure":{"name":"test.support.anticipate_failure","type":"test","path":"python/test.html#test.support.anticipate_failure","desc":"有条件地使用unittest"}, "test.support.run_with_locale":{"name":"test.support.run_with_locale","type":"test","path":"python/test.html#test.support.run_with_locale","desc":"装饰器,用于在不同的场所运行功能,在完成后正确地重置它"}, "test.support.make_bad_fd":{"name":"test.support.make_bad_fd","type":"test","path":"python/test.html#test.support.make_bad_fd","desc":"通过打开和关闭临时文件,并返回其描述器,创建一个无效的文件描述器"}, "test.support.import_module":{"name":"test.support.import_module","type":"test","path":"python/test.html#test.support.import_module","desc":"此函数导入并返回指定的模块"}, "test.support.import_fresh_module":{"name":"test.support.import_fresh_module","type":"test","path":"python/test.html#test.support.import_fresh_module","desc":"此函数通过在执行导入之前从sys"}, "test.support.bind_port":{"name":"test.support.bind_port","type":"test","path":"python/test.html#test.support.bind_port","desc":"将套接字绑定到一个空闲端口并返回端口号"}, "test.support.find_unused_port":{"name":"test.support.find_unused_port","type":"test","path":"python/test.html#test.support.find_unused_port","desc":"返回应该适合绑定的未使用端口"}, "test.support.load_package_tests":{"name":"test.support.load_package_tests","type":"test","path":"python/test.html#test.support.load_package_tests","desc":"通用实现用于测试包的unittest load_tests协议"}, "test.support.verbose":{"name":"test.support.verbose","type":"test","path":"python/test.html#test.support.verbose","desc":"True时启用详细输出"}, "test.support.is_jython":{"name":"test.support.is_jython","type":"test","path":"python/test.html#test.support.is_jython","desc":"True如果正在运行的解释器是Jython"}, "test.support.TESTFN":{"name":"test.support.TESTFN","type":"test","path":"python/test.html#test.support.TESTFN","desc":"设置为可安全用作临时文件名称的名称"}, "textwrap.wrap":{"name":"textwrap.wrap","type":"textwrap","path":"python/textwrap.html#textwrap.wrap","desc":"将单个段落包含在text(一个字符串)中,以使每行最多width个字符长"}, "textwrap.fill":{"name":"textwrap.fill","type":"textwrap","path":"python/textwrap.html#textwrap.fill","desc":"将单个段落包含在文本中,并返回包含包装段落的单个字符串"}, "textwrap.shorten":{"name":"textwrap.shorten","type":"textwrap","path":"python/textwrap.html#textwrap.shorten","desc":"折叠并截断给定的文本以适合给定的宽度"}, "textwrap.dedent":{"name":"textwrap.dedent","type":"textwrap","path":"python/textwrap.html#textwrap.dedent","desc":"从文本中的每一行中删除任何常见的前导空格"}, "textwrap.indent":{"name":"textwrap.indent","type":"textwrap","path":"python/textwrap.html#textwrap.indent","desc":"将前缀添加到文本中选定行的开头"}, "threading.active_count":{"name":"threading.active_count","type":"threading","path":"python/threading.html#threading.active_count","desc":"返回当前处于alive状态的Thread对象的个数"}, "threading.current_thread":{"name":"threading.current_thread","type":"threading","path":"python/threading.html#threading.current_thread","desc":"返回当前的Thread对象,对应于调用者控制的线程"}, "threading.get_ident":{"name":"threading.get_ident","type":"threading","path":"python/threading.html#threading.get_ident","desc":"返回当前线程的'线程标识符'"}, "threading.enumerate":{"name":"threading.enumerate","type":"threading","path":"python/threading.html#threading.enumerate","desc":"返回当前活着的Thread对象的列表"}, "threading.main_thread":{"name":"threading.main_thread","type":"threading","path":"python/threading.html#threading.main_thread","desc":"返回主 Thread 对象"}, "threading.settrace":{"name":"threading.settrace","type":"threading","path":"python/threading.html#threading.settrace","desc":"为所有从threading模块启动的线程设置一个跟踪函数"}, "threading.setprofile":{"name":"threading.setprofile","type":"threading","path":"python/threading.html#threading.setprofile","desc":"为所有从threading模块启动的线程设置一个profile函数"}, "threading.stack_size":{"name":"threading.stack_size","type":"threading","path":"python/threading.html#threading.stack_size","desc":"返回创建新的线程时该线程使用的栈的大小"}, "threading.TIMEOUT_MAX":{"name":"threading.TIMEOUT_MAX","type":"threading","path":"python/threading.html#threading.TIMEOUT_MAX","desc":"这个 timeout参数表示阻塞函数 (Lock"}, "time.asctime":{"name":"time.asctime","type":"time","path":"python/time.html#time.asctime","desc":"将表示由gmtime()或localtime()返回的时间的元组或struct_time转换为以下形式的字符串:'Sun Jun 20 23:21:05 1993' "}, "time.clock":{"name":"time.clock","type":"time","path":"python/time.html#time.clock","desc":"在Unix上,返回当前处理器时间,以浮点数表示,以秒为单位"}, "time.clock_getres":{"name":"time.clock_getres","type":"time","path":"python/time.html#time.clock_getres","desc":"返回指定时钟clk_id的分辨率(精度)"}, "time.clock_gettime":{"name":"time.clock_gettime","type":"time","path":"python/time.html#time.clock_gettime","desc":"返回指定时钟clk_id的时间"}, "time.clock_settime":{"name":"time.clock_settime","type":"time","path":"python/time.html#time.clock_settime","desc":"设置指定时钟clk_id的时间"}, "time.ctime":{"name":"time.ctime","type":"time","path":"python/time.html#time.ctime","desc":"将从纪元开始以秒表示的时间转换为表示本地时间的字符串"}, "time.get_clock_info":{"name":"time.get_clock_info","type":"time","path":"python/time.html#time.get_clock_info","desc":"获取指定时钟作为命名空间对象的信息"}, "time.gmtime":{"name":"time.gmtime","type":"time","path":"python/time.html#time.gmtime","desc":"将从纪元开始以秒表示的时间转换为UTC中的struct_time,其中dst标志始终为零"}, "time.localtime":{"name":"time.localtime","type":"time","path":"python/time.html#time.localtime","desc":"像gmtime()但转换为本地时间"}, "time.mktime":{"name":"time.mktime","type":"time","path":"python/time.html#time.mktime","desc":"这是localtime()的反函数"}, "time.monotonic":{"name":"time.monotonic","type":"time","path":"python/time.html#time.monotonic","desc":"返回单调时钟的值(以分秒为单位),即一个不能倒退的时钟"}, "time.perf_counter":{"name":"time.perf_counter","type":"time","path":"python/time.html#time.perf_counter","desc":"返回性能计数器的值(以分数秒为单位),即具有最高可用分辨率的时钟来测量短持续时间"}, "time.process_time":{"name":"time.process_time","type":"time","path":"python/time.html#time.process_time","desc":"返回当前进程的系统和用户CPU时间之和的值(以分数秒为单位)"}, "time.sleep":{"name":"time.sleep","type":"time","path":"python/time.html#time.sleep","desc":"在给定的秒数内挂起调用线程的执行"}, "time.strftime":{"name":"time.strftime","type":"time","path":"python/time.html#time.strftime","desc":"将表示由gmtime()或localtime()返回的时间的元组或struct_time转换为由格式指定的字符串参数"}, "time.strptime":{"name":"time.strptime","type":"time","path":"python/time.html#time.strptime","desc":"根据格式解析表示时间的字符串"}, "time.time":{"name":"time.time","type":"time","path":"python/time.html#time.time","desc":"以秒为单位返回作为浮点数的时间"}, "time.tzset":{"name":"time.tzset","type":"time","path":"python/time.html#time.tzset","desc":"重置库例程使用的时间转换规则"}, "time.altzone":{"name":"time.altzone","type":"time","path":"python/time.html#time.altzone","desc":"默认情况返回一个以秒为单位UTC的本地DST时区偏移量,如果本地DST时区在UTC的东部(如在西欧,包括英国),则为负"}, "time.CLOCK_HIGHRES":{"name":"time.CLOCK_HIGHRES","type":"time","path":"python/time.html#time.CLOCK_HIGHRES","desc":"Solaris OS具有CLOCK_HIGHRES定时器,该定时器尝试使用最佳硬件源,并且可以提供接近纳秒的分辨率"}, "time.CLOCK_MONOTONIC":{"name":"time.CLOCK_MONOTONIC","type":"time","path":"python/time.html#time.CLOCK_MONOTONIC","desc":"无法设置的时钟,表示自某些未指定的起点后的单调时间"}, "time.CLOCK_MONOTONIC_RAW":{"name":"time.CLOCK_MONOTONIC_RAW","type":"time","path":"python/time.html#time.CLOCK_MONOTONIC_RAW","desc":"类似于CLOCK_MONOTONIC,但提供对不受NTP调整的基于硬件的原始时间的访问"}, "time.CLOCK_PROCESS_CPUTIME_ID":{"name":"time.CLOCK_PROCESS_CPUTIME_ID","type":"time","path":"python/time.html#time.CLOCK_PROCESS_CPUTIME_ID","desc":"来自CPU的高分辨率每进程定时器"}, "time.CLOCK_REALTIME":{"name":"time.CLOCK_REALTIME","type":"time","path":"python/time.html#time.CLOCK_REALTIME","desc":"系统级实时时钟"}, "time.CLOCK_THREAD_CPUTIME_ID":{"name":"time.CLOCK_THREAD_CPUTIME_ID","type":"time","path":"python/time.html#time.CLOCK_THREAD_CPUTIME_ID","desc":"线程特定的CPU时钟"}, "time.daylight":{"name":"time.daylight","type":"time","path":"python/time.html#time.daylight","desc":"如果定义了DST时区,则为非零"}, "time.timezone":{"name":"time.timezone","type":"time","path":"python/time.html#time.timezone","desc":"本地(非DST)时区的偏移量,以UTC以内的秒为单位(西欧大部分地区为负,美国为正,英国为零)"}, "time.tzname":{"name":"time.tzname","type":"time","path":"python/time.html#time.tzname","desc":"两个字符串的元组:第一个是本地非DST时区的名称,第二个是本地DST时区的名称"}, "timeit.timeit":{"name":"timeit.timeit","type":"timeit","path":"python/timeit.html#timeit.timeit","desc":"用给定的statement,setup代码和timer函数创建一个Timer实例,然后运行它的timeit()方法执行number指定的次数"}, "timeit.repeat":{"name":"timeit.repeat","type":"timeit","path":"python/timeit.html#timeit.repeat","desc":"用给定的statement,setup代码和timer函数创建一个Timer实例,并循环运行repeat()方法直到repeat指定的计数,每次计数中代码运行number指定的执行次数"}, "timeit.default_timer":{"name":"timeit.default_timer","type":"timeit","path":"python/timeit.html#timeit.default_timer","desc":"默认计时器,始终为time"}, "tkinter.Tcl":{"name":"tkinter.Tcl","type":"tkinter","path":"python/tkinter.html#tkinter.Tcl","desc":"Tcl() 函数是一个工厂函数,创造了一个像那样 Tk 类创建的对象,除了它不会初始化Tk 子系统"}, "tkinter.READABLE":{"name":"tkinter.READABLE","type":"tkinter","path":"python/tkinter.html#tkinter.READABLE","desc":"在掩码参数中使用的常量"}, "token.ISTERMINAL":{"name":"token.ISTERMINAL","type":"token","path":"python/token.html#token.ISTERMINAL","desc":"对终端令牌值返回true"}, "token.ISNONTERMINAL":{"name":"token.ISNONTERMINAL","type":"token","path":"python/token.html#token.ISNONTERMINAL","desc":"对非终端令牌值返回true"}, "token.ISEOF":{"name":"token.ISEOF","type":"token","path":"python/token.html#token.ISEOF","desc":"如果x是指示输入结束的标记,则返回true"}, "token.tok_name":{"name":"token.tok_name","type":"token","path":"python/token.html#token.tok_name","desc":"将此模块中定义的常量的数字值映射回名称字符串的字典,从而允许生成更加人性化的解析树表示"}, "token.ENDMARKER":{"name":"token.ENDMARKER","type":"token","path":"python/token.html#token.ENDMARKER","desc":"在3"}, "tokenize.tokenize":{"name":"tokenize.tokenize","type":"tokenize","path":"python/tokenize.html#tokenize.tokenize","desc":"tokenize()生成器需要一个参数readline,它必须是一个可调用对象,它提供与io"}, "tokenize.untokenize":{"name":"tokenize.untokenize","type":"tokenize","path":"python/tokenize.html#tokenize.untokenize","desc":"将令牌转换回Python源代码"}, "tokenize.detect_encoding":{"name":"tokenize.detect_encoding","type":"tokenize","path":"python/tokenize.html#tokenize.detect_encoding","desc":"detect_encoding()函数用于检测应用于解码Python源文件的编码"}, "tokenize.open":{"name":"tokenize.open","type":"tokenize","path":"python/tokenize.html#tokenize.open","desc":"使用由detect_encoding()检测到的编码以只读模式打开文件"}, "tokenize.COMMENT":{"name":"tokenize.COMMENT","type":"tokenize","path":"python/tokenize.html#tokenize.COMMENT","desc":"用于表示注释的令牌值"}, "tokenize.NL":{"name":"tokenize.NL","type":"tokenize","path":"python/tokenize.html#tokenize.NL","desc":"用于表示非终止换行符的令牌值"}, "tokenize.ENCODING":{"name":"tokenize.ENCODING","type":"tokenize","path":"python/tokenize.html#tokenize.ENCODING","desc":"表示用于将源字节解码为文本的编码的令牌值"}, "traceback.print_tb":{"name":"traceback.print_tb","type":"traceback","path":"python/traceback.html#traceback.print_tb","desc":"如果limit为正,则从跟踪对象tb打印限制堆栈跟踪条目"}, "traceback.print_exception":{"name":"traceback.print_exception","type":"traceback","path":"python/traceback.html#traceback.print_exception","desc":"从追踪对象tb到文件中打印异常信息和堆栈跟踪条目"}, "traceback.print_exc":{"name":"traceback.print_exc","type":"traceback","path":"python/traceback.html#traceback.print_exc","desc":"这是print_exception(* sys"}, "traceback.print_last":{"name":"traceback.print_last","type":"traceback","path":"python/traceback.html#traceback.print_last","desc":"这是print_exception(sys"}, "traceback.print_stack":{"name":"traceback.print_stack","type":"traceback","path":"python/traceback.html#traceback.print_stack","desc":"如果limit为正,则打印到limit堆栈跟踪条目(从调用点开始)"}, "traceback.extract_tb":{"name":"traceback.extract_tb","type":"traceback","path":"python/traceback.html#traceback.extract_tb","desc":"返回从追溯对象tb提取的“预处理”堆栈跟踪条目的列表"}, "traceback.extract_stack":{"name":"traceback.extract_stack","type":"traceback","path":"python/traceback.html#traceback.extract_stack","desc":"从当前堆栈帧提取原始追溯"}, "traceback.format_list":{"name":"traceback.format_list","type":"traceback","path":"python/traceback.html#traceback.format_list","desc":"给定由extract_tb()或extract_stack()返回的元组列表,返回一个准备打印的字符串列表"}, "traceback.format_exception_only":{"name":"traceback.format_exception_only","type":"traceback","path":"python/traceback.html#traceback.format_exception_only","desc":"格式化回溯的异常部分"}, "traceback.format_exception":{"name":"traceback.format_exception","type":"traceback","path":"python/traceback.html#traceback.format_exception","desc":"格式化堆栈跟踪和异常信息"}, "traceback.format_exc":{"name":"traceback.format_exc","type":"traceback","path":"python/traceback.html#traceback.format_exc","desc":"这类似于print_exc(limit)但返回一个字符串,而不是打印到文件"}, "traceback.format_tb":{"name":"traceback.format_tb","type":"traceback","path":"python/traceback.html#traceback.format_tb","desc":"format_list(extract_tb(tb, limit))的简写"}, "traceback.format_stack":{"name":"traceback.format_stack","type":"traceback","path":"python/traceback.html#traceback.format_stack","desc":"format_list(extract_stack(f, limit))的简写"}, "traceback.clear_frames":{"name":"traceback.clear_frames","type":"traceback","path":"python/traceback.html#traceback.clear_frames","desc":"通过调用每个帧对象的clear()方法,清除回溯tb中所有堆栈帧的局部变量"}, "traceback.walk_stack":{"name":"traceback.walk_stack","type":"traceback","path":"python/traceback.html#traceback.walk_stack","desc":"从给定帧中跟踪f"}, "traceback.walk_tb":{"name":"traceback.walk_tb","type":"traceback","path":"python/traceback.html#traceback.walk_tb","desc":"在tb_next之后执行回溯,得到每个帧的帧和行号"}, "tracemalloc.clear_traces":{"name":"tracemalloc.clear_traces","type":"tracemalloc","path":"python/tracemalloc.html#tracemalloc.clear_traces","desc":"清除Python分配的内存块的痕迹"}, "tracemalloc.get_object_traceback":{"name":"tracemalloc.get_object_traceback","type":"tracemalloc","path":"python/tracemalloc.html#tracemalloc.get_object_traceback","desc":"获取分配了Python对象obj的traceback"}, "tracemalloc.get_traceback_limit":{"name":"tracemalloc.get_traceback_limit","type":"tracemalloc","path":"python/tracemalloc.html#tracemalloc.get_traceback_limit","desc":"获取跟踪的回溯中存储的最大帧数"}, "tracemalloc.get_traced_memory":{"name":"tracemalloc.get_traced_memory","type":"tracemalloc","path":"python/tracemalloc.html#tracemalloc.get_traced_memory","desc":"以tracemalloc模块作为元组获取由其跟踪的内存块的当前大小和峰值大小:(current: int, peak: int)"}, "tracemalloc.get_tracemalloc_memory":{"name":"tracemalloc.get_tracemalloc_memory","type":"tracemalloc","path":"python/tracemalloc.html#tracemalloc.get_tracemalloc_memory","desc":"获取用于存储内存块的跟踪的tracemalloc模块的内存使用情况(以字节为单位)"}, "tracemalloc.is_tracing":{"name":"tracemalloc.is_tracing","type":"tracemalloc","path":"python/tracemalloc.html#tracemalloc.is_tracing","desc":"True如果tracemalloc模块正在跟踪Python内存分配,则False"}, "tracemalloc.start":{"name":"tracemalloc.start","type":"tracemalloc","path":"python/tracemalloc.html#tracemalloc.start","desc":"开始跟踪Python内存分配:在Python内存分配器上安装钩子"}, "tracemalloc.stop":{"name":"tracemalloc.stop","type":"tracemalloc","path":"python/tracemalloc.html#tracemalloc.stop","desc":"停止跟踪Python内存分配:卸载Python内存分配器上的钩子"}, "tracemalloc.take_snapshot":{"name":"tracemalloc.take_snapshot","type":"tracemalloc","path":"python/tracemalloc.html#tracemalloc.take_snapshot","desc":"对由Python分配的内存块的痕迹进行快照"}, "tty.setraw":{"name":"tty.setraw","type":"tty","path":"python/tty.html#tty.setraw","desc":"将文件描述器fd的模式更改为raw"}, "tty.setcbreak":{"name":"tty.setcbreak","type":"tty","path":"python/tty.html#tty.setcbreak","desc":"将文件描述器fd的模式更改为cbreak"}, "turtle.forward":{"name":"turtle.forward","type":"turtle","path":"python/turtle.html#turtle.forward","desc":"按照指定的距离将龟向前移动"}, "turtle.back":{"name":"turtle.back","type":"turtle","path":"python/turtle.html#turtle.back","desc":"Move the turtle backward by distance, opposite to the direction the turtle is headed"}, "turtle.right":{"name":"turtle.right","type":"turtle","path":"python/turtle.html#turtle.right","desc":"Turn turtle right by angle units"}, "turtle.left":{"name":"turtle.left","type":"turtle","path":"python/turtle.html#turtle.left","desc":"Turn turtle left by angle units"}, "turtle.goto":{"name":"turtle.goto","type":"turtle","path":"python/turtle.html#turtle.goto","desc":"If y is None, x must be a pair of coordinates or a Vec2D (e"}, "turtle.setx":{"name":"turtle.setx","type":"turtle","path":"python/turtle.html#turtle.setx","desc":"Set the turtle’s first coordinate to x, leave second coordinate unchanged"}, "turtle.sety":{"name":"turtle.sety","type":"turtle","path":"python/turtle.html#turtle.sety","desc":"Set the turtle’s second coordinate to y, leave first coordinate unchanged"}, "turtle.setheading":{"name":"turtle.setheading","type":"turtle","path":"python/turtle.html#turtle.setheading","desc":"Set the orientation of the turtle to to_angle"}, "turtle.home":{"name":"turtle.home","type":"turtle","path":"python/turtle.html#turtle.home","desc":"Move turtle to the origin – coordinates (0,0) – and set its heading to its start-orientation (which depends on the mode, see mode())"}, "turtle.circle":{"name":"turtle.circle","type":"turtle","path":"python/turtle.html#turtle.circle","desc":"用给定的半径绘制一个圆圈"}, "turtle.dot":{"name":"turtle.dot","type":"turtle","path":"python/turtle.html#turtle.dot","desc":"Draw a circular dot with diameter size, using color"}, "turtle.stamp":{"name":"turtle.stamp","type":"turtle","path":"python/turtle.html#turtle.stamp","desc":"Stamp a copy of the turtle shape onto the canvas at the current turtle position"}, "turtle.clearstamp":{"name":"turtle.clearstamp","type":"turtle","path":"python/turtle.html#turtle.clearstamp","desc":"Delete stamp with given stampid"}, "turtle.clearstamps":{"name":"turtle.clearstamps","type":"turtle","path":"python/turtle.html#turtle.clearstamps","desc":"Delete all or first/last n of turtle’s stamps"}, "turtle.undo":{"name":"turtle.undo","type":"turtle","path":"python/turtle.html#turtle.undo","desc":"Undo (repeatedly) the last turtle action(s)"}, "turtle.speed":{"name":"turtle.speed","type":"turtle","path":"python/turtle.html#turtle.speed","desc":"Set the turtle’s speed to an integer value in the range 0"}, "turtle.position":{"name":"turtle.position","type":"turtle","path":"python/turtle.html#turtle.position","desc":"Return the turtle’s current location (x,y) (as a Vec2D vector)"}, "turtle.towards":{"name":"turtle.towards","type":"turtle","path":"python/turtle.html#turtle.towards","desc":"Return the angle between the line from turtle position to position specified by (x,y), the vector or the other turtle"}, "turtle.xcor":{"name":"turtle.xcor","type":"turtle","path":"python/turtle.html#turtle.xcor","desc":"Return the turtle’s x coordinate"}, "turtle.ycor":{"name":"turtle.ycor","type":"turtle","path":"python/turtle.html#turtle.ycor","desc":"Return the turtle’s y coordinate"}, "turtle.heading":{"name":"turtle.heading","type":"turtle","path":"python/turtle.html#turtle.heading","desc":"Return the turtle’s current heading (value depends on the turtle mode, see mode())"}, "turtle.distance":{"name":"turtle.distance","type":"turtle","path":"python/turtle.html#turtle.distance","desc":"Return the distance from the turtle to (x,y), the given vector, or the given other turtle, in turtle step units"}, "turtle.degrees":{"name":"turtle.degrees","type":"turtle","path":"python/turtle.html#turtle.degrees","desc":"Set angle measurement units, i"}, "turtle.radians":{"name":"turtle.radians","type":"turtle","path":"python/turtle.html#turtle.radians","desc":"Set the angle measurement units to radians"}, "turtle.pendown":{"name":"turtle.pendown","type":"turtle","path":"python/turtle.html#turtle.pendown","desc":"Pull the pen down – drawing when moving"}, "turtle.penup":{"name":"turtle.penup","type":"turtle","path":"python/turtle.html#turtle.penup","desc":"Pull the pen up – no drawing when moving"}, "turtle.pensize":{"name":"turtle.pensize","type":"turtle","path":"python/turtle.html#turtle.pensize","desc":"Set the line thickness to width or return it"}, "turtle.pen":{"name":"turtle.pen","type":"turtle","path":"python/turtle.html#turtle.pen","desc":"Return or set the pen’s attributes in a “pen-dictionary” with the following key/value pairs:"}, "turtle.isdown":{"name":"turtle.isdown","type":"turtle","path":"python/turtle.html#turtle.isdown","desc":"Return True if pen is down, False if it’s up"}, "turtle.pencolor":{"name":"turtle.pencolor","type":"turtle","path":"python/turtle.html#turtle.pencolor","desc":"Return or set the pencolor"}, "turtle.fillcolor":{"name":"turtle.fillcolor","type":"turtle","path":"python/turtle.html#turtle.fillcolor","desc":"Return or set the fillcolor"}, "turtle.color":{"name":"turtle.color","type":"turtle","path":"python/turtle.html#turtle.color","desc":"Return or set pencolor and fillcolor"}, "turtle.filling":{"name":"turtle.filling","type":"turtle","path":"python/turtle.html#turtle.filling","desc":"Return fillstate (True if filling, False else)"}, "turtle.begin_fill":{"name":"turtle.begin_fill","type":"turtle","path":"python/turtle.html#turtle.begin_fill","desc":"To be called just before drawing a shape to be filled"}, "turtle.end_fill":{"name":"turtle.end_fill","type":"turtle","path":"python/turtle.html#turtle.end_fill","desc":"Fill the shape drawn after the last call to begin_fill()"}, "turtle.reset":{"name":"turtle.reset","type":"turtle","path":"python/turtle.html#turtle.reset","desc":"Delete the turtle’s drawings from the screen, re-center the turtle and set variables to the default values"}, "turtle.clear":{"name":"turtle.clear","type":"turtle","path":"python/turtle.html#turtle.clear","desc":"Delete the turtle’s drawings from the screen"}, "turtle.write":{"name":"turtle.write","type":"turtle","path":"python/turtle.html#turtle.write","desc":"Write text - the string representation of arg - at the current turtle position according to align (“left”, “center” or right”) and with the given font"}, "turtle.hideturtle":{"name":"turtle.hideturtle","type":"turtle","path":"python/turtle.html#turtle.hideturtle","desc":"Make the turtle invisible"}, "turtle.showturtle":{"name":"turtle.showturtle","type":"turtle","path":"python/turtle.html#turtle.showturtle","desc":"Make the turtle visible"}, "turtle.isvisible":{"name":"turtle.isvisible","type":"turtle","path":"python/turtle.html#turtle.isvisible","desc":"Return True if the Turtle is shown, False if it’s hidden"}, "turtle.shape":{"name":"turtle.shape","type":"turtle","path":"python/turtle.html#turtle.shape","desc":"Set turtle shape to shape with given name or, if name is not given, return name of current shape"}, "turtle.resizemode":{"name":"turtle.resizemode","type":"turtle","path":"python/turtle.html#turtle.resizemode","desc":"Set resizemode to one of the values: “auto”, “user”, “noresize”"}, "turtle.shapesize":{"name":"turtle.shapesize","type":"turtle","path":"python/turtle.html#turtle.shapesize","desc":"Return or set the pen’s attributes x/y-stretchfactors and/or outline"}, "turtle.shearfactor":{"name":"turtle.shearfactor","type":"turtle","path":"python/turtle.html#turtle.shearfactor","desc":"Set or return the current shearfactor"}, "turtle.tilt":{"name":"turtle.tilt","type":"turtle","path":"python/turtle.html#turtle.tilt","desc":"Rotate the turtleshape by angle from its current tilt-angle, but do not change the turtle’s heading (direction of movement)"}, "turtle.settiltangle":{"name":"turtle.settiltangle","type":"turtle","path":"python/turtle.html#turtle.settiltangle","desc":"Rotate the turtleshape to point in the direction specified by angle, regardless of its current tilt-angle"}, "turtle.tiltangle":{"name":"turtle.tiltangle","type":"turtle","path":"python/turtle.html#turtle.tiltangle","desc":"Set or return the current tilt-angle"}, "turtle.shapetransform":{"name":"turtle.shapetransform","type":"turtle","path":"python/turtle.html#turtle.shapetransform","desc":"Set or return the current transformation matrix of the turtle shape"}, "turtle.get_shapepoly":{"name":"turtle.get_shapepoly","type":"turtle","path":"python/turtle.html#turtle.get_shapepoly","desc":"Return the current shape polygon as tuple of coordinate pairs"}, "turtle.onclick":{"name":"turtle.onclick","type":"turtle","path":"python/turtle.html#turtle.onclick","desc":"Bind fun to mouse-click events on this turtle"}, "turtle.onrelease":{"name":"turtle.onrelease","type":"turtle","path":"python/turtle.html#turtle.onrelease","desc":"Bind fun to mouse-button-release events on this turtle"}, "turtle.ondrag":{"name":"turtle.ondrag","type":"turtle","path":"python/turtle.html#turtle.ondrag","desc":"Bind fun to mouse-move events on this turtle"}, "turtle.begin_poly":{"name":"turtle.begin_poly","type":"turtle","path":"python/turtle.html#turtle.begin_poly","desc":"Start recording the vertices of a polygon"}, "turtle.end_poly":{"name":"turtle.end_poly","type":"turtle","path":"python/turtle.html#turtle.end_poly","desc":"Stop recording the vertices of a polygon"}, "turtle.get_poly":{"name":"turtle.get_poly","type":"turtle","path":"python/turtle.html#turtle.get_poly","desc":"Return the last recorded polygon"}, "turtle.clone":{"name":"turtle.clone","type":"turtle","path":"python/turtle.html#turtle.clone","desc":"Create and return a clone of the turtle with same position, heading and turtle properties"}, "turtle.getturtle":{"name":"turtle.getturtle","type":"turtle","path":"python/turtle.html#turtle.getturtle","desc":"Return the Turtle object itself"}, "turtle.getscreen":{"name":"turtle.getscreen","type":"turtle","path":"python/turtle.html#turtle.getscreen","desc":"Return the TurtleScreen object the turtle is drawing on"}, "turtle.setundobuffer":{"name":"turtle.setundobuffer","type":"turtle","path":"python/turtle.html#turtle.setundobuffer","desc":"Set or disable undobuffer"}, "turtle.undobufferentries":{"name":"turtle.undobufferentries","type":"turtle","path":"python/turtle.html#turtle.undobufferentries","desc":"Return number of entries in the undobuffer"}, "turtle.bgcolor":{"name":"turtle.bgcolor","type":"turtle","path":"python/turtle.html#turtle.bgcolor","desc":"Set or return background color of the TurtleScreen"}, "turtle.bgpic":{"name":"turtle.bgpic","type":"turtle","path":"python/turtle.html#turtle.bgpic","desc":"Set background image or return name of current backgroundimage"}, "turtle.screensize":{"name":"turtle.screensize","type":"turtle","path":"python/turtle.html#turtle.screensize","desc":"If no arguments are given, return current (canvaswidth, canvasheight)"}, "turtle.setworldcoordinates":{"name":"turtle.setworldcoordinates","type":"turtle","path":"python/turtle.html#turtle.setworldcoordinates","desc":"Set up user-defined coordinate system and switch to mode “world” if necessary"}, "turtle.delay":{"name":"turtle.delay","type":"turtle","path":"python/turtle.html#turtle.delay","desc":"Set or return the drawing delay in milliseconds"}, "turtle.tracer":{"name":"turtle.tracer","type":"turtle","path":"python/turtle.html#turtle.tracer","desc":"打开/关闭乌龟动画并为更新图纸设置延迟"}, "turtle.update":{"name":"turtle.update","type":"turtle","path":"python/turtle.html#turtle.update","desc":"Perform a TurtleScreen update"}, "turtle.listen":{"name":"turtle.listen","type":"turtle","path":"python/turtle.html#turtle.listen","desc":"Set focus on TurtleScreen (in order to collect key-events)"}, "turtle.onkey":{"name":"turtle.onkey","type":"turtle","path":"python/turtle.html#turtle.onkey","desc":"Bind fun to key-release event of key"}, "turtle.onkeypress":{"name":"turtle.onkeypress","type":"turtle","path":"python/turtle.html#turtle.onkeypress","desc":"Bind fun to key-press event of key if key is given, or to any key-press-event if no key is given"}, "turtle.ontimer":{"name":"turtle.ontimer","type":"turtle","path":"python/turtle.html#turtle.ontimer","desc":"Install a timer that calls fun after t milliseconds"}, "turtle.mainloop":{"name":"turtle.mainloop","type":"turtle","path":"python/turtle.html#turtle.mainloop","desc":"开始事件循环 - 调用Tkinter的mainloop函数"}, "turtle.textinput":{"name":"turtle.textinput","type":"turtle","path":"python/turtle.html#turtle.textinput","desc":"Pop up a dialog window for input of a string"}, "turtle.numinput":{"name":"turtle.numinput","type":"turtle","path":"python/turtle.html#turtle.numinput","desc":"Pop up a dialog window for input of a number"}, "turtle.mode":{"name":"turtle.mode","type":"turtle","path":"python/turtle.html#turtle.mode","desc":"Set turtle mode (“standard”, “logo” or “world”) and perform reset"}, "turtle.colormode":{"name":"turtle.colormode","type":"turtle","path":"python/turtle.html#turtle.colormode","desc":"返回colormode或将其设置为1"}, "turtle.getcanvas":{"name":"turtle.getcanvas","type":"turtle","path":"python/turtle.html#turtle.getcanvas","desc":"Return the Canvas of this TurtleScreen"}, "turtle.getshapes":{"name":"turtle.getshapes","type":"turtle","path":"python/turtle.html#turtle.getshapes","desc":"Return a list of names of all currently available turtle shapes"}, "turtle.register_shape":{"name":"turtle.register_shape","type":"turtle","path":"python/turtle.html#turtle.register_shape","desc":"There are three different ways to call this function:"}, "turtle.turtles":{"name":"turtle.turtles","type":"turtle","path":"python/turtle.html#turtle.turtles","desc":"Return the list of turtles on the screen"}, "turtle.window_height":{"name":"turtle.window_height","type":"turtle","path":"python/turtle.html#turtle.window_height","desc":"Return the height of the turtle window"}, "turtle.window_width":{"name":"turtle.window_width","type":"turtle","path":"python/turtle.html#turtle.window_width","desc":"Return the width of the turtle window"}, "turtle.bye":{"name":"turtle.bye","type":"turtle","path":"python/turtle.html#turtle.bye","desc":"Shut the turtlegraphics window"}, "turtle.exitonclick":{"name":"turtle.exitonclick","type":"turtle","path":"python/turtle.html#turtle.exitonclick","desc":"Bind bye() method to mouse clicks on the Screen"}, "turtle.setup":{"name":"turtle.setup","type":"turtle","path":"python/turtle.html#turtle.setup","desc":"Set the size and position of the main window"}, "turtle.title":{"name":"turtle.title","type":"turtle","path":"python/turtle.html#turtle.title","desc":"Set title of turtle window to titlestring"}, "turtle.write_docstringdict":{"name":"turtle.write_docstringdict","type":"turtle","path":"python/turtle.html#turtle.write_docstringdict","desc":"Create and write docstring-dictionary to a Python script with the given filename"}, "types.new_class":{"name":"types.new_class","type":"types","path":"python/types.html#types.new_class","desc":"使用适当的元类动态创建类对象"}, "types.prepare_class":{"name":"types.prepare_class","type":"types","path":"python/types.html#types.prepare_class","desc":"计算适当的元类并创建类命名空间"}, "types.DynamicClassAttribute":{"name":"types.DynamicClassAttribute","type":"types","path":"python/types.html#types.DynamicClassAttribute","desc":"将类的路由属性访问权限授予__getattr__"}, "types.coroutine":{"name":"types.coroutine","type":"types","path":"python/types.html#types.coroutine","desc":"此函数将generator函数转换为coroutine function,返回基于生成器的协程"}, "types.FunctionType":{"name":"types.FunctionType","type":"types","path":"python/types.html#types.FunctionType","desc":"由lambda表达式创建的用户定义函数和函数的类型"}, "types.GeneratorType":{"name":"types.GeneratorType","type":"types","path":"python/types.html#types.GeneratorType","desc":"由生成器函数创建的generator - 类型对象"}, "types.CoroutineType":{"name":"types.CoroutineType","type":"types","path":"python/types.html#types.CoroutineType","desc":"由async def函数创建的coroutine对象的类型"}, "types.CodeType":{"name":"types.CodeType","type":"types","path":"python/types.html#types.CodeType","desc":"由compile()返回的代码对象的类型"}, "types.MethodType":{"name":"types.MethodType","type":"types","path":"python/types.html#types.MethodType","desc":"methodtype"}, "types.BuiltinFunctionType":{"name":"types.BuiltinFunctionType","type":"types","path":"python/types.html#types.BuiltinFunctionType","desc":"内建函数的类型如len()或sys"}, "types.TracebackType":{"name":"types.TracebackType","type":"types","path":"python/types.html#types.TracebackType","desc":"跟踪对象的类型,例如在sys"}, "types.FrameType":{"name":"types.FrameType","type":"types","path":"python/types.html#types.FrameType","desc":"如tb"}, "types.GetSetDescriptorType":{"name":"types.GetSetDescriptorType","type":"types","path":"python/types.html#types.GetSetDescriptorType","desc":"在扩展模块中使用PyGetSetDef定义的对象类型,例如FrameType"}, "types.MemberDescriptorType":{"name":"types.MemberDescriptorType","type":"types","path":"python/types.html#types.MemberDescriptorType","desc":"在扩展模块中使用PyMemberDef定义的对象类型,例如datetime"}, "typing.NamedTuple":{"name":"typing.NamedTuple","type":"typing","path":"python/typing.html#typing.NamedTuple","desc":"namedtuple的类型化版本"}, "typing.cast":{"name":"typing.cast","type":"typing","path":"python/typing.html#typing.cast","desc":"将值转换为类型"}, "typing.get_type_hints":{"name":"typing.get_type_hints","type":"typing","path":"python/typing.html#typing.get_type_hints","desc":"返回函数或方法对象的类型提示"}, "typing.no_type_check":{"name":"typing.no_type_check","type":"typing","path":"python/typing.html#typing.no_type_check","desc":"装饰器来指示注解不是类型提示"}, "typing.no_type_check_decorator":{"name":"typing.no_type_check_decorator","type":"typing","path":"python/typing.html#typing.no_type_check_decorator","desc":"装饰器给另一个装饰器no_type_check()效果"}, "unicodedata.lookup":{"name":"unicodedata.lookup","type":"unicodedata","path":"python/unicodedata.html#unicodedata.lookup","desc":"通过一个名称来查找字符"}, "unicodedata.name":{"name":"unicodedata.name","type":"unicodedata","path":"python/unicodedata.html#unicodedata.name","desc":"返回分配给字符chr的名称作为字符串"}, "unicodedata.decimal":{"name":"unicodedata.decimal","type":"unicodedata","path":"python/unicodedata.html#unicodedata.decimal","desc":"将分配给字符chr的十进制值作为整数返回"}, "unicodedata.digit":{"name":"unicodedata.digit","type":"unicodedata","path":"python/unicodedata.html#unicodedata.digit","desc":"将分配给字符chr的数字值作为整数返回"}, "unicodedata.numeric":{"name":"unicodedata.numeric","type":"unicodedata","path":"python/unicodedata.html#unicodedata.numeric","desc":"返回分配给字符chr的数值为float"}, "unicodedata.category":{"name":"unicodedata.category","type":"unicodedata","path":"python/unicodedata.html#unicodedata.category","desc":"将分配给字符chr的一般类别返回为字符串"}, "unicodedata.bidirectional":{"name":"unicodedata.bidirectional","type":"unicodedata","path":"python/unicodedata.html#unicodedata.bidirectional","desc":"以字符串形式返回分配给字符chr的双向类"}, "unicodedata.combining":{"name":"unicodedata.combining","type":"unicodedata","path":"python/unicodedata.html#unicodedata.combining","desc":"返回分配给字符chr的规范组合类作为整数"}, "unicodedata.east_asian_width":{"name":"unicodedata.east_asian_width","type":"unicodedata","path":"python/unicodedata.html#unicodedata.east_asian_width","desc":"将分配给字符chr的东亚宽度返回为字符串"}, "unicodedata.mirrored":{"name":"unicodedata.mirrored","type":"unicodedata","path":"python/unicodedata.html#unicodedata.mirrored","desc":"将分配给字符chr的镜像属性返回为整数"}, "unicodedata.decomposition":{"name":"unicodedata.decomposition","type":"unicodedata","path":"python/unicodedata.html#unicodedata.decomposition","desc":"以字符串形式返回分配给字符chr的字符分解映射"}, "unicodedata.normalize":{"name":"unicodedata.normalize","type":"unicodedata","path":"python/unicodedata.html#unicodedata.normalize","desc":"返回Unicode字符串unistr的form规范形式"}, "unicodedata.unidata_version":{"name":"unicodedata.unidata_version","type":"unicodedata","path":"python/unicodedata.html#unicodedata.unidata_version","desc":"此模块中使用的Unicode数据库的版本"}, "unicodedata.ucd_3_2_0":{"name":"unicodedata.ucd_3_2_0","type":"unicodedata","path":"python/unicodedata.html#unicodedata.ucd_3_2_0","desc":"这是一个与整个模块具有相同方法的对象,但对于需要此特定版本的Unicode数据库(例如IDNA)的应用程序,则使用Unicode数据库版本3"}, "unittest.skip":{"name":"unittest.skip","type":"unittest","path":"python/unittest.html#unittest.skip","desc":"Unconditionally skip the decorated test"}, "unittest.skipIf":{"name":"unittest.skipIf","type":"unittest","path":"python/unittest.html#unittest.skipIf","desc":"Skip the decorated test if condition is true"}, "unittest.skipUnless":{"name":"unittest.skipUnless","type":"unittest","path":"python/unittest.html#unittest.skipUnless","desc":"Skip the decorated test unless condition is true"}, "unittest.expectedFailure":{"name":"unittest.expectedFailure","type":"unittest","path":"python/unittest.html#unittest.expectedFailure","desc":"Mark the test as an expected failure"}, "unittest.main":{"name":"unittest.main","type":"unittest","path":"python/unittest.html#unittest.main","desc":"A command-line program that loads a set of tests from module and runs them; this is primarily for making test modules conveniently executable"}, "unittest.installHandler":{"name":"unittest.installHandler","type":"unittest","path":"python/unittest.html#unittest.installHandler","desc":"Install the control-c handler"}, "unittest.registerResult":{"name":"unittest.registerResult","type":"unittest","path":"python/unittest.html#unittest.registerResult","desc":"Register a TestResult object for control-c handling"}, "unittest.removeResult":{"name":"unittest.removeResult","type":"unittest","path":"python/unittest.html#unittest.removeResult","desc":"Remove a registered result"}, "unittest.removeHandler":{"name":"unittest.removeHandler","type":"unittest","path":"python/unittest.html#unittest.removeHandler","desc":"When called without arguments this function removes the control-c handler if it has been installed"}, "unittest.defaultTestLoader":{"name":"unittest.defaultTestLoader","type":"unittest","path":"python/unittest.html#unittest.defaultTestLoader","desc":"Instance of the TestLoader class intended to be shared"}, "unittest.mock.patch":{"name":"unittest.mock.patch","type":"unittest.mock","path":"python/unittest.mock.html#unittest.mock.patch","desc":"patch() acts as a function decorator, class decorator or a context manager"}, "unittest.mock.patch.object":{"name":"unittest.mock.patch.object","type":"unittest.mock","path":"python/unittest.mock.html#unittest.mock.patch.object","desc":"patch the named member (attribute) on an object (target) with a mock object"}, "unittest.mock.patch.dict":{"name":"unittest.mock.patch.dict","type":"unittest.mock","path":"python/unittest.mock.html#unittest.mock.patch.dict","desc":"Patch a dictionary, or dictionary like object, and restore the dictionary to its original state after the test"}, "unittest.mock.patch.multiple":{"name":"unittest.mock.patch.multiple","type":"unittest.mock","path":"python/unittest.mock.html#unittest.mock.patch.multiple","desc":"Perform multiple patches in a single call"}, "unittest.mock.patch.stopall":{"name":"unittest.mock.patch.stopall","type":"unittest.mock","path":"python/unittest.mock.html#unittest.mock.patch.stopall","desc":"Stop all active patches"}, "unittest.mock.call":{"name":"unittest.mock.call","type":"unittest.mock","path":"python/unittest.mock.html#unittest.mock.call","desc":"call() is a helper object for making simpler assertions, for comparing with call_args, call_args_list, mock_calls and method_calls"}, "unittest.mock.create_autospec":{"name":"unittest.mock.create_autospec","type":"unittest.mock","path":"python/unittest.mock.html#unittest.mock.create_autospec","desc":"Create a mock object using another object as a spec"}, "unittest.mock.mock_open":{"name":"unittest.mock.mock_open","type":"unittest.mock","path":"python/unittest.mock.html#unittest.mock.mock_open","desc":"A helper function to create a mock to replace the use of open()"}, "unittest.mock.sentinel":{"name":"unittest.mock.sentinel","type":"unittest.mock","path":"python/unittest.mock.html#unittest.mock.sentinel","desc":"The sentinel object provides a convenient way of providing unique objects for your tests"}, "unittest.mock.DEFAULT":{"name":"unittest.mock.DEFAULT","type":"unittest.mock","path":"python/unittest.mock.html#unittest.mock.DEFAULT","desc":"The DEFAULT object is a pre-created sentinel (actually sentinel"}, "urllib.parse.urlparse":{"name":"urllib.parse.urlparse","type":"urllib.parse","path":"python/urllib.parse.html#urllib.parse.urlparse","desc":"将URL解析为六个部分,返回一个6元组"}, "urllib.parse.parse_qs":{"name":"urllib.parse.parse_qs","type":"urllib.parse","path":"python/urllib.parse.html#urllib.parse.parse_qs","desc":"解析作为字符串参数(application / x-www-form-urlencoded类型的数据)提供的查询字符串"}, "urllib.parse.parse_qsl":{"name":"urllib.parse.parse_qsl","type":"urllib.parse","path":"python/urllib.parse.html#urllib.parse.parse_qsl","desc":"解析作为字符串参数(application / x-www-form-urlencoded类型的数据)提供的查询字符串"}, "urllib.parse.urlunparse":{"name":"urllib.parse.urlunparse","type":"urllib.parse","path":"python/urllib.parse.html#urllib.parse.urlunparse","desc":"从urlparse()返回的元组构造一个URL"}, "urllib.parse.urlsplit":{"name":"urllib.parse.urlsplit","type":"urllib.parse","path":"python/urllib.parse.html#urllib.parse.urlsplit","desc":"这类似于urlparse(),但不会从URL中分离参数"}, "urllib.parse.urlunsplit":{"name":"urllib.parse.urlunsplit","type":"urllib.parse","path":"python/urllib.parse.html#urllib.parse.urlunsplit","desc":"将urlsplit()返回的元组元素合并为一个完整的URL作为字符串"}, "urllib.parse.urljoin":{"name":"urllib.parse.urljoin","type":"urllib.parse","path":"python/urllib.parse.html#urllib.parse.urljoin","desc":"通过将“基本网址”(基本)与另一个网址(url)组合,构造完整(“绝对”)网址"}, "urllib.parse.urldefrag":{"name":"urllib.parse.urldefrag","type":"urllib.parse","path":"python/urllib.parse.html#urllib.parse.urldefrag","desc":"如果url包含片段标识符,则返回没有片段标识符的url的修改版本,片段标识符作为单独的字符串"}, "urllib.parse.quote":{"name":"urllib.parse.quote","type":"urllib.parse","path":"python/urllib.parse.html#urllib.parse.quote","desc":"使用%xx转义替换string中的特殊字符"}, "urllib.parse.quote_plus":{"name":"urllib.parse.quote_plus","type":"urllib.parse","path":"python/urllib.parse.html#urllib.parse.quote_plus","desc":"类似quote(),但是用加号替换空格,在转义HTML表单值来构建查询字符串以进入URL时,这是必需的"}, "urllib.parse.quote_from_bytes":{"name":"urllib.parse.quote_from_bytes","type":"urllib.parse","path":"python/urllib.parse.html#urllib.parse.quote_from_bytes","desc":"像quote(),但接受bytes对象而不是str,并且不执行字符串到字节编码"}, "urllib.parse.unquote":{"name":"urllib.parse.unquote","type":"urllib.parse","path":"python/urllib.parse.html#urllib.parse.unquote","desc":"将%xx转义替换为等效的单字符"}, "urllib.parse.unquote_plus":{"name":"urllib.parse.unquote_plus","type":"urllib.parse","path":"python/urllib.parse.html#urllib.parse.unquote_plus","desc":"类似于unquote(),但是也可以用空格替换加号,这是不需要引用HTML表单值的"}, "urllib.parse.unquote_to_bytes":{"name":"urllib.parse.unquote_to_bytes","type":"urllib.parse","path":"python/urllib.parse.html#urllib.parse.unquote_to_bytes","desc":"Replace %xx escapes by their single-octet equivalent, and return a bytes object"}, "urllib.parse.urlencode":{"name":"urllib.parse.urlencode","type":"urllib.parse","path":"python/urllib.parse.html#urllib.parse.urlencode","desc":"将映射对象或两元素元组序列,可以包含str或字节对象,转换为百分号编码的ASCII文本字符串"}, "urllib.request.urlopen":{"name":"urllib.request.urlopen","type":"urllib.request","path":"python/urllib.request.html#urllib.request.urlopen","desc":"打开url参数传进来的网址,既可以是一个字符串,又可以是一个Request对象"}, "urllib.request.install_opener":{"name":"urllib.request.install_opener","type":"urllib.request","path":"python/urllib.request.html#urllib.request.install_opener","desc":"安装OpenerDirector实例作为默认全局启动器"}, "urllib.request.build_opener":{"name":"urllib.request.build_opener","type":"urllib.request","path":"python/urllib.request.html#urllib.request.build_opener","desc":"返回OpenerDirector实例,按所给定的顺序链接处理程序"}, "urllib.request.pathname2url":{"name":"urllib.request.pathname2url","type":"urllib.request","path":"python/urllib.request.html#urllib.request.pathname2url","desc":"将路径名path从本地语法转换为URL的路径组件中使用的形式"}, "urllib.request.url2pathname":{"name":"urllib.request.url2pathname","type":"urllib.request","path":"python/urllib.request.html#urllib.request.url2pathname","desc":"将路径组件路径从百分比编码的URL转换为路径的本地语法"}, "urllib.request.getproxies":{"name":"urllib.request.getproxies","type":"urllib.request","path":"python/urllib.request.html#urllib.request.getproxies","desc":"这个帮助函数返回一个方案到代理服务器URL映射的字典"}, "urllib.request.urlretrieve":{"name":"urllib.request.urlretrieve","type":"urllib.request","path":"python/urllib.request.html#urllib.request.urlretrieve","desc":"将由URL表示的网络对象复制到本地文件"}, "urllib.request.urlcleanup":{"name":"urllib.request.urlcleanup","type":"urllib.request","path":"python/urllib.request.html#urllib.request.urlcleanup","desc":"清除先前对urlretrieve()调用可能遗留的临时文件"}, "uu.encode":{"name":"uu.encode","type":"uu","path":"python/uu.html#uu.encode","desc":"Uuencode文件in_file导入文件out_file"}, "uu.decode":{"name":"uu.decode","type":"uu","path":"python/uu.html#uu.decode","desc":"此调用会将uuencoded文件in_file解码,将结果放在文件out_file上"}, "uuid.getnode":{"name":"uuid.getnode","type":"uuid","path":"python/uuid.html#uuid.getnode","desc":"获取硬件地址作为48位正整数"}, "uuid.uuid1":{"name":"uuid.uuid1","type":"uuid","path":"python/uuid.html#uuid.uuid1","desc":"基于主机ID,序列号,当前时间生成UUID"}, "uuid.uuid3":{"name":"uuid.uuid3","type":"uuid","path":"python/uuid.html#uuid.uuid3","desc":"基于命名空间标识符(一个UUID)和一个名称(一个字符串)的MD5哈希生成UUID"}, "uuid.uuid4":{"name":"uuid.uuid4","type":"uuid","path":"python/uuid.html#uuid.uuid4","desc":"生成随机UUID"}, "uuid.uuid5":{"name":"uuid.uuid5","type":"uuid","path":"python/uuid.html#uuid.uuid5","desc":"基于命名空间标识符(其是UUID)和名称(其是字符串)的SHA-1散列来生成UUID"}, "uuid.NAMESPACE_DNS":{"name":"uuid.NAMESPACE_DNS","type":"uuid","path":"python/uuid.html#uuid.NAMESPACE_DNS","desc":"指定此命名空间时,name字符串是一个FQDN"}, "uuid.NAMESPACE_URL":{"name":"uuid.NAMESPACE_URL","type":"uuid","path":"python/uuid.html#uuid.NAMESPACE_URL","desc":"指定此命名空间时,name字符串是一个URL"}, "uuid.NAMESPACE_OID":{"name":"uuid.NAMESPACE_OID","type":"uuid","path":"python/uuid.html#uuid.NAMESPACE_OID","desc":"指定此命名空间时,名称字符串是ISO OID"}, "uuid.NAMESPACE_X500":{"name":"uuid.NAMESPACE_X500","type":"uuid","path":"python/uuid.html#uuid.NAMESPACE_X500","desc":"指定此命名空间时,名称字符串是DER中的X"}, "uuid.RESERVED_NCS":{"name":"uuid.RESERVED_NCS","type":"uuid","path":"python/uuid.html#uuid.RESERVED_NCS","desc":"保留NCS兼容性"}, "uuid.RFC_4122":{"name":"uuid.RFC_4122","type":"uuid","path":"python/uuid.html#uuid.RFC_4122","desc":"指定 RFC 4122中给出的UUID布局"}, "uuid.RESERVED_MICROSOFT":{"name":"uuid.RESERVED_MICROSOFT","type":"uuid","path":"python/uuid.html#uuid.RESERVED_MICROSOFT","desc":"保留用于Microsoft兼容性"}, "uuid.RESERVED_FUTURE":{"name":"uuid.RESERVED_FUTURE","type":"uuid","path":"python/uuid.html#uuid.RESERVED_FUTURE","desc":"留作将来定义"}, "venv.create":{"name":"venv.create","type":"venv","path":"python/venv.html#venv.create","desc":"使用给定的关键字参数创建EnvBuilder,并使用env_dir参数调用其create()方法"}, "warnings.warn":{"name":"warnings.warn","type":"warnings","path":"python/warnings.html#warnings.warn","desc":"发出警告,或者可能忽略它或引发异常"}, "warnings.warn_explicit":{"name":"warnings.warn_explicit","type":"warnings","path":"python/warnings.html#warnings.warn_explicit","desc":"这是对warn()功能的低级接口,显式传递消息,类别,文件名和行号,以及可选的模块名称和注册表(应为__warningregistry__模块的字典)"}, "warnings.showwarning":{"name":"warnings.showwarning","type":"warnings","path":"python/warnings.html#warnings.showwarning","desc":"向文件写入警告"}, "warnings.formatwarning":{"name":"warnings.formatwarning","type":"warnings","path":"python/warnings.html#warnings.formatwarning","desc":"按标准方式格式化警告"}, "warnings.filterwarnings":{"name":"warnings.filterwarnings","type":"warnings","path":"python/warnings.html#warnings.filterwarnings","desc":"在warnings filter specifications列表中插入一个条目"}, "warnings.simplefilter":{"name":"warnings.simplefilter","type":"warnings","path":"python/warnings.html#warnings.simplefilter","desc":"在warnings filter specifications列表中插入一个简单的条目"}, "warnings.resetwarnings":{"name":"warnings.resetwarnings","type":"warnings","path":"python/warnings.html#warnings.resetwarnings","desc":"重置警告过滤器"}, "wave.open":{"name":"wave.open","type":"wave","path":"python/wave.html#wave.open","desc":"如果文件是字符串,请按该名称打开该文件,否则将其视为类文件对象"}, "wave.openfp":{"name":"wave.openfp","type":"wave","path":"python/wave.html#wave.openfp","desc":"为维持向后兼容性的open()的同义词"}, "weakref.proxy":{"name":"weakref.proxy","type":"weakref","path":"python/weakref.html#weakref.proxy","desc":"将代理返回到使用弱引用的对象"}, "weakref.getweakrefcount":{"name":"weakref.getweakrefcount","type":"weakref","path":"python/weakref.html#weakref.getweakrefcount","desc":"返回引用对象的弱引用和代理的数量"}, "weakref.getweakrefs":{"name":"weakref.getweakrefs","type":"weakref","path":"python/weakref.html#weakref.getweakrefs","desc":"返回引用对象的所有弱引用和代理对象的列表"}, "weakref.ReferenceType":{"name":"weakref.ReferenceType","type":"weakref","path":"python/weakref.html#weakref.ReferenceType","desc":"弱引用对象的类型对象"}, "weakref.ProxyType":{"name":"weakref.ProxyType","type":"weakref","path":"python/weakref.html#weakref.ProxyType","desc":"不可调用对象的代理的类型对象"}, "weakref.CallableProxyType":{"name":"weakref.CallableProxyType","type":"weakref","path":"python/weakref.html#weakref.CallableProxyType","desc":"可调用对象的代理的类型对象"}, "weakref.ProxyTypes":{"name":"weakref.ProxyTypes","type":"weakref","path":"python/weakref.html#weakref.ProxyTypes","desc":"包含代理的所有类型对象的序列"}, "webbrowser.open":{"name":"webbrowser.open","type":"webbrowser","path":"python/webbrowser.html#webbrowser.open","desc":"调用默认浏览器打开 url "}, "webbrowser.open_new":{"name":"webbrowser.open_new","type":"webbrowser","path":"python/webbrowser.html#webbrowser.open_new","desc":"如果可能,在默认浏览器的新窗口中打开url,否则,在唯一的浏览器窗口中打开url"}, "webbrowser.open_new_tab":{"name":"webbrowser.open_new_tab","type":"webbrowser","path":"python/webbrowser.html#webbrowser.open_new_tab","desc":"如果可能,在默认浏览器的新页面(“标签”)中打开url,否则等效于open_new()"}, "webbrowser.get":{"name":"webbrowser.get","type":"webbrowser","path":"python/webbrowser.html#webbrowser.get","desc":"使用返回浏览器类型的控制器对象"}, "webbrowser.register":{"name":"webbrowser.register","type":"webbrowser","path":"python/webbrowser.html#webbrowser.register","desc":"注册浏览器类型名称"}, "winreg.CloseKey":{"name":"winreg.CloseKey","type":"winreg","path":"python/winreg.html#winreg.CloseKey","desc":"关闭以前打开的注册表项"}, "winreg.ConnectRegistry":{"name":"winreg.ConnectRegistry","type":"winreg","path":"python/winreg.html#winreg.ConnectRegistry","desc":"与另一台计算机上的预定义注册表句柄建立连接,并返回handle object"}, "winreg.CreateKey":{"name":"winreg.CreateKey","type":"winreg","path":"python/winreg.html#winreg.CreateKey","desc":"创建或打开指定的键,返回handle object"}, "winreg.CreateKeyEx":{"name":"winreg.CreateKeyEx","type":"winreg","path":"python/winreg.html#winreg.CreateKeyEx","desc":"创建或打开指定的键,返回handle object"}, "winreg.DeleteKey":{"name":"winreg.DeleteKey","type":"winreg","path":"python/winreg.html#winreg.DeleteKey","desc":"删除指定的键"}, "winreg.DeleteKeyEx":{"name":"winreg.DeleteKeyEx","type":"winreg","path":"python/winreg.html#winreg.DeleteKeyEx","desc":"删除指定的键"}, "winreg.DeleteValue":{"name":"winreg.DeleteValue","type":"winreg","path":"python/winreg.html#winreg.DeleteValue","desc":"从注册表项中删除命名的值"}, "winreg.EnumKey":{"name":"winreg.EnumKey","type":"winreg","path":"python/winreg.html#winreg.EnumKey","desc":"枚举打开的注册表项的子项,返回一个字符串"}, "winreg.EnumValue":{"name":"winreg.EnumValue","type":"winreg","path":"python/winreg.html#winreg.EnumValue","desc":"枚举打开的注册表项的值,返回元组"}, "winreg.ExpandEnvironmentStrings":{"name":"winreg.ExpandEnvironmentStrings","type":"winreg","path":"python/winreg.html#winreg.ExpandEnvironmentStrings","desc":"在像REG_EXPAND_SZ的字符串中扩展环境变量占位符%NAME%:"}, "winreg.FlushKey":{"name":"winreg.FlushKey","type":"winreg","path":"python/winreg.html#winreg.FlushKey","desc":"将键的所有属性写入注册表"}, "winreg.LoadKey":{"name":"winreg.LoadKey","type":"winreg","path":"python/winreg.html#winreg.LoadKey","desc":"在指定的键下创建子键,并将来自指定文件的注册信息存储到该子键中"}, "winreg.OpenKey":{"name":"winreg.OpenKey","type":"winreg","path":"python/winreg.html#winreg.OpenKey","desc":"打开指定的键,返回handle object"}, "winreg.QueryInfoKey":{"name":"winreg.QueryInfoKey","type":"winreg","path":"python/winreg.html#winreg.QueryInfoKey","desc":"返回有关键的信息,作为元组"}, "winreg.QueryValue":{"name":"winreg.QueryValue","type":"winreg","path":"python/winreg.html#winreg.QueryValue","desc":"检索键的未命名值,作为字符串"}, "winreg.QueryValueEx":{"name":"winreg.QueryValueEx","type":"winreg","path":"python/winreg.html#winreg.QueryValueEx","desc":"检索与打开的注册表项相关联的指定值名称的类型和数据"}, "winreg.SaveKey":{"name":"winreg.SaveKey","type":"winreg","path":"python/winreg.html#winreg.SaveKey","desc":"将指定的键及其所有子键保存到指定的文件"}, "winreg.SetValue":{"name":"winreg.SetValue","type":"winreg","path":"python/winreg.html#winreg.SetValue","desc":"将值与指定的键相关联"}, "winreg.SetValueEx":{"name":"winreg.SetValueEx","type":"winreg","path":"python/winreg.html#winreg.SetValueEx","desc":"将数据存储在打开的注册表项的值字段中"}, "winreg.DisableReflectionKey":{"name":"winreg.DisableReflectionKey","type":"winreg","path":"python/winreg.html#winreg.DisableReflectionKey","desc":"对运行在64位操作系统上的32位进程禁用注册表反射"}, "winreg.EnableReflectionKey":{"name":"winreg.EnableReflectionKey","type":"winreg","path":"python/winreg.html#winreg.EnableReflectionKey","desc":"恢复指定的禁用键的注册表反射"}, "winreg.QueryReflectionKey":{"name":"winreg.QueryReflectionKey","type":"winreg","path":"python/winreg.html#winreg.QueryReflectionKey","desc":"确定指定键的反射状态"}, "winreg.HKEY_CLASSES_ROOT":{"name":"winreg.HKEY_CLASSES_ROOT","type":"winreg","path":"python/winreg.html#winreg.HKEY_CLASSES_ROOT","desc":"从属于此键的注册表项定义文档的类型(或类)以及与这些类型相关联的属性"}, "winreg.HKEY_CURRENT_USER":{"name":"winreg.HKEY_CURRENT_USER","type":"winreg","path":"python/winreg.html#winreg.HKEY_CURRENT_USER","desc":"从属于此键的注册表项定义当前用户的首选项"}, "winreg.HKEY_LOCAL_MACHINE":{"name":"winreg.HKEY_LOCAL_MACHINE","type":"winreg","path":"python/winreg.html#winreg.HKEY_LOCAL_MACHINE","desc":"此键下属的注册表项定义计算机的物理状态,包括有关总线类型,系统内存和已安装的硬件和软件的数据"}, "winreg.HKEY_USERS":{"name":"winreg.HKEY_USERS","type":"winreg","path":"python/winreg.html#winreg.HKEY_USERS","desc":"从属于此键的注册表项定义本地计算机上新用户的默认用户配置和当前用户的用户配置"}, "winreg.HKEY_PERFORMANCE_DATA":{"name":"winreg.HKEY_PERFORMANCE_DATA","type":"winreg","path":"python/winreg.html#winreg.HKEY_PERFORMANCE_DATA","desc":"此密钥下的注册表项允许您访问性能数据"}, "winreg.HKEY_CURRENT_CONFIG":{"name":"winreg.HKEY_CURRENT_CONFIG","type":"winreg","path":"python/winreg.html#winreg.HKEY_CURRENT_CONFIG","desc":"包含有关本地计算机系统的当前硬件配置文件的信息"}, "winreg.HKEY_DYN_DATA":{"name":"winreg.HKEY_DYN_DATA","type":"winreg","path":"python/winreg.html#winreg.HKEY_DYN_DATA","desc":"此键在98之后的Windows版本中不使用"}, "winreg.KEY_ALL_ACCESS":{"name":"winreg.KEY_ALL_ACCESS","type":"winreg","path":"python/winreg.html#winreg.KEY_ALL_ACCESS","desc":"合并STANDARD_RIGHTS_REQUIRED,KEY_QUERY_VALUE,KEY_SET_VALUE,KEY_CREATE_SUB_KEY,KEY_ENUMERATE_SUB_KEYS,KEY_NOTIFY KEY_CREATE_LINK访问权限"}, "winreg.KEY_WRITE":{"name":"winreg.KEY_WRITE","type":"winreg","path":"python/winreg.html#winreg.KEY_WRITE","desc":"合并STANDARD_RIGHTS_WRITE,KEY_SET_VALUE和KEY_CREATE_SUB_KEY访问权限"}, "winreg.KEY_READ":{"name":"winreg.KEY_READ","type":"winreg","path":"python/winreg.html#winreg.KEY_READ","desc":"合并STANDARD_RIGHTS_READ,KEY_QUERY_VALUE,KEY_ENUMERATE_SUB_KEYS和KEY_NOTIFY值"}, "winreg.KEY_EXECUTE":{"name":"winreg.KEY_EXECUTE","type":"winreg","path":"python/winreg.html#winreg.KEY_EXECUTE","desc":"等效于KEY_READ"}, "winreg.KEY_QUERY_VALUE":{"name":"winreg.KEY_QUERY_VALUE","type":"winreg","path":"python/winreg.html#winreg.KEY_QUERY_VALUE","desc":"需要查询注册表项的值"}, "winreg.KEY_SET_VALUE":{"name":"winreg.KEY_SET_VALUE","type":"winreg","path":"python/winreg.html#winreg.KEY_SET_VALUE","desc":"需要创建,删除或设置注册表值"}, "winreg.KEY_CREATE_SUB_KEY":{"name":"winreg.KEY_CREATE_SUB_KEY","type":"winreg","path":"python/winreg.html#winreg.KEY_CREATE_SUB_KEY","desc":"需要创建注册表项的子项"}, "winreg.KEY_ENUMERATE_SUB_KEYS":{"name":"winreg.KEY_ENUMERATE_SUB_KEYS","type":"winreg","path":"python/winreg.html#winreg.KEY_ENUMERATE_SUB_KEYS","desc":"必需枚举注册表项的子项"}, "winreg.KEY_NOTIFY":{"name":"winreg.KEY_NOTIFY","type":"winreg","path":"python/winreg.html#winreg.KEY_NOTIFY","desc":"需要为注册表项请求更改通知,或者为注册表项的子项请求更改通知"}, "winreg.KEY_CREATE_LINK":{"name":"winreg.KEY_CREATE_LINK","type":"winreg","path":"python/winreg.html#winreg.KEY_CREATE_LINK","desc":"保留供系统使用"}, "winreg.KEY_WOW64_64KEY":{"name":"winreg.KEY_WOW64_64KEY","type":"winreg","path":"python/winreg.html#winreg.KEY_WOW64_64KEY","desc":"表示64位Windows上的应用程序应在64位注册表视图上运行"}, "winreg.KEY_WOW64_32KEY":{"name":"winreg.KEY_WOW64_32KEY","type":"winreg","path":"python/winreg.html#winreg.KEY_WOW64_32KEY","desc":"表示64位Windows上的应用程序应在32位注册表视图上运行"}, "winreg.REG_BINARY":{"name":"winreg.REG_BINARY","type":"winreg","path":"python/winreg.html#winreg.REG_BINARY","desc":"任何形式的二进制数据"}, "winreg.REG_DWORD":{"name":"winreg.REG_DWORD","type":"winreg","path":"python/winreg.html#winreg.REG_DWORD","desc":"32位数"}, "winreg.REG_DWORD_LITTLE_ENDIAN":{"name":"winreg.REG_DWORD_LITTLE_ENDIAN","type":"winreg","path":"python/winreg.html#winreg.REG_DWORD_LITTLE_ENDIAN","desc":"小端格式的32位数字"}, "winreg.REG_DWORD_BIG_ENDIAN":{"name":"winreg.REG_DWORD_BIG_ENDIAN","type":"winreg","path":"python/winreg.html#winreg.REG_DWORD_BIG_ENDIAN","desc":"以big-endian格式的32位数字"}, "winreg.REG_EXPAND_SZ":{"name":"winreg.REG_EXPAND_SZ","type":"winreg","path":"python/winreg.html#winreg.REG_EXPAND_SZ","desc":"Null终止的字符串,包含对环境变量的引用(%PATH%)"}, "winreg.REG_LINK":{"name":"winreg.REG_LINK","type":"winreg","path":"python/winreg.html#winreg.REG_LINK","desc":"Unicode符号链接"}, "winreg.REG_MULTI_SZ":{"name":"winreg.REG_MULTI_SZ","type":"winreg","path":"python/winreg.html#winreg.REG_MULTI_SZ","desc":"以NULL结束的字符串序列,以两个空字符结束"}, "winreg.REG_NONE":{"name":"winreg.REG_NONE","type":"winreg","path":"python/winreg.html#winreg.REG_NONE","desc":"没有定义值类型"}, "winreg.REG_RESOURCE_LIST":{"name":"winreg.REG_RESOURCE_LIST","type":"winreg","path":"python/winreg.html#winreg.REG_RESOURCE_LIST","desc":"设备驱动程序资源列表"}, "winreg.REG_FULL_RESOURCE_DESCRIPTOR":{"name":"winreg.REG_FULL_RESOURCE_DESCRIPTOR","type":"winreg","path":"python/winreg.html#winreg.REG_FULL_RESOURCE_DESCRIPTOR","desc":"硬件设置"}, "winreg.REG_RESOURCE_REQUIREMENTS_LIST":{"name":"winreg.REG_RESOURCE_REQUIREMENTS_LIST","type":"winreg","path":"python/winreg.html#winreg.REG_RESOURCE_REQUIREMENTS_LIST","desc":"硬件资源列表"}, "winreg.REG_SZ":{"name":"winreg.REG_SZ","type":"winreg","path":"python/winreg.html#winreg.REG_SZ","desc":"以null结尾的字符串"}, "winsound.Beep":{"name":"winsound.Beep","type":"winsound","path":"python/winsound.html#winsound.Beep","desc":"让电脑发出"哔"的声音"}, "winsound.PlaySound":{"name":"winsound.PlaySound","type":"winsound","path":"python/winsound.html#winsound.PlaySound","desc":"从Platform API调用底层的PlaySound()函数"}, "winsound.MessageBeep":{"name":"winsound.MessageBeep","type":"winsound","path":"python/winsound.html#winsound.MessageBeep","desc":"从Platform API调用底层的MessageBeep()函数"}, "winsound.SND_FILENAME":{"name":"winsound.SND_FILENAME","type":"winsound","path":"python/winsound.html#winsound.SND_FILENAME","desc":"sound参数是WAV文件的名称"}, "winsound.SND_ALIAS":{"name":"winsound.SND_ALIAS","type":"winsound","path":"python/winsound.html#winsound.SND_ALIAS","desc":"声音参数是来自注册表的声音关联名称"}, "winsound.SND_LOOP":{"name":"winsound.SND_LOOP","type":"winsound","path":"python/winsound.html#winsound.SND_LOOP","desc":"反复播放声音"}, "winsound.SND_MEMORY":{"name":"winsound.SND_MEMORY","type":"winsound","path":"python/winsound.html#winsound.SND_MEMORY","desc":"PlaySound()的声音参数是WAV文件的存储器映像,作为字符串"}, "winsound.SND_PURGE":{"name":"winsound.SND_PURGE","type":"winsound","path":"python/winsound.html#winsound.SND_PURGE","desc":"停止播放指定声音的所有实例"}, "winsound.SND_ASYNC":{"name":"winsound.SND_ASYNC","type":"winsound","path":"python/winsound.html#winsound.SND_ASYNC","desc":"立即返回,允许声音异步播放"}, "winsound.SND_NODEFAULT":{"name":"winsound.SND_NODEFAULT","type":"winsound","path":"python/winsound.html#winsound.SND_NODEFAULT","desc":"如果无法找到指定的声音,请不要播放系统默认声音"}, "winsound.SND_NOSTOP":{"name":"winsound.SND_NOSTOP","type":"winsound","path":"python/winsound.html#winsound.SND_NOSTOP","desc":"不要打断当前正在播放的声音"}, "winsound.SND_NOWAIT":{"name":"winsound.SND_NOWAIT","type":"winsound","path":"python/winsound.html#winsound.SND_NOWAIT","desc":"如果声音驱动器忙,立即返回"}, "winsound.MB_ICONASTERISK":{"name":"winsound.MB_ICONASTERISK","type":"winsound","path":"python/winsound.html#winsound.MB_ICONASTERISK","desc":"播放SystemDefault声音"}, "winsound.MB_ICONEXCLAMATION":{"name":"winsound.MB_ICONEXCLAMATION","type":"winsound","path":"python/winsound.html#winsound.MB_ICONEXCLAMATION","desc":"播放SystemExclamation声音"}, "winsound.MB_ICONHAND":{"name":"winsound.MB_ICONHAND","type":"winsound","path":"python/winsound.html#winsound.MB_ICONHAND","desc":"播放SystemHand声音"}, "winsound.MB_ICONQUESTION":{"name":"winsound.MB_ICONQUESTION","type":"winsound","path":"python/winsound.html#winsound.MB_ICONQUESTION","desc":"播放SystemQuestion声音"}, "winsound.MB_OK":{"name":"winsound.MB_OK","type":"winsound","path":"python/winsound.html#winsound.MB_OK","desc":"播放SystemDefault声音"}, "wsgiref.util.guess_scheme":{"name":"wsgiref.util.guess_scheme","type":"wsgiref","path":"python/wsgiref.html#wsgiref.util.guess_scheme","desc":"通过检查environ 字典中的HTTPS环境变量,返回对wsgi"}, "wsgiref.util.request_uri":{"name":"wsgiref.util.request_uri","type":"wsgiref","path":"python/wsgiref.html#wsgiref.util.request_uri","desc":"使用 PEP 3333的“URL重建”部分中找到的算法返回完整的请求URI(可选择包括查询字符串)"}, "wsgiref.util.application_uri":{"name":"wsgiref.util.application_uri","type":"wsgiref","path":"python/wsgiref.html#wsgiref.util.application_uri","desc":"类似于request_uri(),除了忽略PATH_INFO和QUERY_STRING变量"}, "wsgiref.util.shift_path_info":{"name":"wsgiref.util.shift_path_info","type":"wsgiref","path":"python/wsgiref.html#wsgiref.util.shift_path_info","desc":"将单个名称从PATH_INFO切换到SCRIPT_NAME,并返回名称"}, "wsgiref.util.setup_testing_defaults":{"name":"wsgiref.util.setup_testing_defaults","type":"wsgiref","path":"python/wsgiref.html#wsgiref.util.setup_testing_defaults","desc":"使用琐碎的默认值更新environ以进行测试"}, "wsgiref.util.is_hop_by_hop":{"name":"wsgiref.util.is_hop_by_hop","type":"wsgiref","path":"python/wsgiref.html#wsgiref.util.is_hop_by_hop","desc":"如果'header_name'是由 RFC 2616定义的HTTP / 1"}, "wsgiref.simple_server.make_server":{"name":"wsgiref.simple_server.make_server","type":"wsgiref","path":"python/wsgiref.html#wsgiref.simple_server.make_server","desc":"创建在host和port上侦听的新WSGI服务器,接受app的连接"}, "wsgiref.simple_server.demo_app":{"name":"wsgiref.simple_server.demo_app","type":"wsgiref","path":"python/wsgiref.html#wsgiref.simple_server.demo_app","desc":"此函数是一个小但完整的WSGI应用程序,它返回一个包含消息“Hello world!”的文本页面以及environ参数中提供的键/值对列表"}, "wsgiref.validate.validator":{"name":"wsgiref.validate.validator","type":"wsgiref","path":"python/wsgiref.html#wsgiref.validate.validator","desc":"换行应用程序并返回一个新的WSGI应用程序对象"}, "wsgiref.handlers.read_environ":{"name":"wsgiref.handlers.read_environ","type":"wsgiref","path":"python/wsgiref.html#wsgiref.handlers.read_environ","desc":"将os"}, "xml.dom.registerDOMImplementation":{"name":"xml.dom.registerDOMImplementation","type":"xml.dom","path":"python/xml.dom.html#xml.dom.registerDOMImplementation","desc":"Register the factory function with the name name"}, "xml.dom.getDOMImplementation":{"name":"xml.dom.getDOMImplementation","type":"xml.dom","path":"python/xml.dom.html#xml.dom.getDOMImplementation","desc":"Return a suitable DOM implementation"}, "xml.dom.EMPTY_NAMESPACE":{"name":"xml.dom.EMPTY_NAMESPACE","type":"xml.dom","path":"python/xml.dom.html#xml.dom.EMPTY_NAMESPACE","desc":"The value used to indicate that no namespace is associated with a node in the DOM"}, "xml.dom.XML_NAMESPACE":{"name":"xml.dom.XML_NAMESPACE","type":"xml.dom","path":"python/xml.dom.html#xml.dom.XML_NAMESPACE","desc":"The namespace URI associated with the reserved prefix xml, as defined by Namespaces in XML (section 4)"}, "xml.dom.XMLNS_NAMESPACE":{"name":"xml.dom.XMLNS_NAMESPACE","type":"xml.dom","path":"python/xml.dom.html#xml.dom.XMLNS_NAMESPACE","desc":"The namespace URI for namespace declarations, as defined by Document Object Model (DOM) Level 2 Core Specification (section 1"}, "xml.dom.XHTML_NAMESPACE":{"name":"xml.dom.XHTML_NAMESPACE","type":"xml.dom","path":"python/xml.dom.html#xml.dom.XHTML_NAMESPACE","desc":"The URI of the XHTML namespace as defined by XHTML 1"}, "xml.dom.minidom.parse":{"name":"xml.dom.minidom.parse","type":"xml.dom.minidom","path":"python/xml.dom.minidom.html#xml.dom.minidom.parse","desc":"从给定输入返回Document"}, "xml.dom.minidom.parseString":{"name":"xml.dom.minidom.parseString","type":"xml.dom.minidom","path":"python/xml.dom.minidom.html#xml.dom.minidom.parseString","desc":"返回表示字符串的Document"}, "xml.dom.pulldom.parse":{"name":"xml.dom.pulldom.parse","type":"xml.dom.pulldom","path":"python/xml.dom.pulldom.html#xml.dom.pulldom.parse","desc":"从给定输入返回DOMEventStream"}, "xml.dom.pulldom.parseString":{"name":"xml.dom.pulldom.parseString","type":"xml.dom.pulldom","path":"python/xml.dom.pulldom.html#xml.dom.pulldom.parseString","desc":"返回表示(Unicode)字符串的DOMEventStream"}, "xml.dom.pulldom.default_bufsize":{"name":"xml.dom.pulldom.default_bufsize","type":"xml.dom.pulldom","path":"python/xml.dom.pulldom.html#xml.dom.pulldom.default_bufsize","desc":"bufsize参数到parse()的默认值"}, "xml.etree.ElementTree.Comment":{"name":"xml.etree.ElementTree.Comment","type":"xml.etree.elementtree","path":"python/xml.etree.elementtree.html#xml.etree.ElementTree.Comment","desc":"Comment element factory"}, "xml.etree.ElementTree.dump":{"name":"xml.etree.ElementTree.dump","type":"xml.etree.elementtree","path":"python/xml.etree.elementtree.html#xml.etree.ElementTree.dump","desc":"Writes an element tree or element structure to sys"}, "xml.etree.ElementTree.fromstring":{"name":"xml.etree.ElementTree.fromstring","type":"xml.etree.elementtree","path":"python/xml.etree.elementtree.html#xml.etree.ElementTree.fromstring","desc":"Parses an XML section from a string constant"}, "xml.etree.ElementTree.fromstringlist":{"name":"xml.etree.ElementTree.fromstringlist","type":"xml.etree.elementtree","path":"python/xml.etree.elementtree.html#xml.etree.ElementTree.fromstringlist","desc":"Parses an XML document from a sequence of string fragments"}, "xml.etree.ElementTree.iselement":{"name":"xml.etree.ElementTree.iselement","type":"xml.etree.elementtree","path":"python/xml.etree.elementtree.html#xml.etree.ElementTree.iselement","desc":"Checks if an object appears to be a valid element object"}, "xml.etree.ElementTree.iterparse":{"name":"xml.etree.ElementTree.iterparse","type":"xml.etree.elementtree","path":"python/xml.etree.elementtree.html#xml.etree.ElementTree.iterparse","desc":"Parses an XML section into an element tree incrementally, and reports what’s going on to the user"}, "xml.etree.ElementTree.parse":{"name":"xml.etree.ElementTree.parse","type":"xml.etree.elementtree","path":"python/xml.etree.elementtree.html#xml.etree.ElementTree.parse","desc":"Parses an XML section into an element tree"}, "xml.etree.ElementTree.ProcessingInstruction":{"name":"xml.etree.ElementTree.ProcessingInstruction","type":"xml.etree.elementtree","path":"python/xml.etree.elementtree.html#xml.etree.ElementTree.ProcessingInstruction","desc":"PI element factory"}, "xml.etree.ElementTree.register_namespace":{"name":"xml.etree.ElementTree.register_namespace","type":"xml.etree.elementtree","path":"python/xml.etree.elementtree.html#xml.etree.ElementTree.register_namespace","desc":"Registers a namespace prefix"}, "xml.etree.ElementTree.SubElement":{"name":"xml.etree.ElementTree.SubElement","type":"xml.etree.elementtree","path":"python/xml.etree.elementtree.html#xml.etree.ElementTree.SubElement","desc":"Subelement factory"}, "xml.etree.ElementTree.tostring":{"name":"xml.etree.ElementTree.tostring","type":"xml.etree.elementtree","path":"python/xml.etree.elementtree.html#xml.etree.ElementTree.tostring","desc":"Generates a string representation of an XML element, including all subelements"}, "xml.etree.ElementTree.tostringlist":{"name":"xml.etree.ElementTree.tostringlist","type":"xml.etree.elementtree","path":"python/xml.etree.elementtree.html#xml.etree.ElementTree.tostringlist","desc":"Generates a string representation of an XML element, including all subelements"}, "xml.etree.ElementTree.XML":{"name":"xml.etree.ElementTree.XML","type":"xml.etree.elementtree","path":"python/xml.etree.elementtree.html#xml.etree.ElementTree.XML","desc":"Parses an XML section from a string constant"}, "xml.etree.ElementTree.XMLID":{"name":"xml.etree.ElementTree.XMLID","type":"xml.etree.elementtree","path":"python/xml.etree.elementtree.html#xml.etree.ElementTree.XMLID","desc":"Parses an XML section from a string constant, and also returns a dictionary which maps from element id:s to elements"}, "xml.sax.handler.all_features":{"name":"xml.sax.handler.all_features","type":"xml.sax.handler","path":"python/xml.sax.handler.html#xml.sax.handler.all_features","desc":"所有功能的列表"}, "xml.sax.handler.all_properties":{"name":"xml.sax.handler.all_properties","type":"xml.sax.handler","path":"python/xml.sax.handler.html#xml.sax.handler.all_properties","desc":"所有已知属性名称的列表"}, "xml.sax.make_parser":{"name":"xml.sax.make_parser","type":"xml.sax","path":"python/xml.sax.html#xml.sax.make_parser","desc":"创建并返回SAX XMLReader对象"}, "xml.sax.parse":{"name":"xml.sax.parse","type":"xml.sax","path":"python/xml.sax.html#xml.sax.parse","desc":"创建一个SAX解析器并使用它来解析文档"}, "xml.sax.parseString":{"name":"xml.sax.parseString","type":"xml.sax","path":"python/xml.sax.html#xml.sax.parseString","desc":"类似于parse(),但是从作为参数接收的缓冲区字符串解析"}, "xml.sax.saxutils.escape":{"name":"xml.sax.saxutils.escape","type":"xml.sax.utils","path":"python/xml.sax.utils.html#xml.sax.saxutils.escape","desc":"Escape '&', '<', and '>' in a string of data"}, "xml.sax.saxutils.unescape":{"name":"xml.sax.saxutils.unescape","type":"xml.sax.utils","path":"python/xml.sax.utils.html#xml.sax.saxutils.unescape","desc":"在数据字符串中取消转义'&','<'和'>'"}, "xml.sax.saxutils.quoteattr":{"name":"xml.sax.saxutils.quoteattr","type":"xml.sax.utils","path":"python/xml.sax.utils.html#xml.sax.saxutils.quoteattr","desc":"类似于escape(),但也准备数据以用作属性值"}, "xml.sax.saxutils.prepare_input_source":{"name":"xml.sax.saxutils.prepare_input_source","type":"xml.sax.utils","path":"python/xml.sax.utils.html#xml.sax.saxutils.prepare_input_source","desc":"此函数接受一个输入源和一个可选的基址URL,并返回一个完全解析的InputSource对象,可以读取"}, "xmlrpc.client.dumps":{"name":"xmlrpc.client.dumps","type":"xmlrpc.client","path":"python/xmlrpc.client.html#xmlrpc.client.dumps","desc":"将params转换为XML-RPC请求"}, "xmlrpc.client.loads":{"name":"xmlrpc.client.loads","type":"xmlrpc.client","path":"python/xmlrpc.client.html#xmlrpc.client.loads","desc":"将XML-RPC请求或响应转换为Python对象(params, methodname)"}, "zipapp.create_archive":{"name":"zipapp.create_archive","type":"zipapp","path":"python/zipapp.html#zipapp.create_archive","desc":"从源创建应用程序归档"}, "zipfile.is_zipfile":{"name":"zipfile.is_zipfile","type":"zipfile","path":"python/zipfile.html#zipfile.is_zipfile","desc":"如果filename是基于其幻数的有效ZIP文件,则返回True,否则返回False"}, "zipfile.ZIP_STORED":{"name":"zipfile.ZIP_STORED","type":"zipfile","path":"python/zipfile.html#zipfile.ZIP_STORED","desc":"未压缩的归档成员的数字常量"}, "zipfile.ZIP_DEFLATED":{"name":"zipfile.ZIP_DEFLATED","type":"zipfile","path":"python/zipfile.html#zipfile.ZIP_DEFLATED","desc":"常用ZIP压缩方法的数字常量"}, "zipfile.ZIP_BZIP2":{"name":"zipfile.ZIP_BZIP2","type":"zipfile","path":"python/zipfile.html#zipfile.ZIP_BZIP2","desc":"BZIP2压缩方法的数字常量"}, "zipfile.ZIP_LZMA":{"name":"zipfile.ZIP_LZMA","type":"zipfile","path":"python/zipfile.html#zipfile.ZIP_LZMA","desc":"LZMA压缩方法的数字常量"}, "zlib.adler32":{"name":"zlib.adler32","type":"zlib","path":"python/zlib.html#zlib.adler32","desc":"计算数据的Adler-32校验和"}, "zlib.compress":{"name":"zlib.compress","type":"zlib","path":"python/zlib.html#zlib.compress","desc":"压缩数据中的字节,返回包含压缩数据的字节对象"}, "zlib.compressobj":{"name":"zlib.compressobj","type":"zlib","path":"python/zlib.html#zlib.compressobj","desc":"返回一个压缩对象,用于压缩不能立即适合内存的数据流"}, "zlib.crc32":{"name":"zlib.crc32","type":"zlib","path":"python/zlib.html#zlib.crc32","desc":"计算数据的CRC(循环冗余校验)校验和"}, "zlib.decompress":{"name":"zlib.decompress","type":"zlib","path":"python/zlib.html#zlib.decompress","desc":"解压缩数据中的字节,返回包含未压缩数据的字节对象"}, "zlib.decompressobj":{"name":"zlib.decompressobj","type":"zlib","path":"python/zlib.html#zlib.decompressobj","desc":"返回解压缩对象,用于解压缩不能立即适合内存的数据流"}, "zlib.ZLIB_VERSION":{"name":"zlib.ZLIB_VERSION","type":"zlib","path":"python/zlib.html#zlib.ZLIB_VERSION","desc":"用于构建模块的zlib库的版本字符串"}, "zlib.ZLIB_RUNTIME_VERSION":{"name":"zlib.ZLIB_RUNTIME_VERSION","type":"zlib","path":"python/zlib.html#zlib.ZLIB_RUNTIME_VERSION","desc":"由解释器实际加载的zlib库的版本字符串"}, "_thread.start_new_thread":{"name":"_thread.start_new_thread","type":"_thread","path":"python/_thread.html#_thread.start_new_thread","desc":"启动一个新线程并返回其标识符"}, "_thread.interrupt_main":{"name":"_thread.interrupt_main","type":"_thread","path":"python/_thread.html#_thread.interrupt_main","desc":"引发主线程中的KeyboardInterrupt异常"}, "_thread.exit":{"name":"_thread.exit","type":"_thread","path":"python/_thread.html#_thread.exit","desc":"引发SystemExit异常"}, "_thread.allocate_lock":{"name":"_thread.allocate_lock","type":"_thread","path":"python/_thread.html#_thread.allocate_lock","desc":"返回一个新的锁对象"}, "_thread.get_ident":{"name":"_thread.get_ident","type":"_thread","path":"python/_thread.html#_thread.get_ident","desc":"返回当前线程的'线程标识符'"}, "_thread.stack_size":{"name":"_thread.stack_size","type":"_thread","path":"python/_thread.html#_thread.stack_size","desc":"返回创建新线程时使用的线程堆栈大小"}, "_thread.LockType":{"name":"_thread.LockType","type":"_thread","path":"python/_thread.html#_thread.LockType","desc":"这是锁对象的类型"}, "_thread.TIMEOUT_MAX":{"name":"_thread.TIMEOUT_MAX","type":"_thread","path":"python/_thread.html#_thread.TIMEOUT_MAX","desc":"Lock"} } \ No newline at end of file diff --git a/index/sql.json b/index/sql.json index 564cbf24..ed2b9fdc 100644 --- a/index/sql.json +++ b/index/sql.json @@ -1 +1 @@ -{ "ALIASES.html":"通过使用 SQL,可以为表名称或列名称指定别名(Alias)", "ALTER TABLE 语句.html":"ALTER TABLE 语句用于在已有的表中添加、删除或修改列", "AND & OR 运算符.html":"AND & OR 运算符用于基于一个以上的条件对记录进行过滤", "AUTO INCREMENT 字段.html":"Auto-increment 会在新记录插入表中时生成一个唯一的数字", "AVG() 函数.html":"AVG() 函数返回数值列的平均值", "BETWEEN 操作符.html":"BETWEEN 操作符用于选取介于两个值之间的数据范围内的值", "CHECK 约束.html":"CHECK 约束用于限制列中的值的范围", "COUNT() 函数.html":"COUNT() 函数返回匹配指定条件的行数", "CREATE DATABASE 语句.html":"CREATE DATABASE 语句用于创建数据库", "CREATE INDEX 语句.html":"CREATE INDEX 语句用于在表中创建索引", "CREATE TABLE 语句.html":"CREATE TABLE 语句用于创建数据库中的表", "Date 函数.html":"当我们处理日期时,最难的任务恐怕是确保所插入的日期的格式,与数据库中日期列的格式相匹配", "DEFAULT 约束.html":"DEFAULT 约束用于向列中插入默认值", "DELETE 语句.html":"DELETE 语句用于删除表中的记录", "DROP TRUNCATE 语句.html":"通过使用 DROP 语句,可以轻松地删除索引、表和数据库", "FIRST() 函数.html":"FIRST() 函数返回指定的列中第一个记录的值", "FOREIGN KEY 约束.html":"一个表中的 FOREIGN KEY 指向另一个表中的 PRIMARY KEY", "FORMAT() 函数.html":"FORMAT() 函数用于对字段的显示进行格式化", "FULL OUTER JOIN 关键字.html":"FULL OUTER JOIN 关键字只要左表(table1)和右表(table2)其中一个表中存在匹配,则返回行.", "GROUP BY 语句.html":"Aggregate 函数常常需要添加 GROUP BY 语句", "HAVING 子句.html":"在 SQL 中增加 HAVING 子句原因是,WHERE 关键字无法与 Aggregate 函数一起使用", "IN 操作符.html":"IN 操作符允许您在 WHERE 子句中规定多个值", "INNER JOIN 关键字.html":"INNER JOIN 关键字在表中存在至少一个匹配时返回行", "INSERT INTO SELECT 语句.html":"通过 SQL,您可以从一个表复制信息到另一个表", "INSERT INTO 语句.html":"INSERT INTO 语句用于向表中插入新记录", "LAST() 函数.html":"LAST() 函数返回指定的列中最后一个记录的值", "LCASE() 函数.html":"LCASE() 函数把字段的值转换为小写", "LEFT JOIN 关键字.html":"LEFT JOIN 关键字从左表(table1)返回所有的行,即使右表(table2)中没有匹配", "LEN() 函数.html":"LEN() 函数返回文本字段中值的长度", "LIKE 操作符.html":"LIKE 操作符用于在 WHERE 子句中搜索列中的指定模式", "MAX() 函数.html":"MAX() 函数返回指定列的最大值", "MID() 函数.html":"MID() 函数用于从文本字段中提取字符", "MIN() 函数.html":"MIN() 函数返回指定列的最小值", "MySQL CURDATE() 函数.html":"CURDATE() 返回当前的日期", "MySQL CURTIME() 函数.html":"CURTIME() 返回当前的时间", "MySQL DATE ADD() 函数.html":"DATE_ADD() 函数向日期添加指定的时间间隔", "MySQL DATE FORMAT() 函数.html":"DATE_FORMAT() 函数用于以不同的格式显示日期/时间数据", "MySQL DATE SUB() 函数.html":"DATE_SUB() 函数从日期减去指定的时间间隔", "MySQL DATE() 函数.html":"DATE() 函数提取日期或日期/时间表达式的日期部分", "MySQL DATEDIFF() 函数.html":"DATEDIFF() 函数返回两个日期之间的天数", "MySQL EXTRACT() 函数.html":"EXTRACT() 函数用于返回日期/时间的单独部分,比如年、月、日、小时、分钟等等", "MySQL NOW() 函数.html":"NOW() 返回当前的日期和时间", "NOT NULL 约束.html":"在默认的情况下,表的列接受 NULL 值", "NOW() 函数.html":"NOW() 函数返回当前系统的日期和时间", "NULL 函数.html":"ISNULL()、NVL()、IFNULL() 和 COALESCE() 函数", "ORDER BY 关键字.html":"ORDER BY 关键字用于对结果集进行排序", "PRIMARY KEY 约束.html":"PRIMARY KEY 约束唯一标识数据库表中的每条记录", "RIGHT JOIN 关键字.html":"RIGHT JOIN 关键字从右表(table2)返回所有的行,即使左表(table1)中没有匹配", "ROUND() 函数.html":"ROUND() 函数用于把数值字段舍入为指定的小数位数", "SELECT DISTINCT 语句.html":"SELECT DISTINCT 语句用于返回唯一不同的值", "SELECT INTO 语句.html":"通过 SQL,您可以从一个表复制信息到另一个表", "SELECT TOP 子句.html":"SELECT TOP 子句用于规定要返回的记录的数目", "SELECT 语句.html":"SELECT 语句用于从数据库中选取数据", "SQL Server CONVERT() 函数.html":"CONVERT() 函数是把日期转换为新数据类型的通用函数", "SQL Server DATEADD() 函数.html":"DATEADD() 函数在日期中添加或减去指定的时间间隔", "SQL Server DATEDIFF() 函数.html":"DATEDIFF() 函数返回两个日期之间的天数", "SQL Server DATEPART() 函数.html":"DATEPART() 函数用于返回日期/时间的单独部分,比如年、月、日、小时、分钟等等", "SQL Server GETDATE() 函数.html":"GETDATE() 函数从 SQL Server 返回当前的日期和时间", "SUM() 函数.html":"SUM() 函数返回数值列的总数", "UCASE() 函数.html":"UCASE() 函数把字段的值转换为大写", "UNION 操作符.html":"SQL UNION 操作符合并两个或多个 SELECT 语句的结果", "UNIQUE 约束.html":"UNIQUE 约束唯一标识数据库表中的每条记录", "UPDATE 语句.html":"UPDATE 语句用于更新表中的记录", "VIEWS.html":"视图是可视化的表", "WHERE 子句.html":"WHERE 子句用于过滤记录", "通配符.html":"通配符可用于替代字符串中的任何其他字符" } \ No newline at end of file +{ "ALIASES":{"name":"ALIASES","type":"","path":"sql/ALIASES.html","desc":"通过使用 SQL,可以为表名称或列名称指定别名(Alias)"}, "ALTER TABLE":{"name":"ALTER TABLE","type":"语句","path":"sql/ALTER TABLE 语句.html","desc":"ALTER TABLE 语句用于在已有的表中添加、删除或修改列"}, "AND & OR":{"name":"AND & OR","type":"运算符","path":"sql/AND & OR 运算符.html","desc":"AND & OR 运算符用于基于一个以上的条件对记录进行过滤"}, "AUTO INCREMENT":{"name":"AUTO INCREMENT","type":"字段","path":"sql/AUTO INCREMENT 字段.html","desc":"Auto-increment 会在新记录插入表中时生成一个唯一的数字"}, "AVG()":{"name":"AVG()","type":"函数","path":"sql/AVG() 函数.html","desc":"AVG() 函数返回数值列的平均值"}, "BETWEEN":{"name":"BETWEEN","type":"操作符","path":"sql/BETWEEN 操作符.html","desc":"BETWEEN 操作符用于选取介于两个值之间的数据范围内的值"}, "CHECK":{"name":"CHECK","type":"约束","path":"sql/CHECK 约束.html","desc":"CHECK 约束用于限制列中的值的范围"}, "COUNT()":{"name":"COUNT()","type":"函数","path":"sql/COUNT() 函数.html","desc":"COUNT() 函数返回匹配指定条件的行数"}, "CREATE DATABASE":{"name":"CREATE DATABASE","type":"语句","path":"sql/CREATE DATABASE 语句.html","desc":"CREATE DATABASE 语句用于创建数据库"}, "CREATE INDEX":{"name":"CREATE INDEX","type":"语句","path":"sql/CREATE INDEX 语句.html","desc":"CREATE INDEX 语句用于在表中创建索引"}, "CREATE TABLE":{"name":"CREATE TABLE","type":"语句","path":"sql/CREATE TABLE 语句.html","desc":"CREATE TABLE 语句用于创建数据库中的表"}, "Date":{"name":"Date","type":"函数","path":"sql/Date 函数.html","desc":"当我们处理日期时,最难的任务恐怕是确保所插入的日期的格式,与数据库中日期列的格式相匹配"}, "DEFAULT":{"name":"DEFAULT","type":"约束","path":"sql/DEFAULT 约束.html","desc":"DEFAULT 约束用于向列中插入默认值"}, "DELETE":{"name":"DELETE","type":"语句","path":"sql/DELETE 语句.html","desc":"DELETE 语句用于删除表中的记录"}, "DROP TRUNCATE":{"name":"DROP TRUNCATE","type":"语句","path":"sql/DROP TRUNCATE 语句.html","desc":"通过使用 DROP 语句,可以轻松地删除索引、表和数据库"}, "FIRST()":{"name":"FIRST()","type":"函数","path":"sql/FIRST() 函数.html","desc":"FIRST() 函数返回指定的列中第一个记录的值"}, "FOREIGN KEY":{"name":"FOREIGN KEY","type":"约束","path":"sql/FOREIGN KEY 约束.html","desc":"一个表中的 FOREIGN KEY 指向另一个表中的 PRIMARY KEY"}, "FORMAT()":{"name":"FORMAT()","type":"函数","path":"sql/FORMAT() 函数.html","desc":"FORMAT() 函数用于对字段的显示进行格式化"}, "FULL OUTER JOIN":{"name":"FULL OUTER JOIN","type":"关键字","path":"sql/FULL OUTER JOIN 关键字.html","desc":"FULL OUTER JOIN 关键字只要左表(table1)和右表(table2)其中一个表中存在匹配,则返回行."}, "GROUP BY":{"name":"GROUP BY","type":"语句","path":"sql/GROUP BY 语句.html","desc":"Aggregate 函数常常需要添加 GROUP BY 语句"}, "HAVING":{"name":"HAVING","type":"子句","path":"sql/HAVING 子句.html","desc":"在 SQL 中增加 HAVING 子句原因是,WHERE 关键字无法与 Aggregate 函数一起使用"}, "IN":{"name":"IN","type":"操作符","path":"sql/IN 操作符.html","desc":"IN 操作符允许您在 WHERE 子句中规定多个值"}, "INNER JOIN":{"name":"INNER JOIN","type":"关键字","path":"sql/INNER JOIN 关键字.html","desc":"INNER JOIN 关键字在表中存在至少一个匹配时返回行"}, "INSERT INTO SELECT":{"name":"INSERT INTO SELECT","type":"语句","path":"sql/INSERT INTO SELECT 语句.html","desc":"通过 SQL,您可以从一个表复制信息到另一个表"}, "INSERT INTO":{"name":"INSERT INTO","type":"语句","path":"sql/INSERT INTO 语句.html","desc":"INSERT INTO 语句用于向表中插入新记录"}, "LAST()":{"name":"LAST()","type":"函数","path":"sql/LAST() 函数.html","desc":"LAST() 函数返回指定的列中最后一个记录的值"}, "LCASE()":{"name":"LCASE()","type":"函数","path":"sql/LCASE() 函数.html","desc":"LCASE() 函数把字段的值转换为小写"}, "LEFT JOIN":{"name":"LEFT JOIN","type":"关键字","path":"sql/LEFT JOIN 关键字.html","desc":"LEFT JOIN 关键字从左表(table1)返回所有的行,即使右表(table2)中没有匹配"}, "LEN()":{"name":"LEN()","type":"函数","path":"sql/LEN() 函数.html","desc":"LEN() 函数返回文本字段中值的长度"}, "LIKE":{"name":"LIKE","type":"操作符","path":"sql/LIKE 操作符.html","desc":"LIKE 操作符用于在 WHERE 子句中搜索列中的指定模式"}, "MAX()":{"name":"MAX()","type":"函数","path":"sql/MAX() 函数.html","desc":"MAX() 函数返回指定列的最大值"}, "MID()":{"name":"MID()","type":"函数","path":"sql/MID() 函数.html","desc":"MID() 函数用于从文本字段中提取字符"}, "MIN()":{"name":"MIN()","type":"函数","path":"sql/MIN() 函数.html","desc":"MIN() 函数返回指定列的最小值"}, "MySQL CURDATE()":{"name":"MySQL CURDATE()","type":"函数","path":"sql/MySQL CURDATE() 函数.html","desc":"CURDATE() 返回当前的日期"}, "MySQL CURTIME()":{"name":"MySQL CURTIME()","type":"函数","path":"sql/MySQL CURTIME() 函数.html","desc":"CURTIME() 返回当前的时间"}, "MySQL DATE ADD()":{"name":"MySQL DATE ADD()","type":"函数","path":"sql/MySQL DATE ADD() 函数.html","desc":"DATE_ADD() 函数向日期添加指定的时间间隔"}, "MySQL DATE FORMAT()":{"name":"MySQL DATE FORMAT()","type":"函数","path":"sql/MySQL DATE FORMAT() 函数.html","desc":"DATE_FORMAT() 函数用于以不同的格式显示日期/时间数据"}, "MySQL DATE SUB()":{"name":"MySQL DATE SUB()","type":"函数","path":"sql/MySQL DATE SUB() 函数.html","desc":"DATE_SUB() 函数从日期减去指定的时间间隔"}, "MySQL DATE()":{"name":"MySQL DATE()","type":"函数","path":"sql/MySQL DATE() 函数.html","desc":"DATE() 函数提取日期或日期/时间表达式的日期部分"}, "MySQL DATEDIFF()":{"name":"MySQL DATEDIFF()","type":"函数","path":"sql/MySQL DATEDIFF() 函数.html","desc":"DATEDIFF() 函数返回两个日期之间的天数"}, "MySQL EXTRACT()":{"name":"MySQL EXTRACT()","type":"函数","path":"sql/MySQL EXTRACT() 函数.html","desc":"EXTRACT() 函数用于返回日期/时间的单独部分,比如年、月、日、小时、分钟等等"}, "MySQL NOW()":{"name":"MySQL NOW()","type":"函数","path":"sql/MySQL NOW() 函数.html","desc":"NOW() 返回当前的日期和时间"}, "NOT NULL":{"name":"NOT NULL","type":"约束","path":"sql/NOT NULL 约束.html","desc":"在默认的情况下,表的列接受 NULL 值"}, "NOW()":{"name":"NOW()","type":"函数","path":"sql/NOW() 函数.html","desc":"NOW() 函数返回当前系统的日期和时间"}, "NULL":{"name":"NULL","type":"函数","path":"sql/NULL 函数.html","desc":"ISNULL()、NVL()、IFNULL() 和 COALESCE() 函数"}, "ORDER BY":{"name":"ORDER BY","type":"关键字","path":"sql/ORDER BY 关键字.html","desc":"ORDER BY 关键字用于对结果集进行排序"}, "PRIMARY KEY":{"name":"PRIMARY KEY","type":"约束","path":"sql/PRIMARY KEY 约束.html","desc":"PRIMARY KEY 约束唯一标识数据库表中的每条记录"}, "RIGHT JOIN":{"name":"RIGHT JOIN","type":"关键字","path":"sql/RIGHT JOIN 关键字.html","desc":"RIGHT JOIN 关键字从右表(table2)返回所有的行,即使左表(table1)中没有匹配"}, "ROUND()":{"name":"ROUND()","type":"函数","path":"sql/ROUND() 函数.html","desc":"ROUND() 函数用于把数值字段舍入为指定的小数位数"}, "SELECT DISTINCT":{"name":"SELECT DISTINCT","type":"语句","path":"sql/SELECT DISTINCT 语句.html","desc":"SELECT DISTINCT 语句用于返回唯一不同的值"}, "SELECT INTO":{"name":"SELECT INTO","type":"语句","path":"sql/SELECT INTO 语句.html","desc":"通过 SQL,您可以从一个表复制信息到另一个表"}, "SELECT TOP":{"name":"SELECT TOP","type":"子句","path":"sql/SELECT TOP 子句.html","desc":"SELECT TOP 子句用于规定要返回的记录的数目"}, "SELECT":{"name":"SELECT","type":"语句","path":"sql/SELECT 语句.html","desc":"SELECT 语句用于从数据库中选取数据"}, "SQL Server CONVERT()":{"name":"SQL Server CONVERT()","type":"函数","path":"sql/SQL Server CONVERT() 函数.html","desc":"CONVERT() 函数是把日期转换为新数据类型的通用函数"}, "SQL Server DATEADD()":{"name":"SQL Server DATEADD()","type":"函数","path":"sql/SQL Server DATEADD() 函数.html","desc":"DATEADD() 函数在日期中添加或减去指定的时间间隔"}, "SQL Server DATEDIFF()":{"name":"SQL Server DATEDIFF()","type":"函数","path":"sql/SQL Server DATEDIFF() 函数.html","desc":"DATEDIFF() 函数返回两个日期之间的天数"}, "SQL Server DATEPART()":{"name":"SQL Server DATEPART()","type":"函数","path":"sql/SQL Server DATEPART() 函数.html","desc":"DATEPART() 函数用于返回日期/时间的单独部分,比如年、月、日、小时、分钟等等"}, "SQL Server GETDATE()":{"name":"SQL Server GETDATE()","type":"函数","path":"sql/SQL Server GETDATE() 函数.html","desc":"GETDATE() 函数从 SQL Server 返回当前的日期和时间"}, "SUM()":{"name":"SUM()","type":"函数","path":"sql/SUM() 函数.html","desc":"SUM() 函数返回数值列的总数"}, "UCASE()":{"name":"UCASE()","type":"函数","path":"sql/UCASE() 函数.html","desc":"UCASE() 函数把字段的值转换为大写"}, "UNION":{"name":"UNION","type":"操作符","path":"sql/UNION 操作符.html","desc":"SQL UNION 操作符合并两个或多个 SELECT 语句的结果"}, "UNIQUE":{"name":"UNIQUE","type":"约束","path":"sql/UNIQUE 约束.html","desc":"UNIQUE 约束唯一标识数据库表中的每条记录"}, "UPDATE":{"name":"UPDATE","type":"语句","path":"sql/UPDATE 语句.html","desc":"UPDATE 语句用于更新表中的记录"}, "VIEWS":{"name":"VIEWS","type":"","path":"sql/VIEWS.html","desc":"视图是可视化的表"}, "WHERE":{"name":"WHERE","type":"子句","path":"sql/WHERE 子句.html","desc":"WHERE 子句用于过滤记录"}, "通配符":{"name":"通配符","type":"","path":"sql/通配符.html","desc":"通配符可用于替代字符串中的任何其他字符"} } \ No newline at end of file diff --git a/index/utools.json b/index/utools.json index 3752264b..c597a587 100644 --- a/index/utools.json +++ b/index/utools.json @@ -1 +1 @@ -{ "事件.html#onPluginReady(callback)":"当插件装载成功,uTools将会主动调用这个方法(生命周期内仅调用一次)", "事件.html#onPluginEnter(callback)":"每当插件从后台进入到前台时,uTools将会主动调用这个方法", "事件.html#onPluginOut(callback)":"每当插件从前台进入到后台时,uTools将会主动调用这个方法", "事件.html#onPluginDetach(callback)":"用户对插件进行分离操作时,uTools将会主动调用这个方法", "事件.html#onDbPull(callback)":"当此插件的数据在其他设备上被更改后同步到此设备时,uTools将会主动调用这个方法(必须在插件可视的情况下才会触发)", "数据库.html#utools.db.put(Object)":"执行该方法将会创建或更新数据库文档", "数据库.html#utools.db.get(string)":"执行该方法将会根据文档ID获取数据", "数据库.html#utools.db.remove(string | Object)":"执行该方法将会删除数据库文档,可以传入文档对象或文档id进行操作", "数据库.html#utools.db.bulkDocs(Array)":"执行该方法将会批量更新数据库文档,传入需要更改的文档对象合并成数组进行批量更新", "数据库.html#utools.db.allDocs(String|Array)":"执行该方法将会获取所有数据库文档,如果传入字符串,则会返回以字符串开头的文档,也可以传入指定ID的数组,不传入则为获取所有文档", "窗口管理.html#hideMainWindow":"执行该方法将会隐藏uTools主窗口,包括此时正在主窗口运行的插件,分离的插件不会被隐藏", "窗口管理.html#showMainWindow":"执行该方法将会显示uTools主窗口,包括此时正在主窗口运行的插件", "窗口管理.html#setExpendHeight":"执行该方法将会修改插件窗口的高度", "窗口管理.html#setSubInput":"设置子输入框,进入插件后,原本uTools的搜索条主输入框将会变成子输入框,设置完子输入框搜索条子输入框可以为插件所使用", "窗口管理.html#removeSubInput":"移出先前设置的子输入框,在插件切换到其他页面时可以重新设置子输入框为其所用", "窗口管理.html#setSubInputValue":"直接对子输入框的值进行设置", "窗口管理.html#outPlugin":"执行该方法将会退出当前插件", "窗口管理.html#showNotification":"执行该方法将会弹出一个系统通知", "动态增减功能.html#getFeatures":"很多时候,插件中会提供一些功能供用户进行个性化设置(例如:网页快开插件),这部分配置无法在plugin.json事先定义好,所以我们提供了以下方法对插件功能进行动态增减", "动态增减功能.html#setFeature":"返回本插件所有动态增加的功能", "动态增减功能.html#removeFeature":"为本插件动态新增某个功能", "其他.html#isHadPrivilege":"该方法只适用于在macOS下执行,用于判断uTools是否拥有辅助权限,如果没有可以调用API方法requestPrivilege请求", "其他.html#requestPrivilege":"该方法只适用于在macOS下执行,该方法调用后会弹出窗口向用户申请辅助权限", "其他.html#getPath":"返回系统的特殊路径" } \ No newline at end of file +{ "onPluginReady(callback)":{"name":"onPluginReady(callback)","type":"事件","path":"utools/事件.html#onPluginReady(callback)","desc":"当插件装载成功,uTools将会主动调用这个方法(生命周期内仅调用一次)"}, "onPluginEnter(callback)":{"name":"onPluginEnter(callback)","type":"事件","path":"utools/事件.html#onPluginEnter(callback)","desc":"每当插件从后台进入到前台时,uTools将会主动调用这个方法"}, "onPluginOut(callback)":{"name":"onPluginOut(callback)","type":"事件","path":"utools/事件.html#onPluginOut(callback)","desc":"每当插件从前台进入到后台时,uTools将会主动调用这个方法"}, "onPluginDetach(callback)":{"name":"onPluginDetach(callback)","type":"事件","path":"utools/事件.html#onPluginDetach(callback)","desc":"用户对插件进行分离操作时,uTools将会主动调用这个方法"}, "onDbPull(callback)":{"name":"onDbPull(callback)","type":"事件","path":"utools/事件.html#onDbPull(callback)","desc":"当此插件的数据在其他设备上被更改后同步到此设备时,uTools将会主动调用这个方法(必须在插件可视的情况下才会触发)"}, "utools.db.put(Object)":{"name":"utools.db.put(Object)","type":"数据库","path":"utools/数据库.html#utools.db.put(Object)","desc":"执行该方法将会创建或更新数据库文档"}, "utools.db.get(string)":{"name":"utools.db.get(string)","type":"数据库","path":"utools/数据库.html#utools.db.get(string)","desc":"执行该方法将会根据文档ID获取数据"}, "utools.db.remove(string | Object)":{"name":"utools.db.remove(string | Object)","type":"数据库","path":"utools/数据库.html#utools.db.remove(string | Object)","desc":"执行该方法将会删除数据库文档,可以传入文档对象或文档id进行操作"}, "utools.db.bulkDocs(Array)":{"name":"utools.db.bulkDocs(Array)","type":"数据库","path":"utools/数据库.html#utools.db.bulkDocs(Array)","desc":"执行该方法将会批量更新数据库文档,传入需要更改的文档对象合并成数组进行批量更新"}, "utools.db.allDocs(String|Array)":{"name":"utools.db.allDocs(String|Array)","type":"数据库","path":"utools/数据库.html#utools.db.allDocs(String|Array)","desc":"执行该方法将会获取所有数据库文档,如果传入字符串,则会返回以字符串开头的文档,也可以传入指定ID的数组,不传入则为获取所有文档"}, "hideMainWindow":{"name":"hideMainWindow","type":"窗口管理","path":"utools/窗口管理.html#hideMainWindow","desc":"执行该方法将会隐藏uTools主窗口,包括此时正在主窗口运行的插件,分离的插件不会被隐藏"}, "showMainWindow":{"name":"showMainWindow","type":"窗口管理","path":"utools/窗口管理.html#showMainWindow","desc":"执行该方法将会显示uTools主窗口,包括此时正在主窗口运行的插件"}, "setExpendHeight":{"name":"setExpendHeight","type":"窗口管理","path":"utools/窗口管理.html#setExpendHeight","desc":"执行该方法将会修改插件窗口的高度"}, "setSubInput":{"name":"setSubInput","type":"窗口管理","path":"utools/窗口管理.html#setSubInput","desc":"设置子输入框,进入插件后,原本uTools的搜索条主输入框将会变成子输入框,设置完子输入框搜索条子输入框可以为插件所使用"}, "removeSubInput":{"name":"removeSubInput","type":"窗口管理","path":"utools/窗口管理.html#removeSubInput","desc":"移出先前设置的子输入框,在插件切换到其他页面时可以重新设置子输入框为其所用"}, "setSubInputValue":{"name":"setSubInputValue","type":"窗口管理","path":"utools/窗口管理.html#setSubInputValue","desc":"直接对子输入框的值进行设置"}, "outPlugin":{"name":"outPlugin","type":"窗口管理","path":"utools/窗口管理.html#outPlugin","desc":"执行该方法将会退出当前插件"}, "showNotification":{"name":"showNotification","type":"窗口管理","path":"utools/窗口管理.html#showNotification","desc":"执行该方法将会弹出一个系统通知"}, "getFeatures":{"name":"getFeatures","type":"动态增减功能","path":"utools/动态增减功能.html#getFeatures","desc":"很多时候,插件中会提供一些功能供用户进行个性化设置(例如:网页快开插件),这部分配置无法在plugin.json事先定义好,所以我们提供了以下方法对插件功能进行动态增减"}, "setFeature":{"name":"setFeature","type":"动态增减功能","path":"utools/动态增减功能.html#setFeature","desc":"返回本插件所有动态增加的功能"}, "removeFeature":{"name":"removeFeature","type":"动态增减功能","path":"utools/动态增减功能.html#removeFeature","desc":"为本插件动态新增某个功能"}, "isHadPrivilege":{"name":"isHadPrivilege","type":"其他","path":"utools/其他.html#isHadPrivilege","desc":"该方法只适用于在macOS下执行,用于判断uTools是否拥有辅助权限,如果没有可以调用API方法requestPrivilege请求"}, "requestPrivilege":{"name":"requestPrivilege","type":"其他","path":"utools/其他.html#requestPrivilege","desc":"该方法只适用于在macOS下执行,该方法调用后会弹出窗口向用户申请辅助权限"}, "getPath":{"name":"getPath","type":"其他","path":"utools/其他.html#getPath","desc":"返回系统的特殊路径"} } \ No newline at end of file diff --git a/index/vim.json b/index/vim.json index 235c1a91..83d29f8a 100644 --- a/index/vim.json +++ b/index/vim.json @@ -1 +1 @@ -{ "光标移动.html#h": "光标左移,同 键", "光标移动.html#j": "光标下移,同 键", "光标移动.html#k": "光标上移,同 键", "光标移动.html#l": "光标右移,同 键", "光标移动.html#CTRL-F": "下一页", "光标移动.html#CTRL-B": "上一页", "光标移动.html#CTRL-U": "上移半屏", "光标移动.html#CTRL-D": "下移半屏", "光标移动.html#0": "跳到行首(是数字零,不是字母O),效用等同于 键", "光标移动.html#^": "跳到从行首开始第一个非空白字符", "光标移动.html#$": "跳到行尾,效用等同于 键", "光标移动.html#gg": "跳到第一行,效用等同于 CTRL+", "光标移动.html#G": "跳到最后一行,效用等同于 CTRL+", "光标移动.html#nG": "跳到第n行,比如 10G 是移动到第十行", "光标移动.html#:n": "跳到第n行,比如 :10<回车> 是移动到第十行", "光标移动.html#10%": "移动到文件 10% 处", "光标移动.html#15|": "移动到当前行的 15列", "光标移动.html#w": "跳到下一个单词开头 (word: 标点或空格分隔的单词)", "光标移动.html#W": "跳到下一个单词开头 (WORD: 空格分隔的单词)", "光标移动.html#e": "跳到下一个单词尾部 (word: 标点或空格分隔的单词)", "光标移动.html#E": "跳到下一个单词尾部 (WORD: 空格分隔的单词)", "光标移动.html#b": "上一个单词头 (word: 标点或空格分隔的单词)", "光标移动.html#B": "上一个单词头 (WORD: 空格分隔的单词)", "光标移动.html#ge": "上一个单词尾", "光标移动.html#)": "向前移动一个句子(句号分隔)", "光标移动.html#(": "向后移动一个句子(句号分隔)", "光标移动.html#}": "向前移动一个段落(空行分隔)", "光标移动.html#{": "向后移动一个段落(空行分隔)", "光标移动.html#": "移动到下一行首个非空字符", "光标移动.html#+": "移动到下一行首个非空字符(同回车键)", "光标移动.html#-": "移动到上一行首个非空字符", "光标移动.html#H": "移动到屏幕上部", "光标移动.html#M": "移动到屏幕中部", "光标移动.html#L": "移动到屏幕下部", "光标移动.html#fx": "跳转到下一个为 x 的字符,2f/ 可以找到第二个斜杆", "光标移动.html#Fx": "跳转到上一个为 x 的字符", "光标移动.html#tx": "跳转到下一个为 x 的字符前", "光标移动.html#Tx": "跳转到上一个为 x 的字符前", "光标移动.html#;": "跳到下一个 f/t 搜索的结果", "光标移动.html#,": "跳到上一个 f/t 搜索的结果", "光标移动.html#": "按住 SHIFT 按左键,向左移动一个单词", "光标移动.html#": "按住 SHIFT 按右键,向右移动一个单词", "光标移动.html#": "按住 SHIFT 按上键,向上翻页", "光标移动.html#": "按住 SHIFT 按下键,向下翻页", "光标移动.html#gm": "移动到行中", "光标移动.html#gj": "光标下移一行(忽略自动换行)", "光标移动.html#gk": "光标上移一行(忽略自动换行)", "插入模式.html#": "光标向上移动", "插入模式.html#": "光标向下移动", "插入模式.html#": "光标向左移动", "插入模式.html#": "光标向右移动", "插入模式.html#": "按住 SHIFT 按左键,向左移动一个单词", "插入模式.html#": "按住 SHIFT 按右键,向右移动一个单词", "插入模式.html#": "按住 SHIFT 按上键,向上翻页", "插入模式.html#": "按住 SHIFT 按下键,向下翻页", "插入模式.html#": "上翻页", "插入模式.html#": "下翻页", "插入模式.html#": "删除光标处字符", "插入模式.html#": "Backspace 向后删除字符", "插入模式.html#": "光标跳转行首", "插入模式.html#": "光标跳转行尾", "插入模式.html#CTRL-W": "向后删除单词", "插入模式.html#CTRL-O": "临时退出插入模式,执行单条命令又返回插入模式", "插入模式.html#CTRL-\\ CTRL-O": "临时退出插入模式(光标保持),执行单条命令又返回插入模式", "插入模式.html#CTRL-R 0": "插入寄存器(内部 0号剪贴板)内容,CTRL-R 后可跟寄存器名", "插入模式.html#CTRL-R \"": "插入匿名寄存器内容,相当于插入模式下 p粘贴", "插入模式.html#CTRL-R =": "插入表达式计算结果,等号后面跟表达式", "插入模式.html#CTRL-R :": "插入上一次命令行命令", "插入模式.html#CTRL-R /": "插入上一次搜索的关键字", "插入模式.html#CTRL-F": "自动缩进", "插入模式.html#CTRL-U": "删除当前行所有字符", "插入模式.html#CTRL-V {char}": "插入非数字的字面量", "插入模式.html#CTRL-V {number}": "插入三个数字代表的 ascii/unicode 字符", "插入模式.html#CTRL-V 065": "插入 10进制 ascii 字符(两数字) 065 即 A字符", "插入模式.html#CTRL-V x41": "插入 16进制 ascii 字符(三数字) x41 即 A字符", "插入模式.html#CTRL-V o101": "插入 8进制 ascii 字符(三数字) o101 即 A字符", "插入模式.html#CTRL-V u1234": "插入 16进制 unicode 字符(四数字)", "插入模式.html#CTRL-V U12345678": "插入 16进制 unicode 字符(八数字)", "插入模式.html#CTRL-K {ch1} {ch2}": "插入 digraph(见 :h digraph),快速输入日文或符号等", "插入模式:进入退出.html#i": "在光标处进入插入模式", "插入模式:进入退出.html#I": "在行首进入插入模式", "插入模式:进入退出.html#a": "在光标后进入插入模式", "插入模式:进入退出.html#A": "在行尾进入插入模式", "插入模式:进入退出.html#o": "在下一行插入新行并进入插入模式", "插入模式:进入退出.html#O": "在上一行插入新行并进入插入模式", "插入模式:进入退出.html#gi": "进入到上一次插入模式的位置", "文件操作.html#:w": "保存文件", "文件操作.html#:w ": "按名称保存文件", "文件操作.html#:e ": "打开文件并编辑", "文件操作.html#:saveas ": "另存为文件", "文件操作.html#:r ": "读取文件并将内容插入到光标后", "文件操作.html#:r !dir": "将 dir 命令的输出捕获并插入到光标后", "文件操作.html#:close": "关闭文件", "文件操作.html#:q": "退出", "文件操作.html#:q!": "强制退出", "文件操作.html#:wa": "保存所有文件", "文件操作.html#:cd ": "切换 Vim 当前路径", "文件操作.html#:pwd": "显示 Vim 当前路径", "文件操作.html#:new": "打开一个新的窗口编辑新文件", "文件操作.html#:enew": "在当前窗口创建新文件", "文件操作.html#:vnew": "在左右切分的新窗口中编辑新文件", "文件操作.html#:tabnew": "在新的标签页中编辑新文件", "文本编辑.html#r": "替换当前字符", "文本编辑.html#R": "进入替换模式,直至 ESC 离开", "文本编辑.html#s": "替换字符(删除光标处字符,并进入插入模式,前可接数量)", "文本编辑.html#S": "替换行(删除当前行,并进入插入模式,前可接数量)", "文本编辑.html#cc": "改写当前行(删除当前行并进入插入模式),同 S", "文本编辑.html#cw": "改写光标开始处的当前单词", "文本编辑.html#ciw": "改写光标所处的单词", "文本编辑.html#caw": "改写光标所处的单词,并且包括前后空格(如果有的话)", "文本编辑.html#c0": "改写到行首", "文本编辑.html#c^": "改写到行首(第一个非零字符)", "文本编辑.html#c$": "改写到行末", "文本编辑.html#C": "改写到行尾(同c$)", "文本编辑.html#ci\"": "改写双引号中的内容", "文本编辑.html#ci'": "改写单引号中的内容", "文本编辑.html#cib": "改写小括号中的内容", "文本编辑.html#cab": "改写小括号中的内容(包含小括号本身)", "文本编辑.html#ci)": "改写小括号中的内容", "文本编辑.html#ci]": "改写中括号中内容", "文本编辑.html#ciB": "改写大括号中内容", "文本编辑.html#caB": "改写大括号中的内容(包含大括号本身)", "文本编辑.html#ci}": "改写大括号中内容", "文本编辑.html#cit": "改写 xml tag 中的内容", "文本编辑.html#cis": "改写当前句子", "文本编辑.html#c2w": "改写下两个单词", "文本编辑.html#ct(": "改写到小括号前", "文本编辑.html#x": "删除当前字符,前面可以接数字,3x代表删除三个字符", "文本编辑.html#X": "向前删除字符", "文本编辑.html#dd": "删除当前行", "文本编辑.html#d0": "删除到行首", "文本编辑.html#d^": "删除到行首(第一个非零字符)", "文本编辑.html#d$": "删除到行末", "文本编辑.html#D": "删除到行末(同 d$)", "文本编辑.html#dw": "删除当前单词", "文本编辑.html#diw": "删除光标所处的单词", "文本编辑.html#daw": "删除光标所处的单词,并包含前后空格(如果有的话)", "文本编辑.html#di\"": "删除双引号中的内容", "文本编辑.html#di'": "删除单引号中的内容", "文本编辑.html#dib": "删除小括号中的内容", "文本编辑.html#di)": "删除小括号中的内容", "文本编辑.html#dab": "删除小括号内的内容(包含小括号本身)", "文本编辑.html#di]": "删除中括号中内容", "文本编辑.html#diB": "删除大括号中内容", "文本编辑.html#di}": "删除大括号中内容", "文本编辑.html#daB": "删除大括号内的内容(包含大括号本身)", "文本编辑.html#dit": "删除 xml tag 中的内容", "文本编辑.html#dis": "删除当前句子", "文本编辑.html#d2w": "删除下两个单词", "文本编辑.html#dt(": "删除到小括号前", "文本编辑.html#dgg": "删除到文件头部", "文本编辑.html#dG": "删除到文件尾部", "文本编辑.html#d}": "删除下一段", "文本编辑.html#d{": "删除上一段", "文本编辑.html#u": "撤销", "文本编辑.html#U": "撤销整行操作", "文本编辑.html#CTRL-R": "撤销上一次 u 命令", "文本编辑.html#J": "链接多行为一行", "文本编辑.html#.": "重复上一次操作", "文本编辑.html#~": "替换大小写", "文本编辑.html#g~iw": "替换当前单词的大小写", "文本编辑.html#gUiw": "将单词转成大写", "文本编辑.html#guiw": "将当前单词转成小写", "文本编辑.html#guu": "全行转为小写", "文本编辑.html#gUU": "全行转为大写", "文本编辑.html#<<": "减少缩进", "文本编辑.html#>>": "增加缩进", "文本编辑.html#==": "自动缩进", "文本编辑.html#CTRL-A": "增加数字", "文本编辑.html#CTRL-X": "减少数字", "查找替换.html#/pattern": "从光标处向文件尾搜索 pattern", "查找替换.html#?pattern": "从光标处向文件头搜索 pattern", "查找替换.html#n": "向同一方向执行上一次搜索", "查找替换.html#N": "向相反方向执行上一次搜索", "查找替换.html#*": "向前搜索光标下的单词", "查找替换.html##": "向后搜索光标下的单词", "查找替换.html#:s/p1/p2/g": "将当前行中全替换p1为p2", "查找替换.html#:%s/p1/p2/g": "将当前文件中全替换p1为p2", "查找替换.html#:%s/p1/p2/gc": "将当前文件中全替换p1为p2,并且每处询问你是否替换", "查找替换.html#:10,20s/p1/p2/g": "将第10到20行中所有p1替换为p2", "查找替换.html#:%s/1\\\\2\\/3/123/g": "将“1\\2/3” 替换为 “123”(特殊字符使用反斜杠标注)", "查找替换.html#:%s/\\r//g": "删除 DOS 换行符 ^M", "位置跳转.html#CTRL-O": "跳转到上一个位置", "位置跳转.html#CTRL-I": "跳转到下一个位置", "位置跳转.html#CTRL-^": "跳转到 alternate file (当前窗口的上一个文件)", "位置跳转.html#%": "跳转到 {} () [] 的匹配", "位置跳转.html#gd": "跳转到局部定义(光标下的单词的定义)", "位置跳转.html#gD": "跳转到全局定义(光标下的单词的定义)", "位置跳转.html#gf": "打开名称为光标下文件名的文件", "位置跳转.html#[[": "跳转到上一个顶层函数(比如C语言以大括号分隔)", "位置跳转.html#]]": "跳转到下一个顶层函数(比如C语言以大括号分隔)", "位置跳转.html#[m": "跳转到上一个成员函数", "位置跳转.html#]m": "跳转到下一个成员函数", "位置跳转.html#[{": "跳转到上一处未匹配的 {", "位置跳转.html#]}": "跳转到下一处未匹配的 }", "位置跳转.html#[(": "跳转到上一处未匹配的 (", "位置跳转.html#])": "跳转到下一处未匹配的 )", "位置跳转.html#[c": "上一个不同处(diff时)", "位置跳转.html#]c": "下一个不同处(diff时)", "位置跳转.html#[/": "跳转到 C注释开头", "位置跳转.html#]/": "跳转到 C注释结尾", "位置跳转.html#``": "回到上次跳转的位置", "位置跳转.html#''": "回到上次跳转的位置", "位置跳转.html#`.": "回到上次编辑的位置", "位置跳转.html#'.": "回到上次编辑的位置", "其他命令.html#CTRL-X CTRL-F": "插入模式下文件路径补全", "其他命令.html#CTRL-X CTRL-O": "插入下 Omnifunc 补全", "其他命令.html#CTRL-X CTRL-N": "插入模式下关键字补全", "其他命令.html#CTRL-X CTRL-E": "插入模式下向上滚屏", "其他命令.html#CTRL-X CTRL-Y": "插入模式下向下滚屏", "其他命令.html#CTRL-E": "向上滚屏", "其他命令.html#CTRL-Y": "向下滚屏", "其他命令.html#CTRL-G": "显示正在编辑的文件名,以及大小和位置信息", "其他命令.html#g CTRL-G": "显示文件的:大小,字符数,单词数和行数,可视模式下也可用", "其他命令.html#zz": "调整光标所在行到屏幕中央", "其他命令.html#zt": "调整光标所在行到屏幕上部", "其他命令.html#zb": "调整光标所在行到屏幕下部", "其他命令.html#ga": "显示光标下字符的 ascii 码或者 unicode 编码", "其他命令.html#g8": "显示光标下字符的 utf-8 编码字节序", "其他命令.html#gi": "回到上次进入插入的地方,并切换到插入模式", "其他命令.html#K": "查询光标下单词的帮助", "其他命令.html#ZZ": "保存文件(如果有改动的话),并关闭窗口", "其他命令.html#ZQ": "不保存文件关闭窗口", "其他命令.html#CTRL-PgUp": "上个标签页,GVim OK,部分终端软件需设置对应键盘码", "其他命令.html#CTRL-PgDown": "下个标签页,GVim OK,部分终端软件需设置对应键盘码", "其他命令.html#CTRL-R CTRL-W": "命令模式下插入光标下单词", "其他命令.html#CTRL-INSERT": "复制到系统剪贴板(GVIM)", "其他命令.html#SHIFT-INSERT": "粘贴系统剪贴板的内容(GVIM)", "其他命令.html#:set ff=unix": "设置换行为 unix", "其他命令.html#:set ff=dos": "设置换行为 dos", "其他命令.html#:set ff?": "查看换行设置", "其他命令.html#:set nohl": "清除搜索高亮", "其他命令.html#:set termcap": "查看会从终端接收什么以及会发送给终端什么命令", "其他命令.html#:set guicursor=": "解决 SecureCRT/PenguiNet 中 NeoVim 局部奇怪字符问题", "其他命令.html#:set t_RS= t_SH=": "解决 SecureCRT/PenguiNet 中 Vim8.0 终端功能奇怪字符", "其他命令.html#:set fo+=a": "开启文本段的实时自动格式化", "其他命令.html#:earlier 15m": "回退到15分钟前的文件内容", "其他命令.html#:.!date": "在当前窗口插入时间", "其他命令.html#:%!xxd": "开始二进制编辑", "其他命令.html#:%!xxd -r": "保存二进制编辑", "其他命令.html#:r !curl -sL {URL}": "读取 url 内容添加到光标后", "其他命令.html#:g/^\\s*$/d": "删除空行", "其他命令.html#:g/green/d": "删除所有包含 green 的行", "其他命令.html#:v/green/d": "删除所有不包含 green 的行", "其他命令.html#:g/gladiolli/#": "搜索单词打印结果,并在结果前加上行号", "其他命令.html#:g/ab.*cd.*efg/#": "搜索包含 ab,cd 和 efg 的行,打印结果以及行号", "其他命令.html#:v/./,/./-j": "压缩空行", "其他命令.html#:Man bash": "在 Vim 中查看 man,先调用 :runtime! ftplugin/man.vim 激活", "其他命令.html#/fred\\|joe": "搜索 fred 或者 joe", "其他命令.html#/\\<\\d\\d\\d\\d\\>": "精确搜索四个数字", "其他命令.html#/^\\n\\{3}": "搜索连续三个空行", "可视模式.html#>": "增加缩进", "可视模式.html#<": "减少缩进", "可视模式.html#d": "删除高亮选中的文字", "可视模式.html#x": "删除高亮选中的文字", "可视模式.html#c": "改写文字,即删除高亮选中的文字并进入插入模式", "可视模式.html#s": "改写文字,即删除高亮选中的文字并进入插入模式", "可视模式.html#y": "拷贝文字", "可视模式.html#~": "转换大小写", "可视模式.html#o": "跳转到标记区的另外一端", "可视模式.html#O": "跳转到标记块的另外一端", "可视模式.html#u": "标记区转换为小写", "可视模式.html#U": "标记区转换为大写", "可视模式.html#g CTRL-G": "显示所选择区域的统计信息", "可视模式.html#": "退出可视模式", "复制粘贴.html#p": "粘贴到光标后", "复制粘贴.html#P": "粘贴到光标前", "复制粘贴.html#v": "开始标记", "复制粘贴.html#y": "复制标记内容", "复制粘贴.html#V": "开始按行标记", "复制粘贴.html#CTRL-V": "开始列标记", "复制粘贴.html#y$": "复制当前位置到本行结束的内容", "复制粘贴.html#yy": "复制当前行", "复制粘贴.html#Y": "复制当前行,同 yy", "复制粘贴.html#yiw": "复制当前单词", "复制粘贴.html#3yy": "复制光标下三行内容", "复制粘贴.html#v0": "选中当前位置到行首", "复制粘贴.html#v$": "选中当前位置到行末", "复制粘贴.html#viw": "选中当前单词", "复制粘贴.html#vib": "选中小括号内的东西", "复制粘贴.html#vi)": "选中小括号内的东西", "复制粘贴.html#vi]": "选中中括号内的东西", "复制粘贴.html#viB": "选中大括号内的东西", "复制粘贴.html#vi}": "选中大括号内的东西", "复制粘贴.html#vis": "选中句子中的东西", "复制粘贴.html#vab": "选中小括号内的东西(包含小括号本身)", "复制粘贴.html#va)": "选中小括号内的东西(包含小括号本身)", "复制粘贴.html#va]": "选中中括号内的东西(包含中括号本身)", "复制粘贴.html#vaB": "选中大括号内的东西(包含大括号本身)", "复制粘贴.html#va}": "选中大括号内的东西(包含大括号本身)", "复制粘贴.html#gv": "重新选择上一次选中的文字", "复制粘贴.html#:set paste": "允许粘贴模式(避免粘贴时自动缩进影响格式)", "复制粘贴.html#:set nopaste": "禁止粘贴模式", "复制粘贴.html#\"?yy": "复制当前行到寄存器 ? ,问号代表 0-9 的寄存器名称", "复制粘贴.html#\"?d3j": "删除光标下三行内容,并放到寄存器 ? ,问号代表 0-9 的寄存器名称", "复制粘贴.html#\"?p": "将寄存器 ? 的内容粘贴到光标后", "复制粘贴.html#\"?P": "将寄存器 ? 的内容粘贴到光标前", "复制粘贴.html#:registers": "显示所有寄存器内容", "复制粘贴.html#:[range]y": "复制范围,比如 :20,30y 是复制20到30行,:10y 是复制第十行", "复制粘贴.html#:[range]d": "删除范围,比如 :20,30d 是删除20到30行,:10d 是删除第十行", "复制粘贴.html#ddp": "交换两行内容:先删除当前行复制到寄存器,并粘贴", "复制粘贴.html#\"_[command]": "使用[command]删除内容,并且不进行复制(不会污染寄存器)", "复制粘贴.html#\"*[command]": "使用[command]复制内容到系统剪贴板(需要vim版本有clipboard支持)", "外部命令.html#:!ls": "运行外部命令 ls,并等待返回", "外部命令.html#:r !ls": "将外部命令 ls 的输出捕获,并插入到光标后", "外部命令.html#:w !sudo tee %": "sudo以后保存当前文件", "外部命令.html#:call system('ls')": "调用 ls 命令,但是不显示返回内容", "外部命令.html#:!start notepad": "Windows 下启动 notepad,最前面可以加 silent", "外部命令.html#:sil !start cmd": "Windows 下当前目录打开 cmd", "外部命令.html#:%!prog": "运行文字过滤程序,如整理 json格式 :%!python -m json.tool", "宏录制.html#qa": "开始录制名字为 a 的宏", "宏录制.html#q": "结束录制宏", "宏录制.html#@a": "播放名字为 a 的宏", "宏录制.html#@@": "播放上一个宏", "宏录制.html#@:": "重复上一个ex命令(即冒号命令)", "已打开文件操作.html#:ls": "查案缓存列表", "已打开文件操作.html#:bn": "切换到下一个缓存", "已打开文件操作.html#:bp": "切换到上一个缓存", "已打开文件操作.html#:bd": "删除缓存", "已打开文件操作.html#:b 1": "切换到1号缓存", "已打开文件操作.html#:b abc": "切换到文件名为 abc 开头的缓存", "已打开文件操作.html#:badd ": "将文件添加到缓存列表", "已打开文件操作.html#:set hidden": "设置隐藏模式(未保存的缓存可以被切换走,或者关闭)", "已打开文件操作.html#:set nohidden": "关闭隐藏模式(未保存的缓存不能被切换走,或者关闭)", "已打开文件操作.html#n CTRL-^": "切换缓存,先输入数字的缓存编号,再按 CTRL + 6", "帮助信息.html#:h tutor": "入门文档", "帮助信息.html#:h quickref": "快速帮助", "帮助信息.html#:h index": "查询 Vim 所有键盘命令定义", "帮助信息.html#:h summary": "帮助你更好的使用内置帮助系统", "帮助信息.html#:h CTRL-H": "查询普通模式下 CTRL-H 是干什么的", "帮助信息.html#:h i_CTRL-H": "查询插入模式下 CTRL-H 是干什么的", "帮助信息.html#:h i_": "查询插入模式下方向键上是干什么的", "帮助信息.html#:h pattern.txt": "正则表达式帮助", "帮助信息.html#:h eval": "脚本编写帮助", "帮助信息.html#:h function-list": "查看 VimScript 的函数列表 ", "帮助信息.html#:h windows.txt": "窗口使用帮助", "帮助信息.html#:h tabpage.txt": "标签页使用帮助", "帮助信息.html#:h +timers": "显示对 +timers 特性的帮助", "帮助信息.html#:h :!": "查看如何运行外部命令", "帮助信息.html#:h tips": "查看 Vim 内置的常用技巧文档", "帮助信息.html#:h set-termcap": "查看如何设置按键扫描码", "帮助信息.html#:viusage": "NORMAL 模式帮助", "帮助信息.html#:exusage": "EX 命令帮助", "帮助信息.html#:version": "显示当前 Vim 的版本号和特性", "常用设置.html#:set nocompatible": "设置不兼容原始 vi 模式(必须设置在最开头)", "常用设置.html#:set bs=?": "设置BS键模式,现代编辑器为 :set bs=eol,start,indent", "常用设置.html#:set sw=4": "设置缩进宽度为 4", "常用设置.html#:set ts=4": "设置制表符宽度为 4", "常用设置.html#:set noet": "设置不展开 tab 成空格", "常用设置.html#:set et": "设置展开 tab 成空格", "常用设置.html#:set winaltkeys=no": "设置 GVim 下正常捕获 ALT 键", "常用设置.html#:set nowrap": "关闭自动换行", "常用设置.html#:set ttimeout": "允许终端按键检测超时(终端下功能键为一串ESC开头的扫描码)", "常用设置.html#:set ttm=100": "设置终端按键检测超时为100毫秒", "常用设置.html#:set term=?": "设置终端类型,比如常见的 xterm", "常用设置.html#:set ignorecase": "设置搜索是否忽略大小写", "常用设置.html#:set smartcase": "智能大小写,默认忽略大小写,除非搜索内容里包含大写字母", "常用设置.html#:set list": "设置显示制表符和换行符", "常用设置.html#:set number": "设置显示行号,禁止显示行号可以用 :set nonumber", "常用设置.html#:set relativenumber": "设置显示相对行号(其他行与当前行的距离)", "常用设置.html#:set paste": "进入粘贴模式(粘贴时禁用缩进等影响格式的东西)", "常用设置.html#:set nopaste": "结束粘贴模式", "常用设置.html#:set spell": "允许拼写检查", "常用设置.html#:set hlsearch": "设置高亮查找", "常用设置.html#:set ruler": "总是显示光标位置", "常用设置.html#:set incsearch": "查找输入时动态增量显示查找结果", "常用设置.html#:set insertmode": "Vim 始终处于插入模式下,使用 ctrl-o 临时执行命令", "常用设置.html#:set all": "列出所有选项设置情况", "常用设置.html#:syntax on": "允许语法高亮", "常用设置.html#:syntax off": "禁止语法高亮", "拼写检查.html#:set spell": "打开拼写检查", "拼写检查.html#:set nospell": "关闭拼写检查", "拼写检查.html#]s": "下一处错误拼写的单词", "拼写检查.html#[s": "上一处错误拼写的单词", "拼写检查.html#zg": "加入单词到拼写词表中", "拼写检查.html#zug": "撤销上一次加入的单词", "拼写检查.html#z=": "拼写建议", "标签页.html#:tabs": "显示所有标签页", "标签页.html#:tabe ": "在新标签页中打开文件 filename", "标签页.html#:tabn": "下一个标签页", "标签页.html#:tabp": "上一个标签页", "标签页.html#:tabc": "关闭当前标签页", "标签页.html#:tabo": "关闭其他标签页", "标签页.html#:tabn n": "切换到第n个标签页,比如 :tabn 3 切换到第三个标签页", "标签页.html#:tabm n": "标签移动", "标签页.html#:tabfirst": "切换到第一个标签页", "标签页.html#:tablast": "切换到最后一个标签页", "标签页.html#:tab help": "在标签页打开帮助", "标签页.html#:tab drop ": "如果文件已被其他标签页和窗口打开则跳过去,否则新标签打开", "标签页.html#:tab split": "在新的标签页中打开当前窗口里的文件", "标签页.html#:tab ball": "将缓存中所有文件用标签页打开", "标签页.html#:set showtabline=?": "设置为 0 就不显示标签页标签,1会按需显示,2会永久显示", "标签页.html#ngt": "切换到第n个标签页,比如 2gt 将会切换到第二个标签页", "标签页.html#gt": "下一个标签页", "标签页.html#gT": "上一个标签页", "窗口操作.html#:sp ": "上下切分窗口并在新窗口打开文件 filename", "窗口操作.html#:vs ": "左右切分窗口并在新窗口打开文件 filename", "窗口操作.html#CTRL-W s": "上下切分窗口", "窗口操作.html#CTRL-W v": "左右切分窗口", "窗口操作.html#CTRL-W w": "循环切换到下一个窗口", "窗口操作.html#CTRL-W W": "循环切换到上一个窗口", "窗口操作.html#CTRL-W p": "跳到上一个访问过的窗口", "窗口操作.html#CTRL-W c": "关闭当前窗口", "窗口操作.html#CTRL-W o": "关闭其他窗口", "窗口操作.html#CTRL-W h": "跳到左边的窗口", "窗口操作.html#CTRL-W j": "跳到下边的窗口", "窗口操作.html#CTRL-W k": "跳到上边的窗口", "窗口操作.html#CTRL-W l": "跳到右边的窗口", "窗口操作.html#CTRL-W +": "增加当前窗口的行高,前面可以加数字", "窗口操作.html#CTRL-W -": "减少当前窗口的行高,前面可以加数字", "窗口操作.html#CTRL-W <": "减少当前窗口的列宽,前面可以加数字", "窗口操作.html#CTRL-W >": "增加当前窗口的列宽,前面可以加数字", "窗口操作.html#CTRL-W =": "让所有窗口宽高相同", "窗口操作.html#CTRL-W H": "将当前窗口移动到最左边", "窗口操作.html#CTRL-W J": "将当前窗口移动到最下边", "窗口操作.html#CTRL-W K": "将当前窗口移动到最上边", "窗口操作.html#CTRL-W L": "将当前窗口移动到最右边", "窗口操作.html#CTRL-W x": "交换窗口", "窗口操作.html#CTRL-W f": "在新窗口中打开名为光标下文件名的文件", "窗口操作.html#CTRL-W gf": "在新标签页中打开名为光标下文件名的文件", "窗口操作.html#CTRL-W R": "旋转窗口", "窗口操作.html#CTRL-W T": "将当前窗口移到新的标签页中", "窗口操作.html#CTRL-W P": "跳转到预览窗口", "窗口操作.html#CTRL-W z": "关闭预览窗口", "窗口操作.html#CTRL-W _": "纵向最大化当前窗口", "窗口操作.html#CTRL-W |": "横向最大化当前窗口", "文本对象.html#$": "到行末", "文本对象.html#0": "到行首", "文本对象.html#^": "到行首非空字符", "文本对象.html#tx": "光标位置到字符 x 之前", "文本对象.html#fx": "光标位置到字符 x 之处", "文本对象.html#iw": "整个单词(不包括分隔符)", "文本对象.html#aw": "整个单词(包括分隔符)", "文本对象.html#iW": "整个 WORD(不包括分隔符)", "文本对象.html#aW": "整个 WORD(包括分隔符)", "文本对象.html#is": "整个句子(不包括分隔符)", "文本对象.html#ib": "小括号内", "文本对象.html#ab": "小括号内(包含小括号本身)", "文本对象.html#iB": "大括号内", "文本对象.html#aB": "大括号内(包含大括号本身)", "文本对象.html#i)": "小括号内", "文本对象.html#a)": "小括号内(包含小括号本身)", "文本对象.html#i]": "中括号内", "文本对象.html#a]": "中括号内(包含中括号本身)", "文本对象.html#i}": "大括号内", "文本对象.html#a}": "大括号内(包含大括号本身)", "文本对象.html#i'": "单引号内", "文本对象.html#a'": "单引号内(包含单引号本身)", "文本对象.html#i\"": "双引号内", "文本对象.html#a\"": "双引号内(包含双引号本身)", "文本对象.html#2i)": "往外两层小括号内", "文本对象.html#2a)": "往外两层小括号内(包含小括号本身)", "文本对象.html#2f)": "到第二个小括号处", "文本对象.html#2t)": "到第二个小括号前", "书签.html#:marks": "显示所有书签", "书签.html#ma": "保存当前位置到书签 a ,书签名小写字母为文件内,大写全局", "书签.html#'a": "跳转到书签 a所在的行", "书签.html#`a": "跳转到书签 a所在位置", "书签.html#`.": "跳转到上一次编辑的行", "书签.html#'A": "跳转到全文书签 A", "书签.html#['": "跳转到上一个书签", "书签.html#]'": "跳转到下一个书签", "书签.html#'<": "跳到上次可视模式选择区域的开始", "书签.html#'>": "跳到上次可视模式选择区域的结束", "代码折叠.html#za": "切换折叠", "代码折叠.html#zA": "递归切换折叠", "代码折叠.html#zc": "折叠光标下代码", "代码折叠.html#zC": "折叠光标下所有代码", "代码折叠.html#zd": "删除光标下折叠", "代码折叠.html#zD": "递归删除所有折叠", "代码折叠.html#zE": "删除所有折叠", "代码折叠.html#zf": "创建代码折叠", "代码折叠.html#zF": "指定行数创建折叠", "代码折叠.html#zi": "切换折叠", "代码折叠.html#zm": "所有代码折叠一层", "代码折叠.html#zr": "所有代码打开一层", "代码折叠.html#zM": "折叠所有代码,设置 foldlevel=0,设置 foldenable", "代码折叠.html#zR": "打开所有代码,设置 foldlevel 为最大值", "代码折叠.html#zn": "折叠 none,重置 foldenable 并打开所有代码", "代码折叠.html#zN": "折叠 normal,重置 foldenable 并恢复所有折叠", "代码折叠.html#zo": "打开一层代码", "代码折叠.html#zO": "打开光标下所有代码折叠", "Quickfix 窗口.html#:copen": "打开 quickfix 窗口(查看编译,grep等信息)", "Quickfix 窗口.html#:copen 10": "打开 quickfix 窗口,并且设置高度为 10", "Quickfix 窗口.html#:cclose": "关闭 quickfix 窗口", "Quickfix 窗口.html#:cfirst": "跳到 quickfix 中第一个错误信息", "Quickfix 窗口.html#:clast": "跳到 quickfix 中最后一条错误信息", "Quickfix 窗口.html#:cc [nr]": "查看错误 [nr]", "Quickfix 窗口.html#:cnext": "跳到 quickfix 中下一个错误信息", "Quickfix 窗口.html#:cprev": "跳到 quickfix 中上一个错误信息" } \ No newline at end of file +{ "光标移动_h":{"name":"h","type":"光标移动","path":"vim/光标移动.html","desc":"光标左移,同 <Left> 键"}, "光标移动_j":{"name":"j","type":"光标移动","path":"vim/光标移动.html","desc":"光标下移,同 <Down> 键"}, "光标移动_k":{"name":"k","type":"光标移动","path":"vim/光标移动.html","desc":"光标上移,同 <Up> 键"}, "光标移动_l":{"name":"l","type":"光标移动","path":"vim/光标移动.html","desc":"光标右移,同 <Right> 键"}, "光标移动_CTRL-F":{"name":"CTRL-F","type":"光标移动","path":"vim/光标移动.html","desc":"下一页"}, "光标移动_CTRL-B":{"name":"CTRL-B","type":"光标移动","path":"vim/光标移动.html","desc":"上一页"}, "光标移动_CTRL-U":{"name":"CTRL-U","type":"光标移动","path":"vim/光标移动.html","desc":"上移半屏"}, "光标移动_CTRL-D":{"name":"CTRL-D","type":"光标移动","path":"vim/光标移动.html","desc":"下移半屏"}, "光标移动_0":{"name":"0","type":"光标移动","path":"vim/光标移动.html","desc":"跳到行首(是数字零,不是字母O),效用等同于 <Home> 键"}, "光标移动_^":{"name":"^","type":"光标移动","path":"vim/光标移动.html","desc":"跳到从行首开始第一个非空白字符"}, "光标移动_$":{"name":"$","type":"光标移动","path":"vim/光标移动.html","desc":"跳到行尾,效用等同于 <End> 键"}, "光标移动_gg":{"name":"gg","type":"光标移动","path":"vim/光标移动.html","desc":"跳到第一行,效用等同于 CTRL+<Home>"}, "光标移动_G":{"name":"G","type":"光标移动","path":"vim/光标移动.html","desc":"跳到最后一行,效用等同于 CTRL+<End>"}, "光标移动_nG":{"name":"nG","type":"光标移动","path":"vim/光标移动.html","desc":"跳到第n行,比如 10G 是移动到第十行"}, "光标移动_:n":{"name":":n","type":"光标移动","path":"vim/光标移动.html","desc":"跳到第n行,比如 :10<回车> 是移动到第十行"}, "光标移动_10%":{"name":"10%","type":"光标移动","path":"vim/光标移动.html","desc":"移动到文件 10% 处"}, "光标移动_15|":{"name":"15|","type":"光标移动","path":"vim/光标移动.html","desc":"移动到当前行的 15列"}, "光标移动_w":{"name":"w","type":"光标移动","path":"vim/光标移动.html","desc":"跳到下一个单词开头 (word: 标点或空格分隔的单词)"}, "光标移动_W":{"name":"W","type":"光标移动","path":"vim/光标移动.html","desc":"跳到下一个单词开头 (WORD: 空格分隔的单词)"}, "光标移动_e":{"name":"e","type":"光标移动","path":"vim/光标移动.html","desc":"跳到下一个单词尾部 (word: 标点或空格分隔的单词)"}, "光标移动_E":{"name":"E","type":"光标移动","path":"vim/光标移动.html","desc":"跳到下一个单词尾部 (WORD: 空格分隔的单词)"}, "光标移动_b":{"name":"b","type":"光标移动","path":"vim/光标移动.html","desc":"上一个单词头 (word: 标点或空格分隔的单词)"}, "光标移动_B":{"name":"B","type":"光标移动","path":"vim/光标移动.html","desc":"上一个单词头 (WORD: 空格分隔的单词)"}, "光标移动_ge":{"name":"ge","type":"光标移动","path":"vim/光标移动.html","desc":"上一个单词尾"}, "光标移动_)":{"name":")","type":"光标移动","path":"vim/光标移动.html","desc":"向前移动一个句子(句号分隔)"}, "光标移动_(":{"name":"(","type":"光标移动","path":"vim/光标移动.html","desc":"向后移动一个句子(句号分隔)"}, "光标移动_}":{"name":"}","type":"光标移动","path":"vim/光标移动.html","desc":"向前移动一个段落(空行分隔)"}, "光标移动_{":{"name":"{","type":"光标移动","path":"vim/光标移动.html","desc":"向后移动一个段落(空行分隔)"}, "光标移动_<enter>":{"name":"<enter>","type":"光标移动","path":"vim/光标移动.html","desc":"移动到下一行首个非空字符"}, "光标移动_+":{"name":"+","type":"光标移动","path":"vim/光标移动.html","desc":"移动到下一行首个非空字符(同回车键)"}, "光标移动_-":{"name":"-","type":"光标移动","path":"vim/光标移动.html","desc":"移动到上一行首个非空字符"}, "光标移动_H":{"name":"H","type":"光标移动","path":"vim/光标移动.html","desc":"移动到屏幕上部"}, "光标移动_M":{"name":"M","type":"光标移动","path":"vim/光标移动.html","desc":"移动到屏幕中部"}, "光标移动_L":{"name":"L","type":"光标移动","path":"vim/光标移动.html","desc":"移动到屏幕下部"}, "光标移动_fx":{"name":"fx","type":"光标移动","path":"vim/光标移动.html","desc":"跳转到下一个为 x 的字符,2f/ 可以找到第二个斜杆"}, "光标移动_Fx":{"name":"Fx","type":"光标移动","path":"vim/光标移动.html","desc":"跳转到上一个为 x 的字符"}, "光标移动_tx":{"name":"tx","type":"光标移动","path":"vim/光标移动.html","desc":"跳转到下一个为 x 的字符前"}, "光标移动_Tx":{"name":"Tx","type":"光标移动","path":"vim/光标移动.html","desc":"跳转到上一个为 x 的字符前"}, "光标移动_;":{"name":";","type":"光标移动","path":"vim/光标移动.html","desc":"跳到下一个 f/t 搜索的结果"}, "光标移动_,":{"name":",","type":"光标移动","path":"vim/光标移动.html","desc":"跳到上一个 f/t 搜索的结果"}, "光标移动_<S-Left>":{"name":"<S-Left>","type":"光标移动","path":"vim/光标移动.html","desc":"按住 SHIFT 按左键,向左移动一个单词"}, "光标移动_<S-Right>":{"name":"<S-Right>","type":"光标移动","path":"vim/光标移动.html","desc":"按住 SHIFT 按右键,向右移动一个单词"}, "光标移动_<S-Up>":{"name":"<S-Up>","type":"光标移动","path":"vim/光标移动.html","desc":"按住 SHIFT 按上键,向上翻页"}, "光标移动_<S-Down>":{"name":"<S-Down>","type":"光标移动","path":"vim/光标移动.html","desc":"按住 SHIFT 按下键,向下翻页"}, "光标移动_gm":{"name":"gm","type":"光标移动","path":"vim/光标移动.html","desc":"移动到行中"}, "光标移动_gj":{"name":"gj","type":"光标移动","path":"vim/光标移动.html","desc":"光标下移一行(忽略自动换行)"}, "光标移动_gk":{"name":"gk","type":"光标移动","path":"vim/光标移动.html","desc":"光标上移一行(忽略自动换行)"}, "插入模式_<Up>":{"name":"<Up>","type":"插入模式","path":"vim/插入模式.html","desc":"光标向上移动"}, "插入模式_<Down>":{"name":"<Down>","type":"插入模式","path":"vim/插入模式.html","desc":"光标向下移动"}, "插入模式_<Left>":{"name":"<Left>","type":"插入模式","path":"vim/插入模式.html","desc":"光标向左移动"}, "插入模式_<Right>":{"name":"<Right>","type":"插入模式","path":"vim/插入模式.html","desc":"光标向右移动"}, "插入模式_<S-Left>":{"name":"<S-Left>","type":"插入模式","path":"vim/插入模式.html","desc":"按住 SHIFT 按左键,向左移动一个单词"}, "插入模式_<S-Right>":{"name":"<S-Right>","type":"插入模式","path":"vim/插入模式.html","desc":"按住 SHIFT 按右键,向右移动一个单词"}, "插入模式_<S-Up>":{"name":"<S-Up>","type":"插入模式","path":"vim/插入模式.html","desc":"按住 SHIFT 按上键,向上翻页"}, "插入模式_<S-Down>":{"name":"<S-Down>","type":"插入模式","path":"vim/插入模式.html","desc":"按住 SHIFT 按下键,向下翻页"}, "插入模式_<PageUp>":{"name":"<PageUp>","type":"插入模式","path":"vim/插入模式.html","desc":"上翻页"}, "插入模式_<PageDown>":{"name":"<PageDown>","type":"插入模式","path":"vim/插入模式.html","desc":"下翻页"}, "插入模式_<Delete>":{"name":"<Delete>","type":"插入模式","path":"vim/插入模式.html","desc":"删除光标处字符"}, "插入模式_<BS>":{"name":"<BS>","type":"插入模式","path":"vim/插入模式.html","desc":"Backspace 向后删除字符"}, "插入模式_<Home>":{"name":"<Home>","type":"插入模式","path":"vim/插入模式.html","desc":"光标跳转行首"}, "插入模式_<End>":{"name":"<End>","type":"插入模式","path":"vim/插入模式.html","desc":"光标跳转行尾"}, "插入模式_CTRL-W":{"name":"CTRL-W","type":"插入模式","path":"vim/插入模式.html","desc":"向后删除单词"}, "插入模式_CTRL-O":{"name":"CTRL-O","type":"插入模式","path":"vim/插入模式.html","desc":"临时退出插入模式,执行单条命令又返回插入模式"}, "插入模式_CTRL-\\ CTRL-O":{"name":"CTRL-\\ CTRL-O","type":"插入模式","path":"vim/插入模式.html","desc":"临时退出插入模式(光标保持),执行单条命令又返回插入模式"}, "插入模式_CTRL-R 0":{"name":"CTRL-R 0","type":"插入模式","path":"vim/插入模式.html","desc":"插入寄存器(内部 0号剪贴板)内容,CTRL-R 后可跟寄存器名"}, "插入模式_CTRL-R \"":{"name":"CTRL-R \"","type":"插入模式","path":"vim/插入模式.html","desc":"插入匿名寄存器内容,相当于插入模式下 p粘贴"}, "插入模式_CTRL-R =":{"name":"CTRL-R =","type":"插入模式","path":"vim/插入模式.html","desc":"插入表达式计算结果,等号后面跟表达式"}, "插入模式_CTRL-R :":{"name":"CTRL-R :","type":"插入模式","path":"vim/插入模式.html","desc":"插入上一次命令行命令"}, "插入模式_CTRL-R /":{"name":"CTRL-R /","type":"插入模式","path":"vim/插入模式.html","desc":"插入上一次搜索的关键字"}, "插入模式_CTRL-F":{"name":"CTRL-F","type":"插入模式","path":"vim/插入模式.html","desc":"自动缩进"}, "插入模式_CTRL-U":{"name":"CTRL-U","type":"插入模式","path":"vim/插入模式.html","desc":"删除当前行所有字符"}, "插入模式_CTRL-V {char}":{"name":"CTRL-V {char}","type":"插入模式","path":"vim/插入模式.html","desc":"插入非数字的字面量"}, "插入模式_CTRL-V {number}":{"name":"CTRL-V {number}","type":"插入模式","path":"vim/插入模式.html","desc":"插入三个数字代表的 ascii/unicode 字符"}, "插入模式_CTRL-V 065":{"name":"CTRL-V 065","type":"插入模式","path":"vim/插入模式.html","desc":"插入 10进制 ascii 字符(两数字) 065 即 A字符"}, "插入模式_CTRL-V x41":{"name":"CTRL-V x41","type":"插入模式","path":"vim/插入模式.html","desc":"插入 16进制 ascii 字符(三数字) x41 即 A字符"}, "插入模式_CTRL-V o101":{"name":"CTRL-V o101","type":"插入模式","path":"vim/插入模式.html","desc":"插入 8进制 ascii 字符(三数字) o101 即 A字符"}, "插入模式_CTRL-V u1234":{"name":"CTRL-V u1234","type":"插入模式","path":"vim/插入模式.html","desc":"插入 16进制 unicode 字符(四数字)"}, "插入模式_CTRL-V U12345678":{"name":"CTRL-V U12345678","type":"插入模式","path":"vim/插入模式.html","desc":"插入 16进制 unicode 字符(八数字)"}, "插入模式_CTRL-K {ch1} {ch2}":{"name":"CTRL-K {ch1} {ch2}","type":"插入模式","path":"vim/插入模式.html","desc":"插入 digraph(见 :h digraph),快速输入日文或符号等"}, "插入模式:进入退出_i":{"name":"i","type":"插入模式:进入退出","path":"vim/插入模式:进入退出.html","desc":"在光标处进入插入模式"}, "插入模式:进入退出_I":{"name":"I","type":"插入模式:进入退出","path":"vim/插入模式:进入退出.html","desc":"在行首进入插入模式"}, "插入模式:进入退出_a":{"name":"a","type":"插入模式:进入退出","path":"vim/插入模式:进入退出.html","desc":"在光标后进入插入模式"}, "插入模式:进入退出_A":{"name":"A","type":"插入模式:进入退出","path":"vim/插入模式:进入退出.html","desc":"在行尾进入插入模式"}, "插入模式:进入退出_o":{"name":"o","type":"插入模式:进入退出","path":"vim/插入模式:进入退出.html","desc":"在下一行插入新行并进入插入模式"}, "插入模式:进入退出_O":{"name":"O","type":"插入模式:进入退出","path":"vim/插入模式:进入退出.html","desc":"在上一行插入新行并进入插入模式"}, "插入模式:进入退出_gi":{"name":"gi","type":"插入模式:进入退出","path":"vim/插入模式:进入退出.html","desc":"进入到上一次插入模式的位置"}, "文件操作_:w":{"name":":w","type":"文件操作","path":"vim/文件操作.html","desc":"保存文件"}, "文件操作_:w <filename>":{"name":":w <filename>","type":"文件操作","path":"vim/文件操作.html","desc":"按名称保存文件"}, "文件操作_:e <filename>":{"name":":e <filename>","type":"文件操作","path":"vim/文件操作.html","desc":"打开文件并编辑"}, "文件操作_:saveas <filename>":{"name":":saveas <filename>","type":"文件操作","path":"vim/文件操作.html","desc":"另存为文件"}, "文件操作_:r <filename>":{"name":":r <filename>","type":"文件操作","path":"vim/文件操作.html","desc":"读取文件并将内容插入到光标后"}, "文件操作_:r !dir":{"name":":r !dir","type":"文件操作","path":"vim/文件操作.html","desc":"将 dir 命令的输出捕获并插入到光标后"}, "文件操作_:close":{"name":":close","type":"文件操作","path":"vim/文件操作.html","desc":"关闭文件"}, "文件操作_:q":{"name":":q","type":"文件操作","path":"vim/文件操作.html","desc":"退出"}, "文件操作_:q!":{"name":":q!","type":"文件操作","path":"vim/文件操作.html","desc":"强制退出"}, "文件操作_:wa":{"name":":wa","type":"文件操作","path":"vim/文件操作.html","desc":"保存所有文件"}, "文件操作_:cd <path>":{"name":":cd <path>","type":"文件操作","path":"vim/文件操作.html","desc":"切换 Vim 当前路径"}, "文件操作_:pwd":{"name":":pwd","type":"文件操作","path":"vim/文件操作.html","desc":"显示 Vim 当前路径"}, "文件操作_:new":{"name":":new","type":"文件操作","path":"vim/文件操作.html","desc":"打开一个新的窗口编辑新文件"}, "文件操作_:enew":{"name":":enew","type":"文件操作","path":"vim/文件操作.html","desc":"在当前窗口创建新文件"}, "文件操作_:vnew":{"name":":vnew","type":"文件操作","path":"vim/文件操作.html","desc":"在左右切分的新窗口中编辑新文件"}, "文件操作_:tabnew":{"name":":tabnew","type":"文件操作","path":"vim/文件操作.html","desc":"在新的标签页中编辑新文件"}, "文本编辑_r":{"name":"r","type":"文本编辑","path":"vim/文本编辑.html","desc":"替换当前字符"}, "文本编辑_R":{"name":"R","type":"文本编辑","path":"vim/文本编辑.html","desc":"进入替换模式,直至 ESC 离开"}, "文本编辑_s":{"name":"s","type":"文本编辑","path":"vim/文本编辑.html","desc":"替换字符(删除光标处字符,并进入插入模式,前可接数量)"}, "文本编辑_S":{"name":"S","type":"文本编辑","path":"vim/文本编辑.html","desc":"替换行(删除当前行,并进入插入模式,前可接数量)"}, "文本编辑_cc":{"name":"cc","type":"文本编辑","path":"vim/文本编辑.html","desc":"改写当前行(删除当前行并进入插入模式),同 S"}, "文本编辑_cw":{"name":"cw","type":"文本编辑","path":"vim/文本编辑.html","desc":"改写光标开始处的当前单词"}, "文本编辑_ciw":{"name":"ciw","type":"文本编辑","path":"vim/文本编辑.html","desc":"改写光标所处的单词"}, "文本编辑_caw":{"name":"caw","type":"文本编辑","path":"vim/文本编辑.html","desc":"改写光标所处的单词,并且包括前后空格(如果有的话)"}, "文本编辑_c0":{"name":"c0","type":"文本编辑","path":"vim/文本编辑.html","desc":"改写到行首"}, "文本编辑_c^":{"name":"c^","type":"文本编辑","path":"vim/文本编辑.html","desc":"改写到行首(第一个非零字符)"}, "文本编辑_c$":{"name":"c$","type":"文本编辑","path":"vim/文本编辑.html","desc":"改写到行末"}, "文本编辑_C":{"name":"C","type":"文本编辑","path":"vim/文本编辑.html","desc":"改写到行尾(同c$)"}, "文本编辑_ci\"":{"name":"ci\"","type":"文本编辑","path":"vim/文本编辑.html","desc":"改写双引号中的内容"}, "文本编辑_ci'":{"name":"ci'","type":"文本编辑","path":"vim/文本编辑.html","desc":"改写单引号中的内容"}, "文本编辑_cib":{"name":"cib","type":"文本编辑","path":"vim/文本编辑.html","desc":"改写小括号中的内容"}, "文本编辑_cab":{"name":"cab","type":"文本编辑","path":"vim/文本编辑.html","desc":"改写小括号中的内容(包含小括号本身)"}, "文本编辑_ci)":{"name":"ci)","type":"文本编辑","path":"vim/文本编辑.html","desc":"改写小括号中的内容"}, "文本编辑_ci]":{"name":"ci]","type":"文本编辑","path":"vim/文本编辑.html","desc":"改写中括号中内容"}, "文本编辑_ciB":{"name":"ciB","type":"文本编辑","path":"vim/文本编辑.html","desc":"改写大括号中内容"}, "文本编辑_caB":{"name":"caB","type":"文本编辑","path":"vim/文本编辑.html","desc":"改写大括号中的内容(包含大括号本身)"}, "文本编辑_ci}":{"name":"ci}","type":"文本编辑","path":"vim/文本编辑.html","desc":"改写大括号中内容"}, "文本编辑_cit":{"name":"cit","type":"文本编辑","path":"vim/文本编辑.html","desc":"改写 xml tag 中的内容"}, "文本编辑_cis":{"name":"cis","type":"文本编辑","path":"vim/文本编辑.html","desc":"改写当前句子"}, "文本编辑_c2w":{"name":"c2w","type":"文本编辑","path":"vim/文本编辑.html","desc":"改写下两个单词"}, "文本编辑_ct(":{"name":"ct(","type":"文本编辑","path":"vim/文本编辑.html","desc":"改写到小括号前"}, "文本编辑_x":{"name":"x","type":"文本编辑","path":"vim/文本编辑.html","desc":"删除当前字符,前面可以接数字,3x代表删除三个字符"}, "文本编辑_X":{"name":"X","type":"文本编辑","path":"vim/文本编辑.html","desc":"向前删除字符"}, "文本编辑_dd":{"name":"dd","type":"文本编辑","path":"vim/文本编辑.html","desc":"删除当前行"}, "文本编辑_d0":{"name":"d0","type":"文本编辑","path":"vim/文本编辑.html","desc":"删除到行首"}, "文本编辑_d^":{"name":"d^","type":"文本编辑","path":"vim/文本编辑.html","desc":"删除到行首(第一个非零字符)"}, "文本编辑_d$":{"name":"d$","type":"文本编辑","path":"vim/文本编辑.html","desc":"删除到行末"}, "文本编辑_D":{"name":"D","type":"文本编辑","path":"vim/文本编辑.html","desc":"删除到行末(同 d$)"}, "文本编辑_dw":{"name":"dw","type":"文本编辑","path":"vim/文本编辑.html","desc":"删除当前单词"}, "文本编辑_diw":{"name":"diw","type":"文本编辑","path":"vim/文本编辑.html","desc":"删除光标所处的单词"}, "文本编辑_daw":{"name":"daw","type":"文本编辑","path":"vim/文本编辑.html","desc":"删除光标所处的单词,并包含前后空格(如果有的话)"}, "文本编辑_di\"":{"name":"di\"","type":"文本编辑","path":"vim/文本编辑.html","desc":"删除双引号中的内容"}, "文本编辑_di'":{"name":"di'","type":"文本编辑","path":"vim/文本编辑.html","desc":"删除单引号中的内容"}, "文本编辑_dib":{"name":"dib","type":"文本编辑","path":"vim/文本编辑.html","desc":"删除小括号中的内容"}, "文本编辑_di)":{"name":"di)","type":"文本编辑","path":"vim/文本编辑.html","desc":"删除小括号中的内容"}, "文本编辑_dab":{"name":"dab","type":"文本编辑","path":"vim/文本编辑.html","desc":"删除小括号内的内容(包含小括号本身)"}, "文本编辑_di]":{"name":"di]","type":"文本编辑","path":"vim/文本编辑.html","desc":"删除中括号中内容"}, "文本编辑_diB":{"name":"diB","type":"文本编辑","path":"vim/文本编辑.html","desc":"删除大括号中内容"}, "文本编辑_di}":{"name":"di}","type":"文本编辑","path":"vim/文本编辑.html","desc":"删除大括号中内容"}, "文本编辑_daB":{"name":"daB","type":"文本编辑","path":"vim/文本编辑.html","desc":"删除大括号内的内容(包含大括号本身)"}, "文本编辑_dit":{"name":"dit","type":"文本编辑","path":"vim/文本编辑.html","desc":"删除 xml tag 中的内容"}, "文本编辑_dis":{"name":"dis","type":"文本编辑","path":"vim/文本编辑.html","desc":"删除当前句子"}, "文本编辑_d2w":{"name":"d2w","type":"文本编辑","path":"vim/文本编辑.html","desc":"删除下两个单词"}, "文本编辑_dt(":{"name":"dt(","type":"文本编辑","path":"vim/文本编辑.html","desc":"删除到小括号前"}, "文本编辑_dgg":{"name":"dgg","type":"文本编辑","path":"vim/文本编辑.html","desc":"删除到文件头部"}, "文本编辑_dG":{"name":"dG","type":"文本编辑","path":"vim/文本编辑.html","desc":"删除到文件尾部"}, "文本编辑_d}":{"name":"d}","type":"文本编辑","path":"vim/文本编辑.html","desc":"删除下一段"}, "文本编辑_d{":{"name":"d{","type":"文本编辑","path":"vim/文本编辑.html","desc":"删除上一段"}, "文本编辑_u":{"name":"u","type":"文本编辑","path":"vim/文本编辑.html","desc":"撤销"}, "文本编辑_U":{"name":"U","type":"文本编辑","path":"vim/文本编辑.html","desc":"撤销整行操作"}, "文本编辑_CTRL-R":{"name":"CTRL-R","type":"文本编辑","path":"vim/文本编辑.html","desc":"撤销上一次 u 命令"}, "文本编辑_J":{"name":"J","type":"文本编辑","path":"vim/文本编辑.html","desc":"链接多行为一行"}, "文本编辑_.":{"name":".","type":"文本编辑","path":"vim/文本编辑.html","desc":"重复上一次操作"}, "文本编辑_~":{"name":"~","type":"文本编辑","path":"vim/文本编辑.html","desc":"替换大小写"}, "文本编辑_g~iw":{"name":"g~iw","type":"文本编辑","path":"vim/文本编辑.html","desc":"替换当前单词的大小写"}, "文本编辑_gUiw":{"name":"gUiw","type":"文本编辑","path":"vim/文本编辑.html","desc":"将单词转成大写"}, "文本编辑_guiw":{"name":"guiw","type":"文本编辑","path":"vim/文本编辑.html","desc":"将当前单词转成小写"}, "文本编辑_guu":{"name":"guu","type":"文本编辑","path":"vim/文本编辑.html","desc":"全行转为小写"}, "文本编辑_gUU":{"name":"gUU","type":"文本编辑","path":"vim/文本编辑.html","desc":"全行转为大写"}, "文本编辑_<<":{"name":"<<","type":"文本编辑","path":"vim/文本编辑.html","desc":"减少缩进"}, "文本编辑_>>":{"name":">>","type":"文本编辑","path":"vim/文本编辑.html","desc":"增加缩进"}, "文本编辑_==":{"name":"==","type":"文本编辑","path":"vim/文本编辑.html","desc":"自动缩进"}, "文本编辑_CTRL-A":{"name":"CTRL-A","type":"文本编辑","path":"vim/文本编辑.html","desc":"增加数字"}, "文本编辑_CTRL-X":{"name":"CTRL-X","type":"文本编辑","path":"vim/文本编辑.html","desc":"减少数字"}, "查找替换_/pattern":{"name":"/pattern","type":"查找替换","path":"vim/查找替换.html","desc":"从光标处向文件尾搜索 pattern"}, "查找替换_?pattern":{"name":"?pattern","type":"查找替换","path":"vim/查找替换.html","desc":"从光标处向文件头搜索 pattern"}, "查找替换_n":{"name":"n","type":"查找替换","path":"vim/查找替换.html","desc":"向同一方向执行上一次搜索"}, "查找替换_N":{"name":"N","type":"查找替换","path":"vim/查找替换.html","desc":"向相反方向执行上一次搜索"}, "查找替换_*":{"name":"*","type":"查找替换","path":"vim/查找替换.html","desc":"向前搜索光标下的单词"}, "查找替换_#":{"name":"#","type":"查找替换","path":"vim/查找替换.html","desc":"向后搜索光标下的单词"}, "查找替换_:s/p1/p2/g":{"name":":s/p1/p2/g","type":"查找替换","path":"vim/查找替换.html","desc":"将当前行中全替换p1为p2"}, "查找替换_:%s/p1/p2/g":{"name":":%s/p1/p2/g","type":"查找替换","path":"vim/查找替换.html","desc":"将当前文件中全替换p1为p2"}, "查找替换_:%s/p1/p2/gc":{"name":":%s/p1/p2/gc","type":"查找替换","path":"vim/查找替换.html","desc":"将当前文件中全替换p1为p2,并且每处询问你是否替换"}, "查找替换_:10,20s/p1/p2/g":{"name":":10,20s/p1/p2/g","type":"查找替换","path":"vim/查找替换.html","desc":"将第10到20行中所有p1替换为p2"}, "查找替换_:%s/1\\\\2\\/3/123/g":{"name":":%s/1\\\\2\\/3/123/g","type":"查找替换","path":"vim/查找替换.html","desc":"将“1\\2/3” 替换为 “123”(特殊字符使用反斜杠标注)"}, "查找替换_:%s/\\r//g":{"name":":%s/\\r//g","type":"查找替换","path":"vim/查找替换.html","desc":"删除 DOS 换行符 ^M"}, "位置跳转_CTRL-O":{"name":"CTRL-O","type":"位置跳转","path":"vim/位置跳转.html","desc":"跳转到上一个位置"}, "位置跳转_CTRL-I":{"name":"CTRL-I","type":"位置跳转","path":"vim/位置跳转.html","desc":"跳转到下一个位置"}, "位置跳转_CTRL-^":{"name":"CTRL-^","type":"位置跳转","path":"vim/位置跳转.html","desc":"跳转到 alternate file (当前窗口的上一个文件)"}, "位置跳转_%":{"name":"%","type":"位置跳转","path":"vim/位置跳转.html","desc":"跳转到 {} () [] 的匹配"}, "位置跳转_gd":{"name":"gd","type":"位置跳转","path":"vim/位置跳转.html","desc":"跳转到局部定义(光标下的单词的定义)"}, "位置跳转_gD":{"name":"gD","type":"位置跳转","path":"vim/位置跳转.html","desc":"跳转到全局定义(光标下的单词的定义)"}, "位置跳转_gf":{"name":"gf","type":"位置跳转","path":"vim/位置跳转.html","desc":"打开名称为光标下文件名的文件"}, "位置跳转_[[":{"name":"[[","type":"位置跳转","path":"vim/位置跳转.html","desc":"跳转到上一个顶层函数(比如C语言以大括号分隔)"}, "位置跳转_]]":{"name":"]]","type":"位置跳转","path":"vim/位置跳转.html","desc":"跳转到下一个顶层函数(比如C语言以大括号分隔)"}, "位置跳转_[m":{"name":"[m","type":"位置跳转","path":"vim/位置跳转.html","desc":"跳转到上一个成员函数"}, "位置跳转_]m":{"name":"]m","type":"位置跳转","path":"vim/位置跳转.html","desc":"跳转到下一个成员函数"}, "位置跳转_[{":{"name":"[{","type":"位置跳转","path":"vim/位置跳转.html","desc":"跳转到上一处未匹配的 {"}, "位置跳转_]}":{"name":"]}","type":"位置跳转","path":"vim/位置跳转.html","desc":"跳转到下一处未匹配的 }"}, "位置跳转_[(":{"name":"[(","type":"位置跳转","path":"vim/位置跳转.html","desc":"跳转到上一处未匹配的 ("}, "位置跳转_])":{"name":"])","type":"位置跳转","path":"vim/位置跳转.html","desc":"跳转到下一处未匹配的 )"}, "位置跳转_[c":{"name":"[c","type":"位置跳转","path":"vim/位置跳转.html","desc":"上一个不同处(diff时)"}, "位置跳转_]c":{"name":"]c","type":"位置跳转","path":"vim/位置跳转.html","desc":"下一个不同处(diff时)"}, "位置跳转_[/":{"name":"[/","type":"位置跳转","path":"vim/位置跳转.html","desc":"跳转到 C注释开头"}, "位置跳转_]/":{"name":"]/","type":"位置跳转","path":"vim/位置跳转.html","desc":"跳转到 C注释结尾"}, "位置跳转_``":{"name":"``","type":"位置跳转","path":"vim/位置跳转.html","desc":"回到上次跳转的位置"}, "位置跳转_''":{"name":"''","type":"位置跳转","path":"vim/位置跳转.html","desc":"回到上次跳转的位置"}, "位置跳转_`.":{"name":"`.","type":"位置跳转","path":"vim/位置跳转.html","desc":"回到上次编辑的位置"}, "位置跳转_'.":{"name":"'.","type":"位置跳转","path":"vim/位置跳转.html","desc":"回到上次编辑的位置"}, "其他命令_CTRL-X CTRL-F":{"name":"CTRL-X CTRL-F","type":"其他命令","path":"vim/其他命令.html","desc":"插入模式下文件路径补全"}, "其他命令_CTRL-X CTRL-O":{"name":"CTRL-X CTRL-O","type":"其他命令","path":"vim/其他命令.html","desc":"插入下 Omnifunc 补全"}, "其他命令_CTRL-X CTRL-N":{"name":"CTRL-X CTRL-N","type":"其他命令","path":"vim/其他命令.html","desc":"插入模式下关键字补全"}, "其他命令_CTRL-X CTRL-E":{"name":"CTRL-X CTRL-E","type":"其他命令","path":"vim/其他命令.html","desc":"插入模式下向上滚屏"}, "其他命令_CTRL-X CTRL-Y":{"name":"CTRL-X CTRL-Y","type":"其他命令","path":"vim/其他命令.html","desc":"插入模式下向下滚屏"}, "其他命令_CTRL-E":{"name":"CTRL-E","type":"其他命令","path":"vim/其他命令.html","desc":"向上滚屏"}, "其他命令_CTRL-Y":{"name":"CTRL-Y","type":"其他命令","path":"vim/其他命令.html","desc":"向下滚屏"}, "其他命令_CTRL-G":{"name":"CTRL-G","type":"其他命令","path":"vim/其他命令.html","desc":"显示正在编辑的文件名,以及大小和位置信息"}, "其他命令_g CTRL-G":{"name":"g CTRL-G","type":"其他命令","path":"vim/其他命令.html","desc":"显示文件的:大小,字符数,单词数和行数,可视模式下也可用"}, "其他命令_zz":{"name":"zz","type":"其他命令","path":"vim/其他命令.html","desc":"调整光标所在行到屏幕中央"}, "其他命令_zt":{"name":"zt","type":"其他命令","path":"vim/其他命令.html","desc":"调整光标所在行到屏幕上部"}, "其他命令_zb":{"name":"zb","type":"其他命令","path":"vim/其他命令.html","desc":"调整光标所在行到屏幕下部"}, "其他命令_ga":{"name":"ga","type":"其他命令","path":"vim/其他命令.html","desc":"显示光标下字符的 ascii 码或者 unicode 编码"}, "其他命令_g8":{"name":"g8","type":"其他命令","path":"vim/其他命令.html","desc":"显示光标下字符的 utf-8 编码字节序"}, "其他命令_gi":{"name":"gi","type":"其他命令","path":"vim/其他命令.html","desc":"回到上次进入插入的地方,并切换到插入模式"}, "其他命令_K":{"name":"K","type":"其他命令","path":"vim/其他命令.html","desc":"查询光标下单词的帮助"}, "其他命令_ZZ":{"name":"ZZ","type":"其他命令","path":"vim/其他命令.html","desc":"保存文件(如果有改动的话),并关闭窗口"}, "其他命令_ZQ":{"name":"ZQ","type":"其他命令","path":"vim/其他命令.html","desc":"不保存文件关闭窗口"}, "其他命令_CTRL-PgUp":{"name":"CTRL-PgUp","type":"其他命令","path":"vim/其他命令.html","desc":"上个标签页,GVim OK,部分终端软件需设置对应键盘码"}, "其他命令_CTRL-PgDown":{"name":"CTRL-PgDown","type":"其他命令","path":"vim/其他命令.html","desc":"下个标签页,GVim OK,部分终端软件需设置对应键盘码"}, "其他命令_CTRL-R CTRL-W":{"name":"CTRL-R CTRL-W","type":"其他命令","path":"vim/其他命令.html","desc":"命令模式下插入光标下单词"}, "其他命令_CTRL-INSERT":{"name":"CTRL-INSERT","type":"其他命令","path":"vim/其他命令.html","desc":"复制到系统剪贴板(GVIM)"}, "其他命令_SHIFT-INSERT":{"name":"SHIFT-INSERT","type":"其他命令","path":"vim/其他命令.html","desc":"粘贴系统剪贴板的内容(GVIM)"}, "其他命令_:set ff=unix":{"name":":set ff=unix","type":"其他命令","path":"vim/其他命令.html","desc":"设置换行为 unix"}, "其他命令_:set ff=dos":{"name":":set ff=dos","type":"其他命令","path":"vim/其他命令.html","desc":"设置换行为 dos"}, "其他命令_:set ff?":{"name":":set ff?","type":"其他命令","path":"vim/其他命令.html","desc":"查看换行设置"}, "其他命令_:set nohl":{"name":":set nohl","type":"其他命令","path":"vim/其他命令.html","desc":"清除搜索高亮"}, "其他命令_:set termcap":{"name":":set termcap","type":"其他命令","path":"vim/其他命令.html","desc":"查看会从终端接收什么以及会发送给终端什么命令"}, "其他命令_:set guicursor=":{"name":":set guicursor=","type":"其他命令","path":"vim/其他命令.html","desc":"解决 SecureCRT/PenguiNet 中 NeoVim 局部奇怪字符问题"}, "其他命令_:set t_RS= t_SH=":{"name":":set t_RS= t_SH=","type":"其他命令","path":"vim/其他命令.html","desc":"解决 SecureCRT/PenguiNet 中 Vim8.0 终端功能奇怪字符"}, "其他命令_:set fo+=a":{"name":":set fo+=a","type":"其他命令","path":"vim/其他命令.html","desc":"开启文本段的实时自动格式化"}, "其他命令_:earlier 15m":{"name":":earlier 15m","type":"其他命令","path":"vim/其他命令.html","desc":"回退到15分钟前的文件内容"}, "其他命令_:.!date":{"name":":.!date","type":"其他命令","path":"vim/其他命令.html","desc":"在当前窗口插入时间"}, "其他命令_:%!xxd":{"name":":%!xxd","type":"其他命令","path":"vim/其他命令.html","desc":"开始二进制编辑"}, "其他命令_:%!xxd -r":{"name":":%!xxd -r","type":"其他命令","path":"vim/其他命令.html","desc":"保存二进制编辑"}, "其他命令_:r !curl -sL {URL}":{"name":":r !curl -sL {URL}","type":"其他命令","path":"vim/其他命令.html","desc":"读取 url 内容添加到光标后"}, "其他命令_:g/^\\s*$/d":{"name":":g/^\\s*$/d","type":"其他命令","path":"vim/其他命令.html","desc":"删除空行"}, "其他命令_:g/green/d":{"name":":g/green/d","type":"其他命令","path":"vim/其他命令.html","desc":"删除所有包含 green 的行"}, "其他命令_:v/green/d":{"name":":v/green/d","type":"其他命令","path":"vim/其他命令.html","desc":"删除所有不包含 green 的行"}, "其他命令_:g/gladiolli/#":{"name":":g/gladiolli/#","type":"其他命令","path":"vim/其他命令.html","desc":"搜索单词打印结果,并在结果前加上行号"}, "其他命令_:g/ab.*cd.*efg/#":{"name":":g/ab.*cd.*efg/#","type":"其他命令","path":"vim/其他命令.html","desc":"搜索包含 ab,cd 和 efg 的行,打印结果以及行号"}, "其他命令_:v/./,/./-j":{"name":":v/./,/./-j","type":"其他命令","path":"vim/其他命令.html","desc":"压缩空行"}, "其他命令_:Man bash":{"name":":Man bash","type":"其他命令","path":"vim/其他命令.html","desc":"在 Vim 中查看 man,先调用 :runtime! ftplugin/man.vim 激活"}, "其他命令_/fred\\|joe":{"name":"/fred\\|joe","type":"其他命令","path":"vim/其他命令.html","desc":"搜索 fred 或者 joe"}, "其他命令_/\\<\\d\\d\\d\\d\\>":{"name":"/\\<\\d\\d\\d\\d\\>","type":"其他命令","path":"vim/其他命令.html","desc":"精确搜索四个数字"}, "其他命令_/^\\n\\{3}":{"name":"/^\\n\\{3}","type":"其他命令","path":"vim/其他命令.html","desc":"搜索连续三个空行"}, "可视模式_>":{"name":">","type":"可视模式","path":"vim/可视模式.html","desc":"增加缩进"}, "可视模式_<":{"name":"<","type":"可视模式","path":"vim/可视模式.html","desc":"减少缩进"}, "可视模式_d":{"name":"d","type":"可视模式","path":"vim/可视模式.html","desc":"删除高亮选中的文字"}, "可视模式_x":{"name":"x","type":"可视模式","path":"vim/可视模式.html","desc":"删除高亮选中的文字"}, "可视模式_c":{"name":"c","type":"可视模式","path":"vim/可视模式.html","desc":"改写文字,即删除高亮选中的文字并进入插入模式"}, "可视模式_s":{"name":"s","type":"可视模式","path":"vim/可视模式.html","desc":"改写文字,即删除高亮选中的文字并进入插入模式"}, "可视模式_y":{"name":"y","type":"可视模式","path":"vim/可视模式.html","desc":"拷贝文字"}, "可视模式_~":{"name":"~","type":"可视模式","path":"vim/可视模式.html","desc":"转换大小写"}, "可视模式_o":{"name":"o","type":"可视模式","path":"vim/可视模式.html","desc":"跳转到标记区的另外一端"}, "可视模式_O":{"name":"O","type":"可视模式","path":"vim/可视模式.html","desc":"跳转到标记块的另外一端"}, "可视模式_u":{"name":"u","type":"可视模式","path":"vim/可视模式.html","desc":"标记区转换为小写"}, "可视模式_U":{"name":"U","type":"可视模式","path":"vim/可视模式.html","desc":"标记区转换为大写"}, "可视模式_g CTRL-G":{"name":"g CTRL-G","type":"可视模式","path":"vim/可视模式.html","desc":"显示所选择区域的统计信息"}, "可视模式_<Esc>":{"name":"<Esc>","type":"可视模式","path":"vim/可视模式.html","desc":"退出可视模式"}, "复制粘贴_p":{"name":"p","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"粘贴到光标后"}, "复制粘贴_P":{"name":"P","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"粘贴到光标前"}, "复制粘贴_v":{"name":"v","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"开始标记"}, "复制粘贴_y":{"name":"y","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"复制标记内容"}, "复制粘贴_V":{"name":"V","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"开始按行标记"}, "复制粘贴_CTRL-V":{"name":"CTRL-V","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"开始列标记"}, "复制粘贴_y$":{"name":"y$","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"复制当前位置到本行结束的内容"}, "复制粘贴_yy":{"name":"yy","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"复制当前行"}, "复制粘贴_Y":{"name":"Y","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"复制当前行,同 yy"}, "复制粘贴_yiw":{"name":"yiw","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"复制当前单词"}, "复制粘贴_3yy":{"name":"3yy","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"复制光标下三行内容"}, "复制粘贴_v0":{"name":"v0","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"选中当前位置到行首"}, "复制粘贴_v$":{"name":"v$","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"选中当前位置到行末"}, "复制粘贴_viw":{"name":"viw","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"选中当前单词"}, "复制粘贴_vib":{"name":"vib","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"选中小括号内的东西"}, "复制粘贴_vi)":{"name":"vi)","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"选中小括号内的东西"}, "复制粘贴_vi]":{"name":"vi]","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"选中中括号内的东西"}, "复制粘贴_viB":{"name":"viB","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"选中大括号内的东西"}, "复制粘贴_vi}":{"name":"vi}","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"选中大括号内的东西"}, "复制粘贴_vis":{"name":"vis","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"选中句子中的东西"}, "复制粘贴_vab":{"name":"vab","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"选中小括号内的东西(包含小括号本身)"}, "复制粘贴_va)":{"name":"va)","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"选中小括号内的东西(包含小括号本身)"}, "复制粘贴_va]":{"name":"va]","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"选中中括号内的东西(包含中括号本身)"}, "复制粘贴_vaB":{"name":"vaB","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"选中大括号内的东西(包含大括号本身)"}, "复制粘贴_va}":{"name":"va}","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"选中大括号内的东西(包含大括号本身)"}, "复制粘贴_gv":{"name":"gv","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"重新选择上一次选中的文字"}, "复制粘贴_:set paste":{"name":":set paste","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"允许粘贴模式(避免粘贴时自动缩进影响格式)"}, "复制粘贴_:set nopaste":{"name":":set nopaste","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"禁止粘贴模式"}, "复制粘贴_\"?yy":{"name":"\"?yy","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"复制当前行到寄存器 ? ,问号代表 0-9 的寄存器名称"}, "复制粘贴_\"?d3j":{"name":"\"?d3j","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"删除光标下三行内容,并放到寄存器 ? ,问号代表 0-9 的寄存器名称"}, "复制粘贴_\"?p":{"name":"\"?p","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"将寄存器 ? 的内容粘贴到光标后"}, "复制粘贴_\"?P":{"name":"\"?P","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"将寄存器 ? 的内容粘贴到光标前"}, "复制粘贴_:registers":{"name":":registers","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"显示所有寄存器内容"}, "复制粘贴_:[range]y":{"name":":[range]y","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"复制范围,比如 :20,30y 是复制20到30行,:10y 是复制第十行"}, "复制粘贴_:[range]d":{"name":":[range]d","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"删除范围,比如 :20,30d 是删除20到30行,:10d 是删除第十行"}, "复制粘贴_ddp":{"name":"ddp","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"交换两行内容:先删除当前行复制到寄存器,并粘贴"}, "复制粘贴_\"_[command]":{"name":"\"_[command]","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"使用[command]删除内容,并且不进行复制(不会污染寄存器)"}, "复制粘贴_\"*[command]":{"name":"\"*[command]","type":"复制粘贴","path":"vim/复制粘贴.html","desc":"使用[command]复制内容到系统剪贴板(需要vim版本有clipboard支持)"}, "外部命令_:!ls":{"name":":!ls","type":"外部命令","path":"vim/外部命令.html","desc":"运行外部命令 ls,并等待返回"}, "外部命令_:r !ls":{"name":":r !ls","type":"外部命令","path":"vim/外部命令.html","desc":"将外部命令 ls 的输出捕获,并插入到光标后"}, "外部命令_:w !sudo tee %":{"name":":w !sudo tee %","type":"外部命令","path":"vim/外部命令.html","desc":"sudo以后保存当前文件"}, "外部命令_:call system('ls')":{"name":":call system('ls')","type":"外部命令","path":"vim/外部命令.html","desc":"调用 ls 命令,但是不显示返回内容"}, "外部命令_:!start notepad":{"name":":!start notepad","type":"外部命令","path":"vim/外部命令.html","desc":"Windows 下启动 notepad,最前面可以加 silent"}, "外部命令_:sil !start cmd":{"name":":sil !start cmd","type":"外部命令","path":"vim/外部命令.html","desc":"Windows 下当前目录打开 cmd"}, "外部命令_:%!prog":{"name":":%!prog","type":"外部命令","path":"vim/外部命令.html","desc":"运行文字过滤程序,如整理 json格式 :%!python -m json.tool"}, "宏录制_qa":{"name":"qa","type":"宏录制","path":"vim/宏录制.html","desc":"开始录制名字为 a 的宏"}, "宏录制_q":{"name":"q","type":"宏录制","path":"vim/宏录制.html","desc":"结束录制宏"}, "宏录制_@a":{"name":"@a","type":"宏录制","path":"vim/宏录制.html","desc":"播放名字为 a 的宏"}, "宏录制_@@":{"name":"@@","type":"宏录制","path":"vim/宏录制.html","desc":"播放上一个宏"}, "宏录制_@:":{"name":"@:","type":"宏录制","path":"vim/宏录制.html","desc":"重复上一个ex命令(即冒号命令)"}, "已打开文件操作_:ls":{"name":":ls","type":"已打开文件操作","path":"vim/已打开文件操作.html","desc":"查案缓存列表"}, "已打开文件操作_:bn":{"name":":bn","type":"已打开文件操作","path":"vim/已打开文件操作.html","desc":"切换到下一个缓存"}, "已打开文件操作_:bp":{"name":":bp","type":"已打开文件操作","path":"vim/已打开文件操作.html","desc":"切换到上一个缓存"}, "已打开文件操作_:bd":{"name":":bd","type":"已打开文件操作","path":"vim/已打开文件操作.html","desc":"删除缓存"}, "已打开文件操作_:b 1":{"name":":b 1","type":"已打开文件操作","path":"vim/已打开文件操作.html","desc":"切换到1号缓存"}, "已打开文件操作_:b abc":{"name":":b abc","type":"已打开文件操作","path":"vim/已打开文件操作.html","desc":"切换到文件名为 abc 开头的缓存"}, "已打开文件操作_:badd <filename>":{"name":":badd <filename>","type":"已打开文件操作","path":"vim/已打开文件操作.html","desc":"将文件添加到缓存列表"}, "已打开文件操作_:set hidden":{"name":":set hidden","type":"已打开文件操作","path":"vim/已打开文件操作.html","desc":"设置隐藏模式(未保存的缓存可以被切换走,或者关闭)"}, "已打开文件操作_:set nohidden":{"name":":set nohidden","type":"已打开文件操作","path":"vim/已打开文件操作.html","desc":"关闭隐藏模式(未保存的缓存不能被切换走,或者关闭)"}, "已打开文件操作_n CTRL-^":{"name":"n CTRL-^","type":"已打开文件操作","path":"vim/已打开文件操作.html","desc":"切换缓存,先输入数字的缓存编号,再按 CTRL + 6"}, "帮助信息_:h tutor":{"name":":h tutor","type":"帮助信息","path":"vim/帮助信息.html","desc":"入门文档"}, "帮助信息_:h quickref":{"name":":h quickref","type":"帮助信息","path":"vim/帮助信息.html","desc":"快速帮助"}, "帮助信息_:h index":{"name":":h index","type":"帮助信息","path":"vim/帮助信息.html","desc":"查询 Vim 所有键盘命令定义"}, "帮助信息_:h summary":{"name":":h summary","type":"帮助信息","path":"vim/帮助信息.html","desc":"帮助你更好的使用内置帮助系统"}, "帮助信息_:h CTRL-H":{"name":":h CTRL-H","type":"帮助信息","path":"vim/帮助信息.html","desc":"查询普通模式下 CTRL-H 是干什么的"}, "帮助信息_:h i_CTRL-H":{"name":":h i_CTRL-H","type":"帮助信息","path":"vim/帮助信息.html","desc":"查询插入模式下 CTRL-H 是干什么的"}, "帮助信息_:h i_<Up>":{"name":":h i_<Up>","type":"帮助信息","path":"vim/帮助信息.html","desc":"查询插入模式下方向键上是干什么的"}, "帮助信息_:h pattern.txt":{"name":":h pattern.txt","type":"帮助信息","path":"vim/帮助信息.html","desc":"正则表达式帮助"}, "帮助信息_:h eval":{"name":":h eval","type":"帮助信息","path":"vim/帮助信息.html","desc":"脚本编写帮助"}, "帮助信息_:h function-list":{"name":":h function-list","type":"帮助信息","path":"vim/帮助信息.html","desc":"查看 VimScript 的函数列表 "}, "帮助信息_:h windows.txt":{"name":":h windows.txt","type":"帮助信息","path":"vim/帮助信息.html","desc":"窗口使用帮助"}, "帮助信息_:h tabpage.txt":{"name":":h tabpage.txt","type":"帮助信息","path":"vim/帮助信息.html","desc":"标签页使用帮助"}, "帮助信息_:h +timers":{"name":":h +timers","type":"帮助信息","path":"vim/帮助信息.html","desc":"显示对 +timers 特性的帮助"}, "帮助信息_:h :!":{"name":":h :!","type":"帮助信息","path":"vim/帮助信息.html","desc":"查看如何运行外部命令"}, "帮助信息_:h tips":{"name":":h tips","type":"帮助信息","path":"vim/帮助信息.html","desc":"查看 Vim 内置的常用技巧文档"}, "帮助信息_:h set-termcap":{"name":":h set-termcap","type":"帮助信息","path":"vim/帮助信息.html","desc":"查看如何设置按键扫描码"}, "帮助信息_:viusage":{"name":":viusage","type":"帮助信息","path":"vim/帮助信息.html","desc":"NORMAL 模式帮助"}, "帮助信息_:exusage":{"name":":exusage","type":"帮助信息","path":"vim/帮助信息.html","desc":"EX 命令帮助"}, "帮助信息_:version":{"name":":version","type":"帮助信息","path":"vim/帮助信息.html","desc":"显示当前 Vim 的版本号和特性"}, "常用设置_:set nocompatible":{"name":":set nocompatible","type":"常用设置","path":"vim/常用设置.html","desc":"设置不兼容原始 vi 模式(必须设置在最开头)"}, "常用设置_:set bs=?":{"name":":set bs=?","type":"常用设置","path":"vim/常用设置.html","desc":"设置BS键模式,现代编辑器为 :set bs=eol,start,indent"}, "常用设置_:set sw=4":{"name":":set sw=4","type":"常用设置","path":"vim/常用设置.html","desc":"设置缩进宽度为 4"}, "常用设置_:set ts=4":{"name":":set ts=4","type":"常用设置","path":"vim/常用设置.html","desc":"设置制表符宽度为 4"}, "常用设置_:set noet":{"name":":set noet","type":"常用设置","path":"vim/常用设置.html","desc":"设置不展开 tab 成空格"}, "常用设置_:set et":{"name":":set et","type":"常用设置","path":"vim/常用设置.html","desc":"设置展开 tab 成空格"}, "常用设置_:set winaltkeys=no":{"name":":set winaltkeys=no","type":"常用设置","path":"vim/常用设置.html","desc":"设置 GVim 下正常捕获 ALT 键"}, "常用设置_:set nowrap":{"name":":set nowrap","type":"常用设置","path":"vim/常用设置.html","desc":"关闭自动换行"}, "常用设置_:set ttimeout":{"name":":set ttimeout","type":"常用设置","path":"vim/常用设置.html","desc":"允许终端按键检测超时(终端下功能键为一串ESC开头的扫描码)"}, "常用设置_:set ttm=100":{"name":":set ttm=100","type":"常用设置","path":"vim/常用设置.html","desc":"设置终端按键检测超时为100毫秒"}, "常用设置_:set term=?":{"name":":set term=?","type":"常用设置","path":"vim/常用设置.html","desc":"设置终端类型,比如常见的 xterm"}, "常用设置_:set ignorecase":{"name":":set ignorecase","type":"常用设置","path":"vim/常用设置.html","desc":"设置搜索是否忽略大小写"}, "常用设置_:set smartcase":{"name":":set smartcase","type":"常用设置","path":"vim/常用设置.html","desc":"智能大小写,默认忽略大小写,除非搜索内容里包含大写字母"}, "常用设置_:set list":{"name":":set list","type":"常用设置","path":"vim/常用设置.html","desc":"设置显示制表符和换行符"}, "常用设置_:set number":{"name":":set number","type":"常用设置","path":"vim/常用设置.html","desc":"设置显示行号,禁止显示行号可以用 :set nonumber"}, "常用设置_:set relativenumber":{"name":":set relativenumber","type":"常用设置","path":"vim/常用设置.html","desc":"设置显示相对行号(其他行与当前行的距离)"}, "常用设置_:set paste":{"name":":set paste","type":"常用设置","path":"vim/常用设置.html","desc":"进入粘贴模式(粘贴时禁用缩进等影响格式的东西)"}, "常用设置_:set nopaste":{"name":":set nopaste","type":"常用设置","path":"vim/常用设置.html","desc":"结束粘贴模式"}, "常用设置_:set spell":{"name":":set spell","type":"常用设置","path":"vim/常用设置.html","desc":"允许拼写检查"}, "常用设置_:set hlsearch":{"name":":set hlsearch","type":"常用设置","path":"vim/常用设置.html","desc":"设置高亮查找"}, "常用设置_:set ruler":{"name":":set ruler","type":"常用设置","path":"vim/常用设置.html","desc":"总是显示光标位置"}, "常用设置_:set incsearch":{"name":":set incsearch","type":"常用设置","path":"vim/常用设置.html","desc":"查找输入时动态增量显示查找结果"}, "常用设置_:set insertmode":{"name":":set insertmode","type":"常用设置","path":"vim/常用设置.html","desc":"Vim 始终处于插入模式下,使用 ctrl-o 临时执行命令"}, "常用设置_:set all":{"name":":set all","type":"常用设置","path":"vim/常用设置.html","desc":"列出所有选项设置情况"}, "常用设置_:syntax on":{"name":":syntax on","type":"常用设置","path":"vim/常用设置.html","desc":"允许语法高亮"}, "常用设置_:syntax off":{"name":":syntax off","type":"常用设置","path":"vim/常用设置.html","desc":"禁止语法高亮"}, "拼写检查_:set spell":{"name":":set spell","type":"拼写检查","path":"vim/拼写检查.html","desc":"打开拼写检查"}, "拼写检查_:set nospell":{"name":":set nospell","type":"拼写检查","path":"vim/拼写检查.html","desc":"关闭拼写检查"}, "拼写检查_]s":{"name":"]s","type":"拼写检查","path":"vim/拼写检查.html","desc":"下一处错误拼写的单词"}, "拼写检查_[s":{"name":"[s","type":"拼写检查","path":"vim/拼写检查.html","desc":"上一处错误拼写的单词"}, "拼写检查_zg":{"name":"zg","type":"拼写检查","path":"vim/拼写检查.html","desc":"加入单词到拼写词表中"}, "拼写检查_zug":{"name":"zug","type":"拼写检查","path":"vim/拼写检查.html","desc":"撤销上一次加入的单词"}, "拼写检查_z=":{"name":"z=","type":"拼写检查","path":"vim/拼写检查.html","desc":"拼写建议"}, "标签页_:tabs":{"name":":tabs","type":"标签页","path":"vim/标签页.html","desc":"显示所有标签页"}, "标签页_:tabe <filename>":{"name":":tabe <filename>","type":"标签页","path":"vim/标签页.html","desc":"在新标签页中打开文件 filename"}, "标签页_:tabn":{"name":":tabn","type":"标签页","path":"vim/标签页.html","desc":"下一个标签页"}, "标签页_:tabp":{"name":":tabp","type":"标签页","path":"vim/标签页.html","desc":"上一个标签页"}, "标签页_:tabc":{"name":":tabc","type":"标签页","path":"vim/标签页.html","desc":"关闭当前标签页"}, "标签页_:tabo":{"name":":tabo","type":"标签页","path":"vim/标签页.html","desc":"关闭其他标签页"}, "标签页_:tabn n":{"name":":tabn n","type":"标签页","path":"vim/标签页.html","desc":"切换到第n个标签页,比如 :tabn 3 切换到第三个标签页"}, "标签页_:tabm n":{"name":":tabm n","type":"标签页","path":"vim/标签页.html","desc":"标签移动"}, "标签页_:tabfirst":{"name":":tabfirst","type":"标签页","path":"vim/标签页.html","desc":"切换到第一个标签页"}, "标签页_:tablast":{"name":":tablast","type":"标签页","path":"vim/标签页.html","desc":"切换到最后一个标签页"}, "标签页_:tab help":{"name":":tab help","type":"标签页","path":"vim/标签页.html","desc":"在标签页打开帮助"}, "标签页_:tab drop <file>":{"name":":tab drop <file>","type":"标签页","path":"vim/标签页.html","desc":"如果文件已被其他标签页和窗口打开则跳过去,否则新标签打开"}, "标签页_:tab split":{"name":":tab split","type":"标签页","path":"vim/标签页.html","desc":"在新的标签页中打开当前窗口里的文件"}, "标签页_:tab ball":{"name":":tab ball","type":"标签页","path":"vim/标签页.html","desc":"将缓存中所有文件用标签页打开"}, "标签页_:set showtabline=?":{"name":":set showtabline=?","type":"标签页","path":"vim/标签页.html","desc":"设置为 0 就不显示标签页标签,1会按需显示,2会永久显示"}, "标签页_ngt":{"name":"ngt","type":"标签页","path":"vim/标签页.html","desc":"切换到第n个标签页,比如 2gt 将会切换到第二个标签页"}, "标签页_gt":{"name":"gt","type":"标签页","path":"vim/标签页.html","desc":"下一个标签页"}, "标签页_gT":{"name":"gT","type":"标签页","path":"vim/标签页.html","desc":"上一个标签页"}, "窗口操作_:sp <filename>":{"name":":sp <filename>","type":"窗口操作","path":"vim/窗口操作.html","desc":"上下切分窗口并在新窗口打开文件 filename"}, "窗口操作_:vs <filename>":{"name":":vs <filename>","type":"窗口操作","path":"vim/窗口操作.html","desc":"左右切分窗口并在新窗口打开文件 filename"}, "窗口操作_CTRL-W s":{"name":"CTRL-W s","type":"窗口操作","path":"vim/窗口操作.html","desc":"上下切分窗口"}, "窗口操作_CTRL-W v":{"name":"CTRL-W v","type":"窗口操作","path":"vim/窗口操作.html","desc":"左右切分窗口"}, "窗口操作_CTRL-W w":{"name":"CTRL-W w","type":"窗口操作","path":"vim/窗口操作.html","desc":"循环切换到下一个窗口"}, "窗口操作_CTRL-W W":{"name":"CTRL-W W","type":"窗口操作","path":"vim/窗口操作.html","desc":"循环切换到上一个窗口"}, "窗口操作_CTRL-W p":{"name":"CTRL-W p","type":"窗口操作","path":"vim/窗口操作.html","desc":"跳到上一个访问过的窗口"}, "窗口操作_CTRL-W c":{"name":"CTRL-W c","type":"窗口操作","path":"vim/窗口操作.html","desc":"关闭当前窗口"}, "窗口操作_CTRL-W o":{"name":"CTRL-W o","type":"窗口操作","path":"vim/窗口操作.html","desc":"关闭其他窗口"}, "窗口操作_CTRL-W h":{"name":"CTRL-W h","type":"窗口操作","path":"vim/窗口操作.html","desc":"跳到左边的窗口"}, "窗口操作_CTRL-W j":{"name":"CTRL-W j","type":"窗口操作","path":"vim/窗口操作.html","desc":"跳到下边的窗口"}, "窗口操作_CTRL-W k":{"name":"CTRL-W k","type":"窗口操作","path":"vim/窗口操作.html","desc":"跳到上边的窗口"}, "窗口操作_CTRL-W l":{"name":"CTRL-W l","type":"窗口操作","path":"vim/窗口操作.html","desc":"跳到右边的窗口"}, "窗口操作_CTRL-W +":{"name":"CTRL-W +","type":"窗口操作","path":"vim/窗口操作.html","desc":"增加当前窗口的行高,前面可以加数字"}, "窗口操作_CTRL-W -":{"name":"CTRL-W -","type":"窗口操作","path":"vim/窗口操作.html","desc":"减少当前窗口的行高,前面可以加数字"}, "窗口操作_CTRL-W <":{"name":"CTRL-W <","type":"窗口操作","path":"vim/窗口操作.html","desc":"减少当前窗口的列宽,前面可以加数字"}, "窗口操作_CTRL-W >":{"name":"CTRL-W >","type":"窗口操作","path":"vim/窗口操作.html","desc":"增加当前窗口的列宽,前面可以加数字"}, "窗口操作_CTRL-W =":{"name":"CTRL-W =","type":"窗口操作","path":"vim/窗口操作.html","desc":"让所有窗口宽高相同"}, "窗口操作_CTRL-W H":{"name":"CTRL-W H","type":"窗口操作","path":"vim/窗口操作.html","desc":"将当前窗口移动到最左边"}, "窗口操作_CTRL-W J":{"name":"CTRL-W J","type":"窗口操作","path":"vim/窗口操作.html","desc":"将当前窗口移动到最下边"}, "窗口操作_CTRL-W K":{"name":"CTRL-W K","type":"窗口操作","path":"vim/窗口操作.html","desc":"将当前窗口移动到最上边"}, "窗口操作_CTRL-W L":{"name":"CTRL-W L","type":"窗口操作","path":"vim/窗口操作.html","desc":"将当前窗口移动到最右边"}, "窗口操作_CTRL-W x":{"name":"CTRL-W x","type":"窗口操作","path":"vim/窗口操作.html","desc":"交换窗口"}, "窗口操作_CTRL-W f":{"name":"CTRL-W f","type":"窗口操作","path":"vim/窗口操作.html","desc":"在新窗口中打开名为光标下文件名的文件"}, "窗口操作_CTRL-W gf":{"name":"CTRL-W gf","type":"窗口操作","path":"vim/窗口操作.html","desc":"在新标签页中打开名为光标下文件名的文件"}, "窗口操作_CTRL-W R":{"name":"CTRL-W R","type":"窗口操作","path":"vim/窗口操作.html","desc":"旋转窗口"}, "窗口操作_CTRL-W T":{"name":"CTRL-W T","type":"窗口操作","path":"vim/窗口操作.html","desc":"将当前窗口移到新的标签页中"}, "窗口操作_CTRL-W P":{"name":"CTRL-W P","type":"窗口操作","path":"vim/窗口操作.html","desc":"跳转到预览窗口"}, "窗口操作_CTRL-W z":{"name":"CTRL-W z","type":"窗口操作","path":"vim/窗口操作.html","desc":"关闭预览窗口"}, "窗口操作_CTRL-W _":{"name":"CTRL-W _","type":"窗口操作","path":"vim/窗口操作.html","desc":"纵向最大化当前窗口"}, "窗口操作_CTRL-W |":{"name":"CTRL-W |","type":"窗口操作","path":"vim/窗口操作.html","desc":"横向最大化当前窗口"}, "文本对象_$":{"name":"$","type":"文本对象","path":"vim/文本对象.html","desc":"到行末"}, "文本对象_0":{"name":"0","type":"文本对象","path":"vim/文本对象.html","desc":"到行首"}, "文本对象_^":{"name":"^","type":"文本对象","path":"vim/文本对象.html","desc":"到行首非空字符"}, "文本对象_tx":{"name":"tx","type":"文本对象","path":"vim/文本对象.html","desc":"光标位置到字符 x 之前"}, "文本对象_fx":{"name":"fx","type":"文本对象","path":"vim/文本对象.html","desc":"光标位置到字符 x 之处"}, "文本对象_iw":{"name":"iw","type":"文本对象","path":"vim/文本对象.html","desc":"整个单词(不包括分隔符)"}, "文本对象_aw":{"name":"aw","type":"文本对象","path":"vim/文本对象.html","desc":"整个单词(包括分隔符)"}, "文本对象_iW":{"name":"iW","type":"文本对象","path":"vim/文本对象.html","desc":"整个 WORD(不包括分隔符)"}, "文本对象_aW":{"name":"aW","type":"文本对象","path":"vim/文本对象.html","desc":"整个 WORD(包括分隔符)"}, "文本对象_is":{"name":"is","type":"文本对象","path":"vim/文本对象.html","desc":"整个句子(不包括分隔符)"}, "文本对象_ib":{"name":"ib","type":"文本对象","path":"vim/文本对象.html","desc":"小括号内"}, "文本对象_ab":{"name":"ab","type":"文本对象","path":"vim/文本对象.html","desc":"小括号内(包含小括号本身)"}, "文本对象_iB":{"name":"iB","type":"文本对象","path":"vim/文本对象.html","desc":"大括号内"}, "文本对象_aB":{"name":"aB","type":"文本对象","path":"vim/文本对象.html","desc":"大括号内(包含大括号本身)"}, "文本对象_i)":{"name":"i)","type":"文本对象","path":"vim/文本对象.html","desc":"小括号内"}, "文本对象_a)":{"name":"a)","type":"文本对象","path":"vim/文本对象.html","desc":"小括号内(包含小括号本身)"}, "文本对象_i]":{"name":"i]","type":"文本对象","path":"vim/文本对象.html","desc":"中括号内"}, "文本对象_a]":{"name":"a]","type":"文本对象","path":"vim/文本对象.html","desc":"中括号内(包含中括号本身)"}, "文本对象_i}":{"name":"i}","type":"文本对象","path":"vim/文本对象.html","desc":"大括号内"}, "文本对象_a}":{"name":"a}","type":"文本对象","path":"vim/文本对象.html","desc":"大括号内(包含大括号本身)"}, "文本对象_i'":{"name":"i'","type":"文本对象","path":"vim/文本对象.html","desc":"单引号内"}, "文本对象_a'":{"name":"a'","type":"文本对象","path":"vim/文本对象.html","desc":"单引号内(包含单引号本身)"}, "文本对象_i\"":{"name":"i\"","type":"文本对象","path":"vim/文本对象.html","desc":"双引号内"}, "文本对象_a\"":{"name":"a\"","type":"文本对象","path":"vim/文本对象.html","desc":"双引号内(包含双引号本身)"}, "文本对象_2i)":{"name":"2i)","type":"文本对象","path":"vim/文本对象.html","desc":"往外两层小括号内"}, "文本对象_2a)":{"name":"2a)","type":"文本对象","path":"vim/文本对象.html","desc":"往外两层小括号内(包含小括号本身)"}, "文本对象_2f)":{"name":"2f)","type":"文本对象","path":"vim/文本对象.html","desc":"到第二个小括号处"}, "文本对象_2t)":{"name":"2t)","type":"文本对象","path":"vim/文本对象.html","desc":"到第二个小括号前"}, "书签_:marks":{"name":":marks","type":"书签","path":"vim/书签.html","desc":"显示所有书签"}, "书签_ma":{"name":"ma","type":"书签","path":"vim/书签.html","desc":"保存当前位置到书签 a ,书签名小写字母为文件内,大写全局"}, "书签_'a":{"name":"'a","type":"书签","path":"vim/书签.html","desc":"跳转到书签 a所在的行"}, "书签_`a":{"name":"`a","type":"书签","path":"vim/书签.html","desc":"跳转到书签 a所在位置"}, "书签_`.":{"name":"`.","type":"书签","path":"vim/书签.html","desc":"跳转到上一次编辑的行"}, "书签_'A":{"name":"'A","type":"书签","path":"vim/书签.html","desc":"跳转到全文书签 A"}, "书签_['":{"name":"['","type":"书签","path":"vim/书签.html","desc":"跳转到上一个书签"}, "书签_]'":{"name":"]'","type":"书签","path":"vim/书签.html","desc":"跳转到下一个书签"}, "书签_'<":{"name":"'<","type":"书签","path":"vim/书签.html","desc":"跳到上次可视模式选择区域的开始"}, "书签_'>":{"name":"'>","type":"书签","path":"vim/书签.html","desc":"跳到上次可视模式选择区域的结束"}, "代码折叠_za":{"name":"za","type":"代码折叠","path":"vim/代码折叠.html","desc":"切换折叠"}, "代码折叠_zA":{"name":"zA","type":"代码折叠","path":"vim/代码折叠.html","desc":"递归切换折叠"}, "代码折叠_zc":{"name":"zc","type":"代码折叠","path":"vim/代码折叠.html","desc":"折叠光标下代码"}, "代码折叠_zC":{"name":"zC","type":"代码折叠","path":"vim/代码折叠.html","desc":"折叠光标下所有代码"}, "代码折叠_zd":{"name":"zd","type":"代码折叠","path":"vim/代码折叠.html","desc":"删除光标下折叠"}, "代码折叠_zD":{"name":"zD","type":"代码折叠","path":"vim/代码折叠.html","desc":"递归删除所有折叠"}, "代码折叠_zE":{"name":"zE","type":"代码折叠","path":"vim/代码折叠.html","desc":"删除所有折叠"}, "代码折叠_zf":{"name":"zf","type":"代码折叠","path":"vim/代码折叠.html","desc":"创建代码折叠"}, "代码折叠_zF":{"name":"zF","type":"代码折叠","path":"vim/代码折叠.html","desc":"指定行数创建折叠"}, "代码折叠_zi":{"name":"zi","type":"代码折叠","path":"vim/代码折叠.html","desc":"切换折叠"}, "代码折叠_zm":{"name":"zm","type":"代码折叠","path":"vim/代码折叠.html","desc":"所有代码折叠一层"}, "代码折叠_zr":{"name":"zr","type":"代码折叠","path":"vim/代码折叠.html","desc":"所有代码打开一层"}, "代码折叠_zM":{"name":"zM","type":"代码折叠","path":"vim/代码折叠.html","desc":"折叠所有代码,设置 foldlevel=0,设置 foldenable"}, "代码折叠_zR":{"name":"zR","type":"代码折叠","path":"vim/代码折叠.html","desc":"打开所有代码,设置 foldlevel 为最大值"}, "代码折叠_zn":{"name":"zn","type":"代码折叠","path":"vim/代码折叠.html","desc":"折叠 none,重置 foldenable 并打开所有代码"}, "代码折叠_zN":{"name":"zN","type":"代码折叠","path":"vim/代码折叠.html","desc":"折叠 normal,重置 foldenable 并恢复所有折叠"}, "代码折叠_zo":{"name":"zo","type":"代码折叠","path":"vim/代码折叠.html","desc":"打开一层代码"}, "代码折叠_zO":{"name":"zO","type":"代码折叠","path":"vim/代码折叠.html","desc":"打开光标下所有代码折叠"}, "Quickfix 窗口_:copen":{"name":":copen","type":"Quickfix 窗口","path":"vim/Quickfix 窗口.html","desc":"打开 quickfix 窗口(查看编译,grep等信息)"}, "Quickfix 窗口_:copen 10":{"name":":copen 10","type":"Quickfix 窗口","path":"vim/Quickfix 窗口.html","desc":"打开 quickfix 窗口,并且设置高度为 10"}, "Quickfix 窗口_:cclose":{"name":":cclose","type":"Quickfix 窗口","path":"vim/Quickfix 窗口.html","desc":"关闭 quickfix 窗口"}, "Quickfix 窗口_:cfirst":{"name":":cfirst","type":"Quickfix 窗口","path":"vim/Quickfix 窗口.html","desc":"跳到 quickfix 中第一个错误信息"}, "Quickfix 窗口_:clast":{"name":":clast","type":"Quickfix 窗口","path":"vim/Quickfix 窗口.html","desc":"跳到 quickfix 中最后一条错误信息"}, "Quickfix 窗口_:cc [nr]":{"name":":cc [nr]","type":"Quickfix 窗口","path":"vim/Quickfix 窗口.html","desc":"查看错误 [nr]"}, "Quickfix 窗口_:cnext":{"name":":cnext","type":"Quickfix 窗口","path":"vim/Quickfix 窗口.html","desc":"跳到 quickfix 中下一个错误信息"}, "Quickfix 窗口_:cprev":{"name":":cprev","type":"Quickfix 窗口","path":"vim/Quickfix 窗口.html","desc":"跳到 quickfix 中上一个错误信息"} } \ No newline at end of file