页首

摘要: sqlite3 API Summary sqlite3 The database connection object. Created by sqlite3_open() and destroyed by sqlite3_close(). Each open SQLite database is r 阅读全文
posted @ 2018-03-02 10:37 zhangrxiang 阅读(288) 评论(0) 推荐(0) 编辑
摘要: addslashes (PHP 4, PHP 5, PHP 7) addslashes — Quote string with slashes addslashes — 使用反斜线引用字符串 Description A use case of addslashes() is escaping the 阅读全文
posted @ 2018-03-01 20:20 zhangrxiang 阅读(257) 评论(0) 推荐(0) 编辑
摘要: addcslashes (PHP 4, PHP 5, PHP 7) addcslashes — Quote string with slashes in a C style addcslashes — 以 C 语言风格使用反斜线转义字符串中的字符 Description Parameters str 阅读全文
posted @ 2018-03-01 20:05 zhangrxiang 阅读(356) 评论(0) 推荐(0) 编辑
摘要: string Quote string with slashes in a C style 以 C 语言风格使用反斜线转义字符串中的字符 Quote string with slashes 使用反斜线引用字符串 Convert binary data into hexadecimal represe 阅读全文
posted @ 2018-03-01 19:36 zhangrxiang 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 从 source 复制 num 个字符到 destination,但是在重叠内存块这方面,memmove() 是比 memcpy() 更安全的方法。如果目标区域和源区域有重叠的话,memmove() 能够保证源串在被覆盖之前将重叠区域的字节拷贝到目标区域中,复制后源区域的内容会被更改。如果目标区域与源区域没有重叠,则和 memcpy() 函数功能相同。 阅读全文
posted @ 2018-02-11 21:01 zhangrxiang 阅读(402) 评论(0) 推荐(0) 编辑
摘要: 从 source 所指向的对象复制 num 个字符到 destination 所指向的对象。两个对象都被转译成 unsigned char 的数组。 阅读全文
posted @ 2018-02-10 22:31 zhangrxiang 阅读(734) 评论(0) 推荐(0) 编辑
摘要: 把存储区 lhs 和存储区 的前 count 个字节进行比较。 阅读全文
posted @ 2018-02-09 15:24 zhangrxiang 阅读(426) 评论(0) 推荐(0) 编辑
摘要: 在参数 ptr 所指向的字符串的前 count 个字节中搜索第一次出现字符 ch(一个无符号字符)的位置。 阅读全文
posted @ 2018-02-08 16:53 zhangrxiang 阅读(346) 评论(0) 推荐(0) 编辑
摘要: 返回给定空终止字符串的长度,即首元素为 str 所指,且不包含首个空字符的字符数组中的字符数。 阅读全文
posted @ 2018-02-07 22:38 zhangrxiang 阅读(551) 评论(0) 推荐(0) 编辑
摘要: 检索字符串 dest 中第一个匹配字符串 breakset 中字符的字符,不包含空结束字符。也就是说,依次检验字符串 dest 中的字符,当被检验字符在字符串 breakset 中也包含时,则停止检验,并返回该字符位置。 阅读全文
posted @ 2018-02-06 15:30 zhangrxiang 阅读(301) 评论(0) 推荐(0) 编辑

页脚