Lines Matching refs:PHP_FUNCTION

30 PHP_FUNCTION(ksort);
31 PHP_FUNCTION(krsort);
32 PHP_FUNCTION(natsort);
33 PHP_FUNCTION(natcasesort);
34 PHP_FUNCTION(asort);
35 PHP_FUNCTION(arsort);
36 PHP_FUNCTION(sort);
37 PHP_FUNCTION(rsort);
38 PHP_FUNCTION(usort);
39 PHP_FUNCTION(uasort);
40 PHP_FUNCTION(uksort);
41 PHP_FUNCTION(array_walk);
42 PHP_FUNCTION(array_walk_recursive);
43 PHP_FUNCTION(count);
44 PHP_FUNCTION(end);
45 PHP_FUNCTION(prev);
46 PHP_FUNCTION(next);
47 PHP_FUNCTION(reset);
48 PHP_FUNCTION(current);
49 PHP_FUNCTION(key);
50 PHP_FUNCTION(min);
51 PHP_FUNCTION(max);
52 PHP_FUNCTION(in_array);
53 PHP_FUNCTION(array_search);
54 PHP_FUNCTION(extract);
55 PHP_FUNCTION(compact);
56 PHP_FUNCTION(array_fill);
57 PHP_FUNCTION(array_fill_keys);
58 PHP_FUNCTION(range);
59 PHP_FUNCTION(shuffle);
60 PHP_FUNCTION(array_multisort);
61 PHP_FUNCTION(array_push);
62 PHP_FUNCTION(array_pop);
63 PHP_FUNCTION(array_shift);
64 PHP_FUNCTION(array_unshift);
65 PHP_FUNCTION(array_splice);
66 PHP_FUNCTION(array_slice);
67 PHP_FUNCTION(array_merge);
68 PHP_FUNCTION(array_merge_recursive);
69 PHP_FUNCTION(array_replace);
70 PHP_FUNCTION(array_replace_recursive);
71 PHP_FUNCTION(array_keys);
72 PHP_FUNCTION(array_values);
73 PHP_FUNCTION(array_count_values);
74 PHP_FUNCTION(array_column);
75 PHP_FUNCTION(array_reverse);
76 PHP_FUNCTION(array_reduce);
77 PHP_FUNCTION(array_pad);
78 PHP_FUNCTION(array_flip);
79 PHP_FUNCTION(array_change_key_case);
80 PHP_FUNCTION(array_rand);
81 PHP_FUNCTION(array_unique);
82 PHP_FUNCTION(array_intersect);
83 PHP_FUNCTION(array_intersect_key);
84 PHP_FUNCTION(array_intersect_ukey);
85 PHP_FUNCTION(array_uintersect);
86 PHP_FUNCTION(array_intersect_assoc);
87 PHP_FUNCTION(array_uintersect_assoc);
88 PHP_FUNCTION(array_intersect_uassoc);
89 PHP_FUNCTION(array_uintersect_uassoc);
90 PHP_FUNCTION(array_diff);
91 PHP_FUNCTION(array_diff_key);
92 PHP_FUNCTION(array_diff_ukey);
93 PHP_FUNCTION(array_udiff);
94 PHP_FUNCTION(array_diff_assoc);
95 PHP_FUNCTION(array_udiff_assoc);
96 PHP_FUNCTION(array_diff_uassoc);
97 PHP_FUNCTION(array_udiff_uassoc);
98 PHP_FUNCTION(array_sum);
99 PHP_FUNCTION(array_product);
100 PHP_FUNCTION(array_filter);
101 PHP_FUNCTION(array_map);
102 PHP_FUNCTION(array_key_exists);
103 PHP_FUNCTION(array_chunk);
104 PHP_FUNCTION(array_combine);