PHP之mb_strripos使用

2018-02-05
阅读 3 分钟
1.7k
(PHP 4 >= 4.0.6, PHP 5, PHP 7) mb_strrpos — Find position of last occurrence of a string in a string mb_strripos — 大小写不敏感地在字符串中查找一个字符串最后出现的位置

C 标准库 - string.h之strspn使用

2018-02-05
阅读 3 分钟
1.7k
Returns the length of the initial portion of str1 which consists only of characters that are part of str2. The search does not include the terminating null-characters of either strings, but ends there. 检索字符串 dest 中第一个不在字符串 src 中出现的字符下标。返回 dest 所指向的空终止字节串的最大起...

C 标准库 - string.h之strstr使用

2018-02-05
阅读 2 分钟
2k
Returns a pointer to the first occurrence of str2 in str1, or a null pointer if str2 is not part of str1. 查找 substr 所指的空终止字节字符串在 str 所指的空终止字节字符串中的首次出现。不比较空终止字符。

PHP之mb_strrpos使用

2018-02-04
阅读 3 分钟
4.3k
(PHP 4 >= 4.0.6, PHP 5, PHP 7) mb_strrpos — Find position of last occurrence of a string in a string mb_strrpos — 查找字符串在一个字符串中最后出现的位置

PHP之mb_strpos使用

2018-02-03
阅读 3 分钟
3.6k
(PHP 4 >= 4.0.6, PHP 5, PHP 7) mb_strpos — Find position of first occurrence of string in a string mb_strpos — 查找字符串在另一个字符串中首次出现的位置

PHP之mb_strstr使用

2018-02-01
阅读 2 分钟
3.1k
(PHP 5 >= 5.2.0, PHP 7) mb_strstr — Finds first occurrence of a string within another 查找字符串在另一个字符串里的首次出现

Linux-socket使用

2018-02-01
阅读 11 分钟
2.3k
进程通信的概念最初来源于单机系统。由于每个进程都在自己的地址范围内运行,为保证两个相互通信的进程之间既互不干扰又协调一致工作,操作系统为进程通信提供了相应设施,如

C 标准库 - ctype.h之isalnum使用

2018-01-31
阅读 2 分钟
1.6k
Checks whether c is either a decimal digit or an uppercase or lowercase letter. 检查给定的字符是否为当前 C 本地环境所分类的字母数字字符。在默认本地环境中,下列字符为字母数字:

C 标准库 - ctype.h

2018-01-31
阅读 4 分钟
1.7k
This header declares a set of functions to classify and transform individual characters.

何为cookie?

2018-01-30
阅读 6 分钟
2k
HTTP Cookie(也叫Web Cookie或浏览器Cookie)是服务器发送到用户浏览器并保存在本地的一小块数据,它会在浏览器下次向同一服务器再发起请求时被携带并发送到服务器上。通常,它用于告知服务端两个请求是否来自同一浏览器,如保持用户的登录状态。Cookie使基于无状态的HTTP协议记录稳定的状态信息成为了可能。

PHP之mb_substr使用

2018-01-30
阅读 5 分钟
1.9k
(PHP 4 >= 4.0.6, PHP 5, PHP 7) mb_substr — Get part of string mb_substr — 获取部分字符串

PHP之mb_check_encoding使用

2018-01-29
阅读 4 分钟
2.7k
(PHP 4 >= 4.4.3, PHP 5 >= 5.1.3, PHP 7) mb_check_encoding — Check if the string is valid for the specified encoding mb_check_encoding — 检查字符串在指定的编码里是否有效

PHP之mb_convert_case使用

2018-01-28
阅读 4 分钟
2.4k
(PHP 4 >= 4.3.0, PHP 5, PHP 7) mb_convert_case — Perform case folding on a string mb_convert_case — 对字符串进行大小写转换

PHP之mb_internal_encoding使用

2018-01-28
阅读 2 分钟
2.9k
(PHP 4 >= 4.0.6, PHP 5, PHP 7) mb_internal_encoding — Set/Get internal character encoding 设置或获取内部字符集