# PHP String 函数
## PHP String 简介
String 字符串函数允许您对字符串进行操作。
## 安装
String 函数是 PHP 核心的组成部分。无需安装即可使用这些函数。
## PHP String 函数
PHP:指示支持该函数的最早的 PHP 版本。
| 函数 | 描述 | PHP |
| --- | --- | --- |
| [addcslashes()](func_string_addcslashes.asp) | 在指定的字符前添加反斜杠。 | 4 |
| [addslashes()](func_string_addslashes.asp) | 在指定的预定义字符前添加反斜杠。 | 3 |
| [bin2hex()](func_string_bin2hex.asp) | 把 ASCII 字符的字符串转换为十六进制值。 | 3 |
| [chop()](func_string_chop.asp) | rtrim() 的别名。 | 3 |
| [chr()](func_string_chr.asp) | 从指定的 ASCII 值返回字符。 | 3 |
| [chunk_split()](func_string_chunk_split.asp) | 把字符串分割为一连串更小的部分。 | 3 |
| [convert_cyr_string()](func_string_convert_cyr_string.asp) | 把字符由一种 Cyrillic 字符转换成另一种。 | 3 |
| [convert_uudecode()](func_string_convert_uudecode.asp) | 对 uuencode 编码的字符串进行解码。 | 5 |
| [convert_uuencode()](func_string_convert_uuencode.asp) | 使用 uuencode 算法对字符串进行编码。 | 5 |
| [count_chars()](func_string_count_chars.asp) | 返回字符串所用字符的信息。 | 4 |
| [crc32()](func_string_crc32.asp) | 计算一个字符串的 32-bit CRC。 | 4 |
| [crypt()](func_string_crypt.asp) | 单向的字符串加密法 (hashing)。 | 3 |
| [echo()](func_string_echo.asp) | 输出字符串。 | 3 |
| [explode()](func_string_explode.asp) | 把字符串打散为数组。 | 3 |
| [fprintf()](func_string_fprintf.asp) | 把格式化的字符串写到指定的输出流。 | 5 |
| [get_html_translation_table()](func_string_get_html_translation_table.asp) | 返回翻译表。 | 4 |
| [hebrev()](func_string_hebrev.asp) | 把希伯来文本从右至左的流转换为左至右的流。 | 3 |
| [hebrevc()](func_string_hebrevc.asp) | 同上,同时把(\n) 转为 <br />。 | 3 |
| [html_entity_decode()](func_string_html_entity_decode.asp) | 把 HTML 实体转换为字符。 | 4 |
| [htmlentities()](func_string_htmlentities.asp) | 把字符转换为 HTML 实体。 | 3 |
| [htmlspecialchars_decode()](func_string_htmlspecialchars_decode.asp) | 把一些预定义的 HTML 实体转换为字符。 | 5 |
| [htmlspecialchars()](func_string_htmlspecialchars.asp) | 把一些预定义的字符转换为 HTML 实体。 | 3 |
| [implode()](func_string_implode.asp) | 把数组元素组合为一个字符串。 | 3 |
| [join()](func_string_join.asp) | implode() 的别名。 | 3 |
| [levenshtein()](func_string_levenshtein.asp) | 返回两个字符串之间的 Levenshtein 距离。 | 3 |
| [localeconv()](func_string_localeconv.asp) | 返回包含本地数字及货币信息格式的数组。 | 4 |
| [ltrim()](func_string_ltrim.asp) | 从字符串左侧删除空格或其他预定义字符。 | 3 |
| [md5()](func_string_md5.asp) | 计算字符串的 MD5 散列。 | 3 |
| [md5_file()](func_string_md5_file.asp) | 计算文件的 MD5 散列。 | 4 |
| [metaphone()](func_string_metaphone.asp) | 计算字符串的 metaphone 键。 | 4 |
| [money_format()](func_string_money_format.asp) | 把字符串格式化为货币字符串。 | 4 |
| [nl_langinfo()](func_string_nl_langinfo.asp) | 返回指定的本地信息。 | 4 |
| [nl2br()](func_string_nl2br.asp) | 在字符串中的每个新行之前插入 HTML 换行符。 | 3 |
| [number_format()](func_string_number_format.asp) | 通过千位分组来格式化数字。 | 3 |
| [ord()](func_string_ord.asp) | 返回字符串第一个字符的 ASCII 值。 | 3 |
| [parse_str()](func_string_parse_str.asp) | 把查询字符串解析到变量中。 | 3 |
| [print()](func_string_print.asp) | 输出一个或多个字符串。 | 3 |
| [printf()](func_string_printf.asp) | 输出格式化的字符串。 | 3 |
| [quoted_printable_decode()](func_string_quoted_printable_decode.asp) | 解码 quoted-printable 字符串。 | 3 |
| [quotemeta()](func_string_quotemeta.asp) | 在字符串中某些预定义的字符前添加反斜杠。 | 3 |
| [rtrim()](func_string_rtrim.asp) | 从字符串的末端开始删除空白字符或其他预定义字符。 | 3 |
| [setlocale()](func_string_setlocale.asp) | 设置地区信息(地域信息)。 | 3 |
| [sha1()](func_string_sha1.asp) | 计算字符串的 SHA-1 散列。 | 4 |
| [sha1_file()](func_string_sha1_file.asp) | 计算文件的 SHA-1 散列。 | 4 |
| [similar_text()](func_string_similar_text.asp) | 计算两个字符串的匹配字符的数目。 | 3 |
| [soundex()](func_string_soundex.asp) | 计算字符串的 soundex 键。 | 3 |
| [sprintf()](func_string_sprintf.asp) | 把格式化的字符串写写入一个变量中。 | 3 |
| [sscanf()](func_string_sscanf.asp) | 根据指定的格式解析来自一个字符串的输入。 | 4 |
| [str_ireplace()](func_string_str_ireplace.asp) | 替换字符串中的一些字符。(对大小写不敏感) | 5 |
| [str_pad()](func_string_str_pad.asp) | 把字符串填充为新的长度。 | 4 |
| [str_repeat()](func_string_str_repeat.asp) | 把字符串重复指定的次数。 | 4 |
| [str_replace()](func_string_str_replace.asp) | 替换字符串中的一些字符。(对大小写敏感) | 3 |
| [str_rot13()](func_string_str_rot13.asp) | 对字符串执行 ROT13 编码。 | 4 |
| [str_shuffle()](func_string_str_shuffle.asp) | 随机地打乱字符串中的所有字符。 | 4 |
| [str_split()](func_string_str_split.asp) | 把字符串分割到数组中。 | 5 |
| [str_word_count()](func_string_str_word_count.asp) | 计算字符串中的单词数。 | 4 |
| [strcasecmp()](func_string_strcasecmp.asp) | 比较两个字符串。(对大小写不敏感) | 3 |
| [strchr()](func_string_strchr.asp) | 搜索字符串在另一字符串中的第一次出现。strstr() 的别名 | 3 |
| [strcmp()](func_string_strcmp.asp) | 比较两个字符串。(对大小写敏感) | 3 |
| [strcoll()](func_string_strcoll.asp) | 比较两个字符串(根据本地设置)。 | 4 |
| [strcspn()](func_string_strcspn.asp) | 返回在找到任何指定的字符之前,在字符串查找的字符数。 | 3 |
| [strip_tags()](func_string_strip_tags.asp) | 剥去 HTML、XML 以及 PHP 的标签。 | 3 |
| [stripcslashes()](func_string_stripcslashes.asp) | 删除由 addcslashes() 函数添加的反斜杠。 | 4 |
| [stripslashes()](func_string_stripslashes.asp) | 删除由 addslashes() 函数添加的反斜杠。 | 3 |
| [stripos()](func_string_stripos.asp) | 返回字符串在另一字符串中第一次出现的位置(大小写不敏感) | 5 |
| [stristr()](func_string_stristr.asp) | 查找字符串在另一字符串中第一次出现的位置(大小写不敏感) | 3 |
| [strlen()](func_string_strlen.asp) | 返回字符串的长度。 | 3 |
| [strnatcasecmp()](func_string_strnatcasecmp.asp) | 使用一种“自然”算法来比较两个字符串(对大小写不敏感) | 4 |
| [strnatcmp()](func_string_strnatcmp.asp) | 使用一种“自然”算法来比较两个字符串(对大小写敏感) | 4 |
| [strncasecmp()](func_string_strncasecmp.asp) | 前 n 个字符的字符串比较(对大小写不敏感)。 | 4 |
| [strncmp()](func_string_strncmp.asp) | 前 n 个字符的字符串比较(对大小写敏感)。 | 4 |
| [strpbrk()](func_string_strpbrk.asp) | 在字符串中搜索指定字符中的任意一个。 | 5 |
| [strpos()](func_string_strpos.asp) | 返回字符串在另一字符串中首次出现的位置(对大小写敏感) | 3 |
| [strrchr()](func_string_strrchr.asp) | 查找字符串在另一个字符串中最后一次出现的位置。 | 3 |
| [strrev()](func_string_strrev.asp) | 反转字符串。 | 3 |
| [strripos()](func_string_strripos.asp) | 查找字符串在另一字符串中最后出现的位置(对大小写不敏感) | 5 |
| [strrpos()](func_string_strrpos.asp) | 查找字符串在另一字符串中最后出现的位置(对大小写敏感) | 3 |
| [strspn()](func_string_strspn.asp) | 返回在字符串中包含的特定字符的数目。 | 3 |
| [strstr()](func_string_strstr.asp) | 搜索字符串在另一字符串中的首次出现(对大小写敏感) | 3 |
| [strtok()](func_string_strtok.asp) | 把字符串分割为更小的字符串。 | 3 |
| [strtolower()](func_string_strtolower.asp) | 把字符串转换为小写。 | 3 |
| [strtoupper()](func_string_strtoupper.asp) | 把字符串转换为大写。 | 3 |
| [strtr()](func_string_strtr.asp) | 转换字符串中特定的字符。 | 3 |
| [substr()](func_string_substr.asp) | 返回字符串的一部分。 | 3 |
| [substr_compare()](func_string_substr_compare.asp) | 从指定的开始长度比较两个字符串。 | 5 |
| [substr_count()](func_string_substr_count.asp) | 计算子串在字符串中出现的次数。 | 4 |
| [substr_replace()](func_string_substr_replace.asp) | 把字符串的一部分替换为另一个字符串。 | 4 |
| [trim()](func_string_trim.asp) | 从字符串的两端删除空白字符和其他预定义字符。 | 3 |
| [ucfirst()](func_string_ucfirst.asp) | 把字符串中的首字符转换为大写。 | 3 |
| [ucwords()](func_string_ucwords.asp) | 把字符串中每个单词的首字符转换为大写。 | 3 |
| [vfprintf()](func_string_vfprintf.asp) | 把格式化的字符串写到指定的输出流。 | 5 |
| [vprintf()](func_string_vprintf.asp) | 输出格式化的字符串。 | 4 |
| [vsprintf()](func_string_vsprintf.asp) | 把格式化字符串写入变量中。 | 4 |
| [wordwrap()](func_string_wordwrap.asp) | 按照指定长度对字符串进行折行处理。 | 4 |
## PHP String 常量
PHP:指示支持该常量的最早的 PHP 版本。
| 常量 | 描述 | PHP |
| --- | --- | --- |
| CRYPT_SALT_LENGTH | 包含系统默认加密方法的长度。对于标准 DES 加密,长度是 2。 |
| CRYPT_STD_DES | 如果支持 2 字符 salt 的 DES 加密,则设置为 1,否则为 0。 |
| CRYPT_EXT_DES | 如果支持 9 字符 salt 的 DES 加密,则设置为 1,否则为 0。 |
| CRYPT_MD5 | 如果支持以$1$开始的 12 字符 salt 的MD5加密,则设置为1,否则为0。 |
| CRYPT_BLOWFISH | 如果支持以 $2$ 或 $2a$ 开始的 16 字符 salt 的 Blowfish 加密,则设置为 1,否则为 0。 |
| HTML_SPECIALCHARS |
| HTML_ENTITIES |
| ENT_COMPAT |
| ENT_QUOTES |
| ENT_NOQUOTES |
| CHAR_MAX |
| LC_CTYPE |
| LC_NUMERIC |
| LC_TIME |
| LC_COLLATE |
| LC_MONETARY |
| LC_ALL |
| LC_MESSAGES |
| STR_PAD_LEFT |
| STR_PAD_RIGHT |
| STR_PAD_BOTH |
- PHP Array 函数
- PHP array()
- PHP array_change_key_case() 函数
- PHP array_chunk() 函数
- PHP array_combine() 函数
- PHP array_count_values() 函数
- PHP array_diff() 函数
- PHP array_diff_assoc() 函数
- PHP array_diff_key() 函数
- PHP array_diff_uassoc() 函数
- PHP array_diff_ukey() 函数
- PHP array_fill() 函数
- PHP array_filter() 函数
- PHP array_flip() 函数
- PHP array_intersect() 函数
- PHP array_intersect_assoc() 函数
- PHP array_intersect_key() 函数
- PHP array_intersect_uassoc() 函数
- PHP array_intersect_ukey() 函数
- PHP array_key_exists() 函数
- PHP array_keys() 函数
- PHP array_map() 函数
- PHP array_merge() 函数
- PHP array_merge_recursive() 函数
- PHP array_multisort() 函数
- PHP array_pad() 函数
- PHP array_pop() 函数
- PHP array_product() 函数
- PHP array_push() 函数
- PHP array_rand() 函数
- PHP array_reduce() 函数
- PHP array_reverse() 函数
- PHP array_search() 函数
- PHP array_shift() 函数
- PHP array_slice() 函数
- PHP array_splice() 函数
- PHP array_sum() 函数
- PHP array_udiff() 函数
- PHP array_udiff_assoc() 函数
- PHP array_udiff_uassoc() 函数
- PHP array_uintersect() 函数
- PHP array_uintersect_assoc() 函数
- PHP array_uintersect_uassoc() 函数
- PHP array_unique() 函数
- PHP array_unshift() 函数
- PHP array_values() 函数
- PHP array_walk() 函数
- PHP array_walk_recursive() 函数
- PHP arsort() 函数
- PHP asort() 函数
- PHP compact() 函数
- PHP count() 函数
- PHP current() 函数
- PHP each() 函数
- PHP extract() 函数
- PHP in_array() 函数
- PHP key() 函数
- PHP krsort() 函数
- PHP ksort() 函数
- PHP list() 函数
- PHP natcasesort() 函数
- PHP natsort() 函数
- PHP next() 函数
- PHP pos() 函数
- PHP prev() 函数
- PHP range() 函数
- PHP reset() 函数
- PHP rsort() 函数
- PHP shuffle() 函数
- PHP sizeof() 函数
- PHP sort() 函数
- PHP uasort() 函数
- PHP uksort() 函数
- PHP usort() 函数
- PHP Calendar 函数
- PHP cal_days_in_month() 函数
- PHP cal_from_jd() 函数
- PHP cal_info() 函数
- PHP cal_to_jd() 函数
- PHP easter_date() 函数
- PHP easter_days() 函数
- PHP FrenchToJD() 函数
- PHP GregorianToJD() 函数
- PHP JDDayOfWeek() 函数
- PHP JDMonthName() 函数
- PHP JDToFrench() 函数
- PHP JDToGregorian() 函数
- PHP JDToJewish() 函数
- PHP JDToJulian() 函数
- PHP JDToUnix() 函数
- PHP JewishToJD() 函数
- PHP JulianToJD() 函数
- PHP UnixToJD() 函数
- PHP cURL 函数
- PHP curl_close函数
- PHP curl_copy_handle函数
- PHP curl_errno函数
- PHP curl_error函数
- PHP curl_escape函数
- PHP curl_exec函数
- PHP curl_file_create函数
- PHP curl_getinfo函数
- PHP curl_init函数
- PHP curl_multi_add_handle函数
- PHP curl_multi_close函数
- PHP curl_multi_exec函数
- PHP curl_multi_getcontent函数
- PHP curl_multi_info_read函数
- PHP curl_multi_init函数
- PHP curl_multi_remove_handle函数
- PHP curl_multi_select函数
- PHP curl_multi_setopt函数
- PHP curl_multi_strerror函数
- PHP curl_pause函数
- PHP curl_reset函数
- PHP curl_setopt_array函数
- PHP curl_setopt函数
- PHP curl_share_close函数
- PHP curl_share_init函数
- PHP curl_share_setopt函数
- PHP curl_strerror函数
- PHP curl_unescape函数
- PHP curl_version函数
- PHP Date / Time 函数
- PHP checkdate() 函数
- PHP date_default_timezone_get() 函数
- PHP date_default_timezone_set() 函数
- PHP date_sunrise() 函数
- PHP date_sunset() 函数
- PHP date() 函数
- PHP getdate() 函数
- PHP gettimeofday() 函数
- PHP gmdate() 函数
- PHP gmmktime() 函数
- PHP gmstrftime() 函数
- PHP idate() 函数
- PHP localtime() 函数
- PHP microtime() 函数
- PHP mktime() 函数
- PHP strftime() 函数
- PHP strptime() 函数
- PHP strtotime() 函数
- PHP time() 函数
- PHP Directory 函数
- PHP chdir() 函数
- PHP chroot() 函数
- PHP dir() 函数
- PHP closedir() 函数
- PHP getcwd() 函数
- PHP opendir() 函数
- PHP readdir() 函数
- PHP rewinddir() 函数
- PHP scandir() 函数
- PHP Error 和 Logging 函数
- PHP debug_backtrace() 函数
- PHP debug_print_backtrace() 函数
- PHP error_get_last() 函数
- PHP error_log() 函数
- PHP error_reporting() 函数
- PHP restore_error_handler() 函数
- PHP restore_exception_handler() 函数
- PHP set_error_handler() 函数
- PHP set_exception_handler() 函数
- PHP trigger_error() 函数
- PHP Filesystem 函数
- PHP basename() 函数
- PHP chgrp() 函数
- PHP chmod() 函数
- PHP chown() 函数
- PHP clearstatcache() 函数
- PHP copy() 函数
- PHP dirname() 函数
- PHP disk_free_space() 函数
- PHP disk_total_space() 函数
- PHP diskfreespace() 函数
- PHP fclose() 函数
- PHP feof() 函数
- PHP fflush() 函数
- PHP fgetc() 函数
- PHP fgetcsv() 函数
- PHP fgets() 函数
- PHP fgetss() 函数
- PHP file() 函数
- PHP file_exists() 函数
- PHP file_get_contents() 函数
- PHP file_put_contents() 函数
- PHP fileatime() 函数
- PHP filectime() 函数
- PHP filegroup() 函数
- PHP fileinode() 函数
- PHP filemtime() 函数
- PHP fileowner() 函数
- PHP fileperms() 函数
- PHP filesize() 函数
- PHP filetype() 函数
- PHP flock() 函数
- PHP fnmatch() 函数
- PHP fopen() 函数
- PHP fpassthru() 函数
- PHP fputcsv() 函数
- PHP fputs() 函数
- PHP fread() 函数
- PHP fscanf() 函数
- PHP fseek() 函数
- PHP fstat() 函数
- PHP ftell() 函数
- PHP ftruncate() 函数
- PHP fwrite() 函数
- PHP glob() 函数
- PHP is_dir() 函数
- PHP is_executable() 函数
- PHP is_file() 函数
- PHP is_link() 函数
- PHP is_readable() 函数
- PHP is_uploaded_file() 函数
- PHP is_writable() 函数
- PHP is_writeable() 函数
- PHP link() 函数
- PHP linkinfo() 函数
- PHP lstat() 函数
- PHP mkdir() 函数
- PHP move_uploaded_file() 函数
- PHP parse_ini_file() 函数
- PHP pathinfo() 函数
- PHP pclose() 函数
- PHP popen() 函数
- PHP readfile() 函数
- PHP readlink() 函数
- PHP realpath() 函数
- PHP rename() 函数
- PHP rewind() 函数
- PHP rmdir() 函数
- PHP set_file_buffer() 函数
- PHP stat() 函数
- PHP symlink() 函数
- PHP tempnam() 函数
- PHP tmpfile() 函数
- PHP touch() 函数
- PHP umask() 函数
- PHP unlink() 函数
- PHP Filter 函数
- PHP filter_has_var() 函数
- PHP filter_id() 函数
- PHP filter_input() 函数
- PHP filter_input_array() 函数
- PHP filter_list() 函数
- PHP filter_var_array() 函数
- PHP filter_var() 函数
- PHP FTP 函数
- PHP ftp_alloc() 函数
- PHP ftp_cdup() 函数
- PHP ftp_chdir() 函数
- PHP ftp_chmod() 函数
- PHP ftp_close() 函数
- PHP ftp_connect() 函数
- PHP ftp_delete() 函数
- PHP ftp_exec() 函数
- PHP ftp_fget() 函数
- PHP ftp_fput() 函数
- PHP ftp_get_option() 函数
- PHP ftp_get() 函数
- PHP ftp_login() 函数
- PHP ftp_mdtm() 函数
- PHP ftp_mkdir() 函数
- PHP ftp_nb_continue() 函数
- PHP ftp_nb_fget() 函数
- PHP ftp_nb_put() 函数
- PHP ftp_nlist() 函数
- PHP ftp_pasv() 函数
- PHP ftp_put() 函数
- PHP ftp_pwd() 函数
- PHP ftp_quit() 函数
- PHP ftp_raw() 函数
- PHP ftp_rawlist() 函数
- PHP ftp_rename() 函数
- PHP ftp_rmdir() 函数
- PHP ftp_set_option() 函数
- PHP ftp_site() 函数
- PHP ftp_size() 函数
- PHP ftp_ssl_connect() 函数
- PHP ftp_systype() 函数
- PHP HTTP 函数
- PHP header() 函数
- PHP headers_list() 函数
- PHP headers_sent() 函数
- PHP setcookie() 函数
- PHP setrawcookie() 函数
- PHP libxml 函数
- PHP libxml_clear_errors() 函数
- PHP libxml_get_errors() 函数
- PHP libxml_get_last_error() 函数
- PHP libxml_use_internal_errors() 函数
- PHP Mail 函数
- PHP mail() 函数
- PHP Math 函数
- PHP abs() 函数
- PHP acos() 函数
- PHP acosh() 函数
- PHP asin() 函数
- PHP asinh() 函数
- PHP atan() 和 atan2() 函数
- PHP atanh() 函数
- PHP base_convert() 函数
- PHP bindec() 函数
- PHP ceil() 函数
- PHP cos() 函数
- PHP cosh() 函数
- PHP decbin() 函数
- PHP dechex() 函数
- PHP decoct() 函数
- PHP deg2rad() 函数
- PHP exp() 函数
- PHP expm1() 函数
- PHP floor() 函数
- PHP fmod() 函数
- PHP hexdec() 函数
- PHP hypot() 函数
- PHP is_finite() 函数
- PHP is_infinite() 函数
- PHP is_nan() 函数
- PHP lcg_value() 函数
- PHP log() 函数
- PHP log10() 函数
- PHP log1p() 函数
- PHP max() 函数
- PHP min() 函数
- PHP mt_getrandmax() 函数
- PHP mt_rand() 函数
- PHP mt_srand() 函数
- PHP octdec() 函数
- PHP pi() 函数
- PHP pow() 函数
- PHP rad2deg() 函数
- PHP rand() 函数
- PHP round() 函数
- PHP sin() 函数
- PHP sinh() 函数
- PHP sqrt() 函数
- PHP srand() 函数
- PHP tan() 函数
- PHP tanh() 函数
- PHP 5 MySQLi 函数
- PHP mysqli_affected_rows() 函数
- PHP mysqli_autocommit() 函数
- PHP mysqli_change_user() 函数
- PHP mysqli_character_set_name() 函数
- PHP mysqli_close() 函数
- PHP mysqli_commit() 函数
- PHP mysqli_connect_errno() 函数
- PHP mysqli_connect_error() 函数
- PHP mysqli_connect() 函数
- PHP mysqli_data_seek() 函数
- PHP mysqli_debug() 函数
- PHP mysqli_dump_debug_info() 函数
- PHP mysqli_errno() 函数
- PHP mysqli_error_list() 函数
- PHP mysqli_error() 函数
- PHP mysqli_fetch_all() 函数
- PHP mysqli_fetch_array() 函数
- PHP mysqli_fetch_assoc() 函数
- PHP mysqli_fetch_field_direct() 函数
- PHP mysqli_fetch_field() 函数
- PHP mysqli_fetch_fields() 函数
- PHP mysqli_fetch_lengths() 函数
- PHP mysqli_fetch_object() 函数
- PHP mysqli_fetch_row() 函数
- PHP mysqli_field_count() 函数
- PHP mysqli_field_seek() 函数
- PHP mysqli_field_tell() 函数
- PHP mysqli_free_result() 函数
- PHP mysqli_get_charset() 函数
- PHP mysqli_get_client_info() 函数
- PHP mysqli_get_client_stats() 函数
- PHP mysqli_get_client_version() 函数
- PHP mysqli_get_connection_stats() 函数
- PHP mysqli_get_connection_stats() 函数
- PHP mysqli_get_host_info() 函数
- PHP mysqli_get_proto_info() 函数
- PHP mysqli_get_server_info() 函数
- PHP mysqli_get_server_version() 函数
- PHP mysqli_info() 函数
- PHP mysqli_init() 函数
- PHP mysqli_insert_id() 函数
- PHP mysqli_kill() 函数
- PHP mysqli_more_results() 函数
- PHP mysqli_multi_query() 函数
- PHP mysqli_next_result() 函数
- PHP mysqli_num_fields() 函数
- PHP mysqli_num_rows() 函数
- PHP mysqli_options() 函数
- PHP mysqli_ping() 函数
- PHP mysqli_query() 函数
- PHP mysqli_real_connect() 函数
- PHP mysqli_real_escape_string() 函数
- PHP mysqli_refresh() 函数
- PHP mysqli_rollback() 函数
- PHP mysqli_select_db() 函数
- PHP mysqli_set_charset() 函数
- PHP mysqli_sqlstate() 函数
- PHP mysqli_ssl_set() 函数
- PHP mysqli_stat() 函数
- PHP mysqli_stmt_init() 函数
- PHP mysqli_thread_id() 函数
- PHP mysqli_thread_safe() 函数
- PHP PDO
- PHP PDO预定义常量
- PHP PDO连接
- PHP PDO 事务与自动提交
- PHP PDO 预处理语句与存储过程
- PHP PDO 错误与错误处理
- PHP PDO 大对象 (LOBs)
- PDO::beginTransaction
- PDO::commit
- PDO::__construct
- PDO::errorCode
- PDO::errorInfo
- PDO::exec
- PDO::getAttribute
- PDO::getAvailableDrivers
- PDO::inTransaction
- PDO::lastInsertId
- PDO::prepare
- PDO::query
- PDO::quote
- PDO::rollBack
- PDO::setAttribute
- PDOStatement::bindColumn
- PDOStatement::bindParam
- PDOStatement::bindValue
- PDOStatement::closeCursor
- PDOStatement::columnCount
- PDOStatement::debugDumpParams
- PDOStatement::errorCode
- PDOStatement::errorInfo
- PDOStatement::execute
- PDOStatement::fetch
- PDOStatement::fetchAll
- PDOStatement::fetchColumn
- PDOStatement::fetchObject
- PDOStatement::getAttribute
- PDOStatement::getColumnMeta
- PDOStatement::nextRowset
- PDOStatement::rowCount
- PDOStatement::setAttribute
- PDOStatement::setFetchMode
- PHP SimpleXML 函数
- PHP __construct() 函数
- PHP addAttribute() 函数
- PHP addChild() 函数
- PHP asXML() 函数
- PHP attributes() 函数
- PHP children() 函数
- PHP getDocNamespaces() 函数
- PHP getName() 函数
- PHP getNamespace() 函数
- PHP registerXPathNamespace() 函数
- PHP simplexml_import_dom() 函数
- PHP simplexml_load_file() 函数
- PHP simplexml_load_string() 函数
- PHP xpath() 函数
- PHP String 函数
- PHP addcslashes() 函数
- PHP addslashes() 函数
- PHP bin2hex() 函数
- PHP chop() 函数
- PHP chr() 函数
- PHP chunk_split() 函数
- PHP convert_cyr_string() 函数
- PHP convert_uudecode() 函数
- PHP convert_uuencode() 函数
- PHP count_chars() 函数
- PHP crc32() 函数
- PHP crypt() 函数
- PHP echo() 函数
- PHP explode() 函数
- PHP fprintf() 函数
- PHP get_html_translation_table() 函数
- PHP hebrev() 函数
- PHP hebrevc() 函数
- PHP html_entity_decode() 函数
- PHP htmlentities() 函数
- PHP htmlspecialchars_decode() 函数
- PHP htmlspecialchars() 函数
- PHP implode() 函数
- PHP join() 函数
- PHP levenshtein() 函数
- PHP localeconv() 函数
- PHP ltrim() 函数
- PHP md5() 函数
- PHP md5_file() 函数
- PHP money_format() 函数
- PHP nl_langinfo() 函数
- PHP nl2br() 函数
- PHP number_format() 函数
- PHP ord() 函数
- PHP parse_str() 函数
- PHP print() 函数
- PHP printf() 函数
- PHP quoted_printable_decode() 函数
- PHP quotemeta() 函数
- PHP rtrim() 函数
- PHP setlocale() 函数
- PHP sha1() 函数
- PHP sha1_file() 函数
- PHP similar_text() 函数
- PHP soundex() 函数
- PHP sprintf() 函数
- PHP sscanf() 函数
- PHP str_ireplace() 函数
- PHP str_pad() 函数
- PHP str_repeat() 函数
- PHP str_replace() 函数
- PHP str_rot13() 函数
- PHP str_shuffle() 函数
- PHP str_split() 函数
- PHP str_word_count() 函数
- PHP strcasecmp() 函数
- PHP strchr() 函数
- PHP strcmp() 函数
- PHP strcoll() 函数
- PHP strcspn() 函数
- PHP strip_tags() 函数
- PHP stripcslashes() 函数
- PHP stripslashes() 函数
- PHP stripos() 函数
- PHP stristr() 函数
- PHP strlen() 函数
- PHP strnatcasecmp() 函数
- PHP strnatcmp() 函数
- PHP strncasecmp() 函数
- PHP strncmp() 函数
- PHP strpbrk() 函数
- PHP strpos() 函数
- PHP strrchr() 函数
- PHP strrev() 函数
- PHP strripos() 函数
- PHP strrpos() 函数
- PHP strspn() 函数
- PHP strstr() 函数
- PHP strtok() 函数
- PHP strtolower() 函数
- PHP strtoupper() 函数
- PHP strtr() 函数
- PHP substr() 函数
- PHP substr_compare() 函数
- PHP substr_count() 函数
- PHP substr_replace() 函数
- PHP trim() 函数
- PHP ucfirst() 函数
- PHP ucwords() 函数
- PHP vfprintf() 函数
- PHP vprintf() 函数
- PHP vsprintf() 函数
- PHP wordwrap() 函数
- PHP XML Parser 函数
- PHP utf8_decode() 函数
- PHP utf8_encode() 函数
- PHP xml_error_string() 函数
- PHP xml_get_current_byte_index() 函数
- PHP xml_get_current_line_number() 函数
- PHP xml_get_error_code() 函数
- PHP xml_parse() 函数
- PHP xml_parse_into_struct() 函数
- PHP xml_parser_create_ns() 函数
- PHP xml_parser_create() 函数
- PHP xml_parser_free() 函数
- PHP xml_parser_get_option() 函数
- PHP xml_parser_set_option() 函数
- PHP xml_set_character_data_handler() 函数
- PHP xml_set_default_handler() 函数
- PHP xml_set_element_handler() 函数
- PHP xml_set_external_entity_ref_handler() 函数
- PHP xml_set_notation_decl_handler() 函数
- PHP xml_set_object() 函数
- PHP xml_set_processing_instruction_handler() 函数
- PHP xml_set_unparsed_entity_decl_handler() 函数
- PHP Zip File 函数
- PHP zip_close() 函数
- PHP zip_entry_close() 函数
- PHP zip_entry_compressedsize() 函数
- PHP zip_entry_compressionmethod() 函数
- PHP zip_entry_filesize() 函数
- PHP zip_entry_name() 函数
- PHP zip_entry_open() 函数
- PHP zip_entry_read() 函数
- PHP zip_open() 函数
- PHP zip_read() 函数
- PHP 杂项函数
- PHP connection_aborted() 函数
- PHP connection_status() 函数
- PHP constant() 函数
- PHP define() 函数
- PHP defined() 函数
- PHP die() 函数
- PHP eval() 函数
- PHP exit() 函数
- PHP get_browser() 函数
- PHP highlight_file() 函数
- PHP highlight_string() 函数
- PHP ignore_user_abort() 函数
- PHP pack() 函数
- PHP strip_whitespace() 函数
- PHP show_source() 函数
- PHP sleep() 函数
- PHP time_nanosleep() 函数
- PHP time_sleep_until() 函数
- PHP uniqid() 函数
- PHP unpack() 函数
- PHP usleep() 函数
- PHP 5 时区
- 免责声明