无需言 做自己 业 ,精于勤 荒于嬉.
- 字符串 函数 html_entity_decode Convert HTML entities to their corresponding characters
-
发表日期:2021-07-01 10:23:21 | 来源: | 分类:字符串 函数
-
示例1
<?php $orig = "I'll \"walk\" the <b>dog</b> now"; $a = htmlentities($orig); $b = html_entity_decode($a); echo $a; // I'll " walk" the < b> dog< /b> nowecho $b; // I'll "walk" the <b>dog</b> now?>
- 字符串 函数 hebrev 将逻辑顺序希伯来文(logical-Hebrew)转换为视觉顺序希伯来文(visual-Hebrew)
-
发表日期:2021-07-01 10:23:21 | 来源: | 分类:字符串 函数
-
hebrev
(PHP 4, PHP 5, PHP 7, PHP 8)
hebrev — 将逻辑顺序希伯来文(logical-Hebrew)转换为视觉顺序希伯来文(visual-Hebrew)
说明
hebrev(string$hebrew_text
, int$max_chars_per_line
= 0): string将逻辑顺序希伯来文(logical-Hebrew)转换为视觉顺序希伯来文(visual-Hebrew)
函数将会尝试避免破坏单词。
参数
-
hebrew_text
-
逻辑顺序希伯来文字符串。
-
max_chars_per_line
-
可选参数,表示每行可返回的最多字符数。
返回值
返回视觉顺序字符串。
-
- 字符串 函数 htmlspecialchars 将特殊字符转换为 HTML 实体
-
发表日期:2021-07-01 10:23:21 | 来源: | 分类:字符串 函数
-
示例1
<?php $new = htmlspecialchars("<a href='test'>Test</a>", ENT_QUOTES); echo $new; // < a href=' test' > Test< /a> ?>
- 字符串 函数 join 别名 implode()
-
发表日期:2021-07-01 10:23:21 | 来源: | 分类:字符串 函数
- 字符串 函数 htmlspecialchars_decode 将特殊的 HTML 实体转换回普通字符
-
发表日期:2021-07-01 10:23:21 | 来源: | 分类:字符串 函数
-
示例1
<?php $str = "<p>this -> " </p>\n"; echo htmlspecialchars_decode($str); // 注意,这里的引号不会被转换echo htmlspecialchars_decode($str, ENT_NOQUOTES); ?>
- 字符串 函数 levenshtein 计算两个字符串之间的编辑距离
-
发表日期:2021-07-01 10:23:21 | 来源: | 分类:字符串 函数
-
示例1
<?php // 输入拼写错误的单词$input = 'carrrot'; // 要检查的单词数组$words = array('apple','pineapple','banana','orange', 'radish','carrot','pea','bean','potato'); // 目前没有找到最短距离$shortest = -1; // 遍历单词来找到最接近的foreach ($words as $word) { // 计算输入单词与当前单词的距离 $lev = levenshtein($input, $word); // 检查完全的匹配 if ($lev == 0) { // 最接近的单词是这个(完全匹配) $closest = $word; $shortest = 0; // 退出循环;我们已经找到一个完全的匹配 break; } // 如果此次距离比上次找到的要短 // 或者还没找到接近的单词 if ($lev <= $shortest || $shortest < 0) { // 设置最接近的匹配以及它的最短距离 $closest = $word; $shortest = $lev; } } echo "Input word: $input\n"; if ($shortest == 0) { echo "Exact match found: $closest\n"; } else { echo "Did you mean: $closest?\n"; } ?>
- 字符串 函数 lcfirst 使一个字符串的第一个字符小写
-
发表日期:2021-07-01 10:23:21 | 来源: | 分类:字符串 函数
-
示例1
<?php $foo = 'HelloWorld'; $foo = lcfirst($foo); // helloWorld$bar = 'HELLO WORLD!'; $bar = lcfirst($bar); // hELLO WORLD!$bar = lcfirst(strtoupper($bar)); // hELLO WORLD!?>
- 字符串 函数 hex2bin 转换十六进制字符串为二进制字符串
-
发表日期:2021-07-01 10:23:21 | 来源: | 分类:字符串 函数
-
示例1
<?php $hex = hex2bin("6578616d706c65206865782064617461"); var_dump($hex); ?>
- 字符串 函数 md5_file 计算指定文件的 MD5 散列值
-
发表日期:2021-07-01 10:23:21 | 来源: | 分类:字符串 函数
-
示例1
<?php $file = 'php-5.3.0alpha2-Win32-VC9-x64.zip'; echo 'MD5 file hash of ' . $file . ': ' . md5_file($file); ?>
- 字符串 函数 implode 将一个一维数组的值转化为字符串
-
发表日期:2021-07-01 10:23:21 | 来源: | 分类:字符串 函数
-
示例1
<?php $array = array('lastname', 'email', 'phone'); $comma_separated = implode(",", $array); echo $comma_separated; // lastname,email,phone// Empty string when using an empty array:var_dump(implode('hello', array())); // string(0) ""?>
- 字符串 函数 ltrim 删除字符串开头的空白字符(或其他字符)
-
发表日期:2021-07-01 10:23:21 | 来源: | 分类:字符串 函数
-
示例1
<?php $text = "\t\tThese are a few words :) ... "; $binary = "\x09Example string\x0A"; $hello = "Hello World"; var_dump($text, $binary, $hello); print "\n"; $trimmed = ltrim($text); var_dump($trimmed); $trimmed = ltrim($text, " \t."); var_dump($trimmed); $trimmed = ltrim($hello, "Hdle"); var_dump($trimmed); // 删除 $binary 开头的 ASCII 控制字符// (从 0 到 31,包括 0 和 31)$clean = ltrim($binary, "\x00..\x1F"); var_dump($clean); ?>
- 字符串 函数 chr 返回指定的字符
-
发表日期:2021-07-01 10:23:20 | 来源: | 分类:字符串 函数
-
示例1
<?php $str = "The string ends in escape: "; $str .= chr(27); /* 在 $str 后边增加换码符 */ /* 通常这样更有用 */ $str = sprintf("The string ends in escape: %c", 27); ?>
- 字符串 函数 addslashes 使用反斜线引用字符串
-
发表日期:2021-07-01 10:23:20 | 来源: | 分类:字符串 函数
-
示例1
<?php $str = "Is your name O'reilly?"; // 输出: Is your name O\'reilly? echo addslashes($str); ?>
- 字符串 函数 bin2hex 函数把包含数据的二进制字符串转换为十六进制值
-
发表日期:2021-07-01 10:23:20 | 来源: | 分类:字符串 函数
- 字符串 函数 chunk_split 将字符串分割成小块
-
发表日期:2021-07-01 10:23:20 | 来源: | 分类:字符串 函数
-
示例1
<?php // 使用 RFC 2045 语义格式化 $data$new_string = chunk_split(base64_encode($data)); ?>
- 字符串 函数 addcslashes 以 C 语言风格使用反斜线转义字符串中的字符
-
发表日期:2021-07-01 10:23:20 | 来源: | 分类:字符串 函数
-
示例1
<?php echo addcslashes('foo[ ]', 'A..z'); // 输出:\f\o\o\[ \]
示例2
// 所有大小写字母均被转义
示例3
// ... 但 [\]^_` 以及分隔符、换行符、回车符等也一并被转义了。
示例4
?>
示例5
<?php echo addcslashes("zoo['.']", 'z..A'); // 输出:\zoo['\.']
示例6
?>
示例7
<?php $escaped = addcslashes($not_escaped, "\0..\37!@\177..\377"); ?>
- 字符串 函数 convert_uuencode 使用 uuencode 编码一个字符串
-
发表日期:2021-07-01 10:23:20 | 来源: | 分类:字符串 函数
-
示例1
<?php $some_string = "test\ntext text\r\n"; echo convert_uuencode($some_string); ?>
- 字符串 函数 chop rtrim() 的别名
-
发表日期:2021-07-01 10:23:20 | 来源: | 分类:字符串 函数
- 字符串 函数 crc32 计算一个字符串的 crc32 多项式
-
发表日期:2021-07-01 10:23:20 | 来源: | 分类:字符串 函数
-
示例1
<?php $checksum = crc32("The quick brown fox jumped over the lazy dog."); printf("%u\n", $checksum); ?>
- 字符串 函数 convert_uudecode 解码一个 uuencode 编码的字符串
-
发表日期:2021-07-01 10:23:20 | 来源: | 分类:字符串 函数
-
示例1
<?php /* 你猜会输出啥?:) */ echo convert_uudecode("+22!L; W9E(%!(4\"$`\n`"); ?>
- 前端开发(1)
- 数据库(0)
- PHP(0)
- PHP杂项(34)
- PHP基础-李炎恢系列课程(20)
- 中文函数手册(0)
- 错误处理 函数(13)
- OPcache 函数(6)
- PHP 选项/信息 函数(54)
- Zip 函数(10)
- Hash 函数(15)
- OpenSSL 函数(63)
- Date/Time 函数(51)
- 目录函数(9)
- Fileinfo 函数(6)
- iconv 函数(11)
- 文件系统函数(81)
- 多字节字符串 函数(57)
- GD 和图像处理 函数(114)
- 可交换图像信息(5)
- Math 函数(50)
- 程序执行函数(11)
- PCNTL 函数(23)
- JSON 函数(4)
- SPL 函数(15)
- URL 函数(10)
- cURL 函数(32)
- 网络 函数(33)
- FTP 函数(36)
- Session 函数(23)
- PCRE 函数(11)
- PCRE 正则语法(19)
- 数组 函数(81)
- 类/对象 函数(18)
- 函数处理 函数(13)
- 变量处理 函数(37)
- SimpleXML 函数(3)
- 杂项 函数(31)
- 字符串 函数(101)
- JAVA(0)
- Android(0)
- Linux(0)
- 其他(0)