PHP常⽤函数总结(180多个)PHP常⽤函数总结
数学函数
1.abs(): 求绝对值
$abs = abs(-4.2); //4.2 数字绝对值数字
echo ceil(9.999); // 10 浮点数进⼀取整
3.floor(): 舍去法取整
echo floor(9.999); // 9 浮点数直接舍去⼩数部分
4.fmod(): 浮点数取余
$x = 5.7;
$y = 1.3; // 两个浮点数,x>y 浮点余数
$r = fmod($x, $y);
// $r equals 0.5, because 4 * 1.3 + 0.5 = 5.7
5.pow(): 返回数的n次⽅
echo pow(-1, 20); // 1 基础数|n次⽅乘⽅值
echo round(1.95583, 2); // 1.96, ⼀个数值|保留⼩数点后多少位,默认为0 舍⼊后的结果
7.sqrt(): 求平⽅根
echo sqrt(9); //3 被开⽅的数平⽅根
8.max(): 求最⼤值
echo max(1, 3, 5, 6, 7); // 7
多个数字或数组返回其中的最⼤值
echo max(array(2, 4, 5)); // 5
9.min(): 求最⼩值
输⼊: 多个数字或数组
输出: 返回其中的最⼩值
<_rand(): 更好的随机数
输⼊: 最⼩|最⼤, 输出: 随机数随机返回范围内的值
echo mt_rand(0,9);//n
11.rand(): 随机数输⼊: 最⼩|最⼤, 输出: 随机数随机返回范围内的值
12.pi(): 获取圆周率值
去空格或或其他字符:
$str = "\r\nHello World!\r\n";
echo trim($str);
输⼊: ⽬标字符串返回值: 清除后的字符串
$str = "Hello World!\n\n";
echo rtrim($str);
15.chop(): rtrim()的别名
16.ltrim(): 删除字符串左边的空格或其他预定义字符
$str = "\r\nHello World!";
echo ltrim($str);
17.dirname(): 返回路径中的⽬录部分
echo dirname("c:/testweb/home.php");  //c:/testweb
输⼊: ⼀个包含路径的字符串返回值: 返回⽂件路径的⽬录部分
字符串⽣成与转化: 
18.str_pad(): 把字符串填充为指定的长度
$str = "Hello World";
echo str_pad($str,20,".");
输⼊: 要填充的字符串|新字符串的长度|供填充使⽤的字符串, 默认是空⽩
输出: 完成后的字符串
19.str_repeat(): 重复使⽤指定字符串
echo str_repeat(".",13); // 要重复的字符串|字符串将被重复的次数13个点
20.str_split(): 把字符串分割到数组中
print_r(str_split("Hello"));
输⼊: 要分割的字符串|每个数组元素的长度,默认1
输出: 拆分后的字符串数组
21.strrev(): 反转字符串
echo strrev("Hello World!"); // !dlroW olleH
输出: ⽬标字符串颠倒顺序后的字符串
22.wordwrap(): 按照指定长度对字符串进⾏折⾏处理
$str = "An example on a long word is:
Supercalifragulistic";
echo wordwrap($str,15);
输⼊: ⽬标字符串|最⼤宽数
输出: 折⾏后的新字符串
23.str_shuffle(): 随机地打乱字符串中所有字符
echo str_shuffle("Hello World");
输⼊: ⽬标字符串顺序输出: 打乱后的字符串
24.parse_str(): 将字符串解析成变量
parse_str("id=23&name=John%20Adams", $myArray);
print_r($myArray);
输⼊: 要解析的字符串|存储变量的数组名称
输出: 返回Array( [id] => 23 [name] => John Adams)
25.number_format(): 通过千位分组来格式化数字输⼊: 要格式化的数字|规定多少个⼩数|规定⽤作⼩数点的字符串|规定⽤作千位分隔符的字符串
输出: 1,000,000 1,000,000.00 1.000.000,00
⼤⼩写转换:
26.strtolower(): 字符串转为⼩写
echo strtolower("Hello WORLD!");
⽬标字符串⼩写字符串
27.strtoupper(): 字符串转为⼤写
echo strtoupper("Hello WORLD!");
输出: ⼤写字符串
28.ucfirst(): 字符串⾸字母⼤写
echo ucfirst("hello world"); // Hello world
29.ucwords(): 字符串每个单词⾸字符转为⼤写
echo ucwords("hello world"); // Hello World
html标签关联:
30.htmlentities(): 把字符转为HTML实体
$str = "John & 'Adams'";
echo htmlentities($str, ENT_COMPAT); // John & 'Adams'
31.htmlspecialchars(): 预定义字符转html编码
32.nl2br(): \n转义为<br>标签
echo nl2br("One line.\nAnother line.");
输出: 处理后的字符串
33.strip_tags(): 剥去 HTML、XML 以及 PHP 的标签
echo strip_tags("Hello <b>world!</b>"); 
34.addcslashes():在指定的字符前添加反斜线转义字符串中字符
$str = "Hello, my name is John Adams.";
echo $str;
echo addcslashes($str,'m');
merge函数
输⼊: ⽬标字符串|指定的特定字符或字符范围
35.stripcslashes(): 删除由addcslashes()添加的反斜线
echo stripcslashes("Hello, \my na\me is Kai Ji\m.");
// ⽬标字符串 Hello, my name is Kai Jim.
36.addslashes(): 指定预定义字符前添加反斜线
$str = "Who's John Adams?";
echo addslashes($str);
输出: 把⽬标串中的' " \和null进⾏转义处理
37.stripslashes(): 删除由addslashes()添加的转义字符
echo stripslashes("Who\'s John Adams?"); // 清除转义符号Who's John Adams?
38.quotemeta(): 在字符串中某些预定义的字符前添加反斜线
$str = "Hello world. (can you hear me?)";
echo quotemeta($str);
// Hello world\. \(can you hear me\?\)
39.chr(): 从指定的 ASCII 值返回字符
echo chr(052); // ASCII 值返回对应的字符
echo ord("hello"); 字符串第⼀个字符的 ASCII 值
字符串⽐较:
41.strcasecmp(): 不区分⼤⼩写⽐较两字符串
echo strcasecmp("Hello world!","HELLO WORLD!");
输⼊: 两个⽬标字符串输出: ⼤1|等0|⼩ -1
42.strcmp(): 区分⼤⼩写⽐较两字符串
43.strncmp(): ⽐较字符串前n个字符,区分⼤⼩写
调⽤: int strncmp ( string $str1 , string $str2 , int $len) 
44.strncasecmp(): ⽐较字符串前n个字符,不区分⼤⼩写
调⽤: int strncasecmp ( string $str1 , string $str2 , int $len )
45.strnatcmp(): ⾃然顺序法⽐较字符串长度,区分⼤⼩写
调⽤: int strnatcmp ( string $str1 , string $str2 )
输⼊: ⽬标字符串 
46.strnatcasecmp(): ⾃然顺序法⽐较字符串长度, 不区分⼤⼩写
调⽤: int strnatcasecmp ( string $str1 , string $str2 )
字符串切割与拼接:
47.chunk_split():将字符串分成⼩块
调⽤: str chunk_split(str $body[,int $len[,str $end]])
输⼊: $body⽬标字串, $len长度, $str插⼊结束符输出: 分割后的字符串
48.strtok(): 切开字符串
调⽤: str strtok(str $str,str $token)
⽬标字符串$str,以$token为标志切割返回切割后的字符串
调⽤: array explode(str $sep,str $str[,int $limit])
输⼊: $sep为分割符,$str⽬标字符串,$limit返回数组最多包含元素数输出: 字符串被分割后形成的数组50.implode(): 同join,将数组值⽤预订字符连接成字符串
调⽤: string implode ( string $glue , array $pieces )
$glue默认, ⽤''则直接相连
51.substr(): 截取字符串
调⽤: string substr ( string $string , int $start [, int $length ] )
字符串查替换:
52.str_replace(): 字符串替换操作,区分⼤⼩写
调⽤mix str_replace(mix $search,mix $replace, mix $subject[,int &$num])
输⼊: $search查的字符串,$replace替换的字符串,$subject被查字串, &$num 输出: 返回替换后的结果53.str_ireplace() 字符串替换操作,不区分⼤⼩写
调⽤: mix str_ireplace ( mix $search , mix $replace , mix $subject [, int &$count ] )
输⼊: $search查的字符串,$replace替换的字符串,$subject被查字串,&$num 输出: 返回替换后的结果
54.substr_count(): 统计⼀个字符串,在另⼀个字符串中出现次数
调⽤: int substr_count ( string $haystack , string $needle[, int $offset = 0 [, int $length ]] )
55.substr_replace(): 替换字符串中某串为另⼀个字符串
调⽤: mixed substr_replace ( mixed $string, string $replacement,int $start [, int $length ] )
56.similar_text(): 返回两字符串相同字符的数量
调⽤: int similar_text(str $str1,str $str2)
输⼊: 两个⽐较的字符串
输出: 整形,相同字符数量
57.strrchr(): 返回⼀个字符串在另⼀个字符串中最后⼀次出现位置开始到末尾的字符串
调⽤: string strrchr ( string $haystack , mixed $needle )
58.strstr(): 返回⼀个字符串在另⼀个字符串中开始位置到结束的字符串
调⽤: string strstr ( string $str, string $needle , bool $before_needle )   
59.strchr(): strstr()的别名,返回⼀个字符串在另⼀个字符串中⾸次出现的位置开始到末尾的字符串
调⽤: string strstr ( string $haystack , mixed $needle [, bool $before_needle = false ] )   
60.stristr(): 返回⼀个字符串在另⼀个字符串中开始位置到结束的字符串,不区分⼤⼩写
调⽤:string stristr ( string $haystack , mixed $needle [, bool $before_needle = false ] )
61.strtr(): 转换字符串中的某些字符
调⽤: string strtr ( string $str , string $from , string $to )
62.strpos(): 寻字符串中某字符最先出现的位置
调⽤: int strpos ( string $haystack , mixed $needle [, int $offset = 0 ] )
63.stripos(): 寻字符串中某字符最先出现的位置,不区分⼤⼩写调⽤: int stripos ( string $haystack , string $needle [, int $offset ] )
64.strrpos(): 寻某字符串中某字符最后出现的位置
调⽤: int strrpos ( string $haystack , string $needle [, int $offset = 0 ] )
65.strripos(): 寻某字符串中某字符最后出现的位置,不区分⼤⼩写
调⽤: int strripos ( string $haystack , string $needle [, int $offset ] )
66.strspn(): 返回字符串中⾸次符合mask的⼦字符串长度调⽤: int strspn ( string $str1 , string $str2 [, int $start [, int $length ]] )
67.strcspn(): 返回字符串中不符合mask的字符串的长度
调⽤: int strcspn ( string $str1 , string $str2 [, int $start [, int $length ]] )
输⼊: $str1被查询,$str2查询字符串,$start开始查询的字符,$length是查询长度输出: 返回从开始到第⼏个字符
字符串统计:
68.str_word_count(): 统计字符串含有的单词数
调⽤: mix str_word_count(str $str,[])
输⼊: ⽬标字符串输出: 统计处的数量
69.strlen(): 统计字符串长度int strlen(str $str)
输⼊: ⽬标字符串输出:整型长度

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。