- ltrim 删除字符串开头的空白字符(或其他字符)
ltrim(输入字符串,指定想要删除的字符) : string
该函数返回一个删除了str最左边的空白字符的字符串
$hello = "Hello World";
$trimmed = ltrim($hello, "Hdle");
var_dump($trimmed);
2.str_shuffle — 随机打乱一个字符串
str_shuffle(字符串) : string
$str = 'abcdef';
$shuffled = str_shuffle($str);
echo $shuffled;
3.strlen — 获取字符串长度
strlen( string $string) : int
$str = 'abcdef';
echo strlen($str);
4.strrev — 反转字符串
strrev( string $string) : stringecho strrev("Hello world!");
5.str_repeat — 重复一个字符串
str_repeat( string $input, int $multiplier) : stringecho str_repeat("-=", 10);
6.addcslashes — 以 C 语言风格使用反斜线转义字符串中的字符
addcslashes(要转义的字符串,转义字符的范围) : stringecho addcslashes('foo[ ]', 'A..z');
7.addslashes — 使用反斜线引用字符串
addslashes( string $str) : string
$str = "Is your name O'reilly?";
echo addslashes($str);
8.rtrim — 删除字符串末端的空白字符(或者其他字符)
//rtrim( string $str, string $character_mask = ?) : string
$trimmed = rtrim($hello, "Hdle");
9.strip_tags — 从字符串中去除 HTML 和 PHP 标记
strip_tags( string $str,指定不被去除的字符列表) : string
10.strtolower — 将字符串转化为小写
//strtolower( string $string) : string
$str = "Mary Had A Little Lamb and She LOVED It So";
$str = strtolower($str);
11.strtoupper — 将字符串转化为大写
// strtoupper( string $string) : string
$str = "Mary Had A Little Lamb and She LOVED It So";
$str = strtoupper($str);
// 12.trim — 去除字符串首尾处的空白字符(或者其他字符)
$hello = " Hello Worl ";
trim($hello, "Hdle");
var_dump($trimmed);
13.ucfirst — 将字符串的首字母转换为大写
$foo = 'hello world!';
$foo = ucfirst($foo);
14.ucwords — 将字符串中每个单词的首字母转换为大写
//ucwords( string $str, string $delimiters = " \t\r\n\f\v" ) : string
$foo = 'hello world!';
$foo = ucwords($foo);
15.ucfirst — 将字符串的首字母转换为大写
将 str 的首字符(如果首字符是字母)转换为大写字母,并返回这个字符串。
$foo = 'hello world!';
$foo = ucfirst($foo);
16.strtolower — 将字符串转化为小写
// 将 string 中所有的字母字符转换为小写并返回。
$str = "Mary Had A Little Lamb and She LOVED It So";
$str = strtolower($str);
17.strtoupper — 将字符串转化为大写
//将 string 中所有的字母字符转换为大写并返回
$str = "Mary Had A Little Lamb and She LOVED It So";
$str = strtoupper($str);
18 lcfirst — 使一个字符串的第一个字符小写
// 返回第一个字母小写的 str ,如果是字母的话
$foo = 'HelloWorld';
$foo = lcfirst($foo);
19 htmlspecialchars — 将特殊字符转换为 HTML 实体
$new = htmlspecialchars("<a href='test'>Test</a>", ENT_QUOTES);
echo $new;
20 strcmp — 二进制安全字符串比较
//strcmp( string $str1, string $str2) : int
//如果 str1 小于 str2 返回 < 0;如果 str1 大于 str2 返回 > 0;如果两者相等,返回 0。
$var1 = "Hello";
$var2 = "hello";
if (strcmp($var1, $var2) !== 0) {
echo '$var1 is not equal to $var2 in a case sensitive string comparison';
}