PHP 中最常用的 100 个函数

PHP 静态分析引擎 Exakat 分析了 1900 个 PHP 开源项目,整理了最常用的 100 个 PHP 函数:

排行函数
1count
2is_array
3substr
4in_array
5explode
6str_replace
7implode
8strlen
9array_merge
10strpos
11preg_match
12sprintf
13trim
14strtolower
15file_exists
16is_string
17preg_replace
18file_get_contents
19array_key_exists
20array_keys
21dirname
22function_exists
23array_map
24get_class
25class_exists
26is_object
27time
28json_encode
29date
30is_null
31is_numeric
32array_shift
33defined
34is_dir
35json_decode
36header
37strtoupper
38array_values
39md5
40method_exists
41file_put_contents
42rtrim
43array_pop
44unlink
45basename
46realpath
47call_user_func
48call_user_func_array
49fopen
50microtime
51fclose
52is_int
53is_file
54array_slice
55preg_match_all
56ucfirst
57intval
58str_repeat
59serialize
60array_filter
61mkdir
62is_callable
63ltrim
64ob_start
65round
66fwrite
67array_unique
68array_search
69reset
70array_unshift
71parse_url
72func_get_args
73end
74base64_encode
75unserialize
76max
77preg_split
78gettype
79strrpos
80version_compare
81array_push
82floor
83strtotime
84htmlspecialchars
85ini_get
86ini_set
87chr
88extension_loaded
89is_bool
90ksort
91array_reverse
92ord
93uniqid
94strtr
95array_diff
96error_reporting
97ceil
98urlencode
99min
100print_r

从这最常用的 100 个 PHP 函数,总结一下:

  • 这 100 个函数近期都没有被废弃的计划,所以可以放心使用,并加强学习。
  • 最常用的是字符串函数,然后是数组函数和文件函数,有相当多的调用是为了知道值的类型。
  • md5 是最常用的加密函数,其次是 Sha1 (#147),print_r 出现在 1/3 的项目的代码中。
  • 由于 dirname(dirname(dirname())) 的调用方式,dirname 的排名变得异常的高。
  • 在非内置库中,mbstring 排名第一、curl 第二,然后是 gd、filter 和 iconv。
  • 数组中排序中使用键比使用值更频繁。
  • 读取文件的函数比写入文件的函数应用的多,另外通常使用 file_get_contents 读取文件,使用 fwrite 写入文件。
  • array, echo, print, empty, isset 和其他语言结构,因为不能算作 PHP 函数,所以没有纳入此排名,但是它们的使用度肯定是非常高的。
  • array_push, is_objectfunc_get_argchrcall_user_func 这些函数应该用运算符替代  。
  • 数据库函数没有在这里排名,因为经常使用的是类,但数据库的功能是使用度很高的。
  • 最后许多函数在新版中有了新的功能,比如 count()dirname() 有了第二个参数,以及 preg_match() 和  str_replace() 接受数组作为参数等,可以点击表格中的函数名去到 PHP 官网再深入学习一下。

©我爱水煮鱼,本站推荐使用的主机:阿里云,国外主机建议使用BlueHost

本站长期承接 WordPress 优化建站业务,请联系微信:「chenduopapa」。