-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathquickref.txt
8259 lines (8259 loc) · 479 KB
/
quickref.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
abs - Absolute value
acos - Arc cosine
acosh - Inverse hyperbolic cosine
addcslashes - Quote string with slashes in a C style
addslashes - Quote string with slashes
aggregate - Dynamic class and object aggregation of methods and properties
aggregate_info - Gets aggregation information for a given object
aggregate_methods - Dynamic class and object aggregation of methods
aggregate_methods_by_list - Selective dynamic class methods aggregation to an object
aggregate_methods_by_regexp - Selective class methods aggregation to an object using a regular expression
aggregate_properties - Dynamic aggregation of class properties to an object
aggregate_properties_by_list - Selective dynamic class properties aggregation to an object
aggregate_properties_by_regexp - Selective class properties aggregation to an object using a regular expression
aggregation_info - Alias of aggregate_info
apache_child_terminate - Terminate apache process after this request
apache_getenv - Get an Apache subprocess_env variable
apache_get_modules - Get a list of loaded Apache modules
apache_get_version - Fetch Apache version
apache_lookup_uri - Perform a partial request for the specified URI and return all info about it
apache_note - Get and set apache request notes
apache_request_headers - Fetch all HTTP request headers
apache_reset_timeout - Reset the Apache write timer
apache_response_headers - Fetch all HTTP response headers
apache_setenv - Set an Apache subprocess_env variable
APCIterator::current - Get current item
APCIterator::getTotalCount - Get total count
APCIterator::getTotalHits - Get total cache hits
APCIterator::getTotalSize - Get total cache size
APCIterator::key - Get iterator key
APCIterator::next - Move pointer to next item
APCIterator::rewind - Rewinds iterator
APCIterator::valid - Checks if current position is valid
APCIterator::__construct - Constructs an APCIterator iterator object
apc_add - Cache a variable in the data store
apc_bin_dump - Get a binary dump of the given files and user variables
apc_bin_dumpfile - Output a binary dump of cached files and user variables to a file
apc_bin_load - Load a binary dump into the APC file/user cache
apc_bin_loadfile - Load a binary dump from a file into the APC file/user cache
apc_cache_info - Retrieves cached information from APC's data store
apc_cas - Updates an old value with a new value
apc_clear_cache - Clears the APC cache
apc_compile_file - Stores a file in the bytecode cache, bypassing all filters.
apc_dec - Decrease a stored number
apc_define_constants - Defines a set of constants for retrieval and mass-definition
apc_delete - Removes a stored variable from the cache
apc_delete_file - Deletes files from the opcode cache
apc_exists - Checks if APC key exists
apc_fetch - Fetch a stored variable from the cache
apc_inc - Increase a stored number
apc_load_constants - Loads a set of constants from the cache
apc_sma_info - Retrieves APC's Shared Memory Allocation information
apc_store - Cache a variable in the data store
apd_breakpoint - Stops the interpreter and waits on a CR from the socket
apd_callstack - Returns the current call stack as an array
apd_clunk - Throw a warning and a callstack
apd_continue - Restarts the interpreter
apd_croak - Throw an error, a callstack and then exit
apd_dump_function_table - Outputs the current function table
apd_dump_persistent_resources - Return all persistent resources as an array
apd_dump_regular_resources - Return all current regular resources as an array
apd_echo - Echo to the debugging socket
apd_get_active_symbols - Get an array of the current variables names in the local scope
apd_set_pprof_trace - Starts the session debugging
apd_set_session - Changes or sets the current debugging level
apd_set_session_trace - Starts the session debugging
apd_set_session_trace_socket - Starts the remote session debugging
AppendIterator::append - Appends an iterator
AppendIterator::current - Gets the current value
AppendIterator::getArrayIterator - The getArrayIterator method
AppendIterator::getInnerIterator - Gets an inner iterator
AppendIterator::getIteratorIndex - Gets an index of iterators
AppendIterator::key - Gets the current key
AppendIterator::next - Moves to the next element
AppendIterator::rewind - Rewinds the Iterator
AppendIterator::valid - Checks validity of the current element
AppendIterator::__construct - Constructs an AppendIterator
array - Create an array
ArrayIterator::append - Append an element
ArrayIterator::asort - Sort array by values
ArrayIterator::count - Count elements
ArrayIterator::current - Return current array entry
ArrayIterator::getArrayCopy - Get array copy
ArrayIterator::getFlags - Get flags
ArrayIterator::key - Return current array key
ArrayIterator::ksort - Sort array by keys
ArrayIterator::natcasesort - Sort an array naturally, case insensitive
ArrayIterator::natsort - Sort an array naturally
ArrayIterator::next - Move to next entry
ArrayIterator::offsetExists - Check if offset exists
ArrayIterator::offsetGet - Get value for an offset
ArrayIterator::offsetSet - Set value for an offset
ArrayIterator::offsetUnset - Unset value for an offset
ArrayIterator::rewind - Rewind array back to the start
ArrayIterator::seek - Seek to position
ArrayIterator::serialize - Serialize
ArrayIterator::setFlags - Set behaviour flags
ArrayIterator::uasort - User defined sort
ArrayIterator::uksort - User defined sort
ArrayIterator::unserialize - Unserialize
ArrayIterator::valid - Check whether array contains more entries
ArrayIterator::__construct - Construct an ArrayIterator
ArrayObject::append - Appends the value
ArrayObject::asort - Sort the entries by value
ArrayObject::count - Get the number of public properties in the ArrayObject
ArrayObject::exchangeArray - Exchange the array for another one.
ArrayObject::getArrayCopy - Creates a copy of the ArrayObject.
ArrayObject::getFlags - Gets the behavior flags.
ArrayObject::getIterator - Create a new iterator from an ArrayObject instance
ArrayObject::getIteratorClass - Gets the iterator classname for the ArrayObject.
ArrayObject::ksort - Sort the entries by key
ArrayObject::natcasesort - Sort an array using a case insensitive "natural order" algorithm
ArrayObject::natsort - Sort entries using a "natural order" algorithm
ArrayObject::offsetExists - Returns whether the requested index exists
ArrayObject::offsetGet - Returns the value at the specified index
ArrayObject::offsetSet - Sets the value at the specified index to newval
ArrayObject::offsetUnset - Unsets the value at the specified index
ArrayObject::serialize - Serialize an ArrayObject
ArrayObject::setFlags - Sets the behavior flags.
ArrayObject::setIteratorClass - Sets the iterator classname for the ArrayObject.
ArrayObject::uasort - Sort the entries with a user-defined comparison function and maintain key association
ArrayObject::uksort - Sort the entries by keys using a user-defined comparison function
ArrayObject::unserialize - Unserialize an ArrayObject
ArrayObject::__construct - Construct a new array object
array_change_key_case - Changes all keys in an array
array_chunk - Split an array into chunks
array_combine - Creates an array by using one array for keys and another for its values
array_count_values - Counts all the values of an array
array_diff - Computes the difference of arrays
array_diff_assoc - Computes the difference of arrays with additional index check
array_diff_key - Computes the difference of arrays using keys for comparison
array_diff_uassoc - Computes the difference of arrays with additional index check which is performed by a user supplied callback function
array_diff_ukey - Computes the difference of arrays using a callback function on the keys for comparison
array_fill - Fill an array with values
array_fill_keys - Fill an array with values, specifying keys
array_filter - Filters elements of an array using a callback function
array_flip - Exchanges all keys with their associated values in an array
array_intersect - Computes the intersection of arrays
array_intersect_assoc - Computes the intersection of arrays with additional index check
array_intersect_key - Computes the intersection of arrays using keys for comparison
array_intersect_uassoc - Computes the intersection of arrays with additional index check, compares indexes by a callback function
array_intersect_ukey - Computes the intersection of arrays using a callback function on the keys for comparison
array_keys - Return all the keys or a subset of the keys of an array
array_key_exists - Checks if the given key or index exists in the array
array_map - Applies the callback to the elements of the given arrays
array_merge - Merge one or more arrays
array_merge_recursive - Merge two or more arrays recursively
array_multisort - Sort multiple or multi-dimensional arrays
array_pad - Pad array to the specified length with a value
array_pop - Pop the element off the end of array
array_product - Calculate the product of values in an array
array_push - Push one or more elements onto the end of array
array_rand - Pick one or more random entries out of an array
array_reduce - Iteratively reduce the array to a single value using a callback function
array_replace - Replaces elements from passed arrays into the first array
array_replace_recursive - Replaces elements from passed arrays into the first array recursively
array_reverse - Return an array with elements in reverse order
array_search - Searches the array for a given value and returns the corresponding key if successful
array_shift - Shift an element off the beginning of array
array_slice - Extract a slice of the array
array_splice - Remove a portion of the array and replace it with something else
array_sum - Calculate the sum of values in an array
array_udiff - Computes the difference of arrays by using a callback function for data comparison
array_udiff_assoc - Computes the difference of arrays with additional index check, compares data by a callback function
array_udiff_uassoc - Computes the difference of arrays with additional index check, compares data and indexes by a callback function
array_uintersect - Computes the intersection of arrays, compares data by a callback function
array_uintersect_assoc - Computes the intersection of arrays with additional index check, compares data by a callback function
array_uintersect_uassoc - Computes the intersection of arrays with additional index check, compares data and indexes by a callback functions
array_unique - Removes duplicate values from an array
array_unshift - Prepend one or more elements to the beginning of an array
array_values - Return all the values of an array
array_walk - Apply a user function to every member of an array
array_walk_recursive - Apply a user function recursively to every member of an array
arsort - Sort an array in reverse order and maintain index association
asin - Arc sine
asinh - Inverse hyperbolic sine
asort - Sort an array and maintain index association
assert - Checks if assertion is FALSE
assert_options - Set/get the various assert flags
atan - Arc tangent
atan2 - Arc tangent of two variables
atanh - Inverse hyperbolic tangent
base64_decode - Decodes data encoded with MIME base64
base64_encode - Encodes data with MIME base64
basename - Returns trailing name component of path
base_convert - Convert a number between arbitrary bases
bbcode_add_element - Adds a bbcode element
bbcode_add_smiley - Adds a smiley to the parser
bbcode_create - Create a BBCode Resource
bbcode_destroy - Close BBCode_container resource
bbcode_parse - Parse a string following a given rule set
bbcode_set_arg_parser - Attach another parser in order to use another rule set for argument parsing
bbcode_set_flags - Set or alter parser options
bcadd - Add two arbitrary precision numbers
bccomp - Compare two arbitrary precision numbers
bcdiv - Divide two arbitrary precision numbers
bcmod - Get modulus of an arbitrary precision number
bcmul - Multiply two arbitrary precision number
bcompiler_load - Reads and creates classes from a bz compressed file
bcompiler_load_exe - Reads and creates classes from a bcompiler exe file
bcompiler_parse_class - Reads the bytecodes of a class and calls back to a user function
bcompiler_read - Reads and creates classes from a filehandle
bcompiler_write_class - Writes an defined class as bytecodes
bcompiler_write_constant - Writes a defined constant as bytecodes
bcompiler_write_exe_footer - Writes the start pos, and sig to the end of a exe type file
bcompiler_write_file - Writes a php source file as bytecodes
bcompiler_write_footer - Writes the single character \x00 to indicate End of compiled data
bcompiler_write_function - Writes an defined function as bytecodes
bcompiler_write_functions_from_file - Writes all functions defined in a file as bytecodes
bcompiler_write_header - Writes the bcompiler header
bcompiler_write_included_filename - Writes an included file as bytecodes
bcpow - Raise an arbitrary precision number to another
bcpowmod - Raise an arbitrary precision number to another, reduced by a specified modulus
bcscale - Set default scale parameter for all bc math functions
bcsqrt - Get the square root of an arbitrary precision number
bcsub - Subtract one arbitrary precision number from another
bin2hex - Convert binary data into hexadecimal representation
bindec - Binary to decimal
bindtextdomain - Sets the path for a domain
bind_textdomain_codeset - Specify the character encoding in which the messages from the DOMAIN message catalog will be returned
bson_decode - Deserializes a BSON object into a PHP array
bson_encode - Serializes a PHP variable into a BSON string
bzclose - Close a bzip2 file
bzcompress - Compress a string into bzip2 encoded data
bzdecompress - Decompresses bzip2 encoded data
bzerrno - Returns a bzip2 error number
bzerror - Returns the bzip2 error number and error string in an array
bzerrstr - Returns a bzip2 error string
bzflush - Force a write of all buffered data
bzopen - Opens a bzip2 compressed file
bzread - Binary safe bzip2 file read
bzwrite - Binary safe bzip2 file write
CachingIterator::count - The number of elements in the iterator
CachingIterator::current - Return the current element
CachingIterator::getCache - The getCache purpose
CachingIterator::getFlags - Get flags used
CachingIterator::getInnerIterator - Returns the inner iterator
CachingIterator::hasNext - Check whether the inner iterator has a valid next element
CachingIterator::key - Return the key for the current element
CachingIterator::next - Move the iterator forward
CachingIterator::offsetExists - The offsetExists purpose
CachingIterator::offsetGet - The offsetGet purpose
CachingIterator::offsetSet - The offsetSet purpose
CachingIterator::offsetUnset - The offsetUnset purpose
CachingIterator::rewind - Rewind the iterator
CachingIterator::setFlags - The setFlags purpose
CachingIterator::valid - Check whether the current element is valid
CachingIterator::__construct - Construct a new CachingIterator object for the iterator.
CachingIterator::__toString - Return the string representation of the current element
Cairo::availableFonts - Retrieves the availables font types
Cairo::availableSurfaces - Retrieves all available surfaces
Cairo::statusToString - Retrieves the current status as string
Cairo::version - Retrives cairo's library version
Cairo::versionString - Retrieves cairo version as string
CairoContext::appendPath - Appends a path to current path
CairoContext::arc - Adds a circular arc
CairoContext::arcNegative - Adds a negative arc
CairoContext::clip - Establishes a new clip region
CairoContext::clipExtents - Computes the area inside the current clip
CairoContext::clipPreserve - Establishes a new clip region from the current clip
CairoContext::clipRectangleList - Retrieves the current clip as a list of rectangles
CairoContext::closePath - Closes the current path
CairoContext::copyPage - Emits the current page
CairoContext::copyPath - Creates a copy of the current path
CairoContext::copyPathFlat - Gets a flattened copy of the current path
CairoContext::curveTo - Adds a curve
CairoContext::deviceToUser - Transform a coordinate
CairoContext::deviceToUserDistance - Transform a distance
CairoContext::fill - Fills the current path
CairoContext::fillExtents - Computes the filled area
CairoContext::fillPreserve - Fills and preserve the current path
CairoContext::fontExtents - Get the font extents
CairoContext::getAntialias - Retrives the current antialias mode
CairoContext::getCurrentPoint - The getCurrentPoint purpose
CairoContext::getDash - The getDash purpose
CairoContext::getDashCount - The getDashCount purpose
CairoContext::getFillRule - The getFillRule purpose
CairoContext::getFontFace - The getFontFace purpose
CairoContext::getFontMatrix - The getFontMatrix purpose
CairoContext::getFontOptions - The getFontOptions purpose
CairoContext::getGroupTarget - The getGroupTarget purpose
CairoContext::getLineCap - The getLineCap purpose
CairoContext::getLineJoin - The getLineJoin purpose
CairoContext::getLineWidth - The getLineWidth purpose
CairoContext::getMatrix - The getMatrix purpose
CairoContext::getMiterLimit - The getMiterLimit purpose
CairoContext::getOperator - The getOperator purpose
CairoContext::getScaledFont - The getScaledFont purpose
CairoContext::getSource - The getSource purpose
CairoContext::getTarget - The getTarget purpose
CairoContext::getTolerance - The getTolerance purpose
CairoContext::glyphPath - The glyphPath purpose
CairoContext::hasCurrentPoint - The hasCurrentPoint purpose
CairoContext::identityMatrix - The identityMatrix purpose
CairoContext::inFill - The inFill purpose
CairoContext::inStroke - The inStroke purpose
CairoContext::lineTo - The lineTo purpose
CairoContext::mask - The mask purpose
CairoContext::maskSurface - The maskSurface purpose
CairoContext::moveTo - The moveTo purpose
CairoContext::newPath - The newPath purpose
CairoContext::newSubPath - The newSubPath purpose
CairoContext::paint - The paint purpose
CairoContext::paintWithAlpha - The paintWithAlpha purpose
CairoContext::pathExtents - The pathExtents purpose
CairoContext::popGroup - The popGroup purpose
CairoContext::popGroupToSource - The popGroupToSource purpose
CairoContext::pushGroup - The pushGroup purpose
CairoContext::pushGroupWithContent - The pushGroupWithContent purpose
CairoContext::rectangle - The rectangle purpose
CairoContext::relCurveTo - The relCurveTo purpose
CairoContext::relLineTo - The relLineTo purpose
CairoContext::relMoveTo - The relMoveTo purpose
CairoContext::resetClip - The resetClip purpose
CairoContext::restore - The restore purpose
CairoContext::rotate - The rotate purpose
CairoContext::save - The save purpose
CairoContext::scale - The scale purpose
CairoContext::selectFontFace - The selectFontFace purpose
CairoContext::setAntialias - The setAntialias purpose
CairoContext::setDash - The setDash purpose
CairoContext::setFillRule - The setFillRule purpose
CairoContext::setFontFace - The setFontFace purpose
CairoContext::setFontMatrix - The setFontMatrix purpose
CairoContext::setFontOptions - The setFontOptions purpose
CairoContext::setFontSize - The setFontSize purpose
CairoContext::setLineCap - The setLineCap purpose
CairoContext::setLineJoin - The setLineJoin purpose
CairoContext::setLineWidth - The setLineWidth purpose
CairoContext::setMatrix - The setMatrix purpose
CairoContext::setMiterLimit - The setMiterLimit purpose
CairoContext::setOperator - The setOperator purpose
CairoContext::setScaledFont - The setScaledFont purpose
CairoContext::setSource - The setSource purpose
CairoContext::setSourceRGB - The setSourceRGB purpose
CairoContext::setSourceRGBA - The setSourceRGBA purpose
CairoContext::setSourceSurface - The setSourceSurface purpose
CairoContext::setTolerance - The setTolerance purpose
CairoContext::showPage - The showPage purpose
CairoContext::showText - The showText purpose
CairoContext::status - The status purpose
CairoContext::stroke - The stroke purpose
CairoContext::strokeExtents - The strokeExtents purpose
CairoContext::strokePreserve - The strokePreserve purpose
CairoContext::textExtents - The textExtents purpose
CairoContext::textPath - The textPath purpose
CairoContext::transform - The transform purpose
CairoContext::translate - The translate purpose
CairoContext::userToDevice - The userToDevice purpose
CairoContext::userToDeviceDistance - The userToDeviceDistance purpose
CairoContext::__construct - Creates a new CairoContext
CairoFontFace::getType - Retrieves the font face type
CairoFontFace::status - Check for CairoFontFace errors
CairoFontFace::__construct - Creates a new CairoFontFace object
CairoFontOptions::equal - The equal purpose
CairoFontOptions::getAntialias - The getAntialias purpose
CairoFontOptions::getHintMetrics - The getHintMetrics purpose
CairoFontOptions::getHintStyle - The getHintStyle purpose
CairoFontOptions::getSubpixelOrder - The getSubpixelOrder purpose
CairoFontOptions::hash - The hash purpose
CairoFontOptions::merge - The merge purpose
CairoFontOptions::setAntialias - The setAntialias purpose
CairoFontOptions::setHintMetrics - The setHintMetrics purpose
CairoFontOptions::setHintStyle - The setHintStyle purpose
CairoFontOptions::setSubpixelOrder - The setSubpixelOrder purpose
CairoFontOptions::status - The status purpose
CairoFontOptions::__construct - The __construct purpose
CairoFormat::strideForWidth - Provides an appropiate stride to use
CairoGradientPattern::addColorStopRgb - The addColorStopRgb purpose
CairoGradientPattern::addColorStopRgba - The addColorStopRgba purpose
CairoGradientPattern::getColorStopCount - The getColorStopCount purpose
CairoGradientPattern::getColorStopRgba - The getColorStopRgba purpose
CairoGradientPattern::getExtend - The getExtend purpose
CairoGradientPattern::setExtend - The setExtend purpose
CairoImageSurface::createForData - The createForData purpose
CairoImageSurface::createFromPng - Creates a new CairoImageSurface form a png image file
CairoImageSurface::getData - Gets the image data as string
CairoImageSurface::getFormat - Get the image format
CairoImageSurface::getHeight - Retrieves the height of the CairoImageSurface
CairoImageSurface::getStride - The getStride purpose
CairoImageSurface::getWidth - Retrieves the width of the CairoImageSurface
CairoImageSurface::__construct - Creates a new CairoImageSurface
CairoLinearGradient::getPoints - The getPoints purpose
CairoLinearGradient::__construct - The __construct purpose
CairoMatrix::initIdentity - Creates a new identity matrix
CairoMatrix::initRotate - Creates a new rotated matrix
CairoMatrix::initScale - Creates a new scaling matrix
CairoMatrix::initTranslate - Creates a new translation matrix
CairoMatrix::invert - The invert purpose
CairoMatrix::multiply - The multiply purpose
CairoMatrix::rotate - The rotate purpose
CairoMatrix::scale - Applies scaling to a matrix
CairoMatrix::transformDistance - The transformDistance purpose
CairoMatrix::transformPoint - The transformPoint purpose
CairoMatrix::translate - The translate purpose
CairoMatrix::__construct - Creates a new CairoMatrix object
CairoPattern::getMatrix - The getMatrix purpose
CairoPattern::getType - The getType purpose
CairoPattern::setMatrix - The setMatrix purpose
CairoPattern::status - The status purpose
CairoPattern::__construct - The __construct purpose
CairoPdfSurface::setSize - The setSize purpose
CairoPdfSurface::__construct - The __construct purpose
CairoPsSurface::dscBeginPageSetup - The dscBeginPageSetup purpose
CairoPsSurface::dscBeginSetup - The dscBeginSetup purpose
CairoPsSurface::dscComment - The dscComment purpose
CairoPsSurface::getEps - The getEps purpose
CairoPsSurface::getLevels - The getLevels purpose
CairoPsSurface::levelToString - The levelToString purpose
CairoPsSurface::restrictToLevel - The restrictToLevel purpose
CairoPsSurface::setEps - The setEps purpose
CairoPsSurface::setSize - The setSize purpose
CairoPsSurface::__construct - The __construct purpose
CairoRadialGradient::getCircles - The getCircles purpose
CairoRadialGradient::__construct - The __construct purpose
CairoScaledFont::extents - The extents purpose
CairoScaledFont::getCtm - The getCtm purpose
CairoScaledFont::getFontFace - The getFontFace purpose
CairoScaledFont::getFontMatrix - The getFontMatrix purpose
CairoScaledFont::getFontOptions - The getFontOptions purpose
CairoScaledFont::getScaleMatrix - The getScaleMatrix purpose
CairoScaledFont::getType - The getType purpose
CairoScaledFont::glyphExtents - The glyphExtents purpose
CairoScaledFont::status - The status purpose
CairoScaledFont::textExtents - The textExtents purpose
CairoScaledFont::__construct - The __construct purpose
CairoSolidPattern::getRgba - The getRgba purpose
CairoSolidPattern::__construct - The __construct purpose
CairoSurface::copyPage - The copyPage purpose
CairoSurface::createSimilar - The createSimilar purpose
CairoSurface::finish - The finish purpose
CairoSurface::flush - The flush purpose
CairoSurface::getContent - The getContent purpose
CairoSurface::getDeviceOffset - The getDeviceOffset purpose
CairoSurface::getFontOptions - The getFontOptions purpose
CairoSurface::getType - The getType purpose
CairoSurface::markDirty - The markDirty purpose
CairoSurface::markDirtyRectangle - The markDirtyRectangle purpose
CairoSurface::setDeviceOffset - The setDeviceOffset purpose
CairoSurface::setFallbackResolution - The setFallbackResolution purpose
CairoSurface::showPage - The showPage purpose
CairoSurface::status - The status purpose
CairoSurface::writeToPng - The writeToPng purpose
CairoSurface::__construct - The __construct purpose
CairoSurfacePattern::getExtend - The getExtend purpose
CairoSurfacePattern::getFilter - The getFilter purpose
CairoSurfacePattern::getSurface - The getSurface purpose
CairoSurfacePattern::setExtend - The setExtend purpose
CairoSurfacePattern::setFilter - The setFilter purpose
CairoSurfacePattern::__construct - The __construct purpose
CairoSvgSurface::getVersions - Used to retrieve a list of supported SVG versions
CairoSvgSurface::restrictToVersion - The restrictToVersion purpose
CairoSvgSurface::versionToString - The versionToString purpose
CairoSvgSurface::__construct - The __construct purpose
cairo_append_path - Appends a path to current path
cairo_arc - Adds a circular arc
cairo_arc_negative - Adds a negative arc
cairo_available_fonts - Retrieves the availables font types
cairo_available_surfaces - Retrieves all available surfaces
cairo_clip - Establishes a new clip region
cairo_clip_extents - Computes the area inside the current clip
cairo_clip_preserve - Establishes a new clip region from the current clip
cairo_clip_rectangle_list - Retrieves the current clip as a list of rectangles
cairo_close_path - Closes the current path
cairo_copy_page - The copyPage purpose
cairo_copy_page - The copyPage purpose
cairo_copy_path - Creates a copy of the current path
cairo_copy_path_flat - Gets a flattened copy of the current path
cairo_create - Returns a new CairoContext object on the requested surface.
cairo_curve_to - Adds a curve
cairo_device_to_user - Transform a coordinate
cairo_device_to_user_distance - Transform a distance
cairo_fill - Fills the current path
cairo_fill_extents - Computes the filled area
cairo_fill_preserve - Fills and preserve the current path
cairo_font_extents - Get the font extents
cairo_font_face_get_type - Description
cairo_font_face_status - Check for CairoFontFace errors
cairo_font_face_status - Check for CairoFontFace errors
cairo_font_options_create - Description
cairo_font_options_equal - Description
cairo_font_options_get_antialias - Description
cairo_font_options_get_hint_metrics - Description
cairo_font_options_get_hint_style - Description
cairo_font_options_get_subpixel_order - Description
cairo_font_options_hash - Description
cairo_font_options_merge - Description
cairo_font_options_set_antialias - Description
cairo_font_options_set_hint_metrics - Description
cairo_font_options_set_hint_style - Description
cairo_font_options_set_subpixel_order - Description
cairo_font_options_status - Description
cairo_format_stride_for_width - Description
cairo_get_antialias - The getAntialias purpose
cairo_get_antialias - The getAntialias purpose
cairo_get_current_point - The getCurrentPoint purpose
cairo_get_dash - The getDash purpose
cairo_get_dash_count - The getDashCount purpose
cairo_get_fill_rule - The getFillRule purpose
cairo_get_font_face - The getFontFace purpose
cairo_get_font_face - The getFontFace purpose
cairo_get_font_matrix - The getFontMatrix purpose
cairo_get_font_matrix - The getFontMatrix purpose
cairo_get_font_options - The getFontOptions purpose
cairo_get_font_options - The getFontOptions purpose
cairo_get_font_options - The getFontOptions purpose
cairo_get_group_target - The getGroupTarget purpose
cairo_get_line_cap - The getLineCap purpose
cairo_get_line_join - The getLineJoin purpose
cairo_get_line_width - The getLineWidth purpose
cairo_get_matrix - The getMatrix purpose
cairo_get_matrix - The getMatrix purpose
cairo_get_miter_limit - The getMiterLimit purpose
cairo_get_operator - The getOperator purpose
cairo_get_scaled_font - The getScaledFont purpose
cairo_get_source - The getSource purpose
cairo_get_target - The getTarget purpose
cairo_get_tolerance - The getTolerance purpose
cairo_glyph_path - The glyphPath purpose
cairo_has_current_point - The hasCurrentPoint purpose
cairo_identity_matrix - The identityMatrix purpose
cairo_image_surface_create - Description
cairo_image_surface_create_for_data - Description
cairo_image_surface_create_from_png - Description
cairo_image_surface_get_data - Description
cairo_image_surface_get_format - Description
cairo_image_surface_get_height - Description
cairo_image_surface_get_stride - Description
cairo_image_surface_get_width - Description
cairo_in_fill - The inFill purpose
cairo_in_stroke - The inStroke purpose
cairo_line_to - The lineTo purpose
cairo_mask - The mask purpose
cairo_mask_surface - The maskSurface purpose
cairo_matrix_create_scale - Creates a new scaling matrix
cairo_matrix_create_scale - Creates a new scaling matrix
cairo_matrix_create_translate - Alias of CairoMatrix::initTranslate
cairo_matrix_init - Creates a new CairoMatrix object
cairo_matrix_init_identity - Creates a new identity matrix
cairo_matrix_init_rotate - Creates a new rotated matrix
cairo_matrix_init_scale - Creates a new scaling matrix
cairo_matrix_init_translate - Creates a new translation matrix
cairo_matrix_invert - Description
cairo_matrix_multiply - Description
cairo_matrix_rotate - Description
cairo_matrix_scale - Applies scaling to a matrix
cairo_matrix_transform_distance - Description
cairo_matrix_transform_point - Description
cairo_matrix_translate - Description
cairo_move_to - The moveTo purpose
cairo_new_path - The newPath purpose
cairo_new_sub_path - The newSubPath purpose
cairo_paint - The paint purpose
cairo_paint_with_alpha - The paintWithAlpha purpose
cairo_path_extents - The pathExtents purpose
cairo_pattern_add_color_stop_rgb - Description
cairo_pattern_add_color_stop_rgba - Description
cairo_pattern_create_for_surface - Description
cairo_pattern_create_linear - Description
cairo_pattern_create_radial - Description
cairo_pattern_create_rgb - Description
cairo_pattern_create_rgba - Description
cairo_pattern_get_color_stop_count - Description
cairo_pattern_get_color_stop_rgba - Description
cairo_pattern_get_extend - Description
cairo_pattern_get_filter - Description
cairo_pattern_get_linear_points - Description
cairo_pattern_get_matrix - Description
cairo_pattern_get_radial_circles - Description
cairo_pattern_get_rgba - Description
cairo_pattern_get_surface - Description
cairo_pattern_get_type - Description
cairo_pattern_set_extend - Description
cairo_pattern_set_filter - Description
cairo_pattern_set_matrix - Description
cairo_pattern_status - Description
cairo_pdf_surface_create - Description
cairo_pdf_surface_set_size - Description
cairo_pop_group - The popGroup purpose
cairo_pop_group_to_source - The popGroupToSource purpose
cairo_ps_get_levels - Description
cairo_ps_level_to_string - Description
cairo_ps_surface_create - Description
cairo_ps_surface_dsc_begin_page_setup - Description
cairo_ps_surface_dsc_begin_setup - Description
cairo_ps_surface_dsc_comment - Description
cairo_ps_surface_get_eps - Description
cairo_ps_surface_restrict_to_level - Description
cairo_ps_surface_set_eps - Description
cairo_ps_surface_set_size - Description
cairo_push_group - The pushGroup purpose
cairo_push_group_with_content - The pushGroupWithContent purpose
cairo_rectangle - The rectangle purpose
cairo_rel_curve_to - The relCurveTo purpose
cairo_rel_line_to - The relLineTo purpose
cairo_rel_move_to - The relMoveTo purpose
cairo_reset_clip - The resetClip purpose
cairo_restore - The restore purpose
cairo_rotate - The rotate purpose
cairo_rotate - The rotate purpose
cairo_save - The save purpose
cairo_scale - The scale purpose
cairo_scaled_font_create - Description
cairo_scaled_font_extents - Description
cairo_scaled_font_get_ctm - Description
cairo_scaled_font_get_font_face - Description
cairo_scaled_font_get_font_matrix - Description
cairo_scaled_font_get_font_options - Description
cairo_scaled_font_get_scale_matrix - Description
cairo_scaled_font_get_type - Description
cairo_scaled_font_glyph_extents - Description
cairo_scaled_font_status - Description
cairo_scaled_font_text_extents - Description
cairo_select_font_face - The selectFontFace purpose
cairo_set_antialias - The setAntialias purpose
cairo_set_antialias - The setAntialias purpose
cairo_set_dash - The setDash purpose
cairo_set_fill_rule - The setFillRule purpose
cairo_set_font_face - The setFontFace purpose
cairo_set_font_matrix - The setFontMatrix purpose
cairo_set_font_options - The setFontOptions purpose
cairo_set_font_size - The setFontSize purpose
cairo_set_line_cap - The setLineCap purpose
cairo_set_line_join - The setLineJoin purpose
cairo_set_line_width - The setLineWidth purpose
cairo_set_matrix - The setMatrix purpose
cairo_set_matrix - The setMatrix purpose
cairo_set_miter_limit - The setMiterLimit purpose
cairo_set_operator - The setOperator purpose
cairo_set_scaled_font - The setScaledFont purpose
cairo_set_source - The setSourceRGBA purpose
cairo_set_source - The setSourceRGBA purpose
cairo_set_source - The setSourceRGBA purpose
cairo_set_source_surface - The setSourceSurface purpose
cairo_set_tolerance - The setTolerance purpose
cairo_show_page - The showPage purpose
cairo_show_page - The showPage purpose
cairo_show_text - The showText purpose
cairo_status - The status purpose
cairo_status - The status purpose
cairo_status - The status purpose
cairo_status - The status purpose
cairo_status - The status purpose
cairo_status_to_string - Retrieves the current status as string
cairo_stroke - The stroke purpose
cairo_stroke_extents - The strokeExtents purpose
cairo_stroke_preserve - The strokePreserve purpose
cairo_surface_copy_page - Description
cairo_surface_create_similar - Description
cairo_surface_finish - Description
cairo_surface_flush - Description
cairo_surface_get_content - Description
cairo_surface_get_device_offset - Description
cairo_surface_get_font_options - Description
cairo_surface_get_type - Description
cairo_surface_mark_dirty - Description
cairo_surface_mark_dirty_rectangle - Description
cairo_surface_set_device_offset - Description
cairo_surface_set_fallback_resolution - Description
cairo_surface_show_page - Description
cairo_surface_status - Description
cairo_surface_write_to_png - Description
cairo_svg_surface_create - Description
cairo_svg_surface_get_versions - Used to retrieve a list of supported SVG versions
cairo_svg_surface_restrict_to_version - Description
cairo_svg_version_to_string - Description
cairo_text_extents - The textExtents purpose
cairo_text_extents - The textExtents purpose
cairo_text_path - The textPath purpose
cairo_transform - The transform purpose
cairo_translate - The translate purpose
cairo_translate - The translate purpose
cairo_user_to_device - The userToDevice purpose
cairo_user_to_device_distance - The userToDeviceDistance purpose
cairo_version - Retrives cairo's library version
cairo_version_string - Retrieves cairo version as string
calculhmac - Obtain a hmac key (needs 2 arguments)
calcul_hmac - Obtain a hmac key (needs 8 arguments)
call_user_func - Call a user function given by the first parameter
call_user_func_array - Call a user function given with an array of parameters
call_user_method - Call a user method on an specific object [deprecated]
call_user_method_array - Call a user method given with an array of parameters [deprecated]
cal_days_in_month - Return the number of days in a month for a given year and calendar
cal_from_jd - Converts from Julian Day Count to a supported calendar
cal_info - Returns information about a particular calendar
cal_to_jd - Converts from a supported calendar to Julian Day Count
ceil - Round fractions up
chdb::get - Gets the value associated with a key
chdb::__construct - Creates a chdb instance
chdb_create - Creates a chdb file
chdir - Change directory
checkdate - Validate a Gregorian date
checkdnsrr - Check DNS records corresponding to a given Internet host name or IP address
chgrp - Changes file group
chmod - Changes file mode
chop - Alias of rtrim
chown - Changes file owner
chr - Return a specific character
chroot - Change the root directory
chunk_split - Split a string into smaller chunks
classkit_import - Import new class method definitions from a file
classkit_method_add - Dynamically adds a new method to a given class
classkit_method_copy - Copies a method from class to another
classkit_method_redefine - Dynamically changes the code of the given method
classkit_method_remove - Dynamically removes the given method
classkit_method_rename - Dynamically changes the name of the given method
class_alias - Creates an alias for a class
class_exists - Checks if the class has been defined
class_implements - Return the interfaces which are implemented by the given class
class_parents - Return the parent classes of the given class
clearstatcache - Clears file status cache
closedir - Close directory handle
closelog - Close connection to system logger
Collator::asort - Sort array maintaining index association
Collator::compare - Compare two Unicode strings
Collator::create - Create a collator
Collator::getAttribute - Get collation attribute value
Collator::getErrorCode - Get collator's last error code
Collator::getErrorMessage - Get text for collator's last error code
Collator::getLocale - Get the locale name of the collator
Collator::getSortKey - Get sorting key for a string
Collator::getStrength - Get current collation strength
Collator::setAttribute - Set collation attribute
Collator::setStrength - Set collation strength
Collator::sort - Sort array using specified collator
Collator::sortWithSortKeys - Sort array using specified collator and sort keys
Collator::__construct - Create a collator
collator_asort - Sort array maintaining index association
collator_compare - Compare two Unicode strings
collator_create - Create a collator
collator_get_attribute - Get collation attribute value
collator_get_error_code - Get collator's last error code
collator_get_error_message - Get text for collator's last error code
collator_get_locale - Get the locale name of the collator
collator_get_sort_key - Get sorting key for a string
collator_get_strength - Get current collation strength
collator_set_attribute - Set collation attribute
collator_set_strength - Set collation strength
collator_sort - Sort array using specified collator
collator_sort_with_sort_keys - Sort array using specified collator and sort keys
COM - COM class
compact - Create array containing variables and their values
com_addref - Increases the components reference counter [deprecated]
com_create_guid - Generate a globally unique identifier (GUID)
com_event_sink - Connect events from a COM object to a PHP object
com_get - Gets the value of a COM Component's property [deprecated]
com_get_active_object - Returns a handle to an already running instance of a COM object
com_invoke - Calls a COM component's method [deprecated]
com_isenum - Indicates if a COM object has an IEnumVariant interface for iteration [deprecated]
com_load - Creates a new reference to a COM component [deprecated]
com_load_typelib - Loads a Typelib
com_message_pump - Process COM messages, sleeping for up to timeoutms milliseconds
com_print_typeinfo - Print out a PHP class definition for a dispatchable interface
com_propget - Alias of com_get
com_propput - Alias of com_set
com_propset - Alias of com_set
com_release - Decreases the components reference counter [deprecated]
com_set - Assigns a value to a COM component's property
connection_aborted - Check whether client disconnected
connection_status - Returns connection status bitfield
connection_timeout - Check if the script timed out
constant - Returns the value of a constant
convert_cyr_string - Convert from one Cyrillic character set to another
convert_uudecode - Decode a uuencoded string
convert_uuencode - Uuencode a string
copy - Copies file
cos - Cosine
cosh - Hyperbolic cosine
count - Count all elements in an array, or properties in an object
Countable::count - Count elements of an object
count_chars - Return information about characters used in a string
crack_check - Performs an obscure check with the given password
crack_closedict - Closes an open CrackLib dictionary
crack_getlastmessage - Returns the message from the last obscure check
crack_opendict - Opens a new CrackLib dictionary
crc32 - Calculates the crc32 polynomial of a string
create_function - Create an anonymous (lambda-style) function
crypt - One-way string hashing
ctype_alnum - Check for alphanumeric character(s)
ctype_alpha - Check for alphabetic character(s)
ctype_cntrl - Check for control character(s)
ctype_digit - Check for numeric character(s)
ctype_graph - Check for any printable character(s) except space
ctype_lower - Check for lowercase character(s)
ctype_print - Check for printable character(s)
ctype_punct - Check for any printable character which is not whitespace or an alphanumeric character
ctype_space - Check for whitespace character(s)
ctype_upper - Check for uppercase character(s)
ctype_xdigit - Check for character(s) representing a hexadecimal digit
cubrid_affected_rows - Return the number of rows affected by the last SQL statement
cubrid_bind - Bind variables to a prepared statement as parameters
cubrid_client_encoding - Return the current CUBRID connection charset
cubrid_close - Close CUBRID connection
cubrid_close_prepare - Close the request handle
cubrid_close_request - Close the request handle
cubrid_column_names - Get the column names in result
cubrid_column_types - Get column types in result
cubrid_col_get - Get contents of collection type column using OID
cubrid_col_size - Get the number of elements in collection type column using OID
cubrid_commit - Commit a transaction
cubrid_connect - Open a connection to a CUBRID Server
cubrid_connect_with_url - Establish the environment for connecting to CUBRID server
cubrid_current_oid - Get OID of the current cursor location
cubrid_data_seek - Move the internal row pointer of the CUBRID result
cubrid_db_name - Get db name from results of cubrid_list_dbs
cubrid_disconnect - Close a database connection
cubrid_drop - Delete an instance using OID
cubrid_errno - Return the numerical value of the error message from previous CUBRID operation
cubrid_error - Get the error message
cubrid_error_code - Get error code for the most recent function call
cubrid_error_code_facility - Get the facility code of error
cubrid_error_msg - Get last error message for the most recent function call
cubrid_execute - Execute a prepared SQL statement
cubrid_fetch - Fetch the next row from a result set
cubrid_fetch_array - Fetch a result row as an associative array, a numeric array, or both
cubrid_fetch_assoc - Return the associative array that corresponds to the fetched row
cubrid_fetch_field - Get column information from a result and return as an object
cubrid_fetch_lengths - Return an array with the lengths of the values of each field from the current row
cubrid_fetch_object - Fetche the next row and returns it as an object
cubrid_fetch_row - Return a numerical array with the values of the current row
cubrid_field_flags - Return a string with the flags of the given field offset
cubrid_field_len - Get the maximum length of the specified field
cubrid_field_name - Return the name of the specified field index
cubrid_field_seek - Move the result set cursor to the specified field offset
cubrid_field_table - Return the name of the table of the specified field
cubrid_field_type - Return the type of the column corresponding to the given field offset
cubrid_free_result - Free the memory occupied by the result data
cubrid_get - Get a column using OID
cubrid_get_autocommit - Get auto-commit mode of the connection
cubrid_get_charset - Return the current CUBRID connection charset
cubrid_get_class_name - Get the class name using OID
cubrid_get_client_info - Return the client library version
cubrid_get_db_parameter - Returns the CUBRID database parameters
cubrid_get_server_info - Return the CUBRID server version
cubrid_insert_id - Return the ID generated for the lastest updated AUTO_INCREMENT column
cubrid_is_instance - Check whether the instance pointed by OID exists
cubrid_list_dbs - Return an array with the list of all existing CUBRID databases
cubrid_load_from_glo - Read data from a GLO instance and save it in a file
cubrid_lob_close - Close BLOB/CLOB data
cubrid_lob_export - Export BLOB/CLOB data to file
cubrid_lob_get - Get BLOB/CLOB data
cubrid_lob_send - Read BLOB/CLOB data and send straight to browser
cubrid_lob_size - Get BLOB/CLOB data size
cubrid_lock_read - Set a read lock on the given OID
cubrid_lock_write - Set a write lock on the given OID
cubrid_move_cursor - Move the cursor in the result
cubrid_new_glo - Create a glo instance
cubrid_next_result - Get result of next query when executing multiple SQL statements
cubrid_num_cols - Return the number of columns in the result set
cubrid_num_fields - Return the number of columns in the result set
cubrid_num_rows - Get the number of rows in the result set
cubrid_ping - Ping a server connection or reconnect if there is no connection
cubrid_prepare - Prepare an SQL statement for execution
cubrid_put - Update a column using OID
cubrid_query - Send a CUBRID query
cubrid_real_escape_string - Escape special characters in a string for use in an SQL statement
cubrid_result - Return the value of a specific field in a specific row
cubrid_rollback - Roll back a transaction
cubrid_save_to_glo - Save requested file in a GLO instance
cubrid_schema - Get the requested schema information
cubrid_send_glo - Read data from glo and send it to std output
cubrid_seq_drop - Delete an element from sequence type column using OID
cubrid_seq_insert - Insert an element to a sequence type column using OID
cubrid_seq_put - Update the element value of sequence type column using OID
cubrid_set_add - Insert a single element to set type column using OID
cubrid_set_autocommit - Set autocommit mode of the connection
cubrid_set_db_parameter - Sets the CUBRID database parameters
cubrid_set_drop - Delete an element from set type column using OID
cubrid_unbuffered_query - Perform a query without fetching the results into memory
cubrid_version - Get the CUBRID PHP module's version
curl_close - Close a cURL session
curl_copy_handle - Copy a cURL handle along with all of its preferences
curl_errno - Return the last error number
curl_error - Return a string containing the last error for the current session
curl_exec - Perform a cURL session
curl_getinfo - Get information regarding a specific transfer
curl_init - Initialize a cURL session
curl_multi_add_handle - Add a normal cURL handle to a cURL multi handle
curl_multi_close - Close a set of cURL handles
curl_multi_exec - Run the sub-connections of the current cURL handle
curl_multi_getcontent - Return the content of a cURL handle if CURLOPT_RETURNTRANSFER is set
curl_multi_info_read - Get information about the current transfers
curl_multi_init - Returns a new cURL multi handle
curl_multi_remove_handle - Remove a multi handle from a set of cURL handles
curl_multi_select - Wait for activity on any curl_multi connection
curl_setopt - Set an option for a cURL transfer
curl_setopt_array - Set multiple options for a cURL transfer
curl_version - Gets cURL version information
current - Return the current element in an array
cyrus_authenticate - Authenticate against a Cyrus IMAP server
cyrus_bind - Bind callbacks to a Cyrus IMAP connection
cyrus_close - Close connection to a Cyrus IMAP server
cyrus_connect - Connect to a Cyrus IMAP server
cyrus_query - Send a query to a Cyrus IMAP server
cyrus_unbind - Unbind ...
date - Format a local time/date
datefmt_create - Create a date formatter
datefmt_format - Format the date/time value as a string
datefmt_get_calendar - Get the calendar used for the IntlDateFormatter
datefmt_get_datetype - Get the datetype used for the IntlDateFormatter
datefmt_get_error_code - Get the error code from last operation
datefmt_get_error_message - Get the error text from the last operation.
datefmt_get_locale - Get the locale used by formatter
datefmt_get_pattern - Get the pattern used for the IntlDateFormatter
datefmt_get_timetype - Get the timetype used for the IntlDateFormatter
datefmt_get_timezone_id - Get the timezone-id used for the IntlDateFormatter
datefmt_is_lenient - Get the lenient used for the IntlDateFormatter
datefmt_localtime - Parse string to a field-based time value
datefmt_parse - Parse string to a timestamp value
datefmt_set_calendar - sets the calendar used to the appropriate calendar, which must be
datefmt_set_lenient - Set the leniency of the parser
datefmt_set_pattern - Set the pattern used for the IntlDateFormatter
datefmt_set_timezone_id - Sets the time zone to use
DateInterval::createFromDateString - Sets up a DateInterval from the relative parts of the string
DateInterval::format - Formats the interval
DateInterval::__construct - Creates new DateInterval object
DatePeriod::__construct - Creates new DatePeriod object
DateTime::add - Adds an amount of days, months, years, hours, minutes and seconds to a DateTime object
DateTime::createFromFormat - Returns new DateTime object formatted according to the specified format
DateTime::diff - Returns the difference between two DateTime objects
DateTime::format - Returns date formatted according to given format
DateTime::getLastErrors - Returns the warnings and errors
DateTime::getOffset - Returns the timezone offset
DateTime::getTimestamp - Gets the Unix timestamp
DateTime::getTimezone - Return time zone relative to given DateTime
DateTime::modify - Alters the timestamp
DateTime::setDate - Sets the date
DateTime::setISODate - Sets the ISO date
DateTime::setTime - Sets the time
DateTime::setTimestamp - Sets the date and time based on an Unix timestamp
DateTime::setTimezone - Sets the time zone for the DateTime object
DateTime::sub - Subtracts an amount of days, months, years, hours, minutes and seconds from a DateTime object
DateTime::__construct - Returns new DateTime object
DateTime::__set_state - The __set_state handler
DateTime::__wakeup - The __wakeup handler
DateTimeZone::getLocation - Returns location information for a timezone
DateTimeZone::getName - Returns the name of the timezone
DateTimeZone::getOffset - Returns the timezone offset from GMT
DateTimeZone::getTransitions - Returns all transitions for the timezone
DateTimeZone::listAbbreviations - Returns associative array containing dst, offset and the timezone name
DateTimeZone::listIdentifiers - Returns numerically index array with all timezone identifiers
DateTimeZone::__construct - Creates new DateTimeZone object
date_add - Alias of DateTime::add
date_create - Alias of DateTime::__construct
date_create_from_format - Alias of DateTime::createFromFormat
date_date_set - Alias of DateTime::setDate
date_default_timezone_get - Gets the default timezone used by all date/time functions in a script
date_default_timezone_set - Sets the default timezone used by all date/time functions in a script
date_diff - Alias of DateTime::diff
date_format - Alias of DateTime::format
date_get_last_errors - Alias of DateTime::getLastErrors
date_interval_create_from_date_string - Alias of DateInterval::createFromDateString
date_interval_format - Alias of DateInterval::format
date_isodate_set - Alias of DateTime::setISODate
date_modify - Alias of DateTime::modify
date_offset_get - Alias of DateTime::getOffset
date_parse - Returns associative array with detailed info about given date
date_parse_from_format - Get info about given date formatted according to the specified format
date_sub - Alias of DateTime::sub
date_sunrise - Returns time of sunrise for a given day and location
date_sunset - Returns time of sunset for a given day and location
date_sun_info - Returns an array with information about sunset/sunrise and twilight begin/end
date_timestamp_get - Alias of DateTime::getTimestamp
date_timestamp_set - Alias of DateTime::setTimestamp
date_timezone_get - Alias of DateTime::getTimezone
date_timezone_set - Alias of DateTime::setTimezone
date_time_set - Alias of DateTime::setTime
db2_autocommit - Returns or sets the AUTOCOMMIT state for a database connection
db2_bind_param - Binds a PHP variable to an SQL statement parameter
db2_client_info - Returns an object with properties that describe the DB2 database client
db2_close - Closes a database connection
db2_columns - Returns a result set listing the columns and associated metadata for a table
db2_column_privileges - Returns a result set listing the columns and associated privileges for a table
db2_commit - Commits a transaction
db2_connect - Returns a connection to a database
db2_conn_error - Returns a string containing the SQLSTATE returned by the last connection attempt
db2_conn_errormsg - Returns the last connection error message and SQLCODE value
db2_cursor_type - Returns the cursor type used by a statement resource
db2_escape_string - Used to escape certain characters
db2_exec - Executes an SQL statement directly
db2_execute - Executes a prepared SQL statement
db2_fetch_array - Returns an array, indexed by column position, representing a row in a result set
db2_fetch_assoc - Returns an array, indexed by column name, representing a row in a result set
db2_fetch_both - Returns an array, indexed by both column name and position, representing a row in a result set
db2_fetch_object - Returns an object with properties representing columns in the fetched row
db2_fetch_row - Sets the result set pointer to the next row or requested row
db2_field_display_size - Returns the maximum number of bytes required to display a column
db2_field_name - Returns the name of the column in the result set
db2_field_num - Returns the position of the named column in a result set
db2_field_precision - Returns the precision of the indicated column in a result set
db2_field_scale - Returns the scale of the indicated column in a result set
db2_field_type - Returns the data type of the indicated column in a result set
db2_field_width - Returns the width of the current value of the indicated column in a result set
db2_foreign_keys - Returns a result set listing the foreign keys for a table
db2_free_result - Frees resources associated with a result set
db2_free_stmt - Frees resources associated with the indicated statement resource
db2_get_option - Retrieves an option value for a statement resource or a connection resource
db2_last_insert_id - Returns the auto generated ID of the last insert query that successfully executed on this connection
db2_lob_read - Gets a user defined size of LOB files with each invocation
db2_next_result - Requests the next result set from a stored procedure
db2_num_fields - Returns the number of fields contained in a result set