-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphp4_functionlist.txt
3488 lines (3488 loc) · 56.2 KB
/
php4_functionlist.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
DOTNET_load
abs
acos
acosh
addcslashes
addslashes
aggregate
aggregate_methods
aggregate_methods_by_list
aggregate_methods_by_regexp
aggregate_properties
aggregate_properties_by_list
aggregate_properties_by_regexp
aggregation_info
apache_child_terminate
apache_exec_uri
apache_get_modules
apache_get_version
apache_getenv
apache_lookup_uri
apache_note
apache_request_allowed
apache_request_args
apache_request_assbackwards
apache_request_auth_name
apache_request_auth_type
apache_request_basic_auth_pw
apache_request_basic_http_header
apache_request_boundary
apache_request_bytes_sent
apache_request_chunked
apache_request_content_encoding
apache_request_content_length
apache_request_content_type
apache_request_discard_request_body
apache_request_err_headers_out
apache_request_filename
apache_request_get_client_block
apache_request_handler
apache_request_header_only
apache_request_headers
apache_request_headers_in
apache_request_headers_out
apache_request_hostname
apache_request_internal_redirect
apache_request_is_initial_req
apache_request_log_error
apache_request_meets_conditions
apache_request_method
apache_request_method_number
apache_request_mtime
apache_request_no_cache
apache_request_no_local_copy
apache_request_path_info
apache_request_proto_num
apache_request_protocol
apache_request_proxyreq
apache_request_read_body
apache_request_remaining
apache_request_remote_host
apache_request_request_time
apache_request_rputs
apache_request_run
apache_request_satisfies
apache_request_send_error_response
apache_request_send_fd
apache_request_send_fd_length
apache_request_send_header_field
apache_request_send_http_header
apache_request_send_http_options
apache_request_send_http_trace
apache_request_server_port
apache_request_set_content_length
apache_request_set_etag
apache_request_set_keepalive
apache_request_set_last_modified
apache_request_setup_client_block
apache_request_should_client_block
apache_request_some_auth_required
apache_request_status
apache_request_status_line
apache_request_sub_req_lookup_file
apache_request_sub_req_lookup_uri
apache_request_sub_req_method_uri
apache_request_the_request
apache_request_unparsed_uri
apache_request_update_mtime
apache_request_uri
apache_response_headers
apache_setenv
apachelog
array_change_key_case
array_chunk
array_combine
array_count_values
array_diff
array_diff_assoc
array_diff_uassoc
array_fill
array_filter
array_flip
array_intersect
array_intersect_assoc
array_intersect_uassoc
array_key_exists
array_keys
array_map
array_merge
array_merge_recursive
array_multisort
array_pad
array_pop
array_push
array_rand
array_reduce
array_reverse
array_search
array_shift
array_slice
array_splice
array_sum
array_udiff
array_udiff_assoc
array_udiff_uassoc
array_uintersect
array_uintersect_assoc
array_uintersect_uassoc
array_unique
array_unshift
array_values
array_walk
array_walk_recursive
arsort
asin
asinh
asort
assert
assert_options
atan
atan2
atanh
base64_decode
base64_encode
base_convert
basename
bcadd
bccomp
bcdiv
bcmod
bcmul
bcpow
bcpowmod
bcscale
bcsqrt
bcsub
ber_free
bin2hex
bind_textdomain_codeset
bindec
bindtextdomain
birdstep_autocommit
birdstep_close
birdstep_commit
birdstep_connect
birdstep_exec
birdstep_fetch
birdstep_fieldname
birdstep_fieldnum
birdstep_freeresult
birdstep_off_autocommit
birdstep_result
birdstep_rollback
bzcompress
bzdecompress
bzerrno
bzerror
bzerrstr
bzopen
bzread
cal_days_in_month
cal_from_jd
cal_info
cal_to_jd
call_user_func
call_user_func_array
call_user_method
call_user_method_array
ceil
chdir
checkdate
checkdnsrr
chgrp
chmod
chown
chr
chroot
chunk_split
class_exists
class_implements
class_name
class_parents
clearstatcache
closedir
closelog
com_addref
com_create_guid
com_create_instance
com_dotnet_create_instance
com_event_sink
com_invoke
com_invoke_ex
com_isenum
com_load
com_load_typelib
com_message_pump
com_print_typeinfo
com_propget
com_propput
com_release
com_variant_create_instance
compact
confirm_extname_compiled
confirm_ircg_compiled
confirm_tokenizer_compiled
connection_aborted
connection_status
constant
continuity_request_headers
continuity_response_headers
continuity_virtual
convert_cyr_string
convert_uudecode
convert_uuencode
copy
cos
cosh
count
count_chars
cpdf_add_annotation
cpdf_add_outline
cpdf_arc
cpdf_begin_text
cpdf_circle
cpdf_clip
cpdf_close
cpdf_closepath
cpdf_closepath_fill_stroke
cpdf_closepath_stroke
cpdf_continue_text
cpdf_curveto
cpdf_end_text
cpdf_endpath
cpdf_fill
cpdf_fill_stroke
cpdf_finalize
cpdf_finalize_page
cpdf_global_set_document_limits
cpdf_import_jpeg
cpdf_lineto
cpdf_moveto
cpdf_newpath
cpdf_open
cpdf_output_buffer
cpdf_page_init
cpdf_place_inline_image
cpdf_rect
cpdf_restore
cpdf_rlineto
cpdf_rmoveto
cpdf_rotate
cpdf_rotate_text
cpdf_save
cpdf_save_to_file
cpdf_scale
cpdf_set_action_url
cpdf_set_char_spacing
cpdf_set_creator
cpdf_set_current_page
cpdf_set_font
cpdf_set_font_directories
cpdf_set_font_map_file
cpdf_set_horiz_scaling
cpdf_set_keywords
cpdf_set_leading
cpdf_set_page_animation
cpdf_set_subject
cpdf_set_text_matrix
cpdf_set_text_pos
cpdf_set_text_rendering
cpdf_set_text_rise
cpdf_set_title
cpdf_set_viewer_preferences
cpdf_set_word_spacing
cpdf_setdash
cpdf_setflat
cpdf_setgray
cpdf_setgray_fill
cpdf_setgray_stroke
cpdf_setlinecap
cpdf_setlinejoin
cpdf_setlinewidth
cpdf_setmiterlimit
cpdf_setrgbcolor
cpdf_setrgbcolor_fill
cpdf_setrgbcolor_stroke
cpdf_show
cpdf_show_xy
cpdf_stringwidth
cpdf_stroke
cpdf_text
cpdf_translate
crack_check
crack_closedict
crack_getlastmessage
crack_opendict
crash
create_function
crypt
ctype_alnum
ctype_alpha
ctype_cntrl
ctype_digit
ctype_graph
ctype_lower
ctype_print
ctype_punct
ctype_space
ctype_upper
ctype_xdigit
curl_close
curl_errno
curl_error
curl_exec
curl_getinfo
curl_init
curl_multi_add_handle
curl_multi_close
curl_multi_exec
curl_multi_getcontent
curl_multi_info_read
curl_multi_init
curl_multi_remove_handle
curl_multi_select
curl_setopt
curl_version
current
cyrus_authenticate
cyrus_bind
cyrus_close
cyrus_connect
cyrus_query
cyrus_unbind
date
date_sunrise
date_sunset
db_id_list
dba_close
dba_delete
dba_exists
dba_fetch
dba_firstkey
dba_handlers
dba_insert
dba_key_split
dba_list
dba_nextkey
dba_open
dba_optimize
dba_popen
dba_replace
dba_sync
dbase_add_record
dbase_close
dbase_create
dbase_delete_record
dbase_get_header_info
dbase_get_record
dbase_get_record_with_names
dbase_numfields
dbase_numrecords
dbase_open
dbase_pack
dbase_replace_record
dblist
dbmclose
dbmdelete
dbmexists
dbmfetch
dbmfirstkey
dbminsert
dbmnextkey
dbmopen
dbmreplace
dbx_close
dbx_compare
dbx_connect
dbx_error
dbx_escape_string
dbx_fetch_row
dbx_query
dbx_sort
dcgettext
dcngettext
deaggregate
debug_backtrace
debug_print_backtrace
debug_zval_dump
decbin
dechex
decoct
define
define_syslog_variables
defined
deg2rad
dgettext
dio_close
dio_fcntl
dio_open
dio_read
dio_seek
dio_stat
dio_tcsetattr
dio_truncate
dio_write
dirname
disk_free_space
disk_total_space
display_disabled_class
display_disabled_function
dl
dngettext
dns_check_record
dns_get_mx
dns_get_record
dom_attr_attr
dom_attr_is_id
dom_cdatasection_cdatasection
dom_characterdata_append_data
dom_characterdata_delete_data
dom_characterdata_insert_data
dom_characterdata_replace_data
dom_characterdata_substring_data
dom_comment_comment
dom_document_adopt_node
dom_document_create_attribute
dom_document_create_attribute_ns
dom_document_create_cdatasection
dom_document_create_comment
dom_document_create_document_fragment
dom_document_create_element
dom_document_create_element_ns
dom_document_create_entity_reference
dom_document_create_processing_instruction
dom_document_create_text_node
dom_document_document
dom_document_get_element_by_id
dom_document_get_elements_by_tag_name
dom_document_get_elements_by_tag_name_ns
dom_document_import_node
dom_document_load
dom_document_load_html
dom_document_load_html_file
dom_document_loadxml
dom_document_normalize_document
dom_document_relaxNG_validate_file
dom_document_relaxNG_validate_xml
dom_document_rename_node
dom_document_save
dom_document_save_html
dom_document_save_html_file
dom_document_savexml
dom_document_schema_validate_file
dom_document_schema_validate_xml
dom_document_validate
dom_document_xinclude
dom_documentfragment_documentfragment
dom_domconfiguration_can_set_parameter
dom_domconfiguration_get_parameter
dom_domconfiguration_set_parameter
dom_domerrorhandler_handle_error
dom_domimplementation_create_document
dom_domimplementation_create_document_type
dom_domimplementation_get_feature
dom_domimplementation_has_feature
dom_domimplementationlist_item
dom_domimplementationsource_get_domimplementation
dom_domimplementationsource_get_domimplementations
dom_domstringlist_item
dom_element_element
dom_element_get_attribute
dom_element_get_attribute_node
dom_element_get_attribute_node_ns
dom_element_get_attribute_ns
dom_element_get_elements_by_tag_name
dom_element_get_elements_by_tag_name_ns
dom_element_has_attribute
dom_element_has_attribute_ns
dom_element_remove_attribute
dom_element_remove_attribute_node
dom_element_remove_attribute_ns
dom_element_set_attribute
dom_element_set_attribute_node
dom_element_set_attribute_node_ns
dom_element_set_attribute_ns
dom_element_set_id_attribute
dom_element_set_id_attribute_node
dom_element_set_id_attribute_ns
dom_entityreference_entityreference
dom_import_simplexml
dom_namednodemap_get_named_item
dom_namednodemap_get_named_item_ns
dom_namednodemap_item
dom_namednodemap_remove_named_item
dom_namednodemap_remove_named_item_ns
dom_namednodemap_set_named_item
dom_namednodemap_set_named_item_ns
dom_namelist_get_name
dom_namelist_get_namespace_uri
dom_node_append_child
dom_node_clone_node
dom_node_compare_document_position
dom_node_get_feature
dom_node_get_user_data
dom_node_has_attributes
dom_node_has_child_nodes
dom_node_insert_before
dom_node_is_default_namespace
dom_node_is_equal_node
dom_node_is_same_node
dom_node_is_supported
dom_node_lookup_namespace_uri
dom_node_lookup_prefix
dom_node_normalize
dom_node_remove_child
dom_node_replace_child
dom_node_set_user_data
dom_nodelist_item
dom_processinginstruction_processinginstruction
dom_string_extend_find_offset16
dom_string_extend_find_offset32
dom_text_is_whitespace_in_element_content
dom_text_replace_whole_text
dom_text_split_text
dom_text_text
dom_userdatahandler_handle
dom_xpath_query
dom_xpath_register_ns
dom_xpath_xpath
domxml_attr_name
domxml_attr_set_value
domxml_attr_specified
domxml_attr_value
domxml_cdata_length
domxml_clone_node
domxml_doc_add_root
domxml_doc_create_attribute
domxml_doc_create_cdata_section
domxml_doc_create_comment
domxml_doc_create_element
domxml_doc_create_element_ns
domxml_doc_create_entity_reference
domxml_doc_create_processing_instruction
domxml_doc_create_text_node
domxml_doc_doctype
domxml_doc_document_element
domxml_doc_free_doc
domxml_doc_get_element_by_id
domxml_doc_get_elements_by_tagname
domxml_doc_ids
domxml_doc_implementation
domxml_doc_imported_node
domxml_doc_set_root
domxml_doc_validate
domxml_doc_xinclude
domxml_doctype_entities
domxml_doctype_internal_subset
domxml_doctype_name
domxml_doctype_notations
domxml_doctype_public_id
domxml_doctype_system_id
domxml_dump_mem
domxml_dump_mem_file
domxml_dump_node
domxml_elem_get_attribute
domxml_elem_get_attribute_node
domxml_elem_get_elements_by_tagname
domxml_elem_has_attribute
domxml_elem_remove_attribute
domxml_elem_set_attribute
domxml_elem_set_attribute_node
domxml_elem_tagname
domxml_element
domxml_entity_notation_name
domxml_entity_public_id
domxml_entity_system_id
domxml_html_dump_mem
domxml_intdtd
domxml_is_blank_node
domxml_new_xmldoc
domxml_node
domxml_node_add_namespace
domxml_node_append_child
domxml_node_append_sibling
domxml_node_attributes
domxml_node_children
domxml_node_first_child
domxml_node_get_content
domxml_node_has_attributes
domxml_node_has_child_nodes
domxml_node_insert_before
domxml_node_last_child
domxml_node_name
domxml_node_namespace_uri
domxml_node_new_child
domxml_node_next_sibling
domxml_node_owner_document
domxml_node_parent
domxml_node_prefix
domxml_node_previous_sibling
domxml_node_remove_child
domxml_node_replace_child
domxml_node_replace_node
domxml_node_set_content
domxml_node_set_name
domxml_node_set_namespace
domxml_node_text_concat
domxml_node_type
domxml_node_unlink_node
domxml_node_value
domxml_notation_public_id
domxml_notation_system_id
domxml_parser
domxml_parser_add_chunk
domxml_parser_cdata_section
domxml_parser_characters
domxml_parser_comment
domxml_parser_end
domxml_parser_end_document
domxml_parser_end_element
domxml_parser_entity_reference
domxml_parser_get_document
domxml_parser_namespace_decl
domxml_parser_processing_instruction
domxml_parser_set_keep_blanks
domxml_parser_start_document
domxml_parser_start_element
domxml_pi_data
domxml_pi_target
domxml_substitute_entities_default
domxml_test
domxml_version
domxml_xmltree
domxml_xslt_process
domxml_xslt_result_dump_file
domxml_xslt_result_dump_mem
domxml_xslt_stylesheet
domxml_xslt_stylesheet_doc
domxml_xslt_stylesheet_file
domxml_xslt_version
dotnet_load
each
easter_date
easter_days
end
ereg
ereg_replace
eregi
eregi_replace
error_log
error_reporting
escapeshellarg
escapeshellcmd
exec
exif_imagetype
exif_read_data
exif_tagname
exif_thumbnail
exp
explode
expm1
extension_loaded
extract
ezmlm_hash
fam_cancel_monitor
fam_close
fam_monitor_collection
fam_monitor_directory
fam_monitor_file
fam_next_event
fam_open
fam_pending
fam_resume_monitor
fam_suspend_monitor
fbsql_affected_rows
fbsql_autocommit
fbsql_blob_size
fbsql_change_user
fbsql_clob_size
fbsql_close
fbsql_commit
fbsql_connect
fbsql_create_blob
fbsql_create_clob
fbsql_create_db
fbsql_data_seek
fbsql_database
fbsql_database_password
fbsql_db_query
fbsql_db_status
fbsql_drop_db
fbsql_errno
fbsql_error
fbsql_fetch_array
fbsql_fetch_assoc
fbsql_fetch_field
fbsql_fetch_lengths
fbsql_fetch_object
fbsql_fetch_row
fbsql_field_flags
fbsql_field_len
fbsql_field_name
fbsql_field_seek
fbsql_field_table
fbsql_field_type
fbsql_free_result
fbsql_get_autostart_info
fbsql_hostname
fbsql_insert_id
fbsql_list_dbs
fbsql_list_fields
fbsql_list_tables
fbsql_next_result
fbsql_num_fields
fbsql_num_rows
fbsql_password
fbsql_pconnect
fbsql_query
fbsql_read_blob
fbsql_read_clob
fbsql_result
fbsql_rollback
fbsql_select_db
fbsql_set_autostart_info
fbsql_set_lob_mode
fbsql_set_transaction
fbsql_start_db
fbsql_stop_db
fbsql_table_name
fbsql_username
fbsql_warnings
fclose
fd_isset
fd_set
fdf_add_doc_javascript
fdf_add_template
fdf_close
fdf_create
fdf_enum_values
fdf_errno
fdf_error
fdf_get_ap
fdf_get_attachment
fdf_get_encoding
fdf_get_file
fdf_get_flags
fdf_get_opt
fdf_get_status
fdf_get_value
fdf_get_version
fdf_header
fdf_next_field_name
fdf_open
fdf_open_string
fdf_remove_item
fdf_save
fdf_save_string
fdf_set_ap
fdf_set_encoding
fdf_set_file
fdf_set_flags
fdf_set_javascript_action
fdf_set_on_import_javascript
fdf_set_opt
fdf_set_status
fdf_set_submit_form_action
fdf_set_target_frame
fdf_set_value
fdf_set_version
feof
fflush
fgetc
fgetcsv
fgets
fgetss
file
file_exists
file_get_contents
file_put_contents
fileatime
filectime
filegroup
fileinode
filemtime
fileowner
fileperms
filepro
filepro_fieldcount
filepro_fieldname
filepro_fieldtype
filepro_fieldwidth
filepro_retrieve
filepro_rowcount
filesize
filetype
floatval
flock
floor
flush
fmod
fnmatch
fpassthru
fprintf
fread
frenchtojd
fribidi_charset_info
fribidi_get_charsets
fribidi_log2vis
fscanf
fseek
fsockopen
ftell
ftok
ftp_alloc
ftp_cdup
ftp_chdir
ftp_chmod
ftp_close
ftp_connect
ftp_delete
ftp_exec
ftp_fget
ftp_fput
ftp_get
ftp_get_option
ftp_login
ftp_mdtm
ftp_mkdir
ftp_nb_continue
ftp_nb_fget
ftp_nb_fput
ftp_nb_get
ftp_nb_put
ftp_nlist
ftp_pasv
ftp_put
ftp_pwd
ftp_raw
ftp_rawlist
ftp_rename
ftp_rmdir
ftp_set_option
ftp_site
ftp_size
ftp_ssl_connect
ftp_systype
func_get_arg
func_get_args
func_num_args
function_exists
fwrite
gd_info
get_browser
get_cfg_var
get_class
get_class_methods
get_class_vars
get_current_user
get_declared_classes
get_declared_interfaces
get_defined_constants
get_defined_functions
get_defined_vars
get_extension_funcs
get_headers
get_html_translation_table
get_include_path
get_included_files
get_loaded_extensions
get_magic_quotes_gpc
get_magic_quotes_runtime
get_meta_tags
get_object_vars
get_parent_class
get_resource_type
getallheaders
getcwd
getdate
getdir
getenv
gethostbyaddr
gethostbyname
gethostbynamel
getimagesize
getlastmod
getmxrr
getmygid
getmyinode
getmypid
getmyuid
getopt
getprotobyname
getprotobynumber
getrandmax
getrusage
getservbyname
getservbyport
gettext
gettimeofday
gettype
glob
gmdate
gmmktime
gmp_abs
gmp_add
gmp_and
gmp_clrbit
gmp_cmp
gmp_com
gmp_div_q
gmp_div_qr
gmp_div_r
gmp_divexact
gmp_fact
gmp_gcd
gmp_gcdext
gmp_hamdist
gmp_init
gmp_intval
gmp_invert
gmp_jacobi
gmp_legendre
gmp_mod
gmp_mul
gmp_neg
gmp_or
gmp_perfect_square
gmp_popcount
gmp_pow
gmp_powm
gmp_prob_prime
gmp_random
gmp_scan0
gmp_scan1
gmp_setbit
gmp_sign
gmp_sqrt
gmp_sqrtrem
gmp_strval
gmp_sub
gmp_xor
gmstrftime
gregoriantojd
gzcompress
gzdeflate
gzencode
gzfile
gzinflate
gzopen
gzuncompress
header
headers_list
headers_sent
hebrev
hebrevc
hexdec
highlight_file
highlight_string
html_doc
html_doc_file
html_entity_decode
htmlentities
htmlspecialchars
http_build_query
hw_array2objrec
hw_changeobject
hw_children
hw_childrenobj
hw_close
hw_connect
hw_connection_info
hw_cp
hw_deleteobject
hw_docbyanchor
hw_docbyanchorobj
hw_document_attributes
hw_document_bodytag
hw_document_content
hw_document_setcontent
hw_document_size
hw_dummy