无需言 做自己 业 ,精于勤 荒于嬉.

字符串 函数 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 &quot;
walk&quot;
 the &lt;
b&gt;
dog&lt;
/b&gt;
 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

可选参数,表示每行可返回的最多字符数。

返回值

返回视觉顺序字符串。

参见

  • hebrevc() - 将逻辑顺序希伯来文(logical-Hebrew)转换为视觉顺序希伯来文(visual-Hebrew),并且转换换行符

阅读全文 »

字符串 函数 htmlspecialchars 将特殊字符转换为 HTML 实体

发表日期:2021-07-01 10:23:21 | 来源: | 分类:字符串 函数

      示例1
<?php 
$new = htmlspecialchars("<a href='test'>Test</a>", ENT_QUOTES);
echo $new;
 // &lt;
a href=&#039;
test&#039;
&gt;
Test&lt;
/a&gt;
?>

阅读全文 »

字符串 函数 join 别名 implode()

发表日期:2021-07-01 10:23:21 | 来源: | 分类:字符串 函数

join

(PHP 4, PHP 5, PHP 7, PHP 8)

join别名 implode()

说明

此函数是该函数的别名: implode().

阅读全文 »

字符串 函数 htmlspecialchars_decode 将特殊的 HTML 实体转换回普通字符

发表日期:2021-07-01 10:23:21 | 来源: | 分类:字符串 函数

      示例1
<?php 
$str = "<p>this -&gt;
 &quot;
</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 | 来源: | 分类:字符串 函数

bin2hex

(PHP 4, PHP 5, PHP 7, PHP 8)

bin2hex函数把包含数据的二进制字符串转换为十六进制值

说明

bin2hex(string $str): string

把二进制的参数 str 转换为的十六进制的字符串。转换使用字节方式,高四位字节优先。

参数

str

二进制字符串。

返回值

返回指定字符串十六进制的表示。

参见

  • hex2bin() - 转换十六进制字符串为二进制字符串
  • pack() - 将数据打包成二进制字符串

阅读全文 »

字符串 函数 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 | 来源: | 分类:字符串 函数

chop

(PHP 4, PHP 5, PHP 7, PHP 8)

choprtrim() 的别名

说明

此函数是该函数的别名:rtrim()

注释

注意:

chop() 与 Perl 的 chop() 函数有所不同,它会删除字符串的最后一个字符。

阅读全文 »

字符串 函数 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`");
?>

阅读全文 »

全部博文(1580)
集速网 copyRight © 2015-2022 宁ICP备15000399号-1 宁公网安备 64010402001209号
与其临渊羡鱼,不如退而结网
欢迎转载、分享、引用、推荐、收藏。