forked from imakado/php-completion
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathphpcmp-index-of-php-functions
7671 lines (7671 loc) · 115 KB
/
phpcmp-index-of-php-functions
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
C14N
C14NFile
FrenchToJD
GregorianToJD
JDDayOfWeek
JDMonthName
JDToFrench
JDToGregorian
JDToJulian
JewishToJD
JulianToJD
PDF_activate_item
PDF_add_annotation
PDF_add_bookmark
PDF_add_launchlink
PDF_add_locallink
PDF_add_nameddest
PDF_add_note
PDF_add_outline
PDF_add_pdflink
PDF_add_table_cell
PDF_add_textflow
PDF_add_thumbnail
PDF_add_weblink
PDF_arc
PDF_arcn
PDF_attach_file
PDF_begin_document
PDF_begin_font
PDF_begin_glyph
PDF_begin_item
PDF_begin_layer
PDF_begin_page
PDF_begin_page_ext
PDF_begin_pattern
PDF_begin_template
PDF_begin_template_ext
PDF_circle
PDF_clip
PDF_close
PDF_close_image
PDF_close_pdi
PDF_close_pdi_page
PDF_closepath
PDF_closepath_fill_stroke
PDF_closepath_stroke
PDF_concat
PDF_continue_text
PDF_create_3dview
PDF_create_action
PDF_create_annotation
PDF_create_bookmark
PDF_create_field
PDF_create_fieldgroup
PDF_create_gstate
PDF_create_pvf
PDF_create_textflow
PDF_curveto
PDF_define_layer
PDF_delete
PDF_delete_pvf
PDF_delete_table
PDF_delete_textflow
PDF_encoding_set_char
PDF_end_document
PDF_end_font
PDF_end_glyph
PDF_end_item
PDF_end_layer
PDF_end_page
PDF_end_page_ext
PDF_end_pattern
PDF_end_template
PDF_endpath
PDF_fill
PDF_fill_imageblock
PDF_fill_pdfblock
PDF_fill_stroke
PDF_fill_textblock
PDF_findfont
PDF_fit_image
PDF_fit_pdi_page
PDF_fit_table
PDF_fit_textflow
PDF_fit_textline
PDF_get_apiname
PDF_get_buffer
PDF_get_errmsg
PDF_get_errnum
PDF_get_font
PDF_get_fontname
PDF_get_fontsize
PDF_get_image_height
PDF_get_image_width
PDF_get_majorversion
PDF_get_minorversion
PDF_get_parameter
PDF_get_pdi_parameter
PDF_get_pdi_value
PDF_get_value
PDF_info_font
PDF_info_matchbox
PDF_info_table
PDF_info_textflow
PDF_info_textline
PDF_initgraphics
PDF_lineto
PDF_load_3ddata
PDF_load_font
PDF_load_iccprofile
PDF_load_image
PDF_makespotcolor
PDF_moveto
PDF_new
PDF_open_ccitt
PDF_open_file
PDF_open_gif
PDF_open_image
PDF_open_image_file
PDF_open_jpeg
PDF_open_memory_image
PDF_open_pdi
PDF_open_pdi_document
PDF_open_pdi_page
PDF_open_tiff
PDF_pcos_get_number
PDF_pcos_get_stream
PDF_pcos_get_string
PDF_place_image
PDF_place_pdi_page
PDF_process_pdi
PDF_rect
PDF_restore
PDF_resume_page
PDF_rotate
PDF_save
PDF_scale
PDF_set_border_color
PDF_set_border_dash
PDF_set_border_style
PDF_set_char_spacing
PDF_set_duration
PDF_set_gstate
PDF_set_horiz_scaling
PDF_set_info
PDF_set_info_author
PDF_set_info_creator
PDF_set_info_keywords
PDF_set_info_subject
PDF_set_info_title
PDF_set_layer_dependency
PDF_set_leading
PDF_set_parameter
PDF_set_text_matrix
PDF_set_text_pos
PDF_set_text_rendering
PDF_set_text_rise
PDF_set_value
PDF_set_word_spacing
PDF_setcolor
PDF_setdash
PDF_setdashpattern
PDF_setflat
PDF_setfont
PDF_setgray
PDF_setgray_fill
PDF_setgray_stroke
PDF_setlinecap
PDF_setlinejoin
PDF_setlinewidth
PDF_setmatrix
PDF_setmiterlimit
PDF_setpolydash
PDF_setrgbcolor
PDF_setrgbcolor_fill
PDF_setrgbcolor_stroke
PDF_shading
PDF_shading_pattern
PDF_shfill
PDF_show
PDF_show_boxed
PDF_show_xy
PDF_skew
PDF_stringwidth
PDF_stroke
PDF_suspend_page
PDF_translate
PDF_utf16_to_utf8
PDF_utf32_to_utf16
PDF_utf8_to_utf16
PharException
Runkit_Sandbox
Runkit_Sandbox_Parent
SoapClient
SoapFault
SoapHeader
SoapParam
SoapServer
SoapVar
XML
__autoload
__call
__clone
__construct
__destruct
__doRequest
__get
__getFunctions
__getLastRequest
__getLastRequestHeaders
__getLastResponse
__getLastResponseHeaders
__getTypes
__halt_compiler
__invoke
__isset
__set
__setCookie
__setLocation
__setSoapHeaders
__set_state
__sleep
__soapCall
__toString
__unset
__wakeup
abort
abs
accept
acceptFromHttp
ack
acos
acosh
acquire
adaptiveBlurImage
adaptiveResizeImage
adaptiveSharpenImage
adaptiveThresholdImage
add
addASound
addAction
addAll
addArchive
addAttribute
addBuffer
addByKey
addChars
addChild
addColor
addColorStopRgb
addColorStopRgba
addCond
addConfig
addCookies
addDataSource
addDocument
addDocuments
addEmptyDir
addEntry
addExport
addFacetDateField
addFacetDateOther
addFacetField
addFacetQuery
addField
addFile
addFill
addFilterQuery
addFont
addFrame
addFromString
addFunction
addGlob
addHeader
addHeaders
addHighlightField
addImage
addMltField
addMltQueryField
addNameserverIp
addNoiseImage
addOption
addOptions
addPage
addPageLabel
addParam
addPattern
addPostFields
addPostFile
addPropertyToType
addPutData
addQuery
addQueryData
addRawPostData
addRequiredParameter
addRoute
addSearch
addServer
addServerAlias
addServers
addShape
addSignal
addSoapHeader
addSortField
addSslOptions
addStatsFacet
addStatsField
addString
addTask
addTaskBackground
addTaskHigh
addTaskHighBackground
addTaskLow
addTaskLowBackground
addTaskStatus
addTimer
addType
addTypes
addUTF8Chars
addUTF8String
addcslashes
addimage
addnoiseimage
addslashes
affine
affineTransformImage
after
again
aggregate
aggregateCursor
aggregate_info
aggregate_methods
aggregate_methods_by_list
aggregate_methods_by_regexp
aggregate_properties
aggregate_properties_by_list
aggregate_properties_by_regexp
aggregation_info
align
allowsNull
animateImages
annotate
annotateImage
annotateimage
annotation
apache_child_terminate
apache_get_modules
apache_get_version
apache_getenv
apache_lookup_uri
apache_note
apache_request_headers
apache_reset_timeout
apache_response_headers
apache_setenv
apc_add
apc_bin_dump
apc_bin_dumpfile
apc_bin_load
apc_bin_loadfile
apc_cache_info
apc_cas
apc_clear_cache
apc_compile_file
apc_dec
apc_define_constants
apc_delete
apc_delete_file
apc_exists
apc_fetch
apc_inc
apc_load_constants
apc_sma_info
apc_store
apd_breakpoint
apd_callstack
apd_clunk
apd_continue
apd_croak
apd_dump_function_table
apd_dump_persistent_resources
apd_dump_regular_resources
apd_echo
apd_get_active_symbols
apd_set_pprof_trace
apd_set_session
apd_set_session_trace
apd_set_session_trace_socket
apiVersion
app
append
appendBody
appendByKey
appendChild
appendData
appendFrom
appendImages
appendPath
appendXML
applyChanges
arc
arcNegative
areConfusable
array
array_change_key_case
array_chunk
array_column
array_combine
array_count_values
array_diff
array_diff_assoc
array_diff_key
array_diff_uassoc
array_diff_ukey
array_fill
array_fill_keys
array_filter
array_flip
array_intersect
array_intersect_assoc
array_intersect_key
array_intersect_uassoc
array_intersect_ukey
array_key_exists
array_keys
array_map
array_merge
array_merge_recursive
array_multisort
array_pad
array_pop
array_product
array_push
array_rand
array_reduce
array_replace
array_replace_recursive
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
asXML
asin
asinh
asort
assemble
assert
assert_options
assign
assignElem
assignRef
at
atan
atan2
atanh
attach
attachIterator
attr
attr_get
attr_set
attreditable
attributes
auth
authenticate
autoRender
autocommit
autoload
availableFonts
availableSurfaces
averageImages
avoidMethod
awaitData
backend
ban
banUrl
base64_decode
base64_encode
base_convert
basename
batchInsert
batchSize
bbcode_add_element
bbcode_add_smiley
bbcode_create
bbcode_destroy
bbcode_parse
bbcode_set_arg_parser
bbcode_set_flags
bcadd
bccomp
bcdiv
bcmod
bcmul
bcompiler_load
bcompiler_load_exe
bcompiler_parse_class
bcompiler_read
bcompiler_write_class
bcompiler_write_constant
bcompiler_write_exe_footer
bcompiler_write_file
bcompiler_write_footer
bcompiler_write_function
bcompiler_write_functions_from_file
bcompiler_write_header
bcompiler_write_included_filename
bcpow
bcpowmod
bcscale
bcsqrt
bcsub
before
begin
beginChildren
beginIteration
beginLogging
beginText
beginTransaction
begin_transaction
bezier
bin2hex
bind
bindColumn
bindParam
bindTo
bindValue
bind_param
bind_result
bind_textdomain_codeset
bindec
bindtextdomain
blackThresholdImage
blenc_encrypt
blurImage
blurimage
body
boolval
bootstrap
borderImage
borderimage
bottom
broadcast
bson_decode
bson_encode
buildExcerpts
buildFromDirectory
buildFromIterator
buildKeywords
bumpValue
busyTimeout
byCount
bzclose
bzcompress
bzdecompress
bzerrno
bzerror
bzerrstr
bzflush
bzopen
bzread
bzwrite
cairo_create
cairo_font_face_get_type
cairo_font_options_create
cairo_font_options_equal
cairo_font_options_get_antialias
cairo_font_options_get_hint_metrics
cairo_font_options_get_hint_style
cairo_font_options_get_subpixel_order
cairo_font_options_hash
cairo_font_options_merge
cairo_font_options_set_antialias
cairo_font_options_set_hint_metrics
cairo_font_options_set_hint_style
cairo_font_options_set_subpixel_order
cairo_font_options_status
cairo_format_stride_for_width
cairo_image_surface_create
cairo_image_surface_create_for_data
cairo_image_surface_create_from_png
cairo_image_surface_get_data
cairo_image_surface_get_format
cairo_image_surface_get_height
cairo_image_surface_get_stride
cairo_image_surface_get_width
cairo_matrix_create_translate
cairo_matrix_invert
cairo_matrix_multiply
cairo_matrix_rotate
cairo_matrix_transform_distance
cairo_matrix_transform_point
cairo_matrix_translate
cairo_pattern_add_color_stop_rgb
cairo_pattern_add_color_stop_rgba
cairo_pattern_create_for_surface
cairo_pattern_create_linear
cairo_pattern_create_radial
cairo_pattern_create_rgb
cairo_pattern_create_rgba
cairo_pattern_get_color_stop_count
cairo_pattern_get_color_stop_rgba
cairo_pattern_get_extend
cairo_pattern_get_filter
cairo_pattern_get_linear_points
cairo_pattern_get_matrix
cairo_pattern_get_radial_circles
cairo_pattern_get_rgba
cairo_pattern_get_surface
cairo_pattern_get_type
cairo_pattern_set_extend
cairo_pattern_set_filter
cairo_pattern_set_matrix
cairo_pattern_status
cairo_pdf_surface_create
cairo_pdf_surface_set_size
cairo_ps_get_levels
cairo_ps_level_to_string
cairo_ps_surface_create
cairo_ps_surface_dsc_begin_page_setup
cairo_ps_surface_dsc_begin_setup
cairo_ps_surface_dsc_comment
cairo_ps_surface_get_eps
cairo_ps_surface_restrict_to_level
cairo_ps_surface_set_eps
cairo_ps_surface_set_size
cairo_scaled_font_create
cairo_scaled_font_extents
cairo_scaled_font_get_ctm
cairo_scaled_font_get_font_face
cairo_scaled_font_get_font_matrix
cairo_scaled_font_get_font_options
cairo_scaled_font_get_scale_matrix
cairo_scaled_font_get_type
cairo_scaled_font_glyph_extents
cairo_scaled_font_status
cairo_scaled_font_text_extents
cairo_surface_copy_page
cairo_surface_create_similar
cairo_surface_finish
cairo_surface_flush
cairo_surface_get_content
cairo_surface_get_device_offset
cairo_surface_get_font_options
cairo_surface_get_type
cairo_surface_mark_dirty
cairo_surface_mark_dirty_rectangle
cairo_surface_set_device_offset
cairo_surface_set_fallback_resolution
cairo_surface_show_page
cairo_surface_status
cairo_surface_write_to_png
cairo_svg_surface_create
cairo_svg_surface_restrict_to_version
cairo_svg_version_to_string
cal_days_in_month
cal_from_jd
cal_info
cal_to_jd
calcul_hmac
calculhmac
call
callGetChildren
callHasChildren
callTimestampNonceHandler
call_user_func
call_user_func_array
call_user_method
call_user_method_array
callconsumerHandler
calltokenHandler
canBePassedByValue
canCompress
canWrite
cancel
canonicalize
capture
cas
casByKey
catchException
ceil
changeUser
change_user
changes
character_set_name
charcoalImage
charcoalimage
charsetName
chdb_create
chdir
check
checkOAuthRequest
checkProbabilityModel
checkdate
checkdnsrr
checkin
checkout
chgrp
child
children
chmod
chop
chopImage
chopimage
chown
chr
chroot
chunk
chunk_split
circle
class_alias
class_exists
class_implements
class_parents
class_uses
classkit_import
classkit_method_add
classkit_method_copy
classkit_method_redefine
classkit_method_remove
classkit_method_rename
cleanRepair
clear
clearBody
clearCallbacks
clearHeaders
clearHistory
clearLastError
clearLocalNamespace
clearPanic
clearSearch
clearstatcache
cli_get_process_title
cli_set_process_title
clip
clipExtents
clipImage
clipPathImage
clipPreserve
clipRectangleList
clone
cloneNode
close
closeConnection
closeCursor
closePath
closedir
closelog
clutImage
coalesceImages
collect
color
colorFloodfillImage
colorizeImage
columnCount
columnName
columnType
com_addref
com_create_guid
com_event_sink
com_get
com_get_active_object
com_invoke
com_isenum
com_load
com_load_typelib
com_message_pump
com_print_typeinfo
com_propget
com_propput
com_propset
com_release
com_set
combineImages
command
comment
commentImage
commentimage
commit
compact
compare
compareImageChannels
compareImageLayers
compareImages
complete
composeLocale
composite
compositeImage
compositeimage
compress
compressAllFilesBZIP2
compressAllFilesGZ
compressFiles
concat
connect
connectHost
connectUri
connectUtil
connection_aborted
connection_status
connection_timeout
constant
consumerHandler
contains
containsIterator
content
context
contrastImage
contrastStretchImage
convert
convertToData
convertToExecutable
convert_cyr_string
convert_uudecode
convert_uuencode
convolveImage
copy
copyPage
copyPath
copyPathFlat
copyout
cos
cosh
count
countEquivalentIDs
countIterators
countNameservers
count_chars
counter_bump
counter_bump_value
counter_create
counter_get
counter_get_meta
counter_get_named
counter_get_value
counter_reset
counter_reset_value
country
crack_check
crack_closedict
crack_getlastmessage
crack_opendict
crc32
create
createAggregate
createAttribute
createAttributeNS
createCDATASection
createCharacterInstance
createCodePointInstance
createCollation
createCollection
createComment
createDBRef
createDataObject
createDefault
createDefaultStub
createDestination
createDocument
createDocumentFragment
createDocumentType
createElement
createElementNS
createEntityReference
createEnumeration
createForData
createFromDateString
createFromDocument
createFromFormat
createFromMutable
createFromPng
createFromRules
createFunction
createIndex
createInstance
createInverse
createLineInstance
createLinkAnnotation
createOutline
createPair
createProcessingInstruction
createRootDataObject
createSentenceInstance
createSimilar
createStopped
createTextAnnotation
createTextNode
createTimeZone
createTitleInstance
createURLAnnotation
createWordInstance
create_function
cropImage
cropThumbnailImage
cropimage
cropthumbnailimage
crossvalidate
crypt
ctype_alnum
ctype_alpha
ctype_cntrl
ctype_digit
ctype_graph
ctype_lower
ctype_print
ctype_punct
ctype_space
ctype_upper
ctype_xdigit
cubrid_affected_rows
cubrid_bind
cubrid_client_encoding
cubrid_close
cubrid_close_prepare
cubrid_close_request
cubrid_col_get
cubrid_col_size
cubrid_column_names
cubrid_column_types
cubrid_commit
cubrid_connect
cubrid_connect_with_url
cubrid_current_oid
cubrid_data_seek
cubrid_db_name
cubrid_disconnect
cubrid_drop
cubrid_errno
cubrid_error
cubrid_error_code
cubrid_error_code_facility
cubrid_error_msg
cubrid_execute
cubrid_fetch
cubrid_fetch_array
cubrid_fetch_assoc
cubrid_fetch_field
cubrid_fetch_lengths
cubrid_fetch_object
cubrid_fetch_row
cubrid_field_flags
cubrid_field_len
cubrid_field_name
cubrid_field_seek
cubrid_field_table
cubrid_field_type
cubrid_free_result
cubrid_get
cubrid_get_autocommit
cubrid_get_charset
cubrid_get_class_name
cubrid_get_client_info
cubrid_get_db_parameter
cubrid_get_query_timeout
cubrid_get_server_info
cubrid_insert_id
cubrid_is_instance
cubrid_list_dbs
cubrid_load_from_glo
cubrid_lob2_bind
cubrid_lob2_close
cubrid_lob2_export
cubrid_lob2_import
cubrid_lob2_new
cubrid_lob2_read
cubrid_lob2_seek
cubrid_lob2_seek64
cubrid_lob2_size
cubrid_lob2_size64
cubrid_lob2_tell
cubrid_lob2_tell64
cubrid_lob2_write
cubrid_lob_close
cubrid_lob_export
cubrid_lob_get
cubrid_lob_send
cubrid_lob_size
cubrid_lock_read
cubrid_lock_write
cubrid_move_cursor
cubrid_new_glo
cubrid_next_result
cubrid_num_cols
cubrid_num_fields
cubrid_num_rows
cubrid_pconnect
cubrid_pconnect_with_url