get_extension_funcs 


php128 apg

GETS the names of functions available in a given library.

This function is general purpose, therefore, applicable to all extensions, (libraries), of PHP, now applied to the  standard  library which includes the functions for handling the  ARRAY  type.



<?php

arr get_extension_funcs 
('str $module_name')


where,

$module_name Module name to get the extension functions

?>

  $module_name   


The module name to get the extension functions, in this case standard.

ARRAYS are included in the standard extenstion list.




STANDARD ARRAY FUNCTIONS
PHP 7.4.XX list
INDEXNAME
224var_dump
225var_export
  
227print_r
  
274gettype
  
287is_array
  
437ksort
438krsort
439natsort
440natcasesort
441asort
442arsort
443sort
444rsort
445usort
446uasort
447uksort
448shuffle
449array_walk
450array_walk_recursive
451count
452end
453prev
454next
455reset
456current
457key
458min
459max
460in_array
461array_search
462extract
463compact
464array_fill
465array_fill_keys
466range
467array_multisort
468array_push
469array_pop
470array_shift
471array_unshift
472array_splice
473array_slice
474array_merge
475array_merge_recursive
476array_replace
477array_replace_recursive
478array_keys
479array_key_first
480array_key_last
481array_values
482array_count_values
483array_column
484array_reverse
485array_reduce
486array_pad
487array_flip
488array_change_key_case
489array_rand
490array_unique
491array_intersect
492array_intersect_key
493array_intersect_ukey
494array_uintersect
495array_intersect_assoc
496array_uintersect_assoc
497array_intersect_uassoc
498array_uintersect_uassoc
499array_diff
500array_diff_key
501array_diff_ukey
502array_udiff
503array_diff_assoc
504array_udiff_assoc
505array_diff_uassoc
506array_udiff_uassoc
507array_sum
508array_product
509array_filter
510array_map
511array_chunk
512array_combine
513array_key_exists
514pos
515sizeof
516key_exists
ed48


STANDARD ARRAY FUNCTIONS
PHP 8.0.XX list
INDEXNAME
21array_push
22krsort
23ksort
24count
25sizeof
26natsort
27natcasesort
28asort
29arsort
30sort
31rsort
32usort
33uasort
34uksort
35end
36prev
37next
38reset
39current
40pos
41key
42min
43max
44array_walk
45array_walk_recursive
46in_array
47array_search
48extract
49compact
50array_fill
51array_fill_keys
52range
53shuffle
54array_pop
55array_shift
56array_unshift
57array_splice
58array_slice
59array_merge
60array_merge_recursive
61array_replace
62array_replace_recursive
63array_keys
64array_key_first
65array_key_last
66array_values
67array_count_values
68array_column
69array_reverse
70array_pad
71array_flip
72array_change_key_case
73array_unique
74array_intersect_key
75array_intersect_ukey
76array_intersect
77array_uintersect
78array_intersect_assoc
79array_uintersect_assoc
80array_intersect_uassoc
81array_uintersect_uassoc
82array_diff_key
83array_diff_ukey
84array_diff
85array_udiff
86array_diff_assoc
87array_diff_uassoc
88array_udiff_assoc
89array_udiff_uassoc
90array_multisort
91array_rand
92array_sum
93array_product
94array_reduce
95array_filter
96array_map
97array_key_exists
98key_exists
99array_chunk
100array_combine
  
135print_r
  
482gettype
  
500is_array
  
521var_dump
522var_export
ed48