-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfuncsummary.txt
16514 lines (16403 loc) · 792 KB
/
funcsummary.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
aggregation_info()
Alias of aggregate_info
array apache_get_modules()
Get a list of loaded Apache modules
array apache_request_headers()
Fetch all HTTP request headers
array apache_response_headers()
Fetch all HTTP response headers
array apc_add(string $key [, mixed $var = '' [, int $ttl = '', array $values [, mixed $unused = '']]])
Cache a variable in the data store
array apc_cache_info([string $cache_type = '' [, bool $limited = false]])
Retrieves cached information from APC's data store
array apc_sma_info([bool $limited = false])
Retrieves APC's Shared Memory Allocation information
array apc_store(string $key, mixed $var [, int $ttl = '', array $values [, mixed $unused = '']])
Cache a variable in the data store
array apd_callstack()
Returns the current call stack as an array
array apd_dump_persistent_resources()
Return all persistent resources as an array
array apd_dump_regular_resources()
Return all current regular resources as an array
array apd_get_active_symbols()
Get an array of the current variables names in the local scope
array array([mixed $... = ''])
Create an array
array ArrayIterator::current()
Return current array entry
array ArrayIterator::getArrayCopy()
Get array copy
array ArrayIterator::valid()
Check whether array contains more entries
array ArrayObject::getArrayCopy()
Creates a copy of the ArrayObject.
array array_change_key_case(array $input [, int $case = CASE_LOWER])
Changes all keys in an array
array array_chunk(array $input, int $size [, bool $preserve_keys = false])
Split an array into chunks
array array_combine(array $keys, array $values)
Creates an array by using one array for keys and another for its values
array array_count_values(array $input)
Counts all the values of an array
array array_diff(array $array1, array $array2 [, array $ ... = ''])
Computes the difference of arrays
array array_diff_assoc(array $array1, array $array2 [, array $... = ''])
Computes the difference of arrays with additional index check
array array_diff_key(array $array1, array $array2 [, array $... = ''])
Computes the difference of arrays using keys for comparison
array array_diff_uassoc(array $array1, array $array2 [, array $... = '', callback $key_compare_func])
Computes the difference of arrays with additional index check which is performed by a user supplied callback function
array array_diff_ukey(array $array1, array $array2 [, array $ ... = '', callback $key_compare_func])
Computes the difference of arrays using a callback function on the keys for comparison
array array_fill(int $start_index, int $num, mixed $value)
Fill an array with values
array array_fill_keys(array $keys, mixed $value)
Fill an array with values, specifying keys
array array_filter(array $input [, callback $callback = ''])
Filters elements of an array using a callback function
array array_intersect(array $array1, array $array2 [, array $ ... = ''])
Computes the intersection of arrays
array array_intersect_assoc(array $array1, array $array2 [, array $ ... = ''])
Computes the intersection of arrays with additional index check
array array_intersect_key(array $array1, array $array2 [, array $ ... = ''])
Computes the intersection of arrays using keys for comparison
array array_intersect_uassoc(array $array1, array $array2 [, array $ ... = '', callback $key_compare_func])
Computes the intersection of arrays with additional index check, compares indexes by a callback function
array array_intersect_ukey(array $array1, array $array2 [, array $... = '', callback $key_compare_func])
Computes the intersection of arrays using a callback function on the keys for comparison
array array_keys(array $input [, mixed $search_value = '' [, bool $strict = false]])
Return all the keys or a subset of the keys of an array
array array_map(callback $callback, array $arr1 [, array $... = ''])
Applies the callback to the elements of the given arrays
array array_merge(array $array1 [, array $array2 = '' [, array $... = '']])
Merge one or more arrays
array array_merge_recursive(array $array1 [, array $... = ''])
Merge two or more arrays recursively
array array_pad(array $input, int $pad_size, mixed $pad_value)
Pad array to the specified length with a value
array array_pop(array $array)
Pop the element off the end of array
array array_replace(array $array, array $array1 [, array $array2 = '' [, array $... = '']])
Replaces elements from passed arrays into the first array
array array_replace_recursive(array $array, array $array1 [, array $array2 = '' [, array $... = '']])
Replaces elements from passed arrays into the first array recursively
array array_reverse(array $array [, bool $preserve_keys = false])
Return an array with elements in reverse order
array array_shift(array $array)
Shift an element off the beginning of array
array array_slice(array $array, int $offset [, int $length = '' [, bool $preserve_keys = false]])
Extract a slice of the array
array array_splice(array $input, int $offset [, int $length = '' [, mixed $replacement = '']])
Remove a portion of the array and replace it with something else
array array_udiff(array $array1, array $array2 [, array $ ... = '', callback $data_compare_func])
Computes the difference of arrays by using a callback function for data comparison
array array_udiff_assoc(array $array1, array $array2 [, array $ ... = '', callback $data_compare_func])
Computes the difference of arrays with additional index check, compares data by a callback function
array array_udiff_uassoc(array $array1, array $array2 [, array $ ... = '', callback $data_compare_func, callback $key_compare_func])
Computes the difference of arrays with additional index check, compares data and indexes by a callback function
array array_uintersect(array $array1, array $array2 [, array $ ... = '', callback $data_compare_func])
Computes the intersection of arrays, compares data by a callback function
array array_uintersect_assoc(array $array1, array $array2 [, array $ ... = '', callback $data_compare_func])
Computes the intersection of arrays with additional index check, compares data by a callback function
array array_uintersect_uassoc(array $array1, array $array2 [, array $ ... = '', callback $data_compare_func, callback $key_compare_func])
Computes the intersection of arrays with additional index check, compares data and indexes by a callback functions
array array_unique(array $array [, int $sort_flags = SORT_STRING])
Removes duplicate values from an array
array array_values(array $input)
Return all the values of an array
array bson_decode(string $bson)
Deserializes a BSON object into a PHP array
array bzerror(resource $bz)
Returns the bzip2 error number and error string in an array
array Cairo::availableFonts()
Retrieves the availables font types
array Cairo::availableSurfaces()
Retrieves all available surfaces
array CairoContext::clipExtents(CairoContext $context)
Computes the area inside the current clip
array CairoContext::clipRectangleList(CairoContext $context)
Retrieves the current clip as a list of rectangles
array CairoContext::deviceToUser(float $x, float $y, CairoContext $context)
Transform a coordinate
array CairoContext::deviceToUserDistance(float $x, float $y, CairoContext $context)
Transform a distance
array CairoContext::fillExtents(CairoContext $context)
Computes the filled area
array CairoContext::fontExtents(CairoContext $context)
Get the font extents
array CairoContext::getCurrentPoint(CairoContext $context)
The getCurrentPoint purpose
array CairoContext::getDash(CairoContext $context)
The getDash purpose
array CairoContext::pathExtents(CairoContext $context)
The pathExtents purpose
array CairoContext::strokeExtents(CairoContext $context)
The strokeExtents purpose
array CairoContext::textExtents(string $text, CairoContext $context)
The textExtents purpose
array CairoContext::userToDevice(string $x, string $y, CairoContext $context)
The userToDevice purpose
array CairoContext::userToDeviceDistance(string $x, string $y, CairoContext $context)
The userToDeviceDistance purpose
array CairoGradientPattern::getColorStopRgba(string $index)
The getColorStopRgba purpose
array CairoLinearGradient::getPoints()
The getPoints purpose
array CairoMatrix::transformDistance(string $dx, string $dy)
The transformDistance purpose
array CairoMatrix::transformPoint(string $dx, string $dy)
The transformPoint purpose
array CairoPsSurface::getLevels()
The getLevels purpose
array CairoRadialGradient::getCircles()
The getCircles purpose
array CairoScaledFont::extents()
The extents purpose
array CairoScaledFont::glyphExtents(string $glyphs)
The glyphExtents purpose
array CairoScaledFont::textExtents(string $text, CairoContext $context)
The textExtents purpose
array CairoSolidPattern::getRgba()
The getRgba purpose
array CairoSurface::getDeviceOffset()
The getDeviceOffset purpose
array CairoSvgSurface::getVersions()
Used to retrieve a list of supported SVG versions
array cairo_available_fonts()
Retrieves the availables font types
array cairo_available_surfaces()
Retrieves all available surfaces
array cairo_clip_extents(CairoContext $context)
Computes the area inside the current clip
array cairo_clip_rectangle_list(CairoContext $context)
Retrieves the current clip as a list of rectangles
array cairo_device_to_user(float $x, float $y, CairoContext $context)
Transform a coordinate
array cairo_device_to_user_distance(float $x, float $y, CairoContext $context)
Transform a distance
array cairo_fill_extents(CairoContext $context)
Computes the filled area
array cairo_font_extents(CairoContext $context)
Get the font extents
array cairo_get_current_point(CairoContext $context)
The getCurrentPoint purpose
array cairo_get_dash(CairoContext $context)
The getDash purpose
array cairo_matrix_transform_distance(CairoMatrix $matrix, float $dx, float $dy)
Description
array cairo_matrix_transform_point(CairoMatrix $matrix, float $dx, float $dy)
Description
array cairo_path_extents(CairoContext $context)
The pathExtents purpose
array cairo_pattern_get_color_stop_rgba(CairoGradientPattern $pattern, int $index)
Description
array cairo_pattern_get_linear_points(CairoLinearGradient $pattern)
Description
array cairo_pattern_get_radial_circles(CairoRadialGradient $pattern)
Description
array cairo_pattern_get_rgba(CairoSolidPattern $pattern)
Description
array cairo_ps_get_levels()
Description
array cairo_scaled_font_extents(CairoScaledFont $scaledfont)
Description
array cairo_scaled_font_glyph_extents(CairoScaledFont $scaledfont, array $glyphs)
Description
array cairo_scaled_font_text_extents(CairoScaledFont $scaledfont, string $text)
Description
array cairo_stroke_extents(CairoContext $context)
The strokeExtents purpose
array cairo_surface_get_device_offset(CairoSurface $surface)
Description
array cairo_svg_surface_get_versions()
Used to retrieve a list of supported SVG versions
array cairo_text_extents(string $text, CairoContext $context)
The textExtents purpose
array cairo_text_extents(string $text, CairoContext $context)
The textExtents purpose
array cairo_user_to_device(string $x, string $y, CairoContext $context)
The userToDevice purpose
array cairo_user_to_device_distance(string $x, string $y, CairoContext $context)
The userToDeviceDistance purpose
array cal_from_jd(int $jd, int $calendar)
Converts from Julian Day Count to a supported calendar
array cal_info([int $calendar = -1])
Returns information about a particular calendar
array classkit_import(string $filename)
Import new class method definitions from a file
array class_implements(mixed $class [, bool $autoload = true])
Return the interfaces which are implemented by the given class
array class_parents(mixed $class [, bool $autoload = true])
Return the parent classes of the given class
array compact(mixed $varname [, mixed $... = ''])
Create array containing variables and their values
array cubrid_column_names(resource $req_identifier)
Get the column names in result
array cubrid_column_types(resource $req_identifier)
Get column types in result
array cubrid_col_get(resource $conn_identifier, string $oid, string $attr_name)
Get contents of collection type column using OID
array cubrid_fetch_array(resource $result [, int $type = CUBRID_BOTH])
Fetch a result row as an associative array, a numeric array, or both
array cubrid_fetch_assoc(resource $result)
Return the associative array that corresponds to the fetched row
array cubrid_fetch_lengths(resource $result)
Return an array with the lengths of the values of each field from the current row
array cubrid_fetch_row(resource $result)
Return a numerical array with the values of the current row
array cubrid_get_db_parameter(resource $conn_identifier)
Returns the CUBRID database parameters
array cubrid_list_dbs(resource $conn_identifier)
Return an array with the list of all existing CUBRID databases
array cubrid_lob_get(resource $conn_identifier, string $SQL)
Get BLOB/CLOB data
array cubrid_schema(resource $conn_identifier, int $schema_type [, string $class_name = '' [, string $attr_name = '']])
Get the requested schema information
array curl_multi_info_read(resource $mh [, int $msgs_in_queue = ''])
Get information about the current transfers
array curl_version([int $age = CURLVERSION_NOW])
Gets cURL version information
array cyrus_query(resource $connection, string $query)
Send a query to a Cyrus IMAP server
array datefmt_localtime(string $value [, int $position = '', IntlDateFormatter $fmt])
Parse string to a field-based time value
array DateTime::getLastErrors()
Returns the warnings and errors
array DateTimeZone::getLocation(DateTimeZone $object)
Returns location information for a timezone
array DateTimeZone::getTransitions([int $timestamp_begin = '' [, int $timestamp_end = '', DateTimeZone $object]])
Returns all transitions for the timezone
array DateTimeZone::listAbbreviations()
Returns associative array containing dst, offset and the timezone name
array DateTimeZone::listIdentifiers([int $what = DateTimeZone::ALL [, string $country = '']])
Returns numerically index array with all timezone identifiers
array date_parse(string $date)
Returns associative array with detailed info about given date
array date_parse_from_format(string $format, string $date)
Get info about given date formatted according to the specified format
array date_sun_info(int $time, float $latitude, float $longitude)
Returns an array with information about sunset/sunrise and twilight begin/end
array db2_fetch_array(resource $stmt [, int $row_number = -1])
Returns an array, indexed by column position, representing a row in a result set
array db2_fetch_assoc(resource $stmt [, int $row_number = -1])
Returns an array, indexed by column name, representing a row in a result set
array db2_fetch_both(resource $stmt [, int $row_number = -1])
Returns an array, indexed by both column name and position, representing a row in a result set
array dbase_get_header_info(int $dbase_identifier)
Gets the header info of a database
array dbase_get_record(int $dbase_identifier, int $record_number)
Gets a record from a database as an indexed array
array dbase_get_record_with_names(int $dbase_identifier, int $record_number)
Gets a record from a database as an associative array
array dba_handlers([bool $full_info = false])
List all the handlers available
array dba_list()
List all open database files
array dbplus_resolve(string $relation_name)
Resolve host information for relation
array debug_backtrace([int $options = DEBUG_BACKTRACE_PROVIDE_OBJECT [, int $limit = '']])
Generates a backtrace
array dio_stat(resource $fd)
Gets stat information about the file descriptor fd
array dns_get_record(string $hostname [, int $type = DNS_ANY [, array $authns = '' [, array $addtl = '']]])
Fetch DNS Resource Records associated with a hostname
array DomDocumentType::entities()
Returns list of entities
array DomDocumentType::notations()
Returns list of notations
array DomElement::get_elements_by_tagname(string $name)
Gets elements by tagname
array each(array $array)
Return the current key and value pair from an array and advance the array cursor
array enchant_broker_describe(resource $broker)
Enumerates the Enchant providers
array enchant_dict_suggest(resource $dict, string $word)
Will return a list of values if any of those pre-conditions are not met
array error_get_last()
Get the last occurred error
array exif_read_data(string $filename [, string $sections = '' [, bool $arrays = false [, bool $thumbnail = false]]])
Reads the EXIF headers from JPEG or TIFF
array explode(string $delimiter, string $string [, int $limit = ''])
Split a string by string
array fam_next_event(resource $fam)
Get next pending FAM event
array fbsql_fetch_array(resource $result [, int $result_type = ''])
Fetch a result row as an associative array, a numeric array, or both
array fbsql_fetch_assoc(resource $result)
Fetch a result row as an associative array
array fbsql_fetch_lengths(resource $result)
Get the length of each output in a result
array fbsql_fetch_row(resource $result)
Get a result row as an enumerated array
array fbsql_get_autostart_info([resource $link_identifier = ''])
array fdf_get_attachment(resource $fdf_document, string $fieldname, string $savepath)
Extracts uploaded file embedded in the FDF
array fgetcsv(resource $handle [, int $length = '' [, string $delimiter = ',' [, string $enclosure = '"' [, string $escape = '\\']]]])
Gets line from file pointer and parse for CSV fields
array file(string $filename [, int $flags = '' [, resource $context = '']])
Reads entire file into an array
array filter_list()
Returns a list of all supported filters
array fstat(resource $handle)
Gets information about a file using an open file pointer
array ftp_nlist(resource $ftp_stream, string $directory)
Returns a list of files in the given directory
array ftp_raw(resource $ftp_stream, string $command)
Sends an arbitrary command to an FTP server
array ftp_rawlist(resource $ftp_stream, string $directory [, bool $recursive = false])
Returns a detailed list of files in the given directory
array func_get_args()
Returns an array comprising a function's argument list
array gd_info()
Retrieve information about the currently installed GD library
array GearmanClient::doStatus()
Get the status for the running task
array GearmanClient::jobStatus(string $job_handle)
Get the status of a background job
array GearmanTask::recvData(int $data_len)
Read work or result data into a buffer for a task
array gearman_job_status(string $job_handle)
Get the status of a background job
array geoip_db_get_all_info()
Returns detailed information about all GeoIP database types
array geoip_record_by_name(string $hostname)
Returns the detailed City information found in the GeoIP Database
array geoip_region_by_name(string $hostname)
Get the country code and region
array getallheaders()
Fetch all HTTP request headers
array getdate([int $timestamp = time()])
Get date/time information
array gethostbynamel(string $hostname)
Get a list of IPv4 addresses corresponding to a given Internet host name
array getimagesize(string $filename [, array $imageinfo = ''])
Get the size of an image
array getopt(string $options [, array $longopts = ''])
Gets options from the command line argument list
array getrusage([int $who = ''])
Gets the current resource usages
array get_class_methods(mixed $class_name)
Gets the class methods' names
array get_class_vars(string $class_name)
Get the default properties of the class
array get_declared_classes()
Returns an array with the name of the defined classes
array get_declared_interfaces()
Returns an array of all declared interfaces
array get_defined_constants([bool $categorize = false])
Returns an associative array with the names of all the constants and their values
array get_defined_functions()
Returns an array of all defined functions
array get_defined_vars()
Returns an array of all defined variables
array get_extension_funcs(string $module_name)
Returns an array with the names of the functions of a module
array get_headers(string $url [, int $format = ''])
Fetches all the headers sent by the server in response to a HTTP request
array get_html_translation_table([int $table = HTML_SPECIALCHARS [, int $quote_style = ENT_COMPAT [, string $charset_hint = '']]])
Returns the translation table used by htmlspecialchars and htmlentities
array get_included_files()
Returns an array with the names of included or required files
array get_loaded_extensions([bool $zend_extensions = false])
Returns an array with the names of all modules compiled and loaded
array get_meta_tags(string $filename [, bool $use_include_path = false])
Extracts all meta tag content attributes from a file and returns an array
array get_object_vars(object $object)
Gets the properties of the given object
array glob(string $pattern [, int $flags = ''])
Find pathnames matching a pattern
array Gmagick::getimageblueprimary()
Returns the chromaticy blue primary point
array Gmagick::getimageextrema()
Gets the extrema for the image
array Gmagick::getimagegreenprimary()
Returns the chromaticy green primary point
array Gmagick::getimagehistogram()
Gets the image histogram
array Gmagick::getimageredprimary()
Returns the chromaticity red primary point
array Gmagick::getimageresolution()
Gets the image X and Y resolution
array Gmagick::getimagewhitepoint()
Returns the chromaticity white point
array Gmagick::getquantumdepth()
Returns the Gmagick quantum depth as a string.
array Gmagick::getsamplingfactors()
Gets the horizontal and vertical sampling factor.
array Gmagick::getsize()
Returns the size associated with the Gmagick object
array Gmagick::getversion()
Returns the GraphicsMagick API version
array Gmagick::queryfontmetrics(GmagickDraw $draw, string $text)
Returns an array representing the font metrics
array Gmagick::queryfonts([string $pattern = "*"])
Returns the configured fonts
array Gmagick::queryformats([string $pattern = "*"])
Returns formats supported by Gmagick.
array gmp_div_qr(resource $n, resource $d [, int $round = GMP_ROUND_ZERO])
Divide numbers and get quotient and remainder
array gmp_gcdext(resource $a, resource $b)
Calculate GCD and multipliers
array gmp_sqrtrem(resource $a)
Square root with remainder
array gnupg_decryptverify(resource $identifier, string $text, string $plaintext)
Decrypts and verifies a given text
array gnupg_import(resource $identifier, string $keydata)
Imports a key
array gnupg_keyinfo(resource $identifier, string $pattern)
Returns an array with information about all keys that matches the given pattern
array gnupg_verify(resource $identifier, string $signed_text, string $signature [, string $plaintext = ''])
Verifies a signed text
array gopher_parsedir(string $dirent)
Translate a gopher formatted directory entry into an associative array.
array gupnp_device_info_get(resource $root_device)
Get info of root device
array gupnp_service_info_get(resource $proxy)
Get full info of service
array gupnp_service_introspection_get_state_variable(resource $introspection, string $variable_name)
Returns the state variable data
array gupnp_service_proxy_send_action(resource $proxy, string $action, array $in_params, array $out_params)
Send action with multiple parameters synchronously
array gzfile(string $filename [, int $use_include_path = ''])
Read entire gz-file into an array
array HaruFont::getTextWidth(string $text)
Get the total width of the text, number of characters, number of words and number of spaces
array HaruImage::getSize()
Get size of the image
array HaruPage::getCMYKFill()
Get the current filling color
array HaruPage::getCMYKStroke()
Get the current stroking color
array HaruPage::getCurrentPos()
Get the current position for path painting
array HaruPage::getCurrentTextPos()
Get the current position for text printing
array HaruPage::getDash()
Get the current dash pattern
array HaruPage::getRGBFill()
Get the current filling color
array HaruPage::getRGBStroke()
Get the current stroking color
array HaruPage::getTextMatrix()
Get the current text transformation matrix of the page
array HaruPage::getTransMatrix()
Get the current transformation matrix of the page
array hash_algos()
Return a list of registered hashing algorithms
array headers_list()
Returns a list of response headers sent (or ready to send)
array HttpMessage::getHeaders()
Get message headers
array HttpQueryString::toArray()
Get query string as array
array HttpRequest::getCookies()
Get cookies
array HttpRequest::getHeaders()
Get headers
array HttpRequest::getOptions()
Get options
array HttpRequest::getPostFields()
Get post fields
array HttpRequest::getPostFiles()
Get post files
array HttpRequest::getResponseCookies([int $flags = '' [, array $allowed_extras = '']])
Get response cookie(s)
array HttpRequest::getResponseData()
Get response data
array HttpRequest::getSslOptions()
Get ssl options
array HttpRequestPool::getAttachedRequests()
Get attached requests
array HttpRequestPool::getFinishedRequests()
Get finished requests
array HttpResponse::getRequestHeaders()
Get request headers
array http_get_request_headers()
Get request headers as array
array http_parse_headers(string $header)
Parse HTTP headers
array hw_api::children(array $parameter)
Returns children of an object
array hw_api::dstanchors(array $parameter)
Returns a list of all destination anchors
array hw_api::find(array $parameter)
Search for objects
array hw_api::info(array $parameter)
Returns information about server configuration
array hw_api::parents(array $parameter)
Returns parents of an object
array hw_api::srcanchors(array $parameter)
Returns a list of all source anchors
array hw_api::srcsofdst(array $parameter)
Returns source of a destination object
array hw_api::userlist(array $parameter)
Returns a list of all logged in users
array hw_api_attribute::values()
Returns all values of the attribute
array hw_Children(int $connection, int $objectID)
Object ids of children
array hw_ChildrenObj(int $connection, int $objectID)
Object records of children
array hw_GetAnchors(int $connection, int $objectID)
Object ids of anchors of document
array hw_GetAnchorsObj(int $connection, int $objectID)
Object records of anchors of document
array hw_GetChildColl(int $connection, int $objectID)
Object ids of child collections
array hw_GetChildCollObj(int $connection, int $objectID)
Object records of child collections
array hw_GetChildDocColl(int $connection, int $objectID)
Object ids of child documents of collection
array hw_GetChildDocCollObj(int $connection, int $objectID)
Object records of child documents of collection
array hw_GetObjectByQuery(int $connection, string $query, int $max_hits)
Search object
array hw_GetObjectByQueryColl(int $connection, int $objectID, string $query, int $max_hits)
Search object in collection
array hw_GetObjectByQueryCollObj(int $connection, int $objectID, string $query, int $max_hits)
Search object in collection
array hw_GetObjectByQueryObj(int $connection, string $query, int $max_hits)
Search object
array hw_GetParents(int $connection, int $objectID)
Object ids of parents
array hw_GetParentsObj(int $connection, int $objectID)
Object records of parents
array hw_GetSrcByDestObj(int $connection, int $objectID)
Returns anchors pointing at object
array hw_InCollections(int $connection, array $object_id_array, array $collection_id_array, int $return_collections)
Check if object ids in collections
array hw_objrec2array(string $object_record [, array $format = ''])
Convert attributes from object record to object array
array hw_Who(int $connection)
List of currently logged in users
array ibase_blob_info(resource $link_identifier, string $blob_id)
Return blob length and other useful info
array ibase_fetch_assoc(resource $result [, int $fetch_flag = ''])
Fetch a result row from a query as an associative array
array ibase_fetch_row(resource $result_identifier [, int $fetch_flag = ''])
Fetch a row from an InterBase database
array ibase_field_info(resource $result, int $field_number)
Get information about a field
array ibase_param_info(resource $query, int $param_number)
Return information about a parameter in a prepared query
array iconv_mime_decode_headers(string $encoded_headers [, int $mode = '' [, string $charset = ini_get("iconv.internal_encoding")]])
Decodes multiple MIME header fields at once
array id3_get_genre_list()
Get all possible genre values
array id3_get_tag(string $filename [, int $version = ID3_BEST])
Get all information stored in an ID3 tag
array ifx_fetch_row(resource $result_id [, mixed $position = ''])
Get row as an associative array
array ifx_fieldproperties(resource $result_id)
List of SQL fieldproperties
array ifx_fieldtypes(resource $result_id)
List of Informix SQL fields
array ifx_getsqlca(resource $result_id)
Get the contents of sqlca.sqlerrd[0..5] after a query
array imagecolorsforindex(resource $image, int $index)
Get the colors for an index
array imageftbbox(float $size, float $angle, string $fontfile, string $text [, array $extrainfo = ''])
Give the bounding box of a text using fonts via freetype2
array imagefttext(resource $image, float $size, float $angle, int $x, int $y, int $color, string $fontfile, string $text [, array $extrainfo = ''])
Write text to the image using fonts using FreeType 2
array imagepsbbox(string $text, resource $font, int $size, int $space, int $tightness, float $angle)
Give the bounding box of a text rectangle using PostScript Type1 fonts
array imagepstext(resource $image, string $text, resource $font_index, int $size, int $foreground, int $background, int $x, int $y [, int $space = '' [, int $tightness = '' [, float $angle = 0.0 [, int $antialias_steps = 4]]]])
Draws a text over an image using PostScript Type1 fonts
array imagettfbbox(float $size, float $angle, string $fontfile, string $text)
Give the bounding box of a text using TrueType fonts
array imagettftext(resource $image, float $size, float $angle, int $x, int $y, int $color, string $fontfile, string $text)
Write text to the image using TrueType fonts
array Imagick::compareImageChannels(Imagick $image, int $channelType, int $metricType)
Returns the difference in one or more images
array Imagick::compareImages(Imagick $compare, int $metric)
Compares an image to a reconstructed image
array Imagick::exportImagePixels(int $x, int $y, int $width, int $height, string $map, int $STORAGE)
Exports raw image pixels
array Imagick::getImageBluePrimary()
Returns the chromaticy blue primary point
array Imagick::getImageChannelExtrema(int $channel)
Gets the extrema for one or more image channels
array Imagick::getImageChannelKurtosis([int $channel = Imagick::CHANNEL_DEFAULT])
The getImageChannelKurtosis purpose
array Imagick::getImageChannelMean(int $channel)
Gets the mean and standard deviation
array Imagick::getImageChannelRange(int $channel)
Gets channel range
array Imagick::getImageChannelStatistics()
Returns statistics for each channel in the image
array Imagick::getImageExtrema()
Gets the extrema for the image
array Imagick::getImageGeometry()
Gets the width and height as an associative array
array Imagick::getImageGreenPrimary()
Returns the chromaticy green primary point
array Imagick::getImageHistogram()
Gets the image histogram
array Imagick::getImagePage()
Returns the page geometry
array Imagick::getImageProfiles([string $pattern = "*" [, bool $only_names = true]])
Returns the image profiles
array Imagick::getImageProperties([string $pattern = "*" [, bool $only_names = true]])
Returns the image properties
array Imagick::getImageRedPrimary()
Returns the chromaticity red primary point
array Imagick::getImageResolution()
Gets the image X and Y resolution
array Imagick::getImageWhitePoint()
Returns the chromaticity white point
array Imagick::getPage()
Returns the page geometry
array Imagick::getQuantumDepth()
Gets the quantum depth
array Imagick::getQuantumRange()
Returns the Imagick quantum range
array Imagick::getSamplingFactors()
Gets the horizontal and vertical sampling factor
array Imagick::getSize()
Returns the size associated with the Imagick object
array Imagick::getVersion()
Returns the ImageMagick API version
array Imagick::identifyImage([bool $appendRawOutput = false])
Identifies an image and fetches attributes
array Imagick::queryFontMetrics(ImagickDraw $properties, string $text [, bool $multiline = ''])
Returns an array representing the font metrics
array Imagick::queryFonts([string $pattern = "*"])
Returns the configured fonts
array Imagick::queryFormats([string $pattern = "*"])
Returns formats supported by Imagick
array ImagickDraw::getStrokeDashArray()
Returns an array representing the pattern of dashes and gaps used to stroke paths
array ImagickPixel::getColor([bool $normalized = false])
Returns the color
array ImagickPixel::getHSL()
Returns the normalized HSL color of the ImagickPixel object
array ImagickPixelIterator::getCurrentIteratorRow()
Returns the current row of ImagickPixel objects
array ImagickPixelIterator::getNextIteratorRow()
Returns the next row of the pixel iterator
array ImagickPixelIterator::getPreviousIteratorRow()
Returns the previous row
array imap_alerts()
Returns all IMAP alert messages that have occurred
array imap_errors()
Returns all of the IMAP errors that have occured
array imap_fetch_overview(resource $imap_stream, string $sequence [, int $options = ''])
Read an overview of the information in the headers of the given message
array imap_getacl(resource $imap_stream, string $mailbox)
Gets the ACL for a given mailbox
array imap_getmailboxes(resource $imap_stream, string $ref, string $pattern)
Read the list of mailboxes, returning detailed information on each one
array imap_getsubscribed(resource $imap_stream, string $ref, string $pattern)
List all the subscribed mailboxes
array imap_get_quota(resource $imap_stream, string $quota_root)
Retrieve the quota level settings, and usage statics per mailbox
array imap_get_quotaroot(resource $imap_stream, string $quota_root)
Retrieve the quota settings per user
array imap_headers(resource $imap_stream)
Returns headers for all messages in a mailbox
array imap_list(resource $imap_stream, string $ref, string $pattern)
Read the list of mailboxes
array imap_listscan(resource $imap_stream, string $ref, string $pattern, string $content)
Returns the list of mailboxes that matches the given text
array imap_lsub(resource $imap_stream, string $ref, string $pattern)
List all the subscribed mailboxes
array imap_mime_header_decode(string $text)
Decode MIME header elements
array imap_rfc822_parse_adrlist(string $address, string $default_host)
Parses an address string
array imap_search(resource $imap_stream, string $criteria [, int $options = SE_FREE [, string $charset = NIL]])
This function returns an array of messages matching the given search criteria
array imap_sort(resource $imap_stream, int $criteria, int $reverse [, int $options = '' [, string $search_criteria = '' [, string $charset = NIL]]])
Gets and sort messages
array imap_thread(resource $imap_stream [, int $options = SE_FREE])
Returns a tree of threaded message
array inclued_get_data()
Get the inclued data
array ingres_fetch_array(resource $result [, int $result_type = ''])
Fetch a row of result into an array
array ingres_fetch_assoc(resource $result)
Fetch a row of result into an associative array
array ingres_fetch_row(resource $result)
Fetch a row of result into an enumerated array
array ini_get_all([string $extension = '' [, bool $details = true]])
Gets all configuration options
array inotify_read(resource $inotify_instance)
Read events from an inotify instance
array IntlDateFormatter::localtime(string $value [, int $position = '', IntlDateFormatter $fmt])
Parse string to a field-based time value
array iptcparse(string $iptcblock)
Parse a binary IPTC block into single tags.
ArrayIterator ArrayObject::getIterator()
Create a new iterator from an ArrayObject instance
array iterator_to_array(Traversable $iterator [, bool $use_keys = true])
Copy the iterator into an array
array kadm5_get_policies(resource $handle)
Gets all policies from the Kerberos database
array kadm5_get_principal(resource $handle, string $principal)
Gets the principal's entries from the Kerberos database
array kadm5_get_principals(resource $handle)
Gets all principals from the Kerberos database
array KTaglib_ID3v2_Tag::getFrameList()
Returns an array of ID3v2 frames, associated with the ID3v2 tag
array ldap_explode_dn(string $dn, int $with_attrib)
Splits DN into its component parts
array ldap_get_attributes(resource $link_identifier, resource $result_entry_identifier)
Get attributes from a search result entry
array ldap_get_entries(resource $link_identifier, resource $result_identifier)
Get all result entries
array ldap_get_values(resource $link_identifier, resource $result_entry_identifier, string $attribute)
Get all values from a result entry
array ldap_get_values_len(resource $link_identifier, resource $result_entry_identifier, string $attribute)
Get all binary values from a result entry
array libxml_get_errors()
Retrieve array of errors
array list(mixed $varname [, mixed $... = ''])
Assign variables as if they were an array
array Locale::getAllVariants(string $locale)
Gets the variants for the input locale
array Locale::getKeywords(string $locale)
Gets the keywords for the input locale
array Locale::parseLocale(string $locale)
Returns a key-value array of locale ID subtag elements.
array localeconv()
Get numeric formatting information
array locale_get_all_variants(string $locale)
Gets the variants for the input locale
array locale_get_keywords(string $locale)
Gets the keywords for the input locale
array locale_parse(string $locale)
Returns a key-value array of locale ID subtag elements.
array localtime([int $timestamp = time() [, bool $is_associative = false]])
Get the local time
array lstat(string $filename)
Gives information about a file or symbolic link
array mailparse_msg_get_part_data(resource $mimemail)
Returns an associative array of info about the message
array mailparse_msg_get_structure(resource $mimemail)
Returns an array of mime section names in the supplied message
array mailparse_rfc822_parse_addresses(string $addresses)
Parse RFC 822 compliant addresses
array mailparse_uudecode_all(resource $fp)
Scans the data from fp and extract each embedded uuencoded file
array maxdb_fetch_assoc(resource $result)
Fetch a result row as an associative array
array maxdb_fetch_lengths(resource $result)
Returns the lengths of the columns of the current row in the result set
array maxdb_result::fetch_assoc(resource $result)
Fetch a result row as an associative array
array maxdb_result::lengths(resource $result)
Returns the lengths of the columns of the current row in the result set
array mb_encoding_aliases(string $encoding)
Get aliases of a known encoding type
array mb_ereg_search_getregs()
Retrieve the result from the last multibyte regular expression match
array mb_ereg_search_pos([string $pattern = '' [, string $option = "ms"]])
Returns position and length of a matched part of the multibyte regular expression for a predefined multibyte string
array mb_ereg_search_regs([string $pattern = '' [, string $option = "ms"]])
Returns the matched part of a multibyte regular expression
array mb_list_encodings()
Returns an array of all supported encodings
array mb_parse_str(string $encoded_string [, array $result = ''])
Parse GET/POST/COOKIE data and set global variable
array mb_split(string $pattern, string $string [, int $limit = -1])
Split multibyte string using regular expression
array mcrypt_enc_get_supported_key_sizes(resource $td)
Returns an array with the supported keysizes of the opened algorithm
array mcrypt_list_algorithms([string $lib_dir = ini_get("mcrypt.algorithms_dir")])
Gets an array of all supported ciphers
array mcrypt_list_modes([string $lib_dir = ini_get("mcrypt.modes_dir")])
Gets an array of all supported modes
array mcrypt_module_get_supported_key_sizes(string $algorithm [, string $lib_dir = ''])
Returns an array with the supported keysizes of the opened algorithm
array Memcache::get(string $key [, array $flags = '', array $keys])
Retrieve item from the server
array Memcache::getExtendedStats([string $type = '' [, int $slabid = '' [, int $limit = 100]]])
Get statistics from all servers in pool
array Memcache::getStats([string $type = '' [, int $slabid = '' [, int $limit = 100]]])
Get statistics of the server
array Memcached::fetch()
Fetch the next result
array Memcached::fetchAll()
Fetch all the remaining results
array Memcached::getMultiByKey(string $server_key, array $keys [, string $cas_tokens = '' [, int $flags = '']])
Retrieve multiple items from a specific server
array Memcached::getServerByKey(string $server_key)
Map a key to a server
array Memcached::getServerList()
Get the list of the servers in the pool
array Memcached::getStats()
Get server pool statistics
array Memcached::getVersion()
Get server pool version info
array MessageFormatter::parse(string $value, MessageFormatter $fmt)
Parse input string according to pattern
array MessageFormatter::parseMessage(string $locale, string $pattern, string $source, string $value)
Quick parse input string
array Mongo::dropDB(mixed $db)
Drops a database [deprecated]
array Mongo::getHosts()
Updates status for all hosts associated with this
array MongoCollection::createDBRef(array $a)
Creates a database reference
array MongoCollection::deleteIndex(string|array $keys)
Deletes an index from this collection
array MongoCollection::deleteIndexes()
Delete all indices for this collection
array MongoCollection::drop()
Drops this collection
array MongoCollection::findOne([array $query = array() [, array $fields = array()]])
Querys this collection, returning a single element
array MongoCollection::getDBRef(array $ref)
Fetches the document pointed to by a database reference
array MongoCollection::getIndexInfo()
Returns an array of index names for this collection
array MongoCollection::group(mixed $keys, array $initial, MongoCode $reduce [, array $options = array()])
Performs an operation similar to SQL's GROUP BY command
array MongoCollection::validate([bool $scan_data = ''])
Validates this collection
array MongoCursor::current()
Returns the current element
array MongoCursor::explain()
Return an explanation of the query, often useful for optimization and debugging
array MongoCursor::getNext()
Return the next object to which this cursor points, and advance the cursor
array MongoCursor::info()
Gets the query, fields, limit, and skip for this cursor
array MongoDB::authenticate(string $username, string $password)
Log in to this database
array MongoDB::command(array $command)
Execute a database command
array MongoDB::createDBRef(string $collection, mixed $a)
Creates a database reference
array MongoDB::drop()
Drops this database
array MongoDB::dropCollection(mixed $coll)
Drops a collection [deprecated]
array MongoDB::execute(mixed $code [, array $args = array()])
Runs JavaScript code on the database server.
array MongoDB::getDBRef(array $ref)
Fetches the document pointed to by a database reference
array MongoDB::lastError()
Check if there was an error on the most recent db operation performed
array MongoDB::listCollections()
Get a list of collections in this database
array MongoDB::prevError()
Checks for the last error thrown during a database operation
array MongoDB::repair([bool $preserve_cloned_files = '' [, bool $backup_original_files = '']])
Repairs and compacts this database
array MongoDB::resetError()
Clears any flagged errors on the database
array MongoDBRef::create(string $collection, mixed $id [, string $database = ''])
Creates a new database reference
array MongoDBRef::get(MongoDB $db, array $ref)
Fetches the object pointed to by a reference
array MongoGridFS::drop()
Drops the files and chunks collections
array msession_find(string $name, string $value)
Find all sessions with name and value
array msession_get_array(string $session)
Get array of msession variables
array msession_list()
List all sessions
array msession_listvar(string $name)
List sessions with variable
array msgfmt_parse(string $value, MessageFormatter $fmt)
Parse input string according to pattern
array msgfmt_parse_message(string $locale, string $pattern, string $source, string $value)
Quick parse input string
array msg_stat_queue(resource $queue)
Returns information from the message queue data structure
array msql_fetch_array(resource $result [, int $result_type = ''])
Fetch row as array
array msql_fetch_row(resource $result)
Get row as enumerated array
array mssql_fetch_array(resource $result [, int $result_type = MSSQL_BOTH])
Fetch a result row as an associative array, a numeric array, or both
array mssql_fetch_assoc(resource $result_id)
Returns an associative array of the current row in the result
array mssql_fetch_row(resource $result)
Get row as enumerated array
array mysqli::get_connection_stats(mysqli $link)
Returns statistics about the client connection
array mysqli_fetch_assoc(mysqli_result $result)
Fetch a result row as an associative array
array mysqli_fetch_fields(mysqli_result $result)
Returns an array of objects representing the fields in a result set
array mysqli_fetch_lengths(mysqli_result $result)
Returns the lengths of the columns of the current row in the result set
array mysqli_get_cache_stats()
Returns client Zval cache statistics
array mysqli_get_client_stats()
Returns client per-process statistics
array mysqli_get_connection_stats(mysqli $link)
Returns statistics about the client connection
array mysqli_result::fetch_assoc(mysqli_result $result)
Fetch a result row as an associative array
array mysqli_result::fetch_fields(mysqli_result $result)
Returns an array of objects representing the fields in a result set
array mysqli_result::lengths(mysqli_result $result)
Returns the lengths of the columns of the current row in the result set
array mysqlnd_ms_get_stats()
Returns query distribution and connection statistics
array mysqlnd_qc_get_cache_info()
Returns information on the current handler, the number of cache entries and cache entries, if available
array mysqlnd_qc_get_core_stats()
Statistics collected by the core of the query cache
array mysqlnd_qc_get_handler()
Returns a list of available storage handler
array mysqlnd_qc_get_query_trace_log()
Returns a backtrace for each query inspected by the query cache
array mysql_fetch_array(resource $result [, int $result_type = MYSQL_BOTH])
Fetch a result row as an associative array, a numeric array, or both
array mysql_fetch_assoc(resource $result)
Fetch a result row as an associative array
array mysql_fetch_lengths(resource $result)
Get the length of each output in a result
array mysql_fetch_row(resource $result)
Get a result row as an enumerated array
array m_responsekeys(resource $conn, int $identifier)
Returns array of strings which represents the keys that can be used for response parameters on this transaction
array newt_checkbox_tree_find_item(resource $checkboxtree, mixed $data)
Finds an item in the checkbox tree
array newt_checkbox_tree_get_multi_selection(resource $checkboxtree, string $seqnum)
array newt_checkbox_tree_get_selection(resource $checkboxtree)
array newt_listbox_get_selection(resource $listbox)
array notes_body(string $server, string $mailbox, int $msg_number)
Open the message msg_number in the specified mailbox on the specified server (leave serv
array notes_search(string $database_name, string $keywords)
Find notes that match keywords in database_name
array notes_unread(string $database_name, string $user_name)
Returns the unread note id's for the current User user_name
array nsapi_request_headers()
Fetch all HTTP request headers
array nsapi_response_headers()
Fetch all HTTP response headers
array OAuth::getAccessToken(string $access_token_url [, string $auth_session_handle = '' [, string $verifier_token = '']])
Fetch an access token
array OAuth::getCAPath()
Gets CA information
array OAuth::getLastResponseInfo()
Get HTTP information about the last response
array OAuth::getRequestToken(string $request_token_url [, string $callback_url = ''])
Fetch a request token
array ob_get_status([bool $full_status = FALSE])
Get status of output buffers
array ob_list_handlers()
List all output handlers in use
array oci_error([resource $resource = ''])
Returns the last error found
array oci_fetch_array(resource $statement [, int $mode = ''])
Returns the next row from a query as an associative or numeric array
array oci_fetch_assoc(resource $statement)
Returns the next row from a query as an associative array
array oci_fetch_row(resource $statement)
Returns the next row from a query as a numeric array