-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphp.api
2930 lines (2930 loc) · 255 KB
/
php.api
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
$AUTH_TYPE
$DOCUMENT_ROOT
$GATEWAY_INTERFACE
$GLOBALS
$HTTP_ACCEPT
$HTTP_ACCEPT_CHARSET
$HTTP_ACCEPT_ENCODING
$HTTP_ACCEPT_LANGUAGE
$HTTP_CONNECTION
$HTTP_HOST
$HTTP_REFERER
$HTTP_USER_AGENT
$PATH_TRANSLATED
$PHP_AUTH_PW
$PHP_AUTH_USER
$PHP_SELF
$QUERY_STRING
$REMOTE_ADDR
$REMOTE_HOST
$REMOTE_PORT
$REQUEST_METHOD
$REQUEST_URI
$SCRIPT_FILENAME
$SCRIPT_NAME
$SERVER_ADMIN
$SERVER_NAME
$SERVER_PORT
$SERVER_PROTOCOL
$SERVER_SIGNATURE
$SERVER_SOFTWARE
$_COOKIE
$_ENV
$_FILES
$_GET
$_POST
$_REQUEST
$_SERVER
$_SESSION
$argc
$argv
$php_errormsg
DomAttribute->name(void) Returns name of attribute (bool)
DomAttribute->specified(void) Checks if attribute is specified (bool)
DomAttribute->value(void) Returns value of attribute (bool)
DomDocument->add_root [deprecated](string name) >DomDocument->add_root [deprecated] -- Adds a root node (resource)
DomDocument->create_attribute(string name, string value) Create new attribute (object)
DomDocument->create_cdata_section(string content) Create new cdata node (string)
DomDocument->create_comment(string content) Create new comment node (object)
DomDocument->create_element(string name) Create new element node (object)
DomDocument->create_element_ns(string uri, string name [, string prefix]) Create new element node with an associated namespace (object)
DomDocument->create_entity_reference(string content) (object)
DomDocument->create_processing_instruction(string content) Creates new PI node (string)
DomDocument->create_text_node(string content) Create new text node (object)
DomDocument->doctype(void) Returns the document type (object)
DomDocument->document_element(void) Returns root element node (object)
DomDocument->dump_file(string filename [, bool compressionmode [, bool format]]) Dumps the internal XML tree back into a file (string)
DomDocument->dump_mem([bool format [, string encoding]]) Dumps the internal XML tree back into a string (string)
DomDocument->get_element_by_id(string id) Searches for an element with a certain id (object)
DomDocument->get_elements_by_tagname(string name) (array)
DomDocument->html_dump_mem(void) Dumps the internal XML tree back into a string as HTML (string)
DomDocument->xinclude(void) Substitutes XIncludes in a DomDocument Object. (int)
DomDocumentType->entities(void) Returns list of entities (array)
DomDocumentType->internal_subset(void) Returns internal subset (bool)
DomDocumentType->name(void) Returns name of document type (string)
DomDocumentType->notations(void) Returns list of notations (array)
DomDocumentType->public_id(void) Returns public id of document type (string)
DomDocumentType->system_id(void) Returns system id of document type (string)
DomElement->get_attribute(string name) Returns value of attribute (object)
DomElement->get_attribute_node(object attr) Returns value of attribute (object)
DomElement->get_elements_by_tagname(string name) Gets elements by tagname (bool)
DomElement->has_attribute(string name) Checks to see if attribute exists (bool)
DomElement->remove_attribute(string name) Removes attribute (bool)
DomElement->set_attribute(string name, string value) Adds new attribute (bool)
DomElement->tagname(void) Returns name of element (string)
DomNode->add_namespace(string uri, string prefix) Adds a namespace declaration to a node. (bool)
DomNode->append_child(object newnode) Adds new child at the end of the children (object)
DomNode->append_sibling(object newnode) Adds new sibling to a node (object)
DomNode->attributes(void) Returns list of attributes (array)
DomNode->child_nodes(void) Returns children of node (array)
DomNode->clone_node(void) Clones a node (object)
DomNode->dump_node(void) Dumps a single node (string)
DomNode->first_child(void) Returns first child of node (bool)
DomNode->get_content(void) Gets content of node (string)
DomNode->has_attributess(void) Checks if node has attributes (bool)
DomNode->has_child_nodes(void) Checks if node has children (bool)
DomNode->insert_before(object newnode, object refnode) Inserts new node as child (object)
DomNode->is_blank_node(void) Checks if node is blank (bool)
DomNode->last_child(void) Returns last child of node (object)
DomNode->next_sibling(void) Returns the next sibling of node (object)
DomNode->node_name(void) Returns name of node (string)
DomNode->node_type(void) Returns type of node (int)
DomNode->node_value(void) Returns value of a node (string)
DomNode->owner_document(void) Returns the document this node belongs to (object)
DomNode->parent_node(void) Returns the parent of the node (object)
DomNode->prefix(void) Returns name space prefix of node (string)
DomNode->previous_sibling(void) Returns the previous sibling of node (object)
DomNode->remove_child(object oldchild) Removes child from list of children (object)
DomNode->replace_child(object oldnode, object newnode) Replaces a child (object)
DomNode->replace_node(object newnode) Replaces node (object)
DomNode->set_content(void) Sets content of node (bool)
DomNode->set_name(void) Sets name of node (bool)
DomNode->set_namespace(string uri [, string prefix]) Sets namespace of a node. (void)
DomNode->unlink_node(void) Deletes node (object)
DomProcessingInstruction->data(void) Returns data of pi node (string)
DomProcessingInstruction->target(void) Returns target of pi node (string)
DomXsltStylesheet->process(object DomDocument [, array xslt_parameters [, bool param_is_xpath]]) Applies the XSLT-Transformation on a DomDocument Object. (object)
DomXsltStylesheet->result_dump_file(object DomDocument, string filename) Dumps the result from a XSLT-Transformation into a file (string)
DomXsltStylesheet->result_dump_mem(object DomDocument) Dumps the result from a XSLT-Transformation back into a string (string)
FrenchToJD(int month, int day, int year) Converts a date from the French Republican Calendar to a Julian Day Count (int)
GregorianToJD(int month, int day, int year) Converts a Gregorian date to Julian Day Count (int)
JDDayOfWeek(int julianday, int mode) Returns the day of the week (mixed)
JDMonthName(int julianday, int mode) Returns a month name (string)
JDToFrench(int juliandaycount) Converts a Julian Day Count to the French Republican Calendar (string)
JDToGregorian(int julianday) Converts Julian Day Count to Gregorian date (string)
JDToJewish(int julianday) Converts a Julian Day Count to the Jewish Calendar (string)
JDToJulian(int julianday) Converts a Julian Day Count to a Julian Calendar Date (string)
JewishToJD(int month, int day, int year) Converts a date in the Jewish Calendar to Julian Day Count (int)
JulianToJD(int month, int day, int year) Converts a Julian Calendar date to Julian Day Count (int)
OCIBindByName(int stmt, string ph_name, mixed & variable, int length [, int type]) Bind a PHP variable to an Oracle Placeholder (bool)
OCICancel(int stmt) Cancel reading from cursor (bool)
OCICollAssignElem(object collection, string ndx, string val) Coming soon (bool)
OCICommit(int connection) Commits outstanding transactions (bool)
OCIDefineByName(int stmt, string Column-Name, mixed variable [, int type]) Use a PHP variable for the define-step during a SELECT (bool)
OCIError([int stmt|conn|global]) Return the last error of stmt|conn|global (array)
Ora_Bind(int cursor, string PHP variable name, string SQL parameter name, int length [, int type]) bind a PHP variable to an Oracle parameter (int)
Ora_Close(int cursor) close an Oracle cursor (int)
Ora_CommitOn(int conn) enable automatic commit (int)
Ora_Do(int conn, string query) Parse, Exec, Fetch (int)
Ora_Fetch(int cursor) fetch a row of data from a cursor (int)
Ora_Fetch_Into(int cursor, array result [, int flags]) Fetch a row into the specified result array (int)
Ora_Rollback(int connection) roll back transaction (int)
SWFAction(string script) Creates a new Action. (new)
SWFBitmap(string filename [, int alphafilename]) Loads Bitmap object (new)
SWFBitmap->getHeight(void) Returns the bitmap's height. (int)
SWFBitmap->getWidth(void) Returns the bitmap's width. (int)
SWFDisplayItem(void) Creates a new displayitem object. (new)
SWFDisplayItem->Rotate(float ddegrees) Rotates in relative coordinates. (void)
SWFDisplayItem->addColor([int red [, int green [, int blue [, int a]]]]) Adds the given color to this item's color transform. (void)
SWFDisplayItem->move(int dx, int dy) Moves object in relative coordinates. (void)
SWFDisplayItem->moveTo(int x, int y) Moves object in global coordinates. (void)
SWFDisplayItem->multColor([int red [, int green [, int blue [, int a]]]]) Multiplies the item's color transform. (void)
SWFDisplayItem->remove(void) Removes the object from the movie (void)
SWFDisplayItem->rotateTo(float degrees) Rotates the object in global coordinates. (void)
SWFDisplayItem->scale(int dx, int dy) Scales the object in relative coordinates. (void)
SWFDisplayItem->scaleTo(int x, int y) Scales the object in global coordinates. (void)
SWFDisplayItem->setDepth(float depth) Sets z-order (void)
SWFDisplayItem->setName(string name) Sets the object's name (void)
SWFDisplayItem->setRatio(float ratio) Sets the object's ratio. (void)
SWFDisplayItem->skewX(float ddegrees) Sets the X-skew. (void)
SWFDisplayItem->skewXTo(float degrees) Sets the X-skew. (void)
SWFDisplayItem->skewY(float ddegrees) Sets the Y-skew. (void)
SWFDisplayItem->skewYTo(float degrees) Sets the Y-skew. (void)
SWFFill(void) Loads SWFFill object (new)
SWFFill->moveTo(int x, int y) Moves fill origin (void)
SWFFill->rotateTo(float degrees) Sets fill's rotation (void)
SWFFill->scaleTo(int x, int y) Sets fill's scale (void)
SWFFill->skewXTo(float x) Sets fill x-skew (void)
SWFFill->skewYTo(float y) Sets fill y-skew (void)
SWFFont(string filename) Loads a font definition (new)
SWFGradient(void) Creates a gradient object (new)
SWFGradient->addEntry(float ratio, int red, int green, int blue [, int a]) Adds an entry to the gradient list. (void)
SWFMorph(void) Creates a new SWFMorph object. (new)
SWFMorph->getshape1(void) Gets a handle to the starting shape (mixed)
SWFMorph->getshape2(void) Gets a handle to the ending shape (mixed)
SWFMovie(void) Creates a new movie object, representing an SWF version 4 movie. (new)
SWFMovie->add(ressource instance) Adds any type of data to a movie. (void)
SWFMovie->nextframe(void) Moves to the next frame of the animation. (void)
SWFMovie->output(void) Dumps your lovingly prepared movie out. (void)
SWFMovie->save(string filename) Saves your movie in a file. (void)
SWFMovie->setbackground(int red, int green, int blue) Sets the background color. (void)
SWFMovie->setdimension(int width, int height) Sets the movie's width and height. (void)
SWFMovie->setframes(string numberofframes) Sets the total number of frames in the animation. (void)
SWFMovie->setrate(int rate) Sets the animation's frame rate. (void)
SWFMovie->streammp3(string mp3FileName) Streams a MP3 file. (void)
SWFShape(void) Creates a new shape object. (new)
SWFShape->addFill(int red, int green, int blue [, int a]) Adds a solid fill to the shape. (void)
SWFShape->drawCurve(int controldx, int controldy, int anchordx, int anchordy) Draws a curve (relative). (void)
SWFShape->drawCurveTo(int controlx, int controly, int anchorx, int anchory) Draws a curve. (void)
SWFShape->drawLine(int dx, int dy) Draws a line (relative). (void)
SWFShape->drawLineTo(int x, int y) Draws a line. (void)
SWFShape->movePen(int dx, int dy) Moves the shape's pen (relative). (void)
SWFShape->movePenTo(int x, int y) Moves the shape's pen. (void)
SWFShape->setLeftFill(swfgradient fill) Sets left rasterizing color. (void)
SWFShape->setLine(int width [, int red [, int green [, int blue [, int a]]]]) Sets the shape's line style. (void)
SWFShape->setRightFill(swfgradient fill) Sets right rasterizing color. (void)
SWFSprite(void) Creates a movie clip (a sprite) (new)
SWFSprite->nextframe(void) Moves to the next frame of the animation. (void)
SWFSprite->remove(ressource object) Removes an object to a sprite (void)
SWFSprite->setframes(int numberofframes) Sets the total number of frames in the animation. (void)
SWFText(void) Creates a new SWFText object. (new)
SWFText->addString(string string) Draws a string (void)
SWFText->getWidth(string string) Computes string's width (void)
SWFText->moveTo(int x, int y) Moves the pen (void)
SWFText->setColor(int red, int green, int blue [, int a]) Sets the current font color (void)
SWFText->setFont(string font) Sets the current font (void)
SWFText->setHeight(int height) Sets the current font height (void)
SWFText->setSpacing(float spacing) Sets the current font spacing (void)
SWFTextField([int flags]) Creates a text field object (new)
SWFTextField->addstring(string string) Concatenates the given string to the text field (void)
SWFTextField->align(int alignement) Sets the text field alignment (void)
SWFTextField->setFont(string font) Sets the text field font (void)
SWFTextField->setHeight(int height) Sets the font height of this text field font. (void)
SWFTextField->setLeftMargin(int width) Sets the left margin width of the text field. (void)
SWFTextField->setLineSpacing(int height) Sets the line spacing of the text field. (void)
SWFTextField->setMargins(int left, int right) Sets the margins width of the text field. (void)
SWFTextField->setbounds(int width, int height) Sets the text field width and height (void)
SWFTextField->setcolor(int red, int green, int blue [, int a]) Sets the color of the text field. (void)
SWFTextField->setindentation(int width) Sets the indentation of the first line. (void)
SWFTextField->setname(string name) Sets the variable name (void)
SWFTextField->setrightMargin(int width) Sets the right margin width of the text field. (void)
SWFbutton(void) Creates a new Button. (new)
SWFbutton->addAction(ressource action, int flags) Adds an action (void)
SWFbutton->addShape(ressource shape, int flags) Adds a shape to a button (void)
SWFbutton->setAction(ressource action) Sets the action (void)
SWFbutton->setHit(ressource shape) Alias for addShape(shape, SWFBUTTON_HIT) (void)
SWFbutton->setOver(ressource shape) Alias for addShape(shape, SWFBUTTON_OVER) (void)
SWFbutton->setUp(ressource shape) Alias for addShape(shape, SWFBUTTON_UP) (void)
SWFbutton->setdown(ressource shape) Alias for addShape(shape, SWFBUTTON_DOWN)) (void)
abs(mixed number) Absolute value (mixed)
acos(float arg) Arc cosine (float)
acosh(float arg) Inverse hyperbolic cosine (float)
addcslashes(string str, string charlist) Quote string with slashes in a C style (string)
addslashes(string str) Quote string with slashes (string)
aggregate(object object, string class_name) dynamic class and object aggregation of methods and properties (void)
aggregate_info(object object) returns an associative array of the methods and properties from each class that has been aggregated to the object. (array)
aggregate_methods(object object, string class_name) dynamic class and object aggregation of methods (void)
aggregate_methods_by_list(object object, string class_name, array methods_list [, bool exclude]) selective dynamic class methods aggregation to an object (void)
aggregate_methods_by_regexp(object object, string class_name, string regexp [, bool exclude]) selective class methods aggregation to an object using a regular expression (void)
aggregate_properties(object object, string class_name) dynamic aggregation of class properties to an object (void)
aggregate_properties_by_list(object object, string class_name, array properties_list [, bool exclude]) selective dynamic class properties aggregation to an object (void)
aggregate_properties_by_regexp(object object, string class_name, string regexp [, bool exclude]) selective class properties aggregation to an object using a regular expression (void)
aggregation_info(?) Alias for aggregate_info() (?)
apache_child_terminate(void) Terminate apache process after this request (bool)
apache_lookup_uri(string filename) Perform a partial request for the specified URI and return all info about it (object)
apache_note(string note_name [, string note_value]) Get and set apache request notes (string)
apache_request_headers(void) Fetch all HTTP request headers (array)
apache_response_headers(void) Fetch all HTTP response headers (array)
apache_setenv(string variable, string value [, bool walk_to_top]) Set an Apache subprocess_env variable (int)
array([mixed ...]) Create an array (array)
array_change_key_case(array input [, int case]) Returns an array with all string keys lowercased or uppercased (array)
array_chunk(array input, int size [, bool preserve_keys]) Split an array into chunks (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_fill(int start_index, int num, mixed value) Fill an array with values (array)
array_filter(array input [, callback function]) Filters elements of an array using a callback function (array)
array_flip(array trans) Exchanges all keys with their associated values in an array (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_key_exists(mixed key, array search) Checks if the given key or index exists in the array (bool)
array_keys(array input [, mixed search_value]) Return all the keys of an array (array)
array_map(mixed callback, array arr1 [, array ...]) Applies the callback to the elements of the given arrays (array)
array_merge(array array1, array array2 [, array ...]) Merge two or more arrays (array)
array_merge_recursive(array array1, array array2 [, array ...]) Merge two or more arrays recursively (array)
array_multisort(array ar1 [, mixed arg [, mixed ... [, array ...]]]) Sort multiple or multi-dimensional arrays (bool)
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 (mixed)
array_push(array array, mixed var [, mixed ...]) Push one or more elements onto the end of array (int)
array_rand(array input [, int num_req]) Pick one or more random entries out of an array (mixed)
array_reduce(array input, callback function [, int initial]) Iteratively reduce the array to a single value using a callback function (mixed)
array_reverse(array array [, bool preserve_keys]) Return an array with elements in reverse order (array)
array_search(mixed needle, array haystack [, bool strict]) Searches the array for a given value and returns the corresponding key if successful (mixed)
array_shift(array array) Shift an element off the beginning of array (mixed)
array_slice(array array, int offset [, int length]) Extract a slice of the array (array)
array_splice(array input, int offset [, int length [, array replacement]]) Remove a portion of the array and replace it with something else (array)
array_sum(array array) Calculate the sum of values in an array. (mixed)
array_unique(array array) Removes duplicate values from an array (array)
array_unshift(array array, mixed var [, mixed ...]) Prepend one or more elements to the beginning of array (int)
array_values(array input) Return all the values of an array (array)
array_walk(array array, callback function [, mixed userdata]) Apply a user function to every member of an array (int)
arsort(array array [, int sort_flags]) Sort an array in reverse order and maintain index association (void)
ascii2ebcdic(string ascii_str) Translate string from ASCII to EBCDIC (int)
asin(float arg) Arc sine (float)
asinh(float arg) Inverse hyperbolic sine (float)
asort(array array [, int sort_flags]) Sort an array and maintain index association (void)
aspell_check(int dictionary_link, string word) Check a word [deprecated] (bool)
aspell_check_raw(int dictionary_link, string word) Check a word without changing its case or trying to trim it [deprecated] (bool)
aspell_new(string master [, string personal]) Load a new dictionary [deprecated] (int)
aspell_suggest(int dictionary_link, string word) Suggest spellings of a word [deprecated] (array)
assert(mixed assertion) Checks if assertion is FALSE (int)
assert_options(int what [, mixed value]) Set/get the various assert flags (mixed)
atan(float arg) Arc tangent (float)
atan2(float y, float x) arc tangent of two variables (float)
atanh(float arg) Inverse hyperbolic tangent (float)
base64_decode(string encoded_data) Decodes data encoded with MIME base64 (string)
base64_encode(string data) Encodes data with MIME base64 (string)
base_convert(string number, int frombase, int tobase) Convert a number between arbitrary bases (string)
basename(string path [, string suffix]) Returns filename component of path (string)
bcadd(string left_operand, string right_operand [, int scale]) Add two arbitrary precision numbers (string)
bccomp(string left_operand, string right_operand [, int scale]) Compare two arbitrary precision numbers (int)
bcdiv(string left_operand, string right_operand [, int scale]) Divide two arbitrary precision numbers (string)
bcmod(string left_operand, string modulus) Get modulus of an arbitrary precision number (string)
bcmul(string left_operand, string right_operand [, int scale]) Multiply two arbitrary precision number (string)
bcpow(string x, int y [, int scale]) Raise an arbitrary precision number to another (string)
bcpowmod(string x, string y, string modulus [, int scale]) Raise an arbitrary precision number to another, reduced by a specified modulus. (string)
bcscale(int scale) Set default scale parameter for all bc math functions (string)
bcsqrt(string operand [, int scale]) Get the square root of an arbitrary precision number (string)
bcsub(string left_operand, string right_operand [, int scale]) Subtract one arbitrary precision number from another (string)
bin2hex(string str) Convert binary data into hexadecimal representation (string)
bind_textdomain_codeset(string domain, string codeset) Specify the character encoding in which the messages from the DOMAIN message catalog will be returned (string)
bindec(string binary_string) Binary to decimal (int)
bindtextdomain(string domain, string directory) Sets the path for a domain (string)
bzclose(resource bz) Close a bzip2 file pointer (int)
bzcompress(string source [, int blocksize [, int workfactor]]) Compress a string into bzip2 encoded data (string)
bzdecompress(string source [, int small]) Decompresses bzip2 encoded data (string)
bzerrno(resource bz) Returns a bzip2 error number (int)
bzerror(resource bz) Returns the bzip2 error number and error string in an array (array)
bzerrstr(resource bz) Returns a bzip2 error string (string)
bzflush(resource bz) Force a write of all buffered data (int)
bzopen(string filename, string mode) Open a bzip2 compressed file (resource)
bzread(resource bz [, int length]) Binary safe bzip2 file read (string)
bzwrite(resource bz, string data [, int length]) Binary safe bzip2 file write (int)
cal_days_in_month(int calendar, int month, int year) Return the number of days in a month for a given year and calendar (int)
cal_from_jd(int jd, int calendar) Converts from Julian Day Count to a supported calendar (array)
cal_info([int calendar]) Returns information about a particular calendar (array)
cal_to_jd(int calendar, int month, int day, int year) Converts from a supported calendar to Julian Day Count (int)
call_user_func(callback function [, mixed parameter [, mixed ...]]) Call a user function given by the first parameter (mixed)
call_user_func_array(callback function [, array paramarr]) Call a user function given with an array of parameters (mixed)
call_user_method(string method_name, object obj [, mixed parameter [, mixed ...]]) Call a user method on an specific object [deprecated] (mixed)
call_user_method_array(string method_name, object obj [, array paramarr]) Call a user method given with an array of parameters [deprecated] (mixed)
ccvs_add(string session, string invoice, string argtype, string argval) Add data to a transaction (string)
ccvs_auth(string session, string invoice) Perform credit authorization test on a transaction (string)
ccvs_command(string session, string type, string argval) Performs a command which is peculiar to a single protocol, and thus is not available in the general CCVS API (string)
ccvs_count(string session, string type) Find out how many transactions of a given type are stored in the system (int)
ccvs_delete(string session, string invoice) Delete a transaction (string)
ccvs_done(string sess) Terminate CCVS engine and do cleanup work (string)
ccvs_init(string name) Initialize CCVS for use (string)
ccvs_lookup(string session, string invoice, int inum) Look up an item of a particular type in the database # (string)
ccvs_new(string session, string invoice) Create a new, blank transaction (string)
ccvs_report(string session, string type) Return the status of the background communication process (string)
ccvs_return(string session, string invoice) Transfer funds from the merchant to the credit card holder (string)
ccvs_reverse(string session, string invoice) Perform a full reversal on an already-processed authorization (string)
ccvs_sale(string session, string invoice) Transfer funds from the credit card holder to the merchant (string)
ccvs_status(string session, string invoice) Check the status of an invoice (string)
ccvs_textvalue(string session) Get text return value for previous function call (string)
ccvs_void(string session, string invoice) Perform a full reversal on a completed transaction (string)
ceil(float value) Round fractions up (float)
chdir(string directory) Change directory (bool)
checkdate(int month, int day, int year) Validate a gregorian date (bool)
checkdnsrr(string host [, string type]) Check DNS records corresponding to a given Internet host name or IP address (int)
chgrp(string filename, mixed group) Changes file group (int)
chmod(string filename, int mode) Changes file mode (int)
chop(?) Alias of rtrim() (?)
chown(string filename, mixed user) Changes file owner (int)
chr(int ascii) Return a specific character (string)
chroot(string directory) Change the root directory (bool)
chunk_split(string body [, int chunklen [, string end]]) Split a string into smaller chunks (string)
class_exists(string class_name) Checks if the class has been defined (bool)
clearstatcache(void) Clears file status cache (void)
closedir(resource dir_handle) close directory handle (void)
closelog(void) Close connection to system logger (int)
com_addref(void) Increases the components reference counter. (void)
com_get(resource com_object, string property) Gets the value of a COM Component's property (mixed)
com_invoke(resource com_object, string function_name [, mixed function parameters, ...]) Calls a COM component's method. (mixed)
com_isenum(object com_module) Grabs an IEnumVariant (void)
com_load(string module_name [, string server_name [, int codepage]]) Creates a new reference to a COM component (string)
com_load_typelib(string typelib_name [, int case_insensitive]) Loads a Typelib (void)
com_propget(?) Alias of com_get() (?)
com_propput(?) Alias of com_set() (?)
com_propset(?) Alias of com_set() (?)
com_release(void) Decreases the components reference counter. (void)
com_set(resource com_object, string property, mixed value) Assigns a value to a COM component's property (void)
compact(mixed varname [, mixed ...]) Create array containing variables and their values (array)
connection_aborted(void) Returns TRUE if client disconnected (int)
connection_status(void) Returns connection status bitfield (int)
connection_timeout(void) Return TRUE if script timed out (bool)
constant(string name) Returns the value of a constant (mixed)
convert_cyr_string(string str, string from, string to) Convert from one Cyrillic character set to another (string)
copy(string source, string dest) Copies file (int)
cos(float arg) Cosine (float)
cosh(float arg) Hyperbolic cosine (float)
count(mixed var) Count elements in a variable (int)
count_chars(string string [, int mode]) Return information about characters used in a string (mixed)
cpdf_add_annotation(int pdf_document, float llx, float lly, float urx, float ury, string title, string content [, int mode]) Adds annotation (void)
cpdf_add_outline(int pdf_document, string text) Adds bookmark for current page (void)
cpdf_arc(int pdf_document, float x-coor, float y-coor, float radius, float start, float end [, int mode]) Draws an arc (void)
cpdf_begin_text(int pdf_document) Starts text section (void)
cpdf_circle(int pdf_document, float x-coor, float y-coor, float radius [, int mode]) Draw a circle (void)
cpdf_clip(int pdf_document) Clips to current path (void)
cpdf_close(int pdf_document) Closes the pdf document (void)
cpdf_closepath(int pdf_document) Close path (void)
cpdf_closepath_fill_stroke(int pdf_document) Close, fill and stroke current path (void)
cpdf_closepath_stroke(int pdf_document) Close path and draw line along path (void)
cpdf_continue_text(int pdf_document, string text) Output text in next line (void)
cpdf_curveto(int pdf_document, float x1, float y1, float x2, float y2, float x3, float y3 [, int mode]) Draws a curve (void)
cpdf_end_text(int pdf_document) Ends text section (void)
cpdf_fill(int pdf_document) Fill current path (void)
cpdf_fill_stroke(int pdf_document) Fill and stroke current path (void)
cpdf_finalize(int pdf_document) Ends document (void)
cpdf_finalize_page(int pdf_document, int page_number) Ends page (void)
cpdf_global_set_document_limits(int maxpages, int maxfonts, int maximages, int maxannotations, int maxobjects) Sets document limits for any pdf document (void)
cpdf_import_jpeg(int pdf_document, string file name, float x-coor, float y-coor, float angle, float width, float height, float x-scale, float y-scale [, int mode]) Opens a JPEG image (int)
cpdf_lineto(int pdf_document, float x-coor, float y-coor [, int mode]) Draws a line (void)
cpdf_moveto(int pdf_document, float x-coor, float y-coor [, int mode]) Sets current point (void)
cpdf_newpath(int pdf_document) Starts a new path (void)
cpdf_open(int compression [, string filename]) Opens a new pdf document (int)
cpdf_output_buffer(int pdf_document) Outputs the pdf document in memory buffer (void)
cpdf_page_init(int pdf_document, int page_number, int orientation, float height, float width [, float unit]) Starts new page (void)
cpdf_place_inline_image(int pdf_document, int image, float x-coor, float y-coor, float angle, float width, float height [, int mode]) Places an image on the page (void)
cpdf_rect(int pdf_document, float x-coor, float y-coor, float width, float height [, int mode]) Draw a rectangle (void)
cpdf_restore(int pdf_document) Restores formerly saved environment (void)
cpdf_rlineto(int pdf_document, float x-coor, float y-coor [, int mode]) Draws a line (void)
cpdf_rmoveto(int pdf_document, float x-coor, float y-coor [, int mode]) Sets current point (void)
cpdf_rotate(int pdf_document, float angle) Sets rotation (void)
cpdf_rotate_text(int pdfdoc, float angle) Sets text rotation angle (void)
cpdf_save(int pdf_document) Saves current environment (void)
cpdf_save_to_file(int pdf_document, string filename) Writes the pdf document into a file (void)
cpdf_scale(int pdf_document, float x-scale, float y-scale) Sets scaling (void)
cpdf_set_action_url(int pdfdoc, float xll, float yll, float xur, float xur, string url [, int mode]) Sets hyperlink (void)
cpdf_set_char_spacing(int pdf_document, float space) Sets character spacing (void)
cpdf_set_creator(string creator) Sets the creator field in the pdf document (void)
cpdf_set_current_page(int pdf_document, int page_number) Sets current page (void)
cpdf_set_font(int pdf_document, string font name, float size, string encoding) Select the current font face and size (void)
cpdf_set_font_directories(int pdfdoc, string pfmdir, string pfbdir) Sets directories to search when using external fonts (void)
cpdf_set_font_map_file(int pdfdoc, string filename) Sets fontname to filename translation map when using external fonts (void)
cpdf_set_horiz_scaling(int pdf_document, float scale) Sets horizontal scaling of text (void)
cpdf_set_keywords(string keywords) Sets the keywords field of the pdf document (void)
cpdf_set_leading(int pdf_document, float distance) Sets distance between text lines (void)
cpdf_set_page_animation(int pdf_document, int transition, float duration) Sets duration between pages (void)
cpdf_set_subject(string subject) Sets the subject field of the pdf document (void)
cpdf_set_text_matrix(int pdf_document, array matrix) Sets the text matrix (void)
cpdf_set_text_pos(int pdf_document, float x-coor, float y-coor [, int mode]) Sets text position (void)
cpdf_set_text_rendering(int pdf_document [, int mode]) Determines how text is rendered (void)
cpdf_set_text_rise(int pdf_document, float value) Sets the text rise (void)
cpdf_set_title(string title) Sets the title field of the pdf document (void)
cpdf_set_viewer_preferences(int pdfdoc, array preferences) How to show the document in the viewer (void)
cpdf_set_word_spacing(int pdf_document, float space) Sets spacing between words (void)
cpdf_setdash(int pdf_document, float white, float black) Sets dash pattern (void)
cpdf_setflat(int pdf_document, float value) Sets flatness (void)
cpdf_setgray(int pdf_document, float gray_value) Sets drawing and filling color to gray value (void)
cpdf_setgray_fill(int pdf_document, float value) Sets filling color to gray value (void)
cpdf_setgray_stroke(int pdf_document, float gray_value) Sets drawing color to gray value (void)
cpdf_setlinecap(int pdf_document, int value) Sets linecap parameter (void)
cpdf_setlinejoin(int pdf_document, int value) Sets linejoin parameter (void)
cpdf_setlinewidth(int pdf_document, float width) Sets line width (void)
cpdf_setmiterlimit(int pdf_document, float value) Sets miter limit (void)
cpdf_setrgbcolor(int pdf_document, float red_value, float green_value, float blue_value) Sets drawing and filling color to rgb color value (void)
cpdf_setrgbcolor_fill(int pdf_document, float red_value, float green_value, float blue_value) Sets filling color to rgb color value (void)
cpdf_setrgbcolor_stroke(int pdf_document, float red_value, float green_value, float blue_value) Sets drawing color to rgb color value (void)
cpdf_show(int pdf_document, string text) Output text at current position (void)
cpdf_show_xy(int pdf_document, string text, float x-coor, float y-coor [, int mode]) Output text at position (void)
cpdf_stringwidth(int pdf_document, string text) Returns width of text in current font (float)
cpdf_stroke(int pdf_document) Draw line along path (void)
cpdf_text(int pdf_document, string text, float x-coor, float y-coor [, int mode [, float orientation [, int alignmode]]]) Output text with parameters (void)
cpdf_translate(int pdf_document, float x-coor, float y-coor [, int mode]) Sets origin of coordinate system (void)
crack_check([resource dictionary, string password]) Performs an obscure check with the given password (bool)
crack_closedict([resource dictionary]) Closes an open CrackLib dictionary (bool)
crack_getlastmessage(void) Returns the message from the last obscure check (string)
crack_opendict(string dictionary) Opens a new CrackLib dictionary (resource)
crc32(string str) Calculates the crc32 polynomial of a string (int)
create_function(string args, string code) Create an anonymous (lambda-style) function (string)
crypt(string str [, string salt]) One-way string encryption (hashing) (string)
ctype_alnum(string text) Check for alphanumeric character(s) (bool)
ctype_alpha(string text) Check for alphabetic character(s) (bool)
ctype_cntrl(string text) Check for control character(s) (bool)
ctype_digit(string text) Check for numeric character(s) (bool)
ctype_graph(string text) Check for any printable character(s) except space (bool)
ctype_lower(string text) Check for lowercase character(s) (bool)
ctype_print(string text) Check for printable character(s) (bool)
ctype_punct(string text) Check for any printable character which is not whitespace or an alphanumeric character (bool)
ctype_space(string text) Check for whitespace character(s) (bool)
ctype_upper(string text) Check for uppercase character(s) (bool)
ctype_xdigit(string text) Check for character(s) representing a hexadecimal digit (bool)
curl_close(resource ch) Close a CURL session (void)
curl_errno(resource ch) Return the last error number (int)
curl_error(resource ch) Return a string containing the last error for the current session (string)
curl_exec(resource ch) Perform a CURL session (bool)
curl_getinfo(resource ch [, int opt]) Get information regarding a specific transfer (string)
curl_init([string url]) Initialize a CURL session (resource)
curl_setopt(resource ch, string option, mixed value) Set an option for a CURL transfer (bool)
curl_version(void) Return the current CURL version (string)
current(array array) Return the current element in an array (mixed)
cybercash_base64_decode(string inbuff) base64 decode data for Cybercash (string)
cybercash_base64_encode(string inbuff) base64 encode data for Cybercash (string)
cybercash_decr(string wmk, string sk, string inbuff) Cybercash decrypt (array)
cybercash_encr(string wmk, string sk, string inbuff) Cybercash encrypt (array)
cybermut_creerformulairecm(string url_CM, string version, string TPE, string montant, string ref_commande, string texte_libre, string url_retour, string url_retour_ok, string url_retour_err, string langue, string code_societe, string texte_bouton) Generate HTML form of request for payment (string)
cybermut_creerreponsecm(string phrase) Generate the acknowledgement of delivery of the confirmation of payment (string)
cybermut_testmac(string code_MAC, string version, string TPE, string cdate, string montant, string ref_commande, string texte_libre, string code-retour) Make sure that there no was data diddling contained in the received message of confirmation (bool)
cyrus_authenticate(resource connection [, string mechlist [, string service [, string user [, int minssf [, int maxssf]]]]]) Authenticate against a Cyrus IMAP server (bool)
cyrus_bind(resource connection, array callbacks) Bind callbacks to a Cyrus IMAP connection (bool)
cyrus_close(resource connection) Close connection to a Cyrus IMAP server (bool)
cyrus_connect([string host [, string port [, int flags]]]) Connect to a Cyrus IMAP server (resource)
cyrus_query(resource connection, string query) Send a query to a Cyrus IMAP server (bool)
cyrus_unbind(resource connection, string trigger_name) Unbind ... (bool)
date(string format [, int timestamp]) Format a local time/date (string)
dba_close(resource handle) Close database (void)
dba_delete(string key, resource handle) Delete entry specified by key (bool)
dba_exists(string key, resource handle) Check whether key exists (bool)
dba_fetch(string key [, int skip, resource handle]) Fetch data specified by key (string)
dba_firstkey(resource handle) Fetch first key (string)
dba_handlers(void) List handlers available (array)
dba_insert(string key, string value, resource handle) Insert entry (bool)
dba_list(void) List all open database files (array)
dba_nextkey(resource handle) Fetch next key (string)
dba_open(string path, string mode, string handler [, ...]) Open database (resource)
dba_optimize(resource handle) Optimize database (bool)
dba_popen(string path, string mode, string handler [, ...]) Open database persistently (resource)
dba_replace(string key, string value, resource handle) Replace or insert entry (bool)
dba_sync(resource handle) Synchronize database (bool)
dbase_add_record(int dbase_identifier, array record) Add a record to a dBase database (bool)
dbase_close(int dbase_identifier) Close a dBase database (bool)
dbase_create(string filename, array fields) Creates a dBase database (int)
dbase_delete_record(int dbase_identifier, int record) Deletes a record from a dBase database (bool)
dbase_get_record(int dbase_identifier, int record) Gets a record from a dBase database (array)
dbase_get_record_with_names(int dbase_identifier, int record) Gets a record from a dBase database as an associative array (array)
dbase_numfields(int dbase_identifier) Find out how many fields are in a dBase database (int)
dbase_numrecords(int dbase_identifier) Find out how many records are in a dBase database (int)
dbase_open(string filename, int flags) Opens a dBase database (int)
dbase_pack(int dbase_identifier) Packs a dBase database (bool)
dbase_replace_record(int dbase_identifier, array record, int dbase_record_number) Replace a record in a dBase database (bool)
dblist(void) Describes the DBM-compatible library being used (string)
dbmclose(resource dbm_identifier) Closes a dbm database (bool)
dbmdelete(resource dbm_identifier, string key) Deletes the value for a key from a DBM database (bool)
dbmexists(resource dbm_identifier, string key) Tells if a value exists for a key in a DBM database (bool)
dbmfetch(resource dbm_identifier, string key) Fetches a value for a key from a DBM database (string)
dbmfirstkey(resource dbm_identifier) Retrieves the first key from a DBM database (string)
dbminsert(resource dbm_identifier, string key, string value) Inserts a value for a key in a DBM database (int)
dbmnextkey(resource dbm_identifier, string key) Retrieves the next key from a DBM database (string)
dbmopen(string filename, string flags) Opens a DBM database (resource)
dbmreplace(resource dbm_identifier, string key, string value) Replaces the value for a key in a DBM database (int)
dbplus_add(resource relation, array tuple) Add a tuple to a relation (int)
dbplus_aql(string query [, string server [, string dbpath]]) Perform AQL query (resource)
dbplus_chdir([string newdir]) Get/Set database virtual current directory (string)
dbplus_close(resource relation) Close a relation (int)
dbplus_curr(resource relation, array tuple) Get current tuple from relation (int)
dbplus_errcode(int errno) Get error string for given errorcode or last error (string)
dbplus_errno(void) Get error code for last operation (int)
dbplus_find(resource relation, array constraints, mixed tuple) Set a constraint on a relation (int)
dbplus_first(resource relation, array tuple) Get first tuple from relation (int)
dbplus_flush(resource relation) Flush all changes made on a relation (int)
dbplus_freealllocks(void) Free all locks held by this client (int)
dbplus_freelock(resource relation, string tname) Release write lock on tuple (int)
dbplus_freerlocks(resource relation) Free all tuple locks on given relation (int)
dbplus_getlock(resource relation, string tname) Get a write lock on a tuple (int)
dbplus_getunique(resource relation, int uniqueid) Get a id number unique to a relation (int)
dbplus_info(resource relation, string key, array ) ??? (int)
dbplus_last(resource relation, array tuple) Get last tuple from relation (int)
dbplus_lockrel(resource relation) Request write lock on relation (int)
dbplus_next(resource relation, array ) Get next tuple from relation (int)
dbplus_open(string name) Open relation file (resource)
dbplus_prev(resource relation, array tuple) Get previous tuple from relation (int)
dbplus_rchperm(resource relation, int mask, string user, string group) Change relation permissions (int)
dbplus_rcreate(string name, mixed domlist [, bool overwrite]) Creates a new DB++ relation (resource)
dbplus_rcrtexact(string name, resource relation, bool overwrite) Creates an exact but empty copy of a relation including indices (resource)
dbplus_rcrtlike(string name, resource relation, int flag) Creates an empty copy of a relation with default indices (resource)
dbplus_resolve(string relation_name) Resolve host information for relation (int)
dbplus_restorepos(resource relation, array tuple) ??? (int)
dbplus_rkeys(resource relation, mixed domlist) Specify new primary key for a relation (resource)
dbplus_ropen(string name) Open relation file local (resource)
dbplus_rquery(string query, string dbpath) Perform local (raw) AQL query (int)
dbplus_rrename(resource relation, string name) Rename a relation (int)
dbplus_rsecindex(resource relation, mixed domlist, int type) Create a new secondary index for a relation (resource)
dbplus_runlink(resource relation) Remove relation from filesystem (int)
dbplus_rzap(resource relation) Remove all tuples from relation (int)
dbplus_savepos(resource relation) ??? (int)
dbplus_setindex(resource relation, string idx_name) ??? (int)
dbplus_setindexbynumber(resource relation, int idx_number) ??? (int)
dbplus_sql(string query, string server, string dbpath) Perform SQL query (resource)
dbplus_tcl(int sid, string script) Execute TCL code on server side (int)
dbplus_tremove(resource relation, array tuple [, array current]) Remove tuple and return new current tuple (int)
dbplus_undo(resource relation) ??? (int)
dbplus_undoprepare(resource relation) ??? (int)
dbplus_unlockrel(resource relation) Give up write lock on relation (int)
dbplus_unselect(resource relation) Remove a constraint from relation (int)
dbplus_update(resource relation, array old, array new) Update specified tuple in relation (int)
dbplus_xlockrel(resource relation) Request exclusive lock on relation (int)
dbplus_xunlockrel(resource relation) Free exclusive lock on relation (int)
dbx_close(object link_identifier) Close an open connection/database (bool)
dbx_compare(array row_a, array row_b, string column_key [, int flags]) Compare two rows for sorting purposes (int)
dbx_connect(mixed module, string host, string database, string username, string password [, int persistent]) Open a connection/database (object)
dbx_error(object link_identifier) Report the error message of the latest function call in the module (not just in the connection) (string)
dbx_escape_string(object link_identifier, string text) Escape a string so it can safely be used in an sql-statement. (string)
dbx_query(object link_identifier, string sql_statement [, long flags]) Send a query and fetch all results (if any) (object)
dbx_sort(object result, string user_compare_function) Sort a result from a dbx_query by a custom sort function (bool)
dcgettext(string domain, string message, int category) Overrides the domain for a single lookup (string)
dcngettext(string domain, string msgid1, string msgid2, int n, int category) Plural version of dcgettext (string)
deaggregate(object object [, string class_name]) Removes the aggregated methods and properties from an object (void)
debug_backtrace(void) Generates a backtrace (array)
debugger_off(void) Disable internal PHP debugger (PHP 3) (int)
debugger_on(string address) Enable internal PHP debugger (PHP 3) (int)
decbin(int number) Decimal to binary (string)
dechex(int number) Decimal to hexadecimal (string)
decoct(int number) Decimal to octal (string)
define(string name, mixed value [, bool case_insensitive]) Defines a named constant. (bool)
define_syslog_variables(void) Initializes all syslog related constants (void)
defined(string name) Checks whether a given named constant exists (bool)
deg2rad(float number) Converts the number in degrees to the radian equivalent (float)
delete(string file) See unlink() or unset() (void)
dgettext(string domain, string message) Override the current domain (string)
die(?) Alias of exit() (?)
dio_close(resource fd) Closes the file descriptor given by fd (void)
dio_fcntl(resource fd, int cmd [, mixed arg]) Performs a c library fcntl on fd (mixed)
dio_open(string filename, int flags [, int mode]) Opens a new filename with specified permissions of flags and creation permissions of mode (resource)
dio_read(resource fd [, int n]) Reads n bytes from fd and returns them, if n is not specified, reads 1k block (string)
dio_seek(resource fd, int pos, int whence) Seeks to pos on fd from whence (int)
dio_stat(resource fd) Gets stat information about the file descriptor fd (array)
dio_tcsetattr(resource fd, array options) Sets terminal attributes and baud rate for a serial port ()
dio_truncate(resource fd, int offset) Truncates file descriptor fd to offset bytes (bool)
dio_write(resource fd, string data [, int len]) Writes data to fd with optional truncation at length (int)
dirname(string path) Returns directory name component of path (string)
disk_free_space(string directory) Returns available space in directory (float)
disk_total_space(string directory) Returns the total size of a directory (float)
diskfreespace(?) Alias of disk_free_space() (?)
dl(string library) Loads a PHP extension at runtime (int)
dngettext(string domain, string msgid1, string msgid2, int n) Plural version of dgettext (string)
dns_check_record(string host [, string type]) Synonym for checkdnsrr() (int)
dns_get_mx(string hostname, array mxhosts [, array &weight]) Synonym for getmxrr() (int)
dns_get_record(string hostname [, int type [, array &authns, array &addtl]]) Fetch DNS Resource Records associated with a hostname (array)
domxml_new_doc(string version) Creates new empty XML document (object)
domxml_open_file(string filename) Creates a DOM object from XML file (object)
domxml_open_mem(string str) Creates a DOM object of an XML document (object)
domxml_version(void) Get XML library version (string)
domxml_xmltree(string str) Creates a tree of PHP objects from an XML document (object)
domxml_xslt_stylesheet(string xsl document) Creates a DomXsltStylesheet Object from a xml document in a string. (object)
domxml_xslt_stylesheet_doc(object DocDocument Object) Creates a DomXsltStylesheet Object from a DomDocument Object. (object)
domxml_xslt_stylesheet_file(string xsl file) Creates a DomXsltStylesheet Object from a xsl document in a file. (object)
dotnet_load(string assembly_name [, string datatype_name [, int codepage]]) Loads a DOTNET module (int)
doubleval(?) Alias of floatval() (?)
each(array array) Return the current key and value pair from an array and advance the array cursor (array)
easter_date([int year]) Get UNIX timestamp for midnight on Easter of a given year (int)
easter_days([int year [, int method]]) Get number of days after March 21 on which Easter falls for a given year (int)
ebcdic2ascii(string ebcdic_str) Translate string from EBCDIC to ASCII (int)
echo(string arg1 [, string argn...]) Output one or more strings (void)
empty(mixed var) Determine whether a variable is set (bool)
end(array array) Set the internal pointer of an array to its last element (mixed)
ereg(string pattern, string string [, array regs]) Regular expression match (bool)
ereg_replace(string pattern, string replacement, string string) Replace regular expression (string)
eregi(string pattern, string string [, array regs]) case insensitive regular expression match (bool)
eregi_replace(string pattern, string replacement, string string) replace regular expression case insensitive (string)
error_log(string message [, int message_type [, string destination [, string extra_headers]]]) send an error message somewhere (int)
error_reporting([int level]) set which PHP errors are reported (int)
escapeshellarg(string arg) escape a string to be used as a shell argument (string)
escapeshellcmd(string command) escape shell metacharacters (string)
eval(string code_str) Evaluate a string as PHP code (mixed)
exec(string command [, array output [, int return_var]]) Execute an external program (string)
exif_imagetype(string filename) Determine the type of an image (int)
exif_read_data(string filename [, string sections [, bool arrays [, bool thumbnail]]]) Read the EXIF headers from JPEG or TIFF. This way you can read meta data generated by digital cameras. (array)
exif_thumbnail(string filename [, int &width [, int &height [, int &imagetype]]]) Retrieve the embedded thumbnail of a TIFF or JPEG image (string)
exit([string status]) Output a message and terminate the current script (void)
exp(float arg) Calculates the exponent of e (the Neperian or Natural logarithm base) (float)
explode(string separator, string string [, int limit]) Split a string by string (array)
expm1(float number) Returns exp(number) - 1, computed in a way that is accurate even when the value of number is close to zero (float)
extension_loaded(string name) Find out whether an extension is loaded (bool)
extract(array var_array [, int extract_type [, string prefix]]) Import variables into the current symbol table from an array (int)
ezmlm_hash(string addr) Calculate the hash value needed by EZMLM (int)
fbsql_affected_rows([resource link_identifier]) Get number of affected rows in previous FrontBase operation (int)
fbsql_autocommit(resource link_identifier [, bool OnOff]) Enable or disable autocommit (bool)
fbsql_change_user(string user, string password [, string database [, resource link_identifier]]) Change logged in user of the active connection (resource)
fbsql_close([resource link_identifier]) Close FrontBase connection (bool)
fbsql_commit([resource link_identifier]) Commits a transaction to the database (bool)
fbsql_connect([string hostname [, string username [, string password]]]) Open a connection to a FrontBase Server (resource)
fbsql_create_blob(string blob_data [, resource link_identifier]) Create a BLOB (string)
fbsql_create_clob(string clob_data [, resource link_identifier]) Create a CLOB (string)
fbsql_create_db(string database name [, resource link_identifier]) Create a FrontBase database (bool)
fbsql_data_seek(resource result_identifier, int row_number) Move internal result pointer (bool)
fbsql_database(resource link_identifier [, string database]) Get or set the database name used with a connection (string)
fbsql_database_password(resource link_identifier [, string database_password]) Sets or retrieves the password for a FrontBase database (string)
fbsql_db_query(string database, string query [, resource link_identifier]) Send a FrontBase query (resource)
fbsql_db_status(string database_name [, resource link_identifier]) Get the status for a given database (int)
fbsql_drop_db(string database_name [, resource link_identifier]) Drop (delete) a FrontBase database (bool)
fbsql_errno([resource link_identifier]) Returns the numerical value of the error message from previous FrontBase operation (int)
fbsql_error([resource link_identifier]) Returns the text of the error message from previous FrontBase operation (string)
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_field(resource result [, int field_offset]) Get column information from a result and return as an object (object)
fbsql_fetch_lengths([resource result]) Get the length of each output in a result (array)
fbsql_fetch_object(resource result [, int result_type]) Fetch a result row as an object (object)
fbsql_fetch_row(resource result) Get a result row as an enumerated array (array)
fbsql_field_flags(resource result, int field_offset) Get the flags associated with the specified field in a result (string)
fbsql_field_len(resource result, int field_offset) Returns the length of the specified field (int)
fbsql_field_name(resource result, int field_index) Get the name of the specified field in a result (string)
fbsql_field_seek(resource result, int field_offset) Set result pointer to a specified field offset (bool)
fbsql_field_table(resource result, int field_offset) Get name of the table the specified field is in (string)
fbsql_field_type(resource result, int field_offset) Get the type of the specified field in a result (string)
fbsql_free_result(resource result) Free result memory (bool)
fbsql_get_autostart_info([resource link_identifier]) No description given yet (array)
fbsql_hostname(resource link_identifier [, string host_name]) Get or set the host name used with a connection (string)
fbsql_insert_id([resource link_identifier]) Get the id generated from the previous INSERT operation (int)
fbsql_list_dbs([resource link_identifier]) List databases available on a FrontBase server (resource)
fbsql_list_fields(string database_name, string table_name [, resource link_identifier]) List FrontBase result fields (resource)
fbsql_list_tables(string database [, resource link_identifier]) List tables in a FrontBase database (resource)
fbsql_next_result(resource result_id) Move the internal result pointer to the next result (bool)
fbsql_num_fields(resource result) Get number of fields in result (int)
fbsql_num_rows(resource result) Get number of rows in result (int)
fbsql_password(resource link_identifier [, string password]) Get or set the user password used with a connection (string)
fbsql_pconnect([string hostname [, string username [, string password]]]) Open a persistent connection to a FrontBase Server (resource)
fbsql_query(string query [, resource link_identifier]) Send a FrontBase query (resource)
fbsql_read_blob(string blob_handle [, resource link_identifier]) Read a BLOB from the database (string)
fbsql_read_clob(string clob_handle [, resource link_identifier]) Read a CLOB from the database (string)
fbsql_result(resource result, int row [, mixed field]) Get result data (mixed)
fbsql_rollback([resource link_identifier]) Rollback a transaction to the database (bool)
fbsql_select_db(string database_name [, resource link_identifier]) Select a FrontBase database (bool)
fbsql_set_lob_mode(resource result, string database_name) Set the LOB retrieve mode for a FrontBase result set (bool)
fbsql_set_transaction(resource link_identifier, int Locking, int Isolation) Set the transaction locking and isolation (void)
fbsql_start_db(string database_name [, resource link_identifier]) Start a database on local or remote server (bool)
fbsql_stop_db(string database_name [, resource link_identifier]) Stop a database on local or remote server (bool)
fbsql_tablename(resource result, int i) Get table name of field (string)
fbsql_username(resource link_identifier [, string username]) Get or set the host user used with a connection (string)
fbsql_warnings([bool OnOff]) Enable or disable FrontBase warnings (bool)
fclose(resource handle) Closes an open file pointer (bool)
fdf_add_doc_javascript(resource fdfdoc, string script_name, string script_code) Adds javascript code to the FDF document (bool)
fdf_add_template(resource fdfdoc, int newpage, string filename, string template, int rename) Adds a template into the FDF document (bool)
fdf_close(resource fdf_document) Close an FDF document (bool)
fdf_create(void) Create a new FDF document (resource)
fdf_enum_values(resource fdfdoc, callback function [, mixed userdata]) Call a user defined function for each document value (bool)
fdf_errno(void) Return error code for last fdf operation (int)
fdf_error([int error_code]) Return error description for fdf error code (string)
fdf_get_ap(resource fdf_document, string field, int face, string filename) Get the appearance of a field (bool)
fdf_get_attachment(resource fdf_document, string fieldname, string savepath) Extracts uploaded file embedded in the FDF (array)
fdf_get_encoding(resource fdf_document) Get the value of the /Encoding key (string)
fdf_get_file(resource fdf_document) Get the value of the /F key (string)
fdf_get_flags(void) Gets the flags of a field ()
fdf_get_opt(resource fdfdof, string fieldname [, int element]) Gets a value from the opt array of a field (mixed)
fdf_get_status(resource fdf_document) Get the value of the /STATUS key (string)
fdf_get_value(resource fdf_document, string fieldname [, int which]) Get the value of a field (string)
fdf_get_version([resource fdf_document]) Gets version number for FDF api or file (string)
fdf_header(void) Sets FDF-specific output headers (bool)
fdf_next_field_name(resource fdf_document [, string fieldname]) Get the next field name (string)
fdf_open(string filename) Open a FDF document (resource)
fdf_open_string(string fdf_data) Read a FDF document from a string (resource)
fdf_remove_item(resource fdfdoc, string fieldname, int item) Sets target frame for form (bool)
fdf_save(resource fdf_document [, string filename]) Save a FDF document (bool)
fdf_save_string(resource fdf_document) Returns the FDF document as a string (string)
fdf_set_ap(resource fdf_document, string field_name, int face, string filename, int page_number) Set the appearance of a field (bool)
fdf_set_encoding(resource fdf_document, string encoding) Sets FDF character encoding (bool)
fdf_set_file(resource fdf_document, string url [, string target_frame]) Set PDF document to display FDF data in (bool)
fdf_set_flags(resource fdf_document, string fieldname, int whichFlags, int newFlags) Sets a flag of a field (bool)
fdf_set_javascript_action(resource fdf_document, string fieldname, int trigger, string script) Sets an javascript action of a field (bool)
fdf_set_opt(resource fdf_document, string fieldname, int element, string str1, string str2) Sets an option of a field (bool)
fdf_set_status(resource fdf_document, string status) Set the value of the /STATUS key (bool)
fdf_set_submit_form_action(resource fdf_document, string fieldname, int trigger, string script, int flags) Sets a submit form action of a field (bool)
fdf_set_target_frame(resource fdf_document, string frame_name) Set target frame for form display (bool)
fdf_set_value(resource fdf_document, string fieldname, mixed value [, int isName]) Set the value of a field (bool)
fdf_set_version(resource fdf_document, string version) Sets version number for a FDF file (string)
feof(resource handle) Tests for end-of-file on a file pointer (bool)
fflush(resource handle) Flushes the output to a file (bool)
fgetc(resource handle) Gets character from file pointer (string)
fgetcsv(resource handle, int length [, string delimiter [, string enclosure]]) Gets line from file pointer and parse for CSV fields (array)
fgets(resource handle [, int length]) Gets line from file pointer (string)
fgetss(resource handle, int length [, string allowable_tags]) Gets line from file pointer and strip HTML tags (string)
file(string filename [, int use_include_path [, resource context]]) Reads entire file into an array (array)
file_exists(string filename) Checks whether a file or directory exists (bool)
file_get_contents(string filename [, int use_include_path [, resource context]]) Reads entire file into a string (string)
file_put_contents(string filename, string data [, int flags [, resource context]]) Write a string to a file (int)
fileatime(string filename) Gets last access time of file (int)
filectime(string filename) Gets inode change time of file (int)
filegroup(string filename) Gets file group (int)
fileinode(string filename) Gets file inode (int)
filemtime(string filename) Gets file modification time (int)
fileowner(string filename) Gets file owner (int)
fileperms(string filename) Gets file permissions (int)
filepro(string directory) Read and verify the map file (bool)
filepro_fieldcount(void) Find out how many fields are in a filePro database (int)
filepro_fieldname(int field_number) Gets the name of a field (string)
filepro_fieldtype(int field_number) Gets the type of a field (string)
filepro_fieldwidth(int field_number) Gets the width of a field (int)
filepro_retrieve(int row_number, int field_number) Retrieves data from a filePro database (string)
filepro_rowcount(void) Find out how many rows are in a filePro database (int)
filesize(string filename) Gets file size (int)
filetype(string filename) Gets file type (string)
floatval(mixed var) Get float value of a variable (float)
flock(resource handle, int operation [, int &wouldblock]) Portable advisory file locking (bool)
floor(float value) Round fractions down (float)
flush(void) Flush the output buffer (void)
fmod(float x, float y) Returns the floating point remainder (modulo) of the division of the arguments (float)
fnmatch(string pattern, string string [, int flags]) Match filename against a pattern (array)
fopen(string filename, string mode [, int use_include_path [, resource zcontext]]) Opens file or URL (resource)
fpassthru(resource handle) Output all remaining data on a file pointer (int)
fprintf(resource handle, string format [, mixed args]) Write a formatted string to a stream (int)
fputs(?) Alias of fwrite() (?)
fread(resource handle, int length) Binary-safe file read (string)
fribidi_log2vis(string str, string direction, int charset) Convert a logical string to a visual one (string)
fscanf(resource handle, string format [, string var1]) Parses input from a file according to a format (mixed)
fseek(resource handle, int offset [, int whence]) Seeks on a file pointer (int)
fsockopen(string hostname, int port [, int errno [, string errstr [, float timeout]]]) Open Internet or Unix domain socket connection (int)
fstat(resource handle) Gets information about a file using an open file pointer (array)
ftell(resource handle) Tells file pointer read/write position (int)
ftok(string pathname, string proj) Convert a pathname and a project identifier to a System V IPC key (int)
ftp_cdup(resource ftp_stream) Changes to the parent directory (bool)
ftp_chdir(resource ftp_stream, string directory) Changes directories on a FTP server (bool)
ftp_chmod(resource ftp_stream, int mode, string filename) Set permissions on a file via FTP (string)
ftp_close(resource ftp_stream) Closes an FTP connection (void)
ftp_connect(string host [, int port [, int timeout]]) Opens an FTP connection (resource)
ftp_delete(resource ftp_stream, string path) Deletes a file on the FTP server (bool)
ftp_exec(resource ftp_stream, string command) Requests execution of a program on the FTP server (bool)
ftp_fget(resource ftp_stream, resource handle, string remote_file, int mode [, int resumepos]) Downloads a file from the FTP server and saves to an open file (bool)
ftp_fput(resource ftp_stream, string remote_file, resource handle, int mode [, int startpos]) Uploads from an open file to the FTP server (bool)
ftp_get(resource ftp_stream, string local_file, string remote_file, int mode [, int resumepos]) Downloads a file from the FTP server (bool)
ftp_get_option(resource ftp_stream, int option) Retrieves various runtime behaviours of the current FTP stream (mixed)
ftp_login(resource ftp_stream, string username, string password) Logs in to an FTP connection (bool)
ftp_mdtm(resource ftp_stream, string remote_file) Returns the last modified time of the given file (int)
ftp_mkdir(resource ftp_stream, string directory) Creates a directory (string)
ftp_nb_continue(resource ftp_stream) Continues retrieving/sending a file (non-blocking) (bool)
ftp_nb_fget(resource ftp_stream, resource handle, string remote_file, int mode [, int resumepos]) Retrieves a file from the FTP server and writes it to an open file (non-blocking) (bool)
ftp_nb_fput(resource ftp_stream, string remote_file, resource handle, int mode [, int startpos]) Stores a file from an open file to the FTP server (non-blocking) (bool)
ftp_nb_get(resource ftp_stream, string local_file, string remote_file, int mode [, int resumepos]) Retrieves a file from the FTP server and writes it to a local file (non-blocking) (bool)
ftp_nb_put(resource ftp_stream, string remote_file, string local_file, int mode [, int startpos]) Stores a file on the FTP server (non-blocking) (bool)
ftp_nlist(resource ftp_stream, string directory) Returns a list of files in the given directory (array)
ftp_pasv(resource ftp_stream, bool pasv) Turns passive mode on or off (bool)
ftp_put(resource ftp_stream, string remote_file, string local_file, int mode [, int startpos]) Uploads a file to the FTP server (bool)
ftp_pwd(resource ftp_stream) Returns the current directory name (string)
ftp_quit(?) Alias of ftp_close() (?)
ftp_raw(resource ftp_stream, string command) Sends an arbitrary command to an FTP server (array)
ftp_rawlist(resource ftp_stream, string directory) Returns a detailed list of files in the given directory (array)
ftp_rename(resource ftp_stream, string from, string to) Renames a file on the FTP server (bool)
ftp_rmdir(resource ftp_stream, string directory) Removes a directory (bool)
ftp_set_option(resource ftp_stream, int option, mixed value) Set miscellaneous runtime FTP options (bool)
ftp_site(resource ftp_stream, string cmd) Sends a SITE command to the server (bool)
ftp_size(resource ftp_stream, string remote_file) Returns the size of the given file (int)
ftp_ssl_connect(string host [, int port [, int timeout]]) Opens an Secure SSL-FTP connection (resource)
ftp_systype(resource ftp_stream) Returns the system type identifier of the remote FTP server (string)
ftruncate(resource handle, int size) Truncates a file to a given length (bool)
func_get_arg(int arg_num) Return an item from the argument list (mixed)
func_get_args(void) Returns an array comprising a function's argument list (array)
func_num_args(void) Returns the number of arguments passed to the function (int)
function_exists(string function_name) Return TRUE if the given function has been defined (bool)
fwrite(resource handle, string string [, int length]) Binary-safe file write (int)
gd_info(void) Retrieve information about the currently installed GD library (array)
get_browser([string user_agent]) Tells what the user's browser is capable of (object)
get_cfg_var(string varname) Gets the value of a PHP configuration option (string)
get_class(object obj) Returns the name of the class of an object (string)
get_class_methods(mixed class_name) Returns an array of class methods' names (array)
get_class_vars(string class_name) Returns an array of default properties of the class (array)
get_current_user(void) Gets the name of the owner of the current PHP script (string)
get_declared_classes(void) Returns an array with the name of the defined classes (array)
get_defined_constants(void) Returns an associative array with the names of all the constants and their values (array)
get_defined_functions(void) Returns an array of all defined functions (array)
get_defined_vars(void) 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_html_translation_table(int table [, int quote_style]) Returns the translation table used by htmlspecialchars() and htmlentities() (array)
get_included_files(void) Returns an array with the names of included or required files (array)
get_loaded_extensions(void) Returns an array with the names of all modules compiled and loaded (array)
get_magic_quotes_gpc(void) Gets the current active configuration setting of magic quotes gpc (int)
get_magic_quotes_runtime(void) Gets the current active configuration setting of magic_quotes_runtime (int)
get_meta_tags(string filename [, int use_include_path]) Extracts all meta tag content attributes from a file and returns an array (array)
get_object_vars(object obj) Returns an associative array of object properties (array)
get_parent_class(mixed obj) Retrieves the parent class name for object or class (string)
get_required_files(?) Alias of get_included_files() (?)
get_resource_type(resource handle) Returns the resource type (string)
getallheaders(void) Fetch all HTTP request headers (array)
getcwd(void) gets the current working directory (string)
getdate([int timestamp]) Get date/time information (array)
getenv(string varname) Gets the value of an environment variable (string)
gethostbyaddr(string ip_address) Get the Internet host name corresponding to a given IP address (string)
gethostbyname(string hostname) Get the IP address corresponding to a given Internet host name (string)
gethostbynamel(string hostname) Get a list of IP addresses corresponding to a given Internet host name (array)
getimagesize(string filename [, array imageinfo]) Get the size of an image (array)
getlastmod(void) Gets time of last page modification (int)
getmxrr(string hostname, array mxhosts [, array weight]) Get MX records corresponding to a given Internet host name (int)
getmygid(void) Get PHP script owner's GID (int)
getmyinode(void) Gets the inode of the current script (int)
getmypid(void) Gets PHP's process ID (int)
getmyuid(void) Gets PHP script owner's UID (int)
getopt(string options) Gets options from the command line argument list (string)
getprotobyname(string name) Get protocol number associated with protocol name (int)
getprotobynumber(int number) Get protocol name associated with protocol number (string)
getrandmax(void) Show largest possible random value (int)
getrusage([int who]) Gets the current resource usages (array)
getservbyname(string service, string protocol) Get port number associated with an Internet service and protocol (int)
getservbyport(int port, string protocol) Get Internet service which corresponds to port and protocol (string)
gettext(string message) Lookup a message in the current domain (string)
gettimeofday(void) Get current time (array)
gettype(mixed var) Get the type of a variable (string)
glob(string pattern [, int flags]) Find pathnames matching a pattern (array)
gmdate(string format [, int timestamp]) Format a GMT/UTC date/time (string)
gmmktime([int hour [, int minute [, int second [, int month [, int day [, int year [, int is_dst]]]]]]]) Get UNIX timestamp for a GMT date (int)
gmp_abs(resource a) Absolute value (resource)
gmp_add(resource a, resource b) Add numbers (resource)
gmp_and(resource a, resource b) Logical AND (resource)
gmp_clrbit(resource &a, int index) Clear bit (resource)
gmp_cmp(resource a, resource b) Compare numbers (int)
gmp_com(resource a) Calculates one's complement of a (resource)
gmp_div(?) Alias of gmp_div_q() (?)
gmp_div_q(resource a, resource b [, int round]) Divide numbers (resource)
gmp_div_qr(resource n, resource d [, int round]) Divide numbers and get quotient and remainder (array)
gmp_div_r(resource n, resource d [, int round]) Remainder of the division of numbers (resource)
gmp_divexact(resource n, resource d) Exact division of numbers (resource)
gmp_fact(int a) Factorial (resource)
gmp_gcd(resource a, resource b) Calculate GCD (resource)
gmp_gcdext(resource a, resource b) Calculate GCD and multipliers (array)
gmp_hamdist(resource a, resource b) Hamming distance (int)
gmp_init(mixed number) Create GMP number (resource)
gmp_intval(resource gmpnumber) Convert GMP number to integer (int)
gmp_invert(resource a, resource b) Inverse by modulo (resource)
gmp_jacobi(resource a, resource p) Jacobi symbol (int)
gmp_legendre(resource a, resource p) Legendre symbol (int)
gmp_mod(resource n, resource d) Modulo operation (resource)
gmp_mul(resource a, resource b) Multiply numbers (resource)
gmp_neg(resource a) Negate number (resource)
gmp_or(resource a, resource b) Logical OR (resource)
gmp_perfect_square(resource a) Perfect square check (bool)
gmp_popcount(resource a) Population count (int)
gmp_pow(resource base, int exp) Raise number into power (resource)
gmp_powm(resource base, resource exp, resource mod) Raise number into power with modulo (resource)
gmp_prob_prime(resource a [, int reps]) Check if number is "probably prime" (int)
gmp_random(int limiter) Random number (resource)
gmp_scan0(resource a, int start) Scan for 0 (int)
gmp_scan1(resource a, int start) Scan for 1 (int)
gmp_setbit(resource &a, int index [, bool set_clear]) Set bit (resource)
gmp_sign(resource a) Sign of number (int)
gmp_sqrt(resource a) Square root (resource)
gmp_sqrtrm(resource a) Square root with remainder (array)
gmp_strval(resource gmpnumber [, int base]) Convert GMP number to string (string)
gmp_sub(resource a, resource b) Subtract numbers (resource)
gmp_xor(resource a, resource b) Logical XOR (resource)
gmstrftime(string format [, int timestamp]) Format a GMT/UTC time/date according to locale settings (string)
gzclose(resource zp) Close an open gz-file pointer (int)
gzcompress(string data [, int level]) Compress a string (string)
gzdeflate(string data [, int level]) Deflate a string (string)
gzencode(string data [, int level [, int encoding_mode]]) Create a gzip compressed string (string)
gzeof(resource zp) Test for end-of-file on a gz-file pointer (int)
gzfile(string filename [, int use_include_path]) Read entire gz-file into an array (array)
gzgetc(resource zp) Get character from gz-file pointer (string)
gzgets(resource zp, int length) Get line from file pointer (string)
gzgetss(resource zp, int length [, string allowable_tags]) Get line from gz-file pointer and strip HTML tags (string)
gzinflate(string data [, int length]) Inflate a deflated string (string)
gzopen(string filename, string mode [, int use_include_path]) Open gz-file (resource)
gzpassthru(resource zp) Output all remaining data on a gz-file pointer (int)
gzputs(?) Alias for gzwrite() (?)
gzread(resource zp, int length) Binary-safe gz-file read (string)
gzrewind(resource zp) Rewind the position of a gz-file pointer (int)
gzseek(resource zp, int offset) Seek on a gz-file pointer (int)
gztell(resource zp) Tell gz-file pointer read/write position (int)
gzuncompress(string data [, int length]) Uncompress a deflated string (string)
gzwrite(resource zp, string string [, int length]) Binary-safe gz-file write (int)
header(string string [, bool replace [, int http_response_code]]) Send a raw HTTP header (int)
headers_sent([string &file [, int &line]]) Checks if or where headers have been sent (bool)
hebrev(string hebrew_text [, int max_chars_per_line]) Convert logical Hebrew text to visual text (string)
hebrevc(string hebrew_text [, int max_chars_per_line]) Convert logical Hebrew text to visual text with newline conversion (string)
hexdec(string hex_string) Hexadecimal to decimal (int)
highlight_file(string filename [, bool return]) Syntax highlighting of a file (mixed)
highlight_string(string str [, bool return]) Syntax highlighting of a string (mixed)
html_entity_decode(string string [, int quote_style [, string charset]]) Convert all HTML entities to their applicable characters (string)
htmlentities(string string [, int quote_style [, string charset]]) Convert all applicable characters to HTML entities (string)
htmlspecialchars(string string [, int quote_style [, string charset]]) Convert special characters to HTML entities (string)
hw_Array2Objrec(array object_array) convert attributes from object array to object record (string)
hw_Children(int connection, int objectID) object ids of children (array)
hw_ChildrenObj(int connection, int objectID) object records of children (array)
hw_Close(int connection) closes the Hyperwave connection (int)
hw_Connect(string host, int port, string username, string password) opens a connection (int)
hw_Deleteobject(int connection, int object_to_delete) deletes object (int)
hw_DocByAnchor(int connection, int anchorID) object id object belonging to anchor (int)
hw_DocByAnchorObj(int connection, int anchorID) object record object belonging to anchor (string)
hw_Document_Attributes(int hw_document) object record of hw_document (string)
hw_Document_BodyTag(int hw_document) body tag of hw_document (string)
hw_Document_Content(int hw_document) returns content of hw_document (string)
hw_Document_SetContent(int hw_document, string content) sets/replaces content of hw_document (string)
hw_Document_Size(int hw_document) size of hw_document (int)
hw_EditText(int connection, int hw_document) retrieve text document (int)
hw_Error(int connection) error number (int)
hw_ErrorMsg(int connection) returns error message (string)
hw_Free_Document(int hw_document) frees hw_document (int)
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_GetAndLock(int connection, int objectID) return bject record and lock object (string)
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_GetObject(?) object record (?)
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_GetRemote(int connection, int objectID) Gets a remote document (int)
hw_GetSrcByDestObj(int connection, int objectID) Returns anchors pointing at object (array)
hw_GetText(int connection, int objectID [, mixed rootID/prefix]) retrieve text document (int)
hw_Identify(string username, string password) identifies as user (int)
hw_InCollections(int connection, array object_id_array, array collection_id_array, int return_collections) check if object ids in collections (array)
hw_Info(int connection) info about connection (string)
hw_InsColl(int connection, int objectID, array object_array) insert collection (int)
hw_InsDoc(int connection, int parentID, string object_record, string text) insert document (int)
hw_InsertDocument(int connection, int parent_id, int hw_document) upload any document (int)
hw_InsertObject(int connection, string object_rec, string parameter) inserts an object record (int)
hw_Modifyobject(int connection, int object_to_change, array remove, array add, int mode) modifies object record (int)
hw_New_Document(string object_record, string document_data, int document_size) create new document (int)
hw_Output_Document(int hw_document) prints hw_document (int)
hw_PipeDocument(int connection, int objectID) retrieve any document (int)
hw_Root() root object id (int)
hw_Unlock(int connection, int objectID) unlock object (int)
hw_Who(int connection) List of currently logged in users (int)
hw_api->checkin(array parameter) Checks in an object (object)
hw_api->checkout(array parameter) Checks out an object (object)
hw_api->children(array parameter) Returns children of an object (array)
hw_api->content(array parameter) Returns content of an object (object)
hw_api->copy(array parameter) Copies physically (object)
hw_api->dbstat(array parameter) Returns statistics about database server (object)
hw_api->dcstat(array parameter) Returns statistics about document cache server (object)
hw_api->dstanchors(array parameter) Returns a list of all destination anchors (object)
hw_api->dstofsrcanchors(array parameter) Returns destination of a source anchor (object)
hw_api->find(array parameter) Search for objects (array)
hw_api->ftstat(array parameter) Returns statistics about fulltext server (object)
hw_api->hwstat(array parameter) Returns statistics about Hyperwave server (object)
hw_api->identify(array parameter) Log into Hyperwave Server (object)
hw_api->info(array parameter) Returns information about server configuration (object)
hw_api->insert(array parameter) Inserts a new object (object)
hw_api->insertanchor(array parameter) Inserts a new object of type anchor (object)