forked from SublimeCodeIntel/SublimeCodeIntel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphp-4.4.cix
3286 lines (3286 loc) · 557 KB
/
php-4.4.cix
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
<?xml version="1.0" encoding="utf-8"?>
<codeintel version="2.0" name="PHP 4.4.8" description="Cix data for PHP 4.4.8" file="php-4.4.cix">
<file lang="PHP" mtime="1235684954" path="php-4.4.cix">
<scope ilk="blob" lang="PHP" name="*" id="global">
<scope name="chown" signature="chown()" ilk="function"/>
<scope name="isset" signature="bool isset ( mixed var [, mixed var [, ...]] )" doc="Determine whether a variable is set" ilk="function"/>
<scope name="empty" signature="bool empty ( mixed $var )" doc="Determine whether a variable is considered to be empty." ilk="function"/>
<scope name="unset" signature="void unset ( mixed $var [, mixed $var [, mixed $...]] )" doc="unset() destroys the specified variables." ilk="function"/>
<scope name="dir" signature="dir(string directory)" returns="object" doc="Directory class with properties handle and class and methods read rewind and close" ilk="function" src="dir.c"/>
<scope name="xdebug_break" signature="xdebug_break()" doc="force an xdebug breakpoint here." ilk="function"/>
<scope name="bcadd" signature="bcadd(string left_operand, string right_operand [, int scale])" returns="string" doc="Returns the sum of two arbitrary precision numbers" ilk="function" src="bcmath.c"/>
<scope name="bcsub" signature="bcsub(string left_operand, string right_operand [, int scale])" returns="string" doc="Returns the difference between two arbitrary precision numbers" ilk="function" src="bcmath.c"/>
<scope name="bcmul" signature="bcmul(string left_operand, string right_operand [, int scale])" returns="string" doc="Returns the multiplication of two arbitrary precision numbers" ilk="function" src="bcmath.c"/>
<scope name="bcdiv" signature="bcdiv(string left_operand, string right_operand [, int scale])" returns="string" doc="Returns the quotient of two arbitrary precision numbers division" ilk="function" src="bcmath.c"/>
<scope name="bcmod" signature="bcmod(string left_operand, string right_operand)" returns="string" doc="Returns the modulus of the two arbitrary precision operands" ilk="function" src="bcmath.c"/>
<scope name="bcpow" signature="bcpow(string x, string y [, int scale])" returns="string" doc="Returns the value of an arbitrary precision number raised to the power of another" ilk="function" src="bcmath.c"/>
<scope name="bcsqrt" signature="bcsqrt(string operand [, int scale])" returns="string" doc="Returns the square root of an arbitray precision number" ilk="function" src="bcmath.c"/>
<scope name="bccomp" signature="bccomp(string left_operand, string right_operand [, int scale])" returns="int" doc="Compares two arbitrary precision numbers" ilk="function" src="bcmath.c"/>
<scope name="bcscale" signature="bcscale(int scale)" returns="bool" doc="Sets default scale parameter for all bc math functions" ilk="function" src="bcmath.c"/>
<scope name="bzread" signature="bzread(int bz[, int length])" returns="string" doc="Reads up to length bytes from a BZip stream or bytes if length is not specified" ilk="function" src="bz2.c"/>
<scope name="bzopen" signature="bzopen(string" returns="resource" doc="Opens a new BZip stream" ilk="function" src="bz2.c"/>
<scope name="bzerrno" signature="bzerrno(resource bz)" returns="int" doc="Returns the error number" ilk="function" src="bz2.c"/>
<scope name="bzerrstr" signature="bzerrstr(resource bz)" returns="string" doc="Returns the error string" ilk="function" src="bz2.c"/>
<scope name="bzerror" signature="bzerror(resource bz)" returns="array" doc="Returns the error number and error string in an associative array" ilk="function" src="bz2.c"/>
<scope name="bzcompress" signature="bzcompress(string source [, int blocksize100k [, int workfactor]])" returns="string" doc="Compresses a string into BZip encoded data" ilk="function" src="bz2.c"/>
<scope name="bzdecompress" signature="bzdecompress(string source [, int small])" returns="string" doc="Decompresses BZip compressed data" ilk="function" src="bz2.c"/>
<scope name="unixtojd" signature="unixtojd([int timestamp])" returns="int" doc="Convert UNIX timestamp to Julian Day" ilk="function" src="cal_unix.c"/>
<scope name="jdtounix" signature="jdtounix(int jday)" returns="int" doc="Convert Julian Day to UNIX timestamp" ilk="function" src="cal_unix.c"/>
<scope name="cal_info" signature="cal_info(int calendar)" returns="array" doc="Returns information about a particular calendar" ilk="function" src="calendar.c"/>
<scope name="cal_days_in_month" signature="cal_days_in_month(int calendar, int month, int year)" returns="int" doc="Returns the number of days in a month for a given year and calendar" ilk="function" src="calendar.c"/>
<scope name="cal_to_jd" signature="cal_to_jd(int calendar, int month, int day, int year)" returns="int" doc="Converts from a supported calendar to Julian Day Count" ilk="function" src="calendar.c"/>
<scope name="cal_from_jd" signature="cal_from_jd(int jd, int calendar)" returns="array" doc="Converts from Julian Day Count to a supported calendar and return extended information" ilk="function" src="calendar.c"/>
<scope name="jdtogregorian" signature="jdtogregorian(int juliandaycount)" returns="string" doc="Converts a julian day count to a gregorian calendar date" ilk="function" src="calendar.c"/>
<scope name="gregoriantojd" signature="gregoriantojd(int month, int day, int year)" returns="int" doc="Converts a gregorian calendar date to julian day count" ilk="function" src="calendar.c"/>
<scope name="jdtojulian" signature="jdtojulian(int juliandaycount)" returns="string" doc="Convert a julian day count to a julian calendar date" ilk="function" src="calendar.c"/>
<scope name="juliantojd" signature="juliantojd(int month, int day, int year)" returns="int" doc="Converts a julian calendar date to julian day count" ilk="function" src="calendar.c"/>
<scope name="jdtojewish" signature="jdtojewish(int juliandaycount [, bool hebrew [, int fl]])" returns="string" doc="Converts a julian day count to a jewish calendar date" ilk="function" src="calendar.c"/>
<scope name="jewishtojd" signature="jewishtojd(int month, int day, int year)" returns="int" doc="Converts a jewish calendar date to a julian day count" ilk="function" src="calendar.c"/>
<scope name="jdtofrench" signature="jdtofrench(int juliandaycount)" returns="string" doc="Converts a julian day count to a french republic calendar date" ilk="function" src="calendar.c"/>
<scope name="frenchtojd" signature="frenchtojd(int month, int day, int year)" returns="int" doc="Converts a french republic calendar date to julian day count" ilk="function" src="calendar.c"/>
<scope name="jddayofweek" signature="jddayofweek(int juliandaycount [, int mode])" returns="mixed" doc="Returns name or number of day of week from julian day count" ilk="function" src="calendar.c"/>
<scope name="jdmonthname" signature="jdmonthname(int juliandaycount, int mode)" returns="string" doc="Returns name of month for julian day count" ilk="function" src="calendar.c"/>
<scope name="easter_date" signature="easter_date([int year])" returns="int" doc="Return the timestamp of midnight on Easter of a given year defaults to current year" ilk="function" src="easter.c"/>
<scope name="easter_days" signature="easter_days([int year, [int method]])" returns="int" doc="Return the number of days after March that Easter falls on for a given year defaults to current year" ilk="function" src="easter.c"/>
<scope name="com_load" signature="com_load(string module_name [, string remote_host [, int codepage [, string typelib]]])" returns="int" doc="Loads a COM module" ilk="function" src="COM.c"/>
<scope name="com_invoke_ex" signature="com_invoke_ex(int module, int invokeflags, string handler_name [, mixed arg [, mixed ...]])" returns="mixed" doc="Invokes a COM module" ilk="function" src="COM.c"/>
<scope name="com_invoke" signature="com_invoke(int module, string handler_name [, mixed arg [, mixed ...]])" returns="mixed" doc="Invokes a COM module" ilk="function" src="COM.c"/>
<scope name="com_release" signature="com_release(int module)" returns="mixed" doc="Releases a COM object" ilk="function" src="COM.c"/>
<scope name="com_addref" signature="com_addref(int module)" returns="mixed" doc="Increases the reference counter on a COM object" ilk="function" src="COM.c"/>
<scope name="com_message_pump" signature="com_message_pump([int timeoutms])" returns="bool" doc="Process COM messages sleeping for up to timeoutms milliseconds" ilk="function" src="COM.c"/>
<scope name="com_print_typeinfo" signature="com_print_typeinfo(mixed comobject" returns="bool" doc="Print out a PHP class definition for a dispatchable interface" ilk="function" src="COM.c"/>
<scope name="com_event_sink" signature="com_event_sink(mixed comobject, object sinkobject [, mixed sinkinterface])" returns="bool" doc="Connect events from a COM object to a PHP object" ilk="function" src="COM.c"/>
<scope name="com_propget" signature="com_propget(int module, string property_name [, mixed arg ... ])" returns="mixed" doc="Gets properties from a COM module" ilk="function" src="COM.c"/>
<scope name="com_propput" signature="com_propput(int module, string property_name, mixed value, ...)" returns="bool" doc="Puts the properties for a module" ilk="function" src="COM.c"/>
<scope name="com_load_typelib" signature="com_load_typelib(string typelib_name [, int case_insensitive])" returns="bool" doc="Loads a Typelib" ilk="function" src="COM.c"/>
<scope name="com_isenum" signature="com_isenum(object com_module)" returns="bool" doc="Grabs an IEnumVariant" ilk="function" src="COM.c"/>
<scope name="cpdf_global_set_document_limits" signature="cpdf_global_set_document_limits(int maxPages, int maxFonts, int maxImages, int maxAnnots, int maxObjects)" returns="bool" doc="Sets document settings for all documents" ilk="function" src="cpdf.c"/>
<scope name="cpdf_set_creator" signature="cpdf_set_creator(int pdfdoc, string creator)" returns="bool" doc="Sets the creator field" ilk="function" src="cpdf.c"/>
<scope name="cpdf_set_title" signature="cpdf_set_title(int pdfptr, string title)" returns="bool" doc="Fills the title field of the info structure" ilk="function" src="cpdf.c"/>
<scope name="cpdf_set_subject" signature="cpdf_set_subject(int pdfptr, string subject)" returns="bool" doc="Fills the subject field of the info structure" ilk="function" src="cpdf.c"/>
<scope name="cpdf_set_keywords" signature="cpdf_set_keywords(int pdfptr, string keywords)" returns="bool" doc="Fills the keywords field of the info structure" ilk="function" src="cpdf.c"/>
<scope name="cpdf_set_viewer_preferences" signature="cpdf_set_viewer_preferences(int pdfdoc, array preferences)" returns="bool" doc="How to show the document in the viewer" ilk="function" src="cpdf.c"/>
<scope name="cpdf_open" signature="cpdf_open(int compression [, string filename [, array doc_limits]])" returns="int" doc="Opens a new pdf document" ilk="function" src="cpdf.c"/>
<scope name="cpdf_close" signature="cpdf_close(int pdfdoc)" returns="void" doc="Closes the pdf document" ilk="function" src="cpdf.c"/>
<scope name="cpdf_page_init" signature="cpdf_page_init(int pdfdoc, int pagenr, int orientation, int height, int width [, float unit])" returns="bool" doc="Starts page" ilk="function" src="cpdf.c"/>
<scope name="cpdf_finalize_page" signature="cpdf_finalize_page(int pdfdoc, int pagenr)" returns="bool" doc="Ends the page to save memory" ilk="function" src="cpdf.c"/>
<scope name="cpdf_set_current_page" signature="cpdf_set_current_page(int pdfdoc, int pagenr)" returns="bool" doc="Sets page for output" ilk="function" src="cpdf.c"/>
<scope name="cpdf_begin_text" signature="cpdf_begin_text(int pdfdoc)" returns="bool" doc="Starts text section" ilk="function" src="cpdf.c"/>
<scope name="cpdf_end_text" signature="cpdf_end_text(int pdfdoc)" returns="bool" doc="Ends text section" ilk="function" src="cpdf.c"/>
<scope name="cpdf_show" signature="cpdf_show(int pdfdoc, string text)" returns="bool" doc="Output text at current position" ilk="function" src="cpdf.c"/>
<scope name="cpdf_show_xy" signature="cpdf_show_xy(int pdfdoc, string text, float x-koor, float y-koor [, int mode])" returns="bool" doc="Output text at position" ilk="function" src="cpdf.c"/>
<scope name="cpdf_continue_text" signature="cpdf_continue_text(int pdfdoc, string text)" returns="bool" doc="Outputs text in next line" ilk="function" src="cpdf.c"/>
<scope name="cpdf_text" signature="cpdf_text(int pdfdoc, string text [, float x-koor, float y-koor [, int mode [, float orientation [, int alignmode]]]])" returns="bool" doc="Outputs text" ilk="function" src="cpdf.c"/>
<scope name="cpdf_set_font" signature="cpdf_set_font(int pdfdoc, string font, float size, string encoding)" returns="bool" doc="Selects the current font face size and encoding" ilk="function" src="cpdf.c"/>
<scope name="cpdf_set_font_directories" signature="cpdf_set_font_directories(int pdfdoc, string pfmdir, string pfbdir)" returns="bool" doc="Sets directories to search when using external fonts" ilk="function" src="cpdf.c"/>
<scope name="cpdf_set_font_map_file" signature="cpdf_set_font_map_file(int pdfdoc, string filename)" returns="bool" doc="Sets fontname to filename translation map when using external fonts" ilk="function" src="cpdf.c"/>
<scope name="cpdf_set_leading" signature="cpdf_set_leading(int pdfdoc, float distance)" returns="bool" doc="Sets distance between text lines" ilk="function" src="cpdf.c"/>
<scope name="cpdf_set_text_rendering" signature="cpdf_set_text_rendering(int pdfdoc, int rendermode)" returns="bool" doc="Determines how text is rendered" ilk="function" src="cpdf.c"/>
<scope name="cpdf_set_horiz_scaling" signature="cpdf_set_horiz_scaling(int pdfdoc, float scale)" returns="bool" doc="Sets horizontal scaling of text" ilk="function" src="cpdf.c"/>
<scope name="cpdf_set_text_rise" signature="cpdf_set_text_rise(int pdfdoc, float value)" returns="bool" doc="Sets the text rise" ilk="function" src="cpdf.c"/>
<scope name="cpdf_set_text_matrix" signature="cpdf_set_text_matrix(int pdfdoc, arry matrix)" returns="bool" doc="Sets the text matrix" ilk="function" src="cpdf.c"/>
<scope name="cpdf_set_text_pos" signature="cpdf_set_text_pos(int pdfdoc, float x, float y [, int mode])" returns="bool" doc="Sets the position of text for the next cpdf show call" ilk="function" src="cpdf.c"/>
<scope name="cpdf_rotate_text" signature="cpdf_rotate_text(int pdfdoc, float angle)" returns="bool" doc="Sets text rotation angle" ilk="function" src="cpdf.c"/>
<scope name="cpdf_set_char_spacing" signature="cpdf_set_char_spacing(int pdfdoc, float space)" returns="bool" doc="Sets character spacing" ilk="function" src="cpdf.c"/>
<scope name="cpdf_set_word_spacing" signature="cpdf_set_word_spacing(int pdfdoc, float space)" returns="bool" doc="Sets spacing between words" ilk="function" src="cpdf.c"/>
<scope name="cpdf_stringwidth" signature="cpdf_stringwidth(int pdfdoc, string text)" returns="float" doc="Returns width of text in current font" ilk="function" src="cpdf.c"/>
<scope name="cpdf_save" signature="cpdf_save(int pdfdoc)" returns="bool" doc="Saves current enviroment" ilk="function" src="cpdf.c"/>
<scope name="cpdf_restore" signature="cpdf_restore(int pdfdoc)" returns="bool" doc="Restores formerly saved enviroment" ilk="function" src="cpdf.c"/>
<scope name="cpdf_translate" signature="cpdf_translate(int pdfdoc, float x, float y)" returns="bool" doc="Sets origin of coordinate system" ilk="function" src="cpdf.c"/>
<scope name="cpdf_scale" signature="cpdf_scale(int pdfdoc, float x_scale, float y_scale)" returns="bool" doc="Sets scaling" ilk="function" src="cpdf.c"/>
<scope name="cpdf_rotate" signature="cpdf_rotate(int pdfdoc, float angle)" returns="bool" doc="Sets rotation" ilk="function" src="cpdf.c"/>
<scope name="cpdf_setflat" signature="cpdf_setflat(int pdfdoc, float value)" returns="bool" doc="Sets flatness" ilk="function" src="cpdf.c"/>
<scope name="cpdf_setlinejoin" signature="cpdf_setlinejoin(int pdfdoc, int value)" returns="bool" doc="Sets linejoin parameter" ilk="function" src="cpdf.c"/>
<scope name="cpdf_setlinecap" signature="cpdf_setlinecap(int pdfdoc, int value)" returns="bool" doc="Sets linecap parameter" ilk="function" src="cpdf.c"/>
<scope name="cpdf_setmiterlimit" signature="cpdf_setmiterlimit(int pdfdoc, float value)" returns="bool" doc="Sets miter limit" ilk="function" src="cpdf.c"/>
<scope name="cpdf_setlinewidth" signature="cpdf_setlinewidth(int pdfdoc, float width)" returns="bool" doc="Sets line width" ilk="function" src="cpdf.c"/>
<scope name="cpdf_setdash" signature="cpdf_setdash(int pdfdoc, long white, long black)" returns="bool" doc="Sets dash pattern" ilk="function" src="cpdf.c"/>
<scope name="cpdf_moveto" signature="cpdf_moveto(int pdfdoc, float x, float y [, int mode])" returns="bool" doc="Sets current point" ilk="function" src="cpdf.c"/>
<scope name="cpdf_rmoveto" signature="cpdf_rmoveto(int pdfdoc, float x, float y [, int mode])" returns="bool" doc="Sets current point" ilk="function" src="cpdf.c"/>
<scope name="cpdf_curveto" signature="cpdf_curveto(int pdfdoc, float x1, float y1, float x2, float y2, float x3, float y3 [, int mode])" returns="bool" doc="Draws a curve" ilk="function" src="cpdf.c"/>
<scope name="cpdf_lineto" signature="cpdf_lineto(int pdfdoc, float x, float y [, int mode])" returns="bool" doc="Draws a line" ilk="function" src="cpdf.c"/>
<scope name="cpdf_rlineto" signature="cpdf_rlineto(int pdfdoc, float x, float y [, int mode])" returns="bool" doc="Draws a line relative to current point" ilk="function" src="cpdf.c"/>
<scope name="cpdf_circle" signature="cpdf_circle(int pdfdoc, float x, float y, float radius [, int mode])" returns="bool" doc="Draws a circle" ilk="function" src="cpdf.c"/>
<scope name="cpdf_arc" signature="cpdf_arc(int pdfdoc, float x, float y, float radius, float start, float end [, int mode])" returns="bool" doc="Draws an arc" ilk="function" src="cpdf.c"/>
<scope name="cpdf_rect" signature="cpdf_rect(int pdfdoc, float x, float y, float width, float height [, int mode])" returns="bool" doc="Draws a rectangle" ilk="function" src="cpdf.c"/>
<scope name="cpdf_newpath" signature="cpdf_newpath(int pdfdoc)" returns="bool" doc="Starts new path" ilk="function" src="cpdf.c"/>
<scope name="cpdf_closepath" signature="cpdf_closepath(int pdfdoc)" returns="bool" doc="Close path" ilk="function" src="cpdf.c"/>
<scope name="cpdf_closepath_stroke" signature="cpdf_closepath_stroke(int pdfdoc)" returns="bool" doc="Close path and draw line along path" ilk="function" src="cpdf.c"/>
<scope name="cpdf_stroke" signature="cpdf_stroke(int pdfdoc)" returns="bool" doc="Draws line along path path" ilk="function" src="cpdf.c"/>
<scope name="cpdf_fill" signature="cpdf_fill(int pdfdoc)" returns="bool" doc="Fills current path" ilk="function" src="cpdf.c"/>
<scope name="cpdf_fill_stroke" signature="cpdf_fill_stroke(int pdfdoc)" returns="bool" doc="Fills and stroke current path" ilk="function" src="cpdf.c"/>
<scope name="cpdf_closepath_fill_stroke" signature="cpdf_closepath_fill_stroke(int pdfdoc)" returns="bool" doc="Close fill and stroke current path" ilk="function" src="cpdf.c"/>
<scope name="cpdf_clip" signature="cpdf_clip(int pdfdoc)" returns="bool" doc="Clips to current path" ilk="function" src="cpdf.c"/>
<scope name="cpdf_setgray_fill" signature="cpdf_setgray_fill(int pdfdoc, float value)" returns="bool" doc="Sets filling color to gray value" ilk="function" src="cpdf.c"/>
<scope name="cpdf_setgray_stroke" signature="cpdf_setgray_stroke(int pdfdoc, float value)" returns="bool" doc="Sets drawing color to gray value" ilk="function" src="cpdf.c"/>
<scope name="cpdf_setgray" signature="cpdf_setgray(int pdfdoc, float value)" returns="bool" doc="Sets drawing and filling color to gray value" ilk="function" src="cpdf.c"/>
<scope name="cpdf_setrgbcolor_fill" signature="cpdf_setrgbcolor_fill(int pdfdoc, float red, float green, float blue)" returns="bool" doc="Sets filling color to rgb color value" ilk="function" src="cpdf.c"/>
<scope name="cpdf_setrgbcolor_stroke" signature="cpdf_setrgbcolor_stroke(int pdfdoc, float red, float green, float blue)" returns="bool" doc="Sets drawing color to RGB color value" ilk="function" src="cpdf.c"/>
<scope name="cpdf_setrgbcolor" signature="cpdf_setrgbcolor(int pdfdoc, float red, float green, float blue)" returns="bool" doc="Sets drawing and filling color to RGB color value" ilk="function" src="cpdf.c"/>
<scope name="cpdf_set_page_animation" signature="cpdf_set_page_animation(int pdfdoc, int transition, float duration, float direction, int orientation, int inout)" returns="bool" doc="Sets transition between pages" ilk="function" src="cpdf.c"/>
<scope name="cpdf_finalize" signature="cpdf_finalize(int pdfdoc)" returns="bool" doc="Creates PDF doc in memory" ilk="function" src="cpdf.c"/>
<scope name="cpdf_output_buffer" signature="cpdf_output_buffer(int pdfdoc)" returns="bool" doc="Returns the internal memory stream as string" ilk="function" src="cpdf.c"/>
<scope name="cpdf_save_to_file" signature="cpdf_save_to_file(int pdfdoc, string filename)" returns="bool" doc="Saves the internal memory stream to a file" ilk="function" src="cpdf.c"/>
<scope name="cpdf_import_jpeg" signature="cpdf_import_jpeg(int pdfdoc, string filename, float x, float y, float angle, float width, float height, float x_scale, float y_scale, int gsave [, int mode])" returns="bool" doc="Includes JPEG image" ilk="function" src="cpdf.c"/>
<scope name="cpdf_place_inline_image" signature="cpdf_place_inline_image(int pdfdoc, int gdimage, float x, float y, float angle, fload width, float height, int gsave [, int mode])" returns="bool" doc="Includes image" ilk="function" src="cpdf.c"/>
<scope name="cpdf_add_annotation" signature="cpdf_add_annotation(int pdfdoc, float xll, float yll, float xur, float xur, string title, string text [, int mode])" returns="bool" doc="Sets annotation" ilk="function" src="cpdf.c"/>
<scope name="cpdf_set_action_url" signature="cpdf_set_action_url(int pdfdoc, float xll, float yll, float xur, float xur, string url [, int mode])" returns="void" doc="Sets hyperlink" ilk="function" src="cpdf.c"/>
<scope name="cpdf_add_outline" signature="cpdf_add_outline(int pdfdoc, int lastoutline, int sublevel, int open, int pagenr, string title)" returns="int" doc="Adds outline" ilk="function" src="cpdf.c"/>
<scope name="crack_opendict" signature="crack_opendict(string dictionary)" returns="resource" doc="Opens a new cracklib dictionary" ilk="function" src="crack.c"/>
<scope name="crack_closedict" signature="crack_closedict([resource dictionary])" returns="bool" doc="Closes an open cracklib dictionary" ilk="function" src="crack.c"/>
<scope name="crack_check" signature="crack_check([resource dictionary,] string password)" returns="bool" doc="Performs an obscure check with the given password" ilk="function" src="crack.c"/>
<scope name="crack_getlastmessage" signature="crack_getlastmessage(void)" returns="string" doc="Returns the message from the last obscure check" ilk="function" src="crack.c"/>
<scope name="ctype_alnum" signature="ctype_alnum(mixed c)" returns="bool" doc="Checks for alphanumeric character s" ilk="function" src="ctype.c"/>
<scope name="ctype_alpha" signature="ctype_alpha(mixed c)" returns="bool" doc="Checks for alphabetic character s" ilk="function" src="ctype.c"/>
<scope name="ctype_cntrl" signature="ctype_cntrl(mixed c)" returns="bool" doc="Checks for control character s" ilk="function" src="ctype.c"/>
<scope name="ctype_digit" signature="ctype_digit(mixed c)" returns="bool" doc="Checks for numeric character s" ilk="function" src="ctype.c"/>
<scope name="ctype_lower" signature="ctype_lower(mixed c)" returns="bool" doc="Checks for lowercase character s" ilk="function" src="ctype.c"/>
<scope name="ctype_graph" signature="ctype_graph(mixed c)" returns="bool" doc="Checks for any printable character s except space" ilk="function" src="ctype.c"/>
<scope name="ctype_print" signature="ctype_print(mixed c)" returns="bool" doc="Checks for printable character s" ilk="function" src="ctype.c"/>
<scope name="ctype_punct" signature="ctype_punct(mixed c)" returns="bool" doc="Checks for any printable character which is not whitespace or an alphanumeric character" ilk="function" src="ctype.c"/>
<scope name="ctype_space" signature="ctype_space(mixed c)" returns="bool" doc="Checks for whitespace character s" ilk="function" src="ctype.c"/>
<scope name="ctype_upper" signature="ctype_upper(mixed c)" returns="bool" doc="Checks for uppercase character s" ilk="function" src="ctype.c"/>
<scope name="ctype_xdigit" signature="ctype_xdigit(mixed c)" returns="bool" doc="Checks for character s representing a hexadecimal digit" ilk="function" src="ctype.c"/>
<scope name="curl_version" signature="curl_version(void)" returns="string" doc="Return cURL version information" ilk="function" src="curl.c"/>
<scope name="curl_init" signature="curl_init([string url])" returns="resource" doc="Initialize a CURL session" ilk="function" src="curl.c"/>
<scope name="curl_setopt" signature="curl_setopt(resource ch, int option, mixed value)" returns="bool" doc="Set an option for a CURL transfer" ilk="function" src="curl.c"/>
<scope name="curl_exec" signature="curl_exec(resource ch)" returns="bool" doc="Perform a CURL session" ilk="function" src="curl.c"/>
<scope name="curl_getinfo" signature="curl_getinfo(resource ch, int opt)" returns="mixed" doc="Get information regarding a specific transfer" ilk="function" src="curl.c"/>
<scope name="curl_error" signature="curl_error(resource ch)" returns="string" doc="Return a string contain the last error for the current session" ilk="function" src="curl.c"/>
<scope name="curl_errno" signature="curl_errno(resource ch)" returns="int" doc="Return an integer containing the last error number" ilk="function" src="curl.c"/>
<scope name="curl_close" signature="curl_close(resource ch)" returns="void" doc="Close a CURL session" ilk="function" src="curl.c"/>
<scope name="cyrus_connect" signature="cyrus_connect([ string host [, string port [, int flags]]])" returns="resource" doc="Connect to a Cyrus IMAP server" ilk="function" src="cyrus.c"/>
<scope name="cyrus_authenticate" signature="cyrus_authenticate( resource connection [, string mechlist [, string service [, string user [, int minssf [, int maxssf]]]]])" returns="void" doc="Authenticate agaings a Cyrus IMAP server" ilk="function" src="cyrus.c"/>
<scope name="cyrus_bind" signature="cyrus_bind( resource connection, array callbacks)" returns="bool" doc="Bind callbacks to a Cyrus IMAP connection" ilk="function" src="cyrus.c"/>
<scope name="cyrus_unbind" signature="cyrus_unbind( resource connection, string trigger_name)" returns="bool" doc="Unbind" ilk="function" src="cyrus.c"/>
<scope name="cyrus_query" signature="cyrus_query( resource connection, string query)" returns="bool" doc="Send a query to a Cyrus IMAP server" ilk="function" src="cyrus.c"/>
<scope name="cyrus_close" signature="cyrus_close( resource connection)" returns="bool" doc="Close connection to a cyrus server" ilk="function" src="cyrus.c"/>
<scope name="dblist" signature="dblist(void)" returns="string" doc="Describes the dbm-compatible library being used" ilk="function" src="db.c"/>
<scope name="dbmopen" signature="dbmopen(string filename, string mode)" returns="int" doc="Opens a dbm database" ilk="function" src="db.c"/>
<scope name="dbmclose" signature="dbmclose(int dbm_identifier)" returns="bool" doc="Closes a dbm database" ilk="function" src="db.c"/>
<scope name="dbminsert" signature="dbminsert(int dbm_identifier, string key, string value)" returns="int" doc="Inserts a value for a key in a dbm database" ilk="function" src="db.c"/>
<scope name="dbmreplace" signature="dbmreplace(int dbm_identifier, string key, string value)" returns="int" doc="Replaces the value for a key in a dbm database" ilk="function" src="db.c"/>
<scope name="dbmfetch" signature="dbmfetch(int dbm_identifier, string key)" returns="string" doc="Fetches a value for a key from a dbm database" ilk="function" src="db.c"/>
<scope name="dbmexists" signature="dbmexists(int dbm_identifier, string key)" returns="int" doc="Tells if a value exists for a key in a dbm database" ilk="function" src="db.c"/>
<scope name="dbmdelete" signature="dbmdelete(int dbm_identifier, string key)" returns="int" doc="Deletes the value for a key from a dbm database" ilk="function" src="db.c"/>
<scope name="dbmfirstkey" signature="dbmfirstkey(int dbm_identifier)" returns="string" doc="Retrieves the first key from a dbm database" ilk="function" src="db.c"/>
<scope name="dbmnextkey" signature="dbmnextkey(int dbm_identifier, string key)" returns="string" doc="Retrieves the next key from a dbm database" ilk="function" src="db.c"/>
<scope name="dba_popen" signature="dba_popen(string path, string mode [, string handlername, string ...])" returns="resource" doc="Opens path using the specified handler in mode persistently" ilk="function" src="dba.c"/>
<scope name="dba_open" signature="dba_open(string path, string mode [, string handlername, string ...])" returns="resource" doc="Opens path using the specified handler in mode" ilk="function" src="dba.c"/>
<scope name="dba_close" signature="dba_close(resource handle)" returns="void" doc="Closes database" ilk="function" src="dba.c"/>
<scope name="dba_exists" signature="dba_exists(string key, resource handle)" returns="bool" doc="Checks if the specified key exists" ilk="function" src="dba.c"/>
<scope name="dba_fetch" signature="dba_fetch(string key, [int skip ,] resource handle)" returns="string" doc="Fetches the data associated with key" ilk="function" src="dba.c"/>
<scope name="dba_firstkey" signature="dba_firstkey(resource handle)" returns="string" doc="Resets the internal key pointer and returns the first key" ilk="function" src="dba.c"/>
<scope name="dba_nextkey" signature="dba_nextkey(resource handle)" returns="string" doc="Returns the next key" ilk="function" src="dba.c"/>
<scope name="dba_delete" signature="dba_delete(string key, resource handle)" returns="bool" doc="Deletes the entry associated with key If inifile remove all other key lines" ilk="function" src="dba.c"/>
<scope name="dba_insert" signature="dba_insert(string key, string value, resource handle)" returns="bool" doc="If not inifile Insert value as key return false if key exists already If inifile Add vakue as key next" ilk="function" src="dba.c"/>
<scope name="dba_replace" signature="dba_replace(string key, string value, resource handle)" returns="bool" doc="Inserts value as key replaces key if key exists already If inifile remove all other key lines" ilk="function" src="dba.c"/>
<scope name="dba_optimize" signature="dba_optimize(resource handle)" returns="bool" doc="Optimizes e g clean up vacuum database" ilk="function" src="dba.c"/>
<scope name="dba_sync" signature="dba_sync(resource handle)" returns="bool" doc="Synchronizes database" ilk="function" src="dba.c"/>
<scope name="dba_handlers" signature="dba_handlers([bool full_info])" returns="array" doc="List configured database handlers" ilk="function" src="dba.c"/>
<scope name="dba_list" signature="dba_list()" returns="array" doc="List opened databases" ilk="function" src="dba.c"/>
<scope name="dbase_open" signature="dbase_open(string name, int mode)" returns="int" doc="Opens a dBase-format database file" ilk="function" src="dbase.c"/>
<scope name="dbase_close" signature="dbase_close(int identifier)" returns="bool" doc="Closes an open dBase-format database file" ilk="function" src="dbase.c"/>
<scope name="dbase_numrecords" signature="dbase_numrecords(int identifier)" returns="int" doc="Returns the number of records in the database" ilk="function" src="dbase.c"/>
<scope name="dbase_numfields" signature="dbase_numfields(int identifier)" returns="int" doc="Returns the number of fields columns in the database" ilk="function" src="dbase.c"/>
<scope name="dbase_pack" signature="dbase_pack(int identifier)" returns="bool" doc="Packs the database deletes records marked for deletion" ilk="function" src="dbase.c"/>
<scope name="dbase_add_record" signature="dbase_add_record(int identifier, array data)" returns="bool" doc="Adds a record to the database" ilk="function" src="dbase.c"/>
<scope name="dbase_replace_record" signature="dbase_replace_record(int identifier, array data, int recnum)" returns="bool" doc="Replaces a record to the database" ilk="function" src="dbase.c"/>
<scope name="dbase_delete_record" signature="dbase_delete_record(int identifier, int record)" returns="bool" doc="Marks a record to be deleted" ilk="function" src="dbase.c"/>
<scope name="dbase_get_record" signature="dbase_get_record(int identifier, int record)" returns="array" doc="Returns an array representing a record from the database" ilk="function" src="dbase.c"/>
<scope name="dbase_get_record_with_names" signature="dbase_get_record_with_names(int identifier, int record)" returns="array" doc="Returns an associative array representing a record from the database" ilk="function" src="dbase.c"/>
<scope name="dbase_create" signature="dbase_create(string filename, array fields)" returns="bool" doc="Creates a new dBase-format database file" ilk="function" src="dbase.c"/>
<scope name="dbx_connect" signature="dbx_connect(string module_name, string host, string db, string username, string password [, bool persistent])" returns="dbx_link_object" doc="Returns a dbx link object on success and returns on failure" ilk="function" src="dbx.c"/>
<scope name="dbx_close" signature="dbx_close(dbx_link_object dbx_link)" returns="bool" doc="Returns success or failure" ilk="function" src="dbx.c"/>
<scope name="dbx_query" signature="dbx_query(dbx_link_object dbx_link, string sql_statement [, long flags])" returns="dbx_result_object" doc="Returns a dbx link object on success and returns on failure" ilk="function" src="dbx.c"/>
<scope name="dbx_error" signature="dbx_error(dbx_link_object dbx_link)" returns="void" doc="Returns success or failure" ilk="function" src="dbx.c"/>
<scope name="dbx_esc" signature="dbx_esc(dbx_link_object dbx_link, string sz)" returns="string" doc="Returns escaped string or NULL on error" ilk="function" src="dbx.c"/>
<scope name="dbx_compare" signature="dbx_compare(array row_x, array row_y, string columnname [, int flags])" returns="int" doc="Returns row y columnname - row x columnname converted to - or" ilk="function" src="dbx.c"/>
<scope name="dbx_sort" signature="dbx_sort(object dbx_result, string compare_function_name)" returns="int" doc="Returns on failure on success" ilk="function" src="dbx.c"/>
<scope name="dio_open" signature="dio_open(string filename, int flags[, int mode])" returns="resource" doc="Open a new filename with specified permissions of flags and creation permissions of mode" ilk="function" src="dio.c"/>
<scope name="dio_read" signature="dio_read(resource fd[, int n])" returns="string" doc="Read n bytes from fd and return them if n is not specified read k" ilk="function" src="dio.c"/>
<scope name="dio_write" signature="dio_write(resource fd, string data[, int len])" returns="int" doc="Write data to fd with optional truncation at length" ilk="function" src="dio.c"/>
<scope name="dio_truncate" signature="dio_truncate(resource fd, int offset)" returns="bool" doc="Truncate file descriptor fd to offset bytes" ilk="function" src="dio.c"/>
<scope name="dio_stat" signature="dio_stat(resource fd)" returns="array" doc="Get stat information about the file descriptor fd" ilk="function" src="dio.c"/>
<scope name="dio_seek" signature="dio_seek(resource fd, int pos, int whence)" returns="int" doc="Seek to pos on fd from whence" ilk="function" src="dio.c"/>
<scope name="dio_fcntl" signature="dio_fcntl(resource fd, int cmd[, mixed arg])" returns="mixed" doc="Perform a c library fcntl on fd" ilk="function" src="dio.c"/>
<scope name="dio_tcsetattr" signature="dio_tcsetattr(resource fd, array args )" returns="mixed" doc="Perform a c library tcsetattr on fd" ilk="function" src="dio.c"/>
<scope name="dio_close" signature="dio_close(resource fd)" returns="void" doc="Close the file descriptor given by fd" ilk="function" src="dio.c"/>
<scope name="domxml_test" signature="domxml_test(int id)" returns="int" doc="Unity function for testing" ilk="function" src="php_domxml.c"/>
<scope name="domxml_attr_name" signature="domxml_attr_name(void)" returns="array" doc="Returns list of attribute names Notice domxml node name does exactly the same for attribute-nodes is this function here still" ilk="function" src="php_domxml.c"/>
<scope name="domxml_attr_value" signature="domxml_attr_value(void)" returns="array" doc="Returns list of attribute names" ilk="function" src="php_domxml.c"/>
<scope name="domxml_attr_set_value" signature="domxml_attr_set_value(string content)" returns="bool" doc="Set value of attribute" ilk="function" src="php_domxml.c"/>
<scope name="domxml_attr_specified" signature="domxml_attr_specified(void)" returns="array" doc="Returns list of attribute names" ilk="function" src="php_domxml.c"/>
<scope name="domxml_pi_target" signature="domxml_pi_target(void)" returns="array" doc="Returns target of pi" ilk="function" src="php_domxml.c"/>
<scope name="domxml_pi_data" signature="domxml_pi_data(void)" returns="array" doc="Returns data of pi" ilk="function" src="php_domxml.c"/>
<scope name="domxml_cdata_length" signature="domxml_cdata_length(void)" returns="array" doc="Returns list of attribute names" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node" signature="domxml_node(string name)" returns="object" doc="Creates node" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_name" signature="domxml_node_name(void)" returns="object" doc="Returns name of node" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_value" signature="domxml_node_value(void)" returns="object" doc="Returns name of value" ilk="function" src="php_domxml.c"/>
<scope name="domxml_is_blank_node" signature="domxml_is_blank_node(void)" returns="bool" doc="Returns true if node is blank" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_type" signature="domxml_node_type(void)" returns="int" doc="Returns the type of the node" ilk="function" src="php_domxml.c"/>
<scope name="domxml_clone_node" signature="domxml_clone_node([bool deep])" returns="object" doc="Clones a node" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_first_child" signature="domxml_node_first_child(void)" returns="object" doc="Returns first child from list of children" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_last_child" signature="domxml_node_last_child(void)" returns="object" doc="Returns last child from list of children" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_next_sibling" signature="domxml_node_next_sibling(void)" returns="object" doc="Returns next child from list of children" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_previous_sibling" signature="domxml_node_previous_sibling(void)" returns="object" doc="Returns previous child from list of children" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_owner_document" signature="domxml_node_owner_document(void)" returns="object" doc="Returns document this node belongs to" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_has_child_nodes" signature="domxml_node_has_child_nodes(void)" returns="object" doc="Returns true if node has children" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_has_attributes" signature="domxml_node_has_attributes(void)" returns="object" doc="Returns true if node has attributes" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_prefix" signature="domxml_node_prefix(void)" returns="string" doc="Returns namespace prefix of node" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_namespace_uri" signature="domxml_node_namespace_uri(void)" returns="string" doc="Returns namespace uri of node" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_parent" signature="domxml_node_parent(void)" returns="object" doc="Returns parent of node" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_children" signature="domxml_node_children(void)" returns="array" doc="Returns list of children nodes" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_unlink_node" signature="domxml_node_unlink_node([object node])" returns="void" doc="Deletes the node from tree but not from memory" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_replace_node" signature="domxml_node_replace_node(object domnode)" returns="object" doc="Replaces one node with another node" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_append_child" signature="domxml_node_append_child(object domnode)" returns="object" doc="Adds node to list of children" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_append_sibling" signature="domxml_node_append_sibling(object domnode)" returns="object" doc="Adds node to list of siblings" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_insert_before" signature="domxml_node_insert_before(object newnode, object refnode)" returns="object" doc="Adds node in list of nodes before given node" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_remove_child" signature="domxml_node_remove_child(object domnode)" returns="object" doc="Removes node from list of children" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_replace_child" signature="domxml_node_replace_child(object newnode, object oldnode)" returns="object" doc="Replaces node in list of children" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_set_name" signature="domxml_node_set_name(string name)" returns="bool" doc="Sets name of a node" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_attributes" signature="domxml_node_attributes(void)" returns="array" doc="Returns list of attributes of node" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_new_child" signature="domxml_node_new_child(string name, string content)" returns="object" doc="Adds child node to parent node" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_set_content" signature="domxml_node_set_content(string content)" returns="bool" doc="Sets content of a node" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_get_content" signature="domxml_node_get_content()" returns="string" doc="Gets content of a node Read the value of a node this can be either the text carried directly by" ilk="function" src="php_domxml.c"/>
<scope name="domxml_notation_public_id" signature="domxml_notation_public_id(void)" returns="string" doc="Returns public id of notation node" ilk="function" src="php_domxml.c"/>
<scope name="domxml_notation_system_id" signature="domxml_notation_system_id(void)" returns="string" doc="Returns system ID of notation node" ilk="function" src="php_domxml.c"/>
<scope name="domxml_element" signature="domxml_element(string name)" returns="object" doc="Constructor of DomElement" ilk="function" src="php_domxml.c"/>
<scope name="domxml_elem_tagname" signature="domxml_elem_tagname(void)" returns="string" doc="Returns tag name of element node" ilk="function" src="php_domxml.c"/>
<scope name="domxml_elem_get_attribute" signature="domxml_elem_get_attribute(string attrname)" returns="string" doc="Returns value of given attribute" ilk="function" src="php_domxml.c"/>
<scope name="domxml_elem_set_attribute" signature="domxml_elem_set_attribute(string attrname, string value)" returns="bool" doc="Sets value of given attribute" ilk="function" src="php_domxml.c"/>
<scope name="domxml_elem_remove_attribute" signature="domxml_elem_remove_attribute(string attrname)" returns="string" doc="Removes given attribute" ilk="function" src="php_domxml.c"/>
<scope name="domxml_elem_get_attribute_node" signature="domxml_elem_get_attribute_node(string attrname)" returns="string" doc="Returns value of given attribute" ilk="function" src="php_domxml.c"/>
<scope name="domxml_elem_set_attribute_node" signature="domxml_elem_set_attribute_node(object attr)" returns="bool" doc="Sets value of given attribute" ilk="function" src="php_domxml.c"/>
<scope name="domxml_elem_has_attribute" signature="domxml_elem_has_attribute(string attrname)" returns="string" doc="Checks for existenz given attribute" ilk="function" src="php_domxml.c"/>
<scope name="domxml_doc_get_elements_by_tagname" signature="domxml_doc_get_elements_by_tagname(string tagname [,object xpathctx_handle] )" returns="string" doc="Returns array with nodes with given tagname in document or empty array if not found" ilk="function" src="php_domxml.c"/>
<scope name="domxml_doc_get_element_by_id" signature="domxml_doc_get_element_by_id(string id)" returns="string" doc="Returns element for given id or false if not found" ilk="function" src="php_domxml.c"/>
<scope name="domxml_elem_get_elements_by_tagname" signature="domxml_elem_get_elements_by_tagname(string tagname)" returns="string" doc="Returns array with nodes with given tagname in element or empty array if not found" ilk="function" src="php_domxml.c"/>
<scope name="domxml_doctype_name" signature="domxml_doctype_name(void)" returns="array" doc="Returns name of DocumentType" ilk="function" src="php_domxml.c"/>
<scope name="domxml_doctype_system_id" signature="domxml_doctype_system_id(void)" returns="array" doc="Returns system id of DocumentType" ilk="function" src="php_domxml.c"/>
<scope name="domxml_doctype_public_id" signature="domxml_doctype_public_id(void)" returns="array" doc="Returns public id of DocumentType" ilk="function" src="php_domxml.c"/>
<scope name="domxml_doctype_entities" signature="domxml_doctype_entities(void)" returns="array" doc="Returns list of entities" ilk="function" src="php_domxml.c"/>
<scope name="domxml_doctype_notations" signature="domxml_doctype_notations(void)" returns="array" doc="Returns list of notations" ilk="function" src="php_domxml.c"/>
<scope name="domxml_doc_doctype" signature="domxml_doc_doctype(void)" returns="object" doc="Returns DomDocumentType" ilk="function" src="php_domxml.c"/>
<scope name="domxml_doc_implementation" signature="domxml_doc_implementation(void)" returns="object" doc="Returns DomeDOMImplementation" ilk="function" src="php_domxml.c"/>
<scope name="domxml_doc_document_element" signature="domxml_doc_document_element(int domnode)" returns="object" doc="Returns root node of document" ilk="function" src="php_domxml.c"/>
<scope name="domxml_doc_create_element" signature="domxml_doc_create_element(string name)" returns="object" doc="Creates new element node" ilk="function" src="php_domxml.c"/>
<scope name="domxml_doc_create_element_ns" signature="domxml_doc_create_element_ns(string uri, string name [, string prefix])" returns="object" doc="Creates new element node with a namespace" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_add_namespace" signature="domxml_node_add_namespace(string uri, string prefix)" returns="bool" doc="Adds a namespace declaration to a node" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_set_namespace" signature="domxml_node_set_namespace(string uri [, string prefix])" returns="void" doc="Sets the namespace of a node" ilk="function" src="php_domxml.c"/>
<scope name="domxml_doc_create_text_node" signature="domxml_doc_create_text_node(string content)" returns="object" doc="Creates new text node" ilk="function" src="php_domxml.c"/>
<scope name="domxml_doc_create_comment" signature="domxml_doc_create_comment(string content)" returns="object" doc="Creates new comment node" ilk="function" src="php_domxml.c"/>
<scope name="domxml_doc_create_attribute" signature="domxml_doc_create_attribute(string name, string value)" returns="object" doc="Creates new attribute node" ilk="function" src="php_domxml.c"/>
<scope name="domxml_doc_create_cdata_section" signature="domxml_doc_create_cdata_section(string content)" returns="object" doc="Creates new cdata node" ilk="function" src="php_domxml.c"/>
<scope name="domxml_doc_create_entity_reference" signature="domxml_doc_create_entity_reference(string name)" returns="object" doc="Creates new cdata node" ilk="function" src="php_domxml.c"/>
<scope name="domxml_doc_create_processing_instruction" signature="domxml_doc_create_processing_instruction(string name)" returns="object" doc="Creates new processing instruction node" ilk="function" src="php_domxml.c"/>
<scope name="domxml_doc_imported_node" signature="domxml_doc_imported_node(object node, bool recursive)" returns="object" doc="Creates new element node" ilk="function" src="php_domxml.c"/>
<scope name="domxml_dtd" signature="domxml_dtd(void)" returns="object" doc="Returns DTD of document" ilk="function" src="php_domxml.c"/>
<scope name="domxml_dump_mem" signature="domxml_dump_mem(object doc_handle [, int format][, encoding])" returns="string" doc="Dumps document into string and optionally formats it" ilk="function" src="php_domxml.c"/>
<scope name="domxml_dump_mem_file" signature="domxml_dump_mem_file(string filename [, int compressmode [, int format]])" returns="int" doc="Dumps document into file and uses compression if specified Returns false on error otherwise the length of the xml-document uncompressed" ilk="function" src="php_domxml.c"/>
<scope name="domxml_dump_node" signature="domxml_dump_node(object doc_handle, object node_handle [, int format [, int level]])" returns="string" doc="Dumps node into string" ilk="function" src="php_domxml.c"/>
<scope name="domxml_doc_ids" signature="domxml_doc_ids(object doc_handle)" returns="string" doc="Returns array of ids" ilk="function" src="php_domxml.c"/>
<scope name="xmldoc" signature="xmldoc(string xmldoc[, int mode[, array error]])" returns="object" doc="Creates DOM object of XML document" ilk="function" src="php_domxml.c"/>
<scope name="xmldocfile" signature="xmldocfile(string filename[, int mode[, array error])" returns="object" doc="Creates DOM object of XML document in file" ilk="function" src="php_domxml.c"/>
<scope name="domxml_html_dump_mem" signature="domxml_html_dump_mem([int doc_handle])" returns="string" doc="Dumps document into string as HTML" ilk="function" src="php_domxml.c"/>
<scope name="html_doc" signature="html_doc(string html_doc [, bool from_file])" returns="object" doc="Creates DOM object of HTML document" ilk="function" src="php_domxml.c"/>
<scope name="html_doc_file" signature="html_doc_file(string filename)" returns="object" doc="Creates DOM object of HTML document in file" ilk="function" src="php_domxml.c"/>
<scope name="domxml_substitute_entities_default" signature="domxml_substitute_entities_default(bool enable)" returns="bool" doc="Set and return the previous value for default entity support" ilk="function" src="php_domxml.c"/>
<scope name="domxml_node_text_concat" signature="domxml_node_text_concat(string content)" returns="bool" doc="Add string tocontent of a node" ilk="function" src="php_domxml.c"/>
<scope name="domxml_add_root" signature="domxml_add_root(string name)" returns="object" doc="Adds root node to document" ilk="function" src="php_domxml.c"/>
<scope name="domxml_set_root" signature="domxml_set_root(int domnode)" returns="bool" doc="Sets root node of document" ilk="function" src="php_domxml.c"/>
<scope name="domxml_doc_validate" signature="domxml_doc_validate(array &error)" returns="bool" doc="Validates a DomDocument according to his DTD" ilk="function" src="php_domxml.c"/>
<scope name="domxml_new_xmldoc" signature="domxml_new_xmldoc(string version)" returns="object" doc="Creates new xmldoc" ilk="function" src="php_domxml.c"/>
<scope name="domxml_doc_free_doc" signature="domxml_doc_free_doc()" returns="bool" doc="Frees xmldoc and removed objects from hash" ilk="function" src="php_domxml.c"/>
<scope name="domxml_parser" signature="domxml_parser([string buf[,string filename]])" returns="object" doc="Creates new xmlparser" ilk="function" src="php_domxml.c"/>
<scope name="domxml_parser_start_document" signature="domxml_parser_start_document()" returns="bool" doc="starts a document" ilk="function" src="php_domxml.c"/>
<scope name="domxml_parser_end_document" signature="domxml_parser_end_document()" returns="bool" doc="ends a document" ilk="function" src="php_domxml.c"/>
<scope name="domxml_parser_start_element" signature="domxml_parser_start_element(string tagname, array attributes)" returns="bool" doc="Starts an element and adds attributes" ilk="function" src="php_domxml.c"/>
<scope name="domxml_parser_end_element" signature="domxml_parser_end_element(string tagname)" returns="bool" doc="Ends an element" ilk="function" src="php_domxml.c"/>
<scope name="domxml_parser_comment" signature="domxml_parser_comment(string comment)" returns="bool" doc="Adds a comment" ilk="function" src="php_domxml.c"/>
<scope name="domxml_parser_cdata_section" signature="domxml_parser_cdata_section(string chunk)" returns="bool" doc="adds a cdata block" ilk="function" src="php_domxml.c"/>
<scope name="domxml_parser_characters" signature="domxml_parser_characters(string characters)" returns="bool" doc="Adds characters" ilk="function" src="php_domxml.c"/>
<scope name="domxml_parser_entity_reference" signature="domxml_parser_entity_reference(string reference)" returns="bool" doc="Adds entity reference" ilk="function" src="php_domxml.c"/>
<scope name="domxml_parser_processing_instruction" signature="domxml_parser_processing_instruction(string target, string data)" returns="bool" doc="Adds processing instruction" ilk="function" src="php_domxml.c"/>
<scope name="domxml_parser_namespace_decl" signature="domxml_parser_namespace_decl(string href, string prefix)" returns="bool" doc="Adds namespace declaration" ilk="function" src="php_domxml.c"/>
<scope name="domxml_parser_add_chunk" signature="domxml_parser_add_chunk(string chunk)" returns="bool" doc="adds xml-chunk to parser" ilk="function" src="php_domxml.c"/>
<scope name="domxml_parser_end" signature="domxml_parser_end([string chunk])" returns="object" doc="Ends parsing and returns DomDocument" ilk="function" src="php_domxml.c"/>
<scope name="domxml_parser_get_document" signature="domxml_parser_get_document()" returns="object" doc="Returns DomDocument from parser" ilk="function" src="php_domxml.c"/>
<scope name="domxml_parser_set_keep_blanks" signature="domxml_parser_set_keep_blanks(bool mode)" returns="bool" doc="Determines how to handle blanks" ilk="function" src="php_domxml.c"/>
<scope name="node_namespace" signature="node_namespace([int node])" returns="int" doc="Returns list of namespaces" ilk="function" src="php_domxml.c"/>
<scope name="node_children" signature="node_children([int node])" returns="int" doc="Returns list of children nodes" ilk="function" src="php_domxml.c"/>
<scope name="domxml_xmltree" signature="domxml_xmltree(string xmltree)" returns="object" doc="Creates a tree of PHP objects from an XML document" ilk="function" src="php_domxml.c"/>
<scope name="xpath_init" signature="xpath_init(void)" returns="bool" doc="Initializing XPath environment" ilk="function" src="php_domxml.c"/>
<scope name="xpath_new_context" signature="xpath_new_context([int doc_handle])" returns="object" doc="Creates new XPath context" ilk="function" src="php_domxml.c"/>
<scope name="xptr_new_context" signature="xptr_new_context([int doc_handle])" returns="object" doc="Creates new XPath context" ilk="function" src="php_domxml.c"/>
<scope name="xpath_eval" signature="xpath_eval([object xpathctx_handle,] string str)" returns="object" doc="Evaluates the XPath Location Path in the given string" ilk="function" src="php_domxml.c"/>
<scope name="xpath_eval_expression" signature="xpath_eval_expression([object xpathctx_handle,] string str)" returns="object" doc="Evaluates the XPath expression in the given string" ilk="function" src="php_domxml.c"/>
<scope name="xpath_register_ns" signature="xpath_register_ns([object xpathctx_handle,] string namespace_prefix, string namespace_uri)" returns="bool" doc="Registeres the given namespace in the passed XPath context" ilk="function" src="php_domxml.c"/>
<scope name="xptr_eval" signature="xptr_eval([int xpathctx_handle,] string str)" returns="int" doc="Evaluates the XPtr Location Path in the given string" ilk="function" src="php_domxml.c"/>
<scope name="domxml_version" signature="domxml_version(void)" returns="string" doc="Get XML library version" ilk="function" src="php_domxml.c"/>
<scope name="domxml_doc_xinclude" signature="domxml_doc_xinclude()" returns="int" doc="Substitutues xincludes in a DomDocument" ilk="function" src="php_domxml.c"/>
<scope name="domxml_xslt_stylesheet" signature="domxml_xslt_stylesheet(string xsltstylesheet)" returns="object" doc="Creates XSLT Stylesheet object from string" ilk="function" src="php_domxml.c"/>
<scope name="domxml_xslt_stylesheet_doc" signature="domxml_xslt_stylesheet_doc(object xmldoc)" returns="object" doc="Creates XSLT Stylesheet object from DOM Document object" ilk="function" src="php_domxml.c"/>
<scope name="domxml_xslt_stylesheet_file" signature="domxml_xslt_stylesheet_file(string filename)" returns="object" doc="Creates XSLT Stylesheet object from file" ilk="function" src="php_domxml.c"/>
<scope name="domxml_xslt_process" signature="domxml_xslt_process(object xslstylesheet, object xmldoc [, array xslt_parameters [, bool xpath_parameters [, string profileFilename]]])" returns="object" doc="Perform an XSLT transformation" ilk="function" src="php_domxml.c"/>
<scope name="domxml_xslt_result_dump_mem" signature="domxml_xslt_result_dump_mem(object xslstylesheet, object xmldoc)" returns="string" doc="output XSLT result to memory" ilk="function" src="php_domxml.c"/>
<scope name="domxml_xslt_result_dump_file" signature="domxml_xslt_result_dump_file(object xslstylesheet, object xmldoc, string filename[, int compression])" returns="int" doc="output XSLT result to File" ilk="function" src="php_domxml.c"/>
<scope name="domxml_xslt_version" signature="domxml_xslt_version(void)" returns="string" doc="Get XSLT library version" ilk="function" src="php_domxml.c"/>
<scope name="dotnet_load" signature="dotnet_load(string assembly_name [, string datatype_name, int codepage])" returns="int" doc="Loads a DOTNET module" ilk="function" src="dotnet.cpp"/>
<scope name="exif_tagname" signature="exif_tagname(index)" returns="string" doc="Get headername for index or false if not defined" ilk="function" src="exif.c"/>
<scope name="exif_read_data" signature="exif_read_data(string filename [, sections_needed [, sub_arrays[, read_thumbnail]]])" returns="array" doc="Reads header data from the JPEG TIFF image filename and optionally reads the internal thumbnails" ilk="function" src="exif.c"/>
<scope name="exif_thumbnail" signature="exif_thumbnail(string filename [, &width, &height [, &imagetype]])" returns="string" doc="Reads the embedded thumbnail" ilk="function" src="exif.c"/>
<scope name="exif_imagetype" signature="exif_imagetype(string imagefile)" returns="int" doc="Get the type of an image" ilk="function" src="exif.c"/>
<scope name="fbsql_connect" signature="fbsql_connect([string hostname [, string username [, string password]]])" returns="resource" doc="Create a connection to a database server" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_pconnect" signature="fbsql_pconnect([string hostname [, string username [, string password]]])" returns="resource" doc="Create a persistant connection to a database server" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_close" signature="fbsql_close([resource link_identifier])" returns="int" doc="Close a connection to a database server" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_set_transaction" signature="fbsql_set_transaction(resource link_identifier, int locking, int isolation)" returns="void" doc="Sets the transaction locking and isolation" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_autocommit" signature="fbsql_autocommit(resource link_identifier [, bool OnOff])" returns="bool" doc="Turns on auto-commit" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_commit" signature="fbsql_commit([resource link_identifier])" returns="bool" doc="Commit the transaction" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_rollback" signature="fbsql_rollback([resource link_identifier])" returns="int" doc="Rollback all statments since last commit" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_create_blob" signature="fbsql_create_blob(string blob_data [, resource link_identifier])" returns="string" doc="Create a BLOB in the database for use with an insert or update statement" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_create_clob" signature="fbsql_create_clob(string clob_data [, resource link_identifier])" returns="string" doc="Create a CLOB in the database for use with an insert or update statement" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_set_lob_mode" signature="fbsql_set_lob_mode(resource result, int lob_mode)" returns="bool" doc="Sets the mode for how LOB data re retreived actual data or a handle" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_read_blob" signature="fbsql_read_blob(string blob_handle [, resource link_identifier])" returns="string" doc="Read the BLOB data identified by blob handle" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_read_clob" signature="fbsql_read_clob(string clob_handle [, resource link_identifier])" returns="string" doc="Read the CLOB data identified by clob handle" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_blob_size" signature="fbsql_blob_size(string blob_handle [, resource link_identifier])" returns="string" doc="Get the size of a BLOB identified by blob handle" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_clob_size" signature="fbsql_clob_size(string clob_handle [, resource link_identifier])" returns="string" doc="Get the size of a CLOB identified by clob handle" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_hostname" signature="fbsql_hostname(resource link_identifier [, string host_name])" returns="string" doc="Get or set the host name used with a connection" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_database" signature="fbsql_database(resource link_identifier [, string database])" returns="string" doc="Get or set the database name used with a connection" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_database_password" signature="fbsql_database_password(resource link_identifier [, string database_password])" returns="string" doc="Get or set the databsae password used with a connection" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_username" signature="fbsql_username(resource link_identifier [, string username])" returns="string" doc="Get or set the host user used with a connection" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_password" signature="fbsql_password(resource link_identifier [, string password])" returns="string" doc="Get or set the user password used with a connection" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_select_db" signature="fbsql_select_db([string database_name [, resource link_identifier]])" returns="bool" doc="Select the database to open" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_change_user" signature="fbsql_change_user(string user, string password [, string database [, resource link_identifier]])" returns="int" doc="Change the user for a session" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_create_db" signature="fbsql_create_db(string database_name [, resource link_identifier])" returns="bool" doc="Create a new database on the server" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_drop_db" signature="fbsql_drop_db(string database_name [, resource link_identifier])" returns="int" doc="Drop a database on the server" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_start_db" signature="fbsql_start_db(string database_name [, resource link_identifier])" returns="bool" doc="Start a database on the server" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_stop_db" signature="fbsql_stop_db(string database_name [, resource link_identifier])" returns="bool" doc="Stop a database on the server" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_db_status" signature="fbsql_db_status(string database_name [, resource link_identifier])" returns="int" doc="Gets the status Stopped Starting Running Stopping for a given database" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_query" signature="fbsql_query(string query [, resource link_identifier])" returns="resource" doc="Send one or more SQL statements to the server and execute them" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_db_query" signature="fbsql_db_query(string database_name, string query [, resource link_identifier])" returns="resource" doc="Send one or more SQL statements to a specified database on the server" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_list_dbs" signature="fbsql_list_dbs([resource link_identifier])" returns="resource" doc="Retreive a list of all databases on the server" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_list_tables" signature="fbsql_list_tables(string database [, int link_identifier])" returns="resource" doc="Retreive a list of all tables from the specifoied database" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_list_fields" signature="fbsql_list_fields(string database_name, string table_name [, resource link_identifier])" returns="resource" doc="Retrieve a list of all fields for the specified database table" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_error" signature="fbsql_error([resource link_identifier])" returns="string" doc="Returns the last error string" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_errno" signature="fbsql_errno([resource link_identifier])" returns="int" doc="Returns the last error code" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_warnings" signature="fbsql_warnings([int flag])" returns="bool" doc="Enable or disable FrontBase warnings" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_affected_rows" signature="fbsql_affected_rows([resource link_identifier])" returns="int" doc="Get the number of rows affected by the last statement" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_insert_id" signature="fbsql_insert_id([resource link_identifier])" returns="int" doc="Get the internal index for the last insert statement" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_result" signature="fbsql_result(int result [, int row [, mixed field]])" returns="mixed" doc="" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_next_result" signature="fbsql_next_result(int result)" returns="int" doc="Switch to the next result if multiple results are available" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_num_rows" signature="fbsql_num_rows(int result)" returns="int" doc="Get number of rows" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_num_fields" signature="fbsql_num_fields(int result)" returns="int" doc="Get number of fields in the result set" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_fetch_row" signature="fbsql_fetch_row(resource result)" returns="array" doc="Fetch a row of data Returns an indexed array" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_fetch_assoc" signature="fbsql_fetch_assoc(resource result)" returns="object" doc="Detch a row of data Returns an assoc array" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_fetch_object" signature="fbsql_fetch_object(resource result [, int result_type])" returns="object" doc="Fetch a row of data Returns an object" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_fetch_array" signature="fbsql_fetch_array(resource result [, int result_type])" returns="array" doc="Fetches a result row as an array associative numeric or both" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_data_seek" signature="fbsql_data_seek(int result, int row_number)" returns="int" doc="Move the internal row counter to the specified row number" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_fetch_lengths" signature="fbsql_fetch_lengths(int result)" returns="array" doc="Returns an array of the lengths of each column in the result set" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_fetch_field" signature="fbsql_fetch_field(int result [, int field_index])" returns="object" doc="Get the field properties for a specified field index" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_field_seek" signature="fbsql_field_seek(int result [, int field_index])" returns="bool" doc="" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_field_name" signature="fbsql_field_name(int result [, int field_index])" returns="string" doc="Get the column name for a specified field index" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_field_table" signature="fbsql_field_table(int result [, int field_index])" returns="string" doc="Get the table name for a specified field index" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_field_len" signature="fbsql_field_len(int result [, int field_index])" returns="string" doc="Get the column length for a specified field index" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_field_type" signature="fbsql_field_type(int result [, int field_index])" returns="string" doc="Get the field type for a specified field index" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_field_flags" signature="fbsql_field_flags(int result [, int field_index])" returns="string" doc="" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_table_name" signature="fbsql_table_name(resource result, int index)" returns="string" doc="Retreive the table name for index after a call to fbsql list tables" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_free_result" signature="fbsql_free_result(resource result)" returns="bool" doc="free the memory used to store a result" ilk="function" src="php_fbsql.c"/>
<scope name="fbsql_get_autostart_info" signature="fbsql_get_autostart_info([resource link_identifier])" returns="array" doc="" ilk="function" src="php_fbsql.c"/>
<scope name="fdf_open" signature="fdf_open(string filename)" returns="resource" doc="Opens a new FDF document" ilk="function" src="fdf.c"/>
<scope name="fdf_open_string" signature="fdf_open_string(string fdf_data)" returns="resource" doc="Opens a new FDF document from string" ilk="function" src="fdf.c"/>
<scope name="fdf_create" signature="fdf_create(void)" returns="resource" doc="Creates a new FDF document" ilk="function" src="fdf.c"/>
<scope name="fdf_close" signature="fdf_close(resource fdfdoc)" returns="bool" doc="Closes the FDF document" ilk="function" src="fdf.c"/>
<scope name="fdf_get_value" signature="fdf_get_value(resource fdfdoc, string fieldname [, int which])" returns="string" doc="Gets the value of a field as string" ilk="function" src="fdf.c"/>
<scope name="fdf_set_value" signature="fdf_set_value(resource fdfdoc, string fieldname, mixed value [, int isname])" returns="bool" doc="Sets the value of a field" ilk="function" src="fdf.c"/>
<scope name="fdf_next_field_name" signature="fdf_next_field_name(resource fdfdoc [, string fieldname])" returns="string" doc="Gets the name of the next field name or the first field name" ilk="function" src="fdf.c"/>
<scope name="fdf_set_ap" signature="fdf_set_ap(resource fdfdoc, string fieldname, int face, string filename, int pagenr)" returns="bool" doc="Sets the appearence of a field" ilk="function" src="fdf.c"/>
<scope name="fdf_get_ap" signature="fdf_get_ap(resource fdfdoc, string fieldname, int face, string filename)" returns="bool" doc="Gets the appearance of a field and creates a PDF document out of it" ilk="function" src="fdf.c"/>
<scope name="fdf_get_encoding" signature="fdf_get_encoding(resource fdf)" returns="string" doc="Gets FDF file encoding scheme" ilk="function" src="fdf.c"/>
<scope name="fdf_set_status" signature="fdf_set_status(resource fdfdoc, string status)" returns="bool" doc="Sets the value of Status key" ilk="function" src="fdf.c"/>
<scope name="fdf_get_status" signature="fdf_get_status(resource fdfdoc)" returns="string" doc="Gets the value of Status key" ilk="function" src="fdf.c"/>
<scope name="fdf_set_file" signature="fdf_set_file(resource fdfdoc, string filename [, string target_frame])" returns="bool" doc="Sets the value of F key" ilk="function" src="fdf.c"/>
<scope name="fdf_get_file" signature="fdf_get_file(resource fdfdoc)" returns="string" doc="Gets the value of F key" ilk="function" src="fdf.c"/>
<scope name="fdf_save" signature="fdf_save(resource fdfdoc [, string filename])" returns="mixed" doc="Writes out the FDF file" ilk="function" src="fdf.c"/>
<scope name="fdf_save_string" signature="fdf_save_string(resource fdfdoc)" returns="mixed" doc="Returns the FDF file as a string" ilk="function" src="fdf.c"/>
<scope name="fdf_add_template" signature="fdf_add_template(resource fdfdoc, int newpage, string filename, string template, int rename)" returns="bool" doc="Adds a template into the FDF document" ilk="function" src="fdf.c"/>
<scope name="fdf_set_flags" signature="fdf_set_flags(resource fdfdoc, string fieldname, int whichflags, int newflags)" returns="bool" doc="Sets flags for a field in the FDF document" ilk="function" src="fdf.c"/>
<scope name="fdf_get_flags" signature="fdf_get_flags(resorce fdfdoc, string fieldname, int whichflags)" returns="int" doc="Gets the flags of a field" ilk="function" src="fdf.c"/>
<scope name="fdf_set_opt" signature="fdf_set_opt(resource fdfdoc, string fieldname, int element, string value, string name)" returns="bool" doc="Sets a value in the opt array for a field" ilk="function" src="fdf.c"/>
<scope name="fdf_get_opt" signature="fdf_get_opt(resource fdfdof, string fieldname [, int element])" returns="mixed" doc="Gets a value from the opt array of a field" ilk="function" src="fdf.c"/>
<scope name="fdf_set_submit_form_action" signature="fdf_set_submit_form_action(resource fdfdoc, string fieldname, int whichtrigger, string url, int flags)" returns="bool" doc="Sets the submit form action for a field" ilk="function" src="fdf.c"/>
<scope name="fdf_set_javascript_action" signature="fdf_set_javascript_action(resource fdfdoc, string fieldname, int whichtrigger, string script)" returns="bool" doc="Sets the javascript action for a field" ilk="function" src="fdf.c"/>
<scope name="fdf_set_encoding" signature="fdf_set_encoding(resource fdf_document, string encoding)" returns="bool" doc="Sets FDF encoding either Shift-JIS or Unicode" ilk="function" src="fdf.c"/>
<scope name="fdf_errno" signature="fdf_errno(void)" returns="int" doc="Gets error code for last operation" ilk="function" src="fdf.c"/>
<scope name="fdf_error" signature="fdf_error([int errno])" returns="string" doc="Gets error description for error code" ilk="function" src="fdf.c"/>
<scope name="fdf_get_version" signature="fdf_get_version([resource fdfdoc])" returns="string" doc="Gets version number for FDF api or file" ilk="function" src="fdf.c"/>
<scope name="fdf_set_version" signature="fdf_set_version(resourece fdfdoc, string version)" returns="bool" doc="Sets FDF version for a file" ilk="function" src="fdf.c"/>
<scope name="fdf_add_doc_javascript" signature="fdf_add_doc_javascript(resource fdfdoc, string scriptname, string script)" returns="bool" doc="Add javascript code to the fdf file" ilk="function" src="fdf.c"/>
<scope name="fdf_set_on_import_javascript" signature="fdf_set_on_import_javascript(resource fdfdoc, string script [, bool before_data_import])" returns="bool" doc="Adds javascript code to be executed when Acrobat opens the FDF" ilk="function" src="fdf.c"/>
<scope name="fdf_set_target_frame" signature="fdf_set_target_frame(resource fdfdoc, string target)" returns="bool" doc="Sets target frame for form" ilk="function" src="fdf.c"/>
<scope name="fdf_remove_item" signature="fdf_remove_item(resource fdfdoc, string fieldname, int item)" returns="bool" doc="Sets target frame for form" ilk="function" src="fdf.c"/>
<scope name="fdf_get_attachment" signature="fdf_get_attachment(resource fdfdoc, string fieldname, string savepath)" returns="array" doc="Get attached uploaded file" ilk="function" src="fdf.c"/>
<scope name="fdf_enum_values" signature="fdf_enum_values(resource fdfdoc, callback function [, mixed userdata])" returns="bool" doc="Call a user defined function for each document value" ilk="function" src="fdf.c"/>
<scope name="fdf_header" signature="fdf_header(void)" returns="void" doc="Set FDF specific HTTP headers" ilk="function" src="fdf.c"/>
<scope name="filepro" signature="filepro(string directory)" returns="bool" doc="Read and verify the map file" ilk="function" src="filepro.c"/>
<scope name="filepro_rowcount" signature="filepro_rowcount(void)" returns="int" doc="Find out how many rows are in a filePro database" ilk="function" src="filepro.c"/>
<scope name="filepro_fieldname" signature="filepro_fieldname(int fieldnumber)" returns="string" doc="Gets the name of a field" ilk="function" src="filepro.c"/>
<scope name="filepro_fieldtype" signature="filepro_fieldtype(int field_number)" returns="string" doc="Gets the type of a field" ilk="function" src="filepro.c"/>
<scope name="filepro_fieldwidth" signature="filepro_fieldwidth(int field_number)" returns="int" doc="Gets the width of a field" ilk="function" src="filepro.c"/>
<scope name="filepro_fieldcount" signature="filepro_fieldcount(void)" returns="int" doc="Find out how many fields are in a filePro database" ilk="function" src="filepro.c"/>
<scope name="filepro_retrieve" signature="filepro_retrieve(int row_number, int field_number)" returns="string" doc="Retrieves data from a filePro database" ilk="function" src="filepro.c"/>
<scope name="fribidi_log2vis" signature="fribidi_log2vis(string logical_str, long direction, long charset)" returns="string" doc="Convert a logical string to a visual one" ilk="function" src="fribidi.c"/>
<scope name="fribidi_charset_info" signature="fribidi_charset_info(int charset)" returns="array" doc="Returns an array containing information about the specified charset" ilk="function" src="fribidi.c"/>
<scope name="fribidi_get_charsets" signature="fribidi_get_charsets()" returns="array" doc="Returns an array containing available charsets" ilk="function" src="fribidi.c"/>
<scope name="ftp_connect" signature="ftp_connect(string host [, int port [, int timeout]])" returns="resource" doc="Opens a FTP stream" ilk="function" src="php_ftp.c"/>
<scope name="ftp_ssl_connect" signature="ftp_ssl_connect(string host [, int port [, int timeout]])" returns="resource" doc="Opens a FTP-SSL stream" ilk="function" src="php_ftp.c"/>
<scope name="ftp_login" signature="ftp_login(resource stream, string username, string password)" returns="bool" doc="Logs into the FTP server" ilk="function" src="php_ftp.c"/>
<scope name="ftp_pwd" signature="ftp_pwd(resource stream)" returns="string" doc="Returns the present working directory" ilk="function" src="php_ftp.c"/>
<scope name="ftp_cdup" signature="ftp_cdup(resource stream)" returns="bool" doc="Changes to the parent directory" ilk="function" src="php_ftp.c"/>
<scope name="ftp_chdir" signature="ftp_chdir(resource stream, string directory)" returns="bool" doc="Changes directories" ilk="function" src="php_ftp.c"/>
<scope name="ftp_exec" signature="ftp_exec(resource stream, string command)" returns="bool" doc="Requests execution of a program on the FTP server" ilk="function" src="php_ftp.c"/>
<scope name="ftp_mkdir" signature="ftp_mkdir(resource stream, string directory)" returns="string" doc="Creates a directory and returns the absolute path for the new directory or false on error" ilk="function" src="php_ftp.c"/>
<scope name="ftp_rmdir" signature="ftp_rmdir(resource stream, string directory)" returns="bool" doc="Removes a directory" ilk="function" src="php_ftp.c"/>
<scope name="ftp_nlist" signature="ftp_nlist(resource stream, string directory)" returns="array" doc="Returns an array of filenames in the given directory" ilk="function" src="php_ftp.c"/>
<scope name="ftp_rawlist" signature="ftp_rawlist(resource stream, string directory [, bool recursive])" returns="array" doc="Returns a detailed listing of a directory as an array of output lines" ilk="function" src="php_ftp.c"/>
<scope name="ftp_systype" signature="ftp_systype(resource stream)" returns="string" doc="Returns the system type identifier" ilk="function" src="php_ftp.c"/>
<scope name="ftp_fget" signature="ftp_fget(resource stream, resource fp, string remote_file, int mode[, int resumepos])" returns="bool" doc="Retrieves a file from the FTP server and writes it to an open file" ilk="function" src="php_ftp.c"/>
<scope name="ftp_nb_fget" signature="ftp_nb_fget(resource stream, resource fp, string remote_file, int mode[, int resumepos])" returns="bool" doc="Retrieves a file from the FTP server asynchronly and writes it to an open file" ilk="function" src="php_ftp.c"/>
<scope name="ftp_pasv" signature="ftp_pasv(resource stream, bool pasv)" returns="bool" doc="Turns passive mode on or off" ilk="function" src="php_ftp.c"/>
<scope name="ftp_get" signature="ftp_get(resource stream, string local_file, string remote_file, int mode[, int resume_pos])" returns="bool" doc="Retrieves a file from the FTP server and writes it to a local file" ilk="function" src="php_ftp.c"/>
<scope name="ftp_nb_get" signature="ftp_nb_get(resource stream, string local_file, string remote_file, int mode[, int resume_pos])" returns="int" doc="Retrieves a file from the FTP server nbhronly and writes it to a local file" ilk="function" src="php_ftp.c"/>
<scope name="ftp_nb_continue" signature="ftp_nb_continue(resource stream)" returns="int" doc="Continues retrieving sending a file nbronously" ilk="function" src="php_ftp.c"/>
<scope name="ftp_fput" signature="ftp_fput(resource stream, string remote_file, resource fp, int mode[, int startpos])" returns="bool" doc="Stores a file from an open file to the FTP server" ilk="function" src="php_ftp.c"/>
<scope name="ftp_nb_fput" signature="ftp_nb_fput(resource stream, string remote_file, resource fp, int mode[, int startpos])" returns="bool" doc="Stores a file from an open file to the FTP server nbronly" ilk="function" src="php_ftp.c"/>
<scope name="ftp_put" signature="ftp_put(resource stream, string remote_file, string local_file, int mode[, int startpos])" returns="bool" doc="Stores a file on the FTP server" ilk="function" src="php_ftp.c"/>
<scope name="ftp_nb_put" signature="ftp_nb_put(resource stream, string remote_file, string local_file, int mode[, int startpos])" returns="bool" doc="Stores a file on the FTP server" ilk="function" src="php_ftp.c"/>
<scope name="ftp_size" signature="ftp_size(resource stream, string filename)" returns="int" doc="Returns the size of the file or - on error" ilk="function" src="php_ftp.c"/>
<scope name="ftp_mdtm" signature="ftp_mdtm(resource stream, string filename)" returns="int" doc="Returns the last modification time of the file or - on error" ilk="function" src="php_ftp.c"/>
<scope name="ftp_rename" signature="ftp_rename(resource stream, string src, string dest)" returns="bool" doc="Renames the given file to a new path" ilk="function" src="php_ftp.c"/>
<scope name="ftp_delete" signature="ftp_delete(resource stream, string file)" returns="bool" doc="Deletes a file" ilk="function" src="php_ftp.c"/>
<scope name="ftp_site" signature="ftp_site(resource stream, string cmd)" returns="bool" doc="Sends a SITE command to the server" ilk="function" src="php_ftp.c"/>
<scope name="ftp_close" signature="ftp_close(resource stream)" returns="void" doc="Closes the FTP stream" ilk="function" src="php_ftp.c"/>
<scope name="ftp_set_option" signature="ftp_set_option(resource stream, int option, mixed value)" returns="bool" doc="Sets an FTP option" ilk="function" src="php_ftp.c"/>
<scope name="ftp_get_option" signature="ftp_get_option(resource stream, int option)" returns="mixed" doc="Gets an FTP option" ilk="function" src="php_ftp.c"/>
<scope name="gd_info" signature="gd_info()" returns="array" doc="" ilk="function" src="gd.c"/>
<scope name="imageloadfont" signature="imageloadfont(string filename)" returns="int" doc="Load a new font" ilk="function" src="gd.c"/>
<scope name="imagesetstyle" signature="imagesetstyle(resource im, array styles)" returns="bool" doc="Set the line drawing styles for use with imageline and IMG COLOR STYLED" ilk="function" src="gd.c"/>
<scope name="imagecreatetruecolor" signature="imagecreatetruecolor(int x_size, int y_size)" returns="resource" doc="Create a new true color image" ilk="function" src="gd.c"/>
<scope name="imageistruecolor" signature="imageistruecolor(resource im)" returns="bool" doc="return true if the image uses truecolor" ilk="function" src="gd.c"/>
<scope name="imagetruecolortopalette" signature="imagetruecolortopalette(resource im, bool ditherFlag, int colorsWanted)" returns="void" doc="Convert a true colour image to a palette based image with a number of colours optionally using dithering" ilk="function" src="gd.c"/>
<scope name="imagecolormatch" signature="imagecolormatch(resource im1, resource im2)" returns="bool" doc="Makes the colors of the palette version of an image more closely match the true color version" ilk="function" src="gd.c"/>
<scope name="imagesetthickness" signature="imagesetthickness(resource im, int thickness)" returns="bool" doc="Set line thickness for drawing lines ellipses rectangles polygons etc" ilk="function" src="gd.c"/>
<scope name="imagefilledellipse" signature="imagefilledellipse(resource im, int cx, int cy, int w, int h, int color)" returns="bool" doc="Draw an ellipse" ilk="function" src="gd.c"/>
<scope name="imagefilledarc" signature="imagefilledarc(resource im, int cx, int cy, int w, int h, int s, int e, int col, int style)" returns="bool" doc="Draw a filled partial ellipse" ilk="function" src="gd.c"/>
<scope name="imagealphablending" signature="imagealphablending(resource im, bool on)" returns="bool" doc="Turn alpha blending mode on or off for the given image" ilk="function" src="gd.c"/>
<scope name="imagesavealpha" signature="imagesavealpha(resource im, bool on)" returns="bool" doc="Include alpha channel to a saved image" ilk="function" src="gd.c"/>
<scope name="imagelayereffect" signature="imagelayereffect(resource im, int effect)" returns="bool" doc="Set the alpha blending flag to use the bundled libgd layering effects" ilk="function" src="gd.c"/>
<scope name="imagecolorallocatealpha" signature="imagecolorallocatealpha(resource im, int red, int green, int blue, int alpha)" returns="int" doc="Allocate a color with an alpha level Works for true color and palette based images" ilk="function" src="gd.c"/>
<scope name="imagecolorresolvealpha" signature="imagecolorresolvealpha(resource im, int red, int green, int blue, int alpha)" returns="int" doc="Resolve Allocate a colour with an alpha level Works for true colour and palette based images" ilk="function" src="gd.c"/>
<scope name="imagecolorclosestalpha" signature="imagecolorclosestalpha(resource im, int red, int green, int blue, int alpha)" returns="int" doc="Find the closest matching colour with alpha transparency" ilk="function" src="gd.c"/>
<scope name="imagecolorexactalpha" signature="imagecolorexactalpha(resource im, int red, int green, int blue, int alpha)" returns="int" doc="Find exact match for colour with transparency" ilk="function" src="gd.c"/>
<scope name="imagecopyresampled" signature="imagecopyresampled(resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h)" returns="bool" doc="Copy and resize part of an image using resampling to help ensure clarity" ilk="function" src="gd.c"/>
<scope name="imagerotate" signature="imagerotate(resource src_im, float angle, int bgdcolor)" returns="resource" doc="Rotate an image using a custom angle" ilk="function" src="gd.c"/>
<scope name="imagesettile" signature="imagesettile(resource image, resource tile)" returns="bool" doc="Set the tile image to tile when filling image with the IMG COLOR TILED color" ilk="function" src="gd.c"/>
<scope name="imagesetbrush" signature="imagesetbrush(resource image, resource brush)" returns="bool" doc="Set the brush image to brush when filling image with the IMG COLOR BRUSHED color" ilk="function" src="gd.c"/>
<scope name="imagecreate" signature="imagecreate(int x_size, int y_size)" returns="resource" doc="Create a new image" ilk="function" src="gd.c"/>
<scope name="imagetypes" signature="imagetypes(void)" returns="int" doc="Return the types of images supported in a bitfield - GIF JPEG PNG WBMP XPM" ilk="function" src="gd.c"/>
<scope name="imagecreatefromstring" signature="imagecreatefromstring(string image)" returns="resource" doc="Create a new image from the image stream in the string" ilk="function" src="gd.c"/>
<scope name="imagecreatefromgif" signature="imagecreatefromgif(string filename)" returns="resource" doc="Create a new image from GIF file or URL" ilk="function" src="gd.c"/>
<scope name="imagecreatefromjpeg" signature="imagecreatefromjpeg(string filename)" returns="resource" doc="Create a new image from JPEG file or URL" ilk="function" src="gd.c"/>
<scope name="imagecreatefrompng" signature="imagecreatefrompng(string filename)" returns="resource" doc="Create a new image from PNG file or URL" ilk="function" src="gd.c"/>
<scope name="imagecreatefromxbm" signature="imagecreatefromxbm(string filename)" returns="resource" doc="Create a new image from XBM file or URL" ilk="function" src="gd.c"/>
<scope name="imagecreatefromxpm" signature="imagecreatefromxpm(string filename)" returns="resource" doc="Create a new image from XPM file or URL" ilk="function" src="gd.c"/>
<scope name="imagecreatefromwbmp" signature="imagecreatefromwbmp(string filename)" returns="resource" doc="Create a new image from WBMP file or URL" ilk="function" src="gd.c"/>
<scope name="imagecreatefromgd" signature="imagecreatefromgd(string filename)" returns="resource" doc="Create a new image from GD file or URL" ilk="function" src="gd.c"/>
<scope name="imagecreatefromgd2" signature="imagecreatefromgd2(string filename)" returns="resource" doc="Create a new image from GD file or URL" ilk="function" src="gd.c"/>
<scope name="imagecreatefromgd2part" signature="imagecreatefromgd2part(string filename, int srcX, int srcY, int width, int height)" returns="resource" doc="Create a new image from a given part of GD file or URL" ilk="function" src="gd.c"/>
<scope name="imagegif" signature="imagegif(resource im [, string filename])" returns="bool" doc="Output GIF image to browser or file" ilk="function" src="gd.c"/>
<scope name="imagepng" signature="imagepng(resource im [, string filename])" returns="bool" doc="Output PNG image to browser or file" ilk="function" src="gd.c"/>
<scope name="imagejpeg" signature="imagejpeg(resource im [, string filename [, int quality]])" returns="bool" doc="Output JPEG image to browser or file" ilk="function" src="gd.c"/>
<scope name="imagewbmp" signature="imagewbmp(resource im [, string filename, [, int foreground]])" returns="bool" doc="Output WBMP image to browser or file" ilk="function" src="gd.c"/>
<scope name="imagegd" signature="imagegd(resource im [, string filename])" returns="bool" doc="Output GD image to browser or file" ilk="function" src="gd.c"/>
<scope name="imagegd2" signature="imagegd2(resource im [, string filename, [, int chunk_size, [, int type]]])" returns="bool" doc="Output GD image to browser or file" ilk="function" src="gd.c"/>
<scope name="imagedestroy" signature="imagedestroy(resource im)" returns="bool" doc="Destroy an image" ilk="function" src="gd.c"/>
<scope name="imagecolorallocate" signature="imagecolorallocate(resource im, int red, int green, int blue)" returns="int" doc="Allocate a color for an image" ilk="function" src="gd.c"/>
<scope name="imagepalettecopy" signature="imagepalettecopy(resource dst, resource src)" returns="void" doc="Copy the palette from the src image onto the dst image" ilk="function" src="gd.c"/>
<scope name="imagecolorat" signature="imagecolorat(resource im, int x, int y)" returns="int" doc="Get the index of the color of a pixel" ilk="function" src="gd.c"/>
<scope name="imagecolorclosest" signature="imagecolorclosest(resource im, int red, int green, int blue)" returns="int" doc="Get the index of the closest color to the specified color" ilk="function" src="gd.c"/>
<scope name="imagecolorclosesthwb" signature="imagecolorclosesthwb(resource im, int red, int green, int blue)" returns="int" doc="Get the index of the color which has the hue white and blackness nearest to the given color" ilk="function" src="gd.c"/>
<scope name="imagecolordeallocate" signature="imagecolordeallocate(resource im, int index)" returns="bool" doc="De-allocate a color for an image" ilk="function" src="gd.c"/>
<scope name="imagecolorresolve" signature="imagecolorresolve(resource im, int red, int green, int blue)" returns="int" doc="Get the index of the specified color or its closest possible alternative" ilk="function" src="gd.c"/>
<scope name="imagecolorexact" signature="imagecolorexact(resource im, int red, int green, int blue)" returns="int" doc="Get the index of the specified color" ilk="function" src="gd.c"/>
<scope name="imagecolorset" signature="imagecolorset(resource im, int col, int red, int green, int blue)" returns="void" doc="Set the color for the specified palette index" ilk="function" src="gd.c"/>
<scope name="imagecolorsforindex" signature="imagecolorsforindex(resource im, int col)" returns="array" doc="Get the colors for an index" ilk="function" src="gd.c"/>
<scope name="imagegammacorrect" signature="imagegammacorrect(resource im, float inputgamma, float outputgamma)" returns="bool" doc="Apply a gamma correction to a GD image" ilk="function" src="gd.c"/>
<scope name="imagesetpixel" signature="imagesetpixel(resource im, int x, int y, int col)" returns="bool" doc="Set a single pixel" ilk="function" src="gd.c"/>
<scope name="imageline" signature="imageline(resource im, int x1, int y1, int x2, int y2, int col)" returns="bool" doc="Draw a line" ilk="function" src="gd.c"/>
<scope name="imagedashedline" signature="imagedashedline(resource im, int x1, int y1, int x2, int y2, int col)" returns="bool" doc="Draw a dashed line" ilk="function" src="gd.c"/>
<scope name="imagerectangle" signature="imagerectangle(resource im, int x1, int y1, int x2, int y2, int col)" returns="bool" doc="Draw a rectangle" ilk="function" src="gd.c"/>
<scope name="imagefilledrectangle" signature="imagefilledrectangle(resource im, int x1, int y1, int x2, int y2, int col)" returns="bool" doc="Draw a filled rectangle" ilk="function" src="gd.c"/>
<scope name="imagearc" signature="imagearc(resource im, int cx, int cy, int w, int h, int s, int e, int col)" returns="bool" doc="Draw a partial ellipse" ilk="function" src="gd.c"/>
<scope name="imageellipse" signature="imageellipse(resource im, int cx, int cy, int w, int h, int color)" returns="bool" doc="Draw an ellipse" ilk="function" src="gd.c"/>
<scope name="imagefilltoborder" signature="imagefilltoborder(resource im, int x, int y, int border, int col)" returns="bool" doc="Flood fill to specific color" ilk="function" src="gd.c"/>
<scope name="imagefill" signature="imagefill(resource im, int x, int y, int col)" returns="bool" doc="Flood fill" ilk="function" src="gd.c"/>
<scope name="imagecolorstotal" signature="imagecolorstotal(resource im)" returns="int" doc="Find out the number of colors in an image's palette" ilk="function" src="gd.c"/>
<scope name="imagecolortransparent" signature="imagecolortransparent(resource im [, int col])" returns="int" doc="Define a color as transparent" ilk="function" src="gd.c"/>
<scope name="imageinterlace" signature="imageinterlace(resource im [, int interlace])" returns="int" doc="Enable or disable interlace" ilk="function" src="gd.c"/>
<scope name="imagepolygon" signature="imagepolygon(resource im, array point, int num_points, int col)" returns="bool" doc="Draw a polygon" ilk="function" src="gd.c"/>
<scope name="imagefilledpolygon" signature="imagefilledpolygon(resource im, array point, int num_points, int col)" returns="bool" doc="Draw a filled polygon" ilk="function" src="gd.c"/>
<scope name="imagefontwidth" signature="imagefontwidth(int font)" returns="int" doc="Get font width" ilk="function" src="gd.c"/>
<scope name="imagefontheight" signature="imagefontheight(int font)" returns="int" doc="Get font height" ilk="function" src="gd.c"/>
<scope name="imagechar" signature="imagechar(resource im, int font, int x, int y, string c, int col)" returns="bool" doc="Draw a character" ilk="function" src="gd.c"/>
<scope name="imagecharup" signature="imagecharup(resource im, int font, int x, int y, string c, int col)" returns="bool" doc="Draw a character rotated degrees counter-clockwise" ilk="function" src="gd.c"/>
<scope name="imagestring" signature="imagestring(resource im, int font, int x, int y, string str, int col)" returns="bool" doc="Draw a string horizontally" ilk="function" src="gd.c"/>
<scope name="imagestringup" signature="imagestringup(resource im, int font, int x, int y, string str, int col)" returns="bool" doc="Draw a string vertically - rotated degrees counter-clockwise" ilk="function" src="gd.c"/>
<scope name="imagecopy" signature="imagecopy(resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h)" returns="bool" doc="Copy part of an image" ilk="function" src="gd.c"/>
<scope name="imagecopymerge" signature="imagecopymerge(resource src_im, resource dst_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct)" returns="bool" doc="Merge one part of an image with another" ilk="function" src="gd.c"/>
<scope name="imagecopymergegray" signature="imagecopymergegray(resource src_im, resource dst_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct)" returns="bool" doc="Merge one part of an image with another" ilk="function" src="gd.c"/>
<scope name="imagecopyresized" signature="imagecopyresized(resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h)" returns="bool" doc="Copy and resize part of an image" ilk="function" src="gd.c"/>
<scope name="imagesx" signature="imagesx(resource im)" returns="int" doc="Get image width" ilk="function" src="gd.c"/>
<scope name="imagesy" signature="imagesy(resource im)" returns="int" doc="Get image height" ilk="function" src="gd.c"/>
<scope name="imageftbbox" signature="imageftbbox(float size, float angle, string font_file, string text [, array extrainfo])" returns="array" doc="Give the bounding box of a text using fonts via freetype" ilk="function" src="gd.c"/>
<scope name="imagefttext" signature="imagefttext(resource im, float size, float angle, int x, int y, int col, string font_file, string text [, array extrainfo])" returns="array" doc="Write text to the image using fonts via freetype" ilk="function" src="gd.c"/>
<scope name="imagettfbbox" signature="imagettfbbox(float size, float angle, string font_file, string text)" returns="array" doc="Give the bounding box of a text using TrueType fonts" ilk="function" src="gd.c"/>
<scope name="imagettftext" signature="imagettftext(resource im, float size, float angle, int x, int y, int col, string font_file, string text)" returns="array" doc="Write text to the image using a TrueType font" ilk="function" src="gd.c"/>
<scope name="imagepsloadfont" signature="imagepsloadfont(string pathname)" returns="resource" doc="Load a new font from specified file" ilk="function" src="gd.c"/>
<scope name="imagepscopyfont" signature="imagepscopyfont(int font_index)" returns="int" doc="Make a copy of a font for purposes like extending or reenconding" ilk="function" src="gd.c"/>
<scope name="imagepsfreefont" signature="imagepsfreefont(resource font_index)" returns="bool" doc="Free memory used by a font" ilk="function" src="gd.c"/>
<scope name="imagepsencodefont" signature="imagepsencodefont(resource font_index, string filename)" returns="bool" doc="To change a fonts character encoding vector" ilk="function" src="gd.c"/>
<scope name="imagepsextendfont" signature="imagepsextendfont(resource font_index, float extend)" returns="bool" doc="Extend or or condense if extend a font" ilk="function" src="gd.c"/>
<scope name="imagepsslantfont" signature="imagepsslantfont(resource font_index, float slant)" returns="bool" doc="Slant a font" ilk="function" src="gd.c"/>
<scope name="imagepstext" signature="imagepstext(resource image, string text, resource font, int size, int xcoord, int ycoord [, int space, int tightness, float angle, int antialias])" returns="array" doc="Rasterize a string over an image" ilk="function" src="gd.c"/>
<scope name="imagepsbbox" signature="imagepsbbox(string text, resource font, int size [, int space, int tightness, int angle])" returns="array" doc="Return the bounding box needed by a string if rasterized" ilk="function" src="gd.c"/>
<scope name="image2wbmp" signature="image2wbmp(resource im [, string filename [, int threshold]])" returns="bool" doc="Output WBMP image to browser or file" ilk="function" src="gd.c"/>
<scope name="imageantialias" signature="imageantialias(resource im, bool on)" returns="bool" doc="Should antialiased functions used or not" ilk="function" src="gd.c"/>
<scope name="textdomain" signature="textdomain(string domain)" returns="string" doc="Set the textdomain to domain Returns the current domain" ilk="function" src="gettext.c"/>
<scope name="gettext" signature="gettext(string msgid)" returns="string" doc="Return the translation of msgid for the current domain or msgid unaltered if a translation does not exist" ilk="function" src="gettext.c"/>
<scope name="dgettext" signature="dgettext(string domain_name, string msgid)" returns="string" doc="Return the translation of msgid for domain name or msgid unaltered if a translation does not exist" ilk="function" src="gettext.c"/>
<scope name="dcgettext" signature="dcgettext(string domain_name, string msgid, long category)" returns="string" doc="Return the translation of msgid for domain name and category or msgid unaltered if a translation does not exist" ilk="function" src="gettext.c"/>
<scope name="bindtextdomain" signature="bindtextdomain(string domain_name, string dir)" returns="string" doc="Bind to the text domain domain name looking for translations in dir Returns the current domain" ilk="function" src="gettext.c"/>
<scope name="ngettext" signature="ngettext(string MSGID1, string MSGID2, int N)" returns="string" doc="Plural version of gettext" ilk="function" src="gettext.c"/>
<scope name="gmp_init" signature="gmp_init(mixed number [, int base])" returns="resource" doc="Initializes GMP number" ilk="function" src="gmp.c"/>
<scope name="gmp_intval" signature="gmp_intval(resource gmpnumber)" returns="int" doc="Gets signed long value of GMP number" ilk="function" src="gmp.c"/>
<scope name="gmp_strval" signature="gmp_strval(resource gmpnumber [, int base])" returns="string" doc="Gets string representation of GMP number" ilk="function" src="gmp.c"/>
<scope name="gmp_add" signature="gmp_add(resource a, resource b)" returns="resource" doc="Add a and b" ilk="function" src="gmp.c"/>
<scope name="gmp_sub" signature="gmp_sub(resource a, resource b)" returns="resource" doc="Subtract b from a" ilk="function" src="gmp.c"/>
<scope name="gmp_mul" signature="gmp_mul(resource a, resource b)" returns="resource" doc="Multiply a and b" ilk="function" src="gmp.c"/>
<scope name="gmp_div_qr" signature="gmp_div_qr(resource a, resource b [, int round])" returns="array" doc="Divide a by b returns quotient and reminder" ilk="function" src="gmp.c"/>
<scope name="gmp_div_r" signature="gmp_div_r(resource a, resource b [, int round])" returns="resource" doc="Divide a by b returns reminder only" ilk="function" src="gmp.c"/>
<scope name="gmp_div_q" signature="gmp_div_q(resource a, resource b [, int round])" returns="resource" doc="Divide a by b returns quotient only" ilk="function" src="gmp.c"/>
<scope name="gmp_mod" signature="gmp_mod(resource a, resource b)" returns="resource" doc="Computes a modulo b" ilk="function" src="gmp.c"/>
<scope name="gmp_divexact" signature="gmp_divexact(resource a, resource b)" returns="resource" doc="Divide a by b using exact division algorithm" ilk="function" src="gmp.c"/>
<scope name="gmp_neg" signature="gmp_neg(resource a)" returns="resource" doc="Negates a number" ilk="function" src="gmp.c"/>
<scope name="gmp_abs" signature="gmp_abs(resource a)" returns="resource" doc="Calculates absolute value" ilk="function" src="gmp.c"/>
<scope name="gmp_fact" signature="gmp_fact(int a)" returns="resource" doc="Calculates factorial function" ilk="function" src="gmp.c"/>
<scope name="gmp_pow" signature="gmp_pow(resource base, int exp)" returns="resource" doc="Raise base to power exp" ilk="function" src="gmp.c"/>
<scope name="gmp_powm" signature="gmp_powm(resource base, resource exp, resource mod)" returns="resource" doc="Raise base to power exp and take result modulo mod" ilk="function" src="gmp.c"/>
<scope name="gmp_sqrt" signature="gmp_sqrt(resource a)" returns="resource" doc="Takes integer part of square root of a" ilk="function" src="gmp.c"/>
<scope name="gmp_sqrtrem" signature="gmp_sqrtrem(resource a)" returns="array" doc="Square root with remainder" ilk="function" src="gmp.c"/>
<scope name="gmp_perfect_square" signature="gmp_perfect_square(resource a)" returns="bool" doc="Checks if a is an exact square" ilk="function" src="gmp.c"/>
<scope name="gmp_prob_prime" signature="gmp_prob_prime(resource a[, int reps])" returns="int" doc="Checks if a is probably prime" ilk="function" src="gmp.c"/>
<scope name="gmp_gcd" signature="gmp_gcd(resource a, resource b)" returns="resource" doc="Computes greatest common denominator gcd of a and b" ilk="function" src="gmp.c"/>
<scope name="gmp_gcdext" signature="gmp_gcdext(resource a, resource b)" returns="array" doc="Computes G S and T such that AS BT G gcd' A B" ilk="function" src="gmp.c"/>
<scope name="gmp_invert" signature="gmp_invert(resource a, resource b)" returns="resource" doc="Computes the inverse of a modulo b" ilk="function" src="gmp.c"/>
<scope name="gmp_jacobi" signature="gmp_jacobi(resource a, resource b)" returns="int" doc="Computes Jacobi symbol" ilk="function" src="gmp.c"/>
<scope name="gmp_legendre" signature="gmp_legendre(resource a, resource b)" returns="int" doc="Computes Legendre symbol" ilk="function" src="gmp.c"/>
<scope name="gmp_cmp" signature="gmp_cmp(resource a, resource b)" returns="int" doc="Compares two numbers" ilk="function" src="gmp.c"/>
<scope name="gmp_sign" signature="gmp_sign(resource a)" returns="int" doc="Gets the sign of the number" ilk="function" src="gmp.c"/>
<scope name="gmp_random" signature="gmp_random([int limiter])" returns="resource" doc="Gets random number" ilk="function" src="gmp.c"/>
<scope name="gmp_and" signature="gmp_and(resource a, resource b)" returns="resource" doc="Calculates logical AND of a and b" ilk="function" src="gmp.c"/>
<scope name="gmp_or" signature="gmp_or(resource a, resource b)" returns="resource" doc="Calculates logical OR of a and b" ilk="function" src="gmp.c"/>
<scope name="gmp_com" signature="gmp_com(resource a)" returns="resource" doc="Calculates one's complement of a" ilk="function" src="gmp.c"/>
<scope name="gmp_xor" signature="gmp_xor(resource a, resource b)" returns="resource" doc="Calculates logical exclusive OR of a and b" ilk="function" src="gmp.c"/>
<scope name="gmp_setbit" signature="gmp_setbit(resource &a, int index[, bool set_clear])" returns="void" doc="Sets or clear bit in a" ilk="function" src="gmp.c"/>
<scope name="gmp_clrbit" signature="gmp_clrbit(resource &a, int index)" returns="void" doc="Clears bit in a" ilk="function" src="gmp.c"/>
<scope name="gmp_popcount" signature="gmp_popcount(resource a)" returns="int" doc="Calculates the population count of a" ilk="function" src="gmp.c"/>
<scope name="gmp_hamdist" signature="gmp_hamdist(resource a, resource b)" returns="int" doc="Calculates hamming distance between a and b" ilk="function" src="gmp.c"/>
<scope name="gmp_scan0" signature="gmp_scan0(resource a, int start)" returns="int" doc="Finds first zero bit" ilk="function" src="gmp.c"/>
<scope name="gmp_scan1" signature="gmp_scan1(resource a, int start)" returns="int" doc="Finds first non-zero bit" ilk="function" src="gmp.c"/>
<scope name="hwapi_dummy" signature="hwapi_dummy(int link, int id, int msgid)" returns="string" doc="Hyperwave dummy function" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_init" signature="hwapi_init(string hostname, int port)" returns="void" doc="Hyperwave initialisation" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_hgcsp" signature="hwapi_hgcsp(string hostname, int port)" returns="string" doc="Hyperwave dummy function" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_object" signature="hwapi_object(array object_in)" returns="object" doc="Hyperwave dummy function" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_mychildren" signature="hwapi_mychildren(array parameters)" returns="string" doc="Hyperwave dummy function" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_children" signature="hwapi_children(array parameters)" returns="string" doc="Hyperwave dummy function" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_parents" signature="hwapi_parents(string hostname, int port)" returns="string" doc="Hyperwave dummy function" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_find" signature="hwapi_find(array parameters)" returns="string" doc="Finds objects" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_identify" signature="hwapi_identify(string hostname, int port)" returns="string" doc="Hyperwave dummy function" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_remove" signature="hwapi_remove(array parameters)" returns="string" doc="Remove an object" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_content" signature="hwapi_content(string hostname, int port)" returns="string" doc="Retrieve content of object" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_copy" signature="hwapi_copy(array parameters)" returns="string" doc="Hyperwave dummy function" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_link" signature="hwapi_link(array parameters)" returns="string" doc="Hyperwave dummy function" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_move" signature="hwapi_move(array parameters)" returns="string" doc="Hyperwave dummy function" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_lock" signature="hwapi_lock(array parameters)" returns="string" doc="Hyperwave dummy function" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_unlock" signature="hwapi_unlock(array parameters)" returns="string" doc="Hyperwave dummy function" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_replace" signature="hwapi_replace(array parameters)" returns="string" doc="Hyperwave dummy function" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_insert" signature="hwapi_insert(array parameters)" returns="string" doc="Hyperwave dummy function" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_insertdocument" signature="hwapi_insertdocument(array parameters)" returns="string" doc="Hyperwave dummy function" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_insertcollection" signature="hwapi_insertcollection(array parameters)" returns="string" doc="Hyperwave dummy function" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_insertanchor" signature="hwapi_insertanchor(array parameters)" returns="string" doc="Hyperwave dummy function" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_srcanchors" signature="hwapi_srcanchors(array parameters)" returns="string" doc="Hyperwave dummy function" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_dstanchors" signature="hwapi_dstanchors(array parameters)" returns="string" doc="Hyperwave dummy function" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_objectbyanchor" signature="hwapi_objectbyanchor(array parameters)" returns="string" doc="Hyperwave dummy function" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_dstofsrcanchor" signature="hwapi_dstofsrcanchor(array parameters)" returns="string" doc="Hyperwave dummy function" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_srcsofdst" signature="hwapi_srcsofdst(array parameters)" returns="string" doc="Hyperwave dummy function" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_checkin" signature="hwapi_checkin(array parameters)" returns="string" doc="Checking in a document" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_checkout" signature="hwapi_checkout(array parameters)" returns="string" doc="Checking out a document" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_setcommittedversion" signature="hwapi_setcommittedversion(array parameters)" returns="string" doc="setcommittedversion" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_revert" signature="hwapi_revert(array parameters)" returns="string" doc="Reverting to a former document" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_history" signature="hwapi_history(array parameters)" returns="string" doc="history" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_removeversion" signature="hwapi_removeversion(array parameters)" returns="string" doc="Reverting to a former document" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_freeversion" signature="hwapi_freeversion(array parameters)" returns="object" doc="freeversion" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_configurationhistory" signature="hwapi_configurationhistory(array parameters)" returns="array" doc="Returns configuration history of object" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_saveconfiguration" signature="hwapi_saveconfiguration(array parameters)" returns="object" doc="Save configuration for an object" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_restoreconfiguration" signature="hwapi_restoreconfiguration(array parameters)" returns="object" doc="Restore configuration for an object" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_mergeconfiguration" signature="hwapi_mergeconfiguration(array parameters)" returns="object" doc="Merge configuration for an object" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_removeconfiguration" signature="hwapi_removeconfiguration(array parameters)" returns="object" doc="Removes configuration" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_user" signature="hwapi_user(array parameters)" returns="string" doc="Returns information about user" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_userlist" signature="hwapi_userlist(array parameters)" returns="string" doc="Returns list of login in users" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_hwstat" signature="hwapi_hwstat(array parameters)" returns="string" doc="Returns information about hgserver" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_dcstat" signature="hwapi_dcstat(array parameters)" returns="string" doc="Returns information about hgserver" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_dbstat" signature="hwapi_dbstat(array parameters)" returns="string" doc="Returns information about hgserver" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_ftstat" signature="hwapi_ftstat(array parameters)" returns="string" doc="Returns information about ftserver" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_info" signature="hwapi_info(array parameters)" returns="string" doc="Returns information about server" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_object_new" signature="hwapi_object_new()" returns="string" doc="Creates new HW API Object" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_object_count" signature="hwapi_object_count()" returns="string" doc="Counts number of attributes of an HW API Object" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_object_title" signature="hwapi_object_title(string language)" returns="string" doc="Returns title of HW API Object for given language" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_object_attreditable" signature="hwapi_object_attreditable(int attr, string username, bool is_system)" returns="string" doc="Hyperwave object attreditable function" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_object_assign" signature="hwapi_object_assign(int object)" returns="object" doc="Hyperwave object assign function" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_object_attribute" signature="hwapi_object_attribute(int index, object &attribute)" returns="string" doc="Hyperwave object attribute function" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_object_insert" signature="hwapi_object_insert(object attr)" returns="string" doc="Inserts new HW API Attribute into HW API Object" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_object_remove" signature="hwapi_object_remove(string name)" returns="string" doc="Removes HW API Attribute with given name from HW API Object" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_object_value" signature="hwapi_object_value(string name)" returns="string" doc="Returns attribute value of given attribute" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_attribute_new" signature="hwapi_attribute_new([string name][, string value])" returns="string" doc="Creates new HW API Attribute" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_attribute_key" signature="hwapi_attribute_key()" returns="string" doc="Returns key of an hwapi attribute" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_attribute_value" signature="hwapi_attribute_value()" returns="string" doc="Returns value of hw api attribute" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_attribute_values" signature="hwapi_attribute_values()" returns="string" doc="Returns all values of an attribute as an array" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_attribute_langdepvalue" signature="hwapi_attribute_langdepvalue(string language)" returns="string" doc="Returns value of attribute with givenn language" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_content_new" signature="hwapi_content_new([string name][, string value])" returns="string" doc="Creates new HW API Content" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_content_read" signature="hwapi_content_read(string buffer, int length)" returns="string" doc="Reads length bytes from content" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_content_mimetype" signature="hwapi_content_mimetype()" returns="string" doc="Returns MimeType of document" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_error_count" signature="hwapi_error_count()" returns="string" doc="Counts number of reasons of an HW API Error" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_error_reason" signature="hwapi_error_reason(int index)" returns="string" doc="Returns a reason of an HW API Error" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_reason_type" signature="hwapi_reason_type()" returns="string" doc="Returns the type of HW API Reason" ilk="function" src="hwapi.cpp"/>
<scope name="hwapi_reason_description" signature="hwapi_reason_description(string language)" returns="string" doc="Returns description of HW API Reason" ilk="function" src="hwapi.cpp"/>
<scope name="hw_connect" signature="hw_connect(string host, int port [string username [, string password]])" returns="int" doc="Connect to the Hyperwave server" ilk="function" src="hw.c"/>
<scope name="hw_pconnect" signature="hw_pconnect(string host, int port [, string username [, string password]])" returns="int" doc="Connect to the Hyperwave server persistent" ilk="function" src="hw.c"/>
<scope name="hw_close" signature="hw_close(int link)" returns="void" doc="Close connection to Hyperwave server" ilk="function" src="hw.c"/>
<scope name="hw_info" signature="hw_info(int link)" returns="void" doc="Outputs info string" ilk="function" src="hw.c"/>
<scope name="hw_error" signature="hw_error(int link)" returns="int" doc="Returns last error number" ilk="function" src="hw.c"/>
<scope name="hw_errormsg" signature="hw_errormsg(int link)" returns="string" doc="Returns last error message" ilk="function" src="hw.c"/>
<scope name="hw_root" signature="hw_root(void)" returns="int" doc="Returns object id of root collection" ilk="function" src="hw.c"/>
<scope name="hw_stat" signature="hw_stat(int link)" returns="string" doc="Returns status string" ilk="function" src="hw.c"/>
<scope name="hw_who" signature="hw_who(int link)" returns="array" doc="Returns names and info of users loged in" ilk="function" src="hw.c"/>
<scope name="hw_dummy" signature="hw_dummy(int link, int id, int msgid)" returns="string" doc="Hyperwave dummy function" ilk="function" src="hw.c"/>
<scope name="hw_getobject" signature="hw_getobject(int link, int objid [, string query])" returns="string" doc="Returns object record" ilk="function" src="hw.c"/>
<scope name="hw_insertobject" signature="hw_insertobject(int link, string objrec, string parms)" returns="int" doc="Inserts an object" ilk="function" src="hw.c"/>
<scope name="hw_getandlock" signature="hw_getandlock(int link, int objid)" returns="string" doc="Returns object record and locks object" ilk="function" src="hw.c"/>
<scope name="hw_unlock" signature="hw_unlock(int link, int objid)" returns="void" doc="Unlocks object" ilk="function" src="hw.c"/>
<scope name="hw_deleteobject" signature="hw_deleteobject(int link, int objid)" returns="void" doc="Deletes object" ilk="function" src="hw.c"/>
<scope name="hw_changeobject" signature="hw_changeobject(int link, int objid, array attributes)" returns="void" doc="Changes attributes of an object obsolete" ilk="function" src="hw.c"/>
<scope name="hw_modifyobject" signature="hw_modifyobject(int link, int objid, array remattributes, array addattributes [, int mode])" returns="void" doc="Modifies attributes of an object" ilk="function" src="hw.c"/>
<scope name="hw_mv" signature="hw_mv(int link, array objrec, int from, int dest)" returns="void" doc="Moves object" ilk="function" src="hw.c"/>
<scope name="hw_cp" signature="hw_cp(int link, array objrec, int dest)" returns="void" doc="Copies object" ilk="function" src="hw.c"/>
<scope name="hw_gettext" signature="hw_gettext(int link, int objid [, int rootid])" returns="hwdoc" doc="Returns text document Links are relative to rootid if given" ilk="function" src="hw.c"/>
<scope name="hw_edittext" signature="hw_edittext(int link, hwdoc doc)" returns="void" doc="Modifies text document" ilk="function" src="hw.c"/>
<scope name="hw_getcgi" signature="hw_getcgi(int link, int objid)" returns="hwdoc" doc="Returns the output of a CGI script" ilk="function" src="hw.c"/>
<scope name="hw_getremote" signature="hw_getremote(int link, int objid)" returns="int" doc="Returns the content of a remote document" ilk="function" src="hw.c"/>
<scope name="n" signature="n(int link, string objrec)" returns="hw_getremotechildre" doc="Returns the remote document or an array of object records" ilk="function" src="hw.c"/>
<scope name="hw_setlinkroot" signature="hw_setlinkroot(int link, int rootid)" returns="void" doc="Set the id to which links are calculated" ilk="function" src="hw.c"/>
<scope name="hw_pipedocument" signature="hw_pipedocument(int link, int objid)" returns="hwdoc" doc="Returns document" ilk="function" src="hw.c"/>
<scope name="hw_pipecgi" signature="hw_pipecgi(int link, int objid)" returns="hwdoc" doc="Returns output of CGI script" ilk="function" src="hw.c"/>
<scope name="hw_insertdocument" signature="hw_insertdocument(int link, int parentid, hwdoc doc)" returns="void" doc="Insert new document" ilk="function" src="hw.c"/>
<scope name="hw_new_document" signature="hw_new_document(string objrec, string data, int size)" returns="hwdoc" doc="Create a new document" ilk="function" src="hw.c"/>
<scope name="hw_new_document_from_file" signature="hw_new_document_from_file(string objrec, string filename)" returns="hwdoc" doc="Create a new document from a file" ilk="function" src="hw.c"/>
<scope name="hw_free_document" signature="hw_free_document(hwdoc doc)" returns="void" doc="Frees memory of document" ilk="function" src="hw.c"/>
<scope name="hw_outputdocument" signature="hw_outputdocument(hwdoc doc)" returns="void" doc="An alias for hw output document" ilk="function" src="hw.c"/>
<scope name="hw_output_document" signature="hw_output_document(hwdoc doc)" returns="void" doc="Prints document" ilk="function" src="hw.c"/>
<scope name="hw_documentbodytag" signature="hw_documentbodytag(hwdoc doc [, string prefix])" returns="string" doc="An alias for hw document bodytag" ilk="function" src="hw.c"/>
<scope name="hw_document_bodytag" signature="hw_document_bodytag(hwdoc doc [, string prefix])" returns="string" doc="Return bodytag prefixed by prefix" ilk="function" src="hw.c"/>
<scope name="hw_document_content" signature="hw_document_content(hwdoc doc)" returns="string" doc="Returns content of document" ilk="function" src="hw.c"/>
<scope name="hw_document_setcontent" signature="hw_document_setcontent(hwdoc doc, string content)" returns="int" doc="Sets replaces content of document" ilk="function" src="hw.c"/>
<scope name="hw_documentsize" signature="hw_documentsize(hwdoc doc)" returns="int" doc="An alias for hw document size" ilk="function" src="hw.c"/>
<scope name="hw_document_size" signature="hw_document_size(hwdoc doc)" returns="int" doc="Returns size of document" ilk="function" src="hw.c"/>
<scope name="hw_documentattributes" signature="hw_documentattributes(hwdoc doc)" returns="string" doc="An alias for hw document attributes" ilk="function" src="hw.c"/>
<scope name="hw_document_attributes" signature="hw_document_attributes(hwdoc doc)" returns="string" doc="Returns object record of document" ilk="function" src="hw.c"/>
<scope name="hw_getparentsobj" signature="hw_getparentsobj(int link, int objid)" returns="array" doc="Returns array of parent object records" ilk="function" src="hw.c"/>
<scope name="hw_getparents" signature="hw_getparents(int link, int objid)" returns="array" doc="Returns array of parent object ids" ilk="function" src="hw.c"/>
<scope name="hw_children" signature="hw_children(int link, int objid)" returns="array" doc="Returns array of children object ids" ilk="function" src="hw.c"/>
<scope name="hw_childrenobj" signature="hw_childrenobj(int link, int objid)" returns="array" doc="Returns array of children object records" ilk="function" src="hw.c"/>
<scope name="hw_getchildcoll" signature="hw_getchildcoll(int link, int objid)" returns="array" doc="Returns array of child collection object ids" ilk="function" src="hw.c"/>
<scope name="hw_getchildcollobj" signature="hw_getchildcollobj(int link, int objid)" returns="array" doc="Returns array of child collection object records" ilk="function" src="hw.c"/>
<scope name="hw_docbyanchor" signature="hw_docbyanchor(int link, int anchorid)" returns="int" doc="Returns objid of document belonging to anchorid" ilk="function" src="hw.c"/>
<scope name="hw_docbyanchorobj" signature="hw_docbyanchorobj(int link, int anchorid)" returns="array" doc="Returns object record of document belonging to anchorid" ilk="function" src="hw.c"/>
<scope name="hw_getobjectbyquery" signature="hw_getobjectbyquery(int link, string query, int maxhits)" returns="array" doc="Search for query and return maxhits objids" ilk="function" src="hw.c"/>
<scope name="hw_getobjectbyqueryobj" signature="hw_getobjectbyqueryobj(int link, string query, int maxhits)" returns="array" doc="Search for query and return maxhits object records" ilk="function" src="hw.c"/>
<scope name="hw_getobjectbyquerycoll" signature="hw_getobjectbyquerycoll(int link, int collid, string query, int maxhits)" returns="array" doc="Search for query in collection and return maxhits objids" ilk="function" src="hw.c"/>
<scope name="hw_getobjectbyquerycollobj" signature="hw_getobjectbyquerycollobj(int link, int collid, string query, int maxhits)" returns="array" doc="Search for query in collection and return maxhits object records" ilk="function" src="hw.c"/>
<scope name="hw_getobjectbyftquery" signature="hw_getobjectbyftquery(int link, string query, int maxhits)" returns="array" doc="Search for query as fulltext and return maxhits objids" ilk="function" src="hw.c"/>
<scope name="hw_getobjectbyftqueryobj" signature="hw_getobjectbyftqueryobj(int link, string query, int maxhits)" returns="array" doc="Search for query as fulltext and return maxhits object records" ilk="function" src="hw.c"/>
<scope name="hw_getobjectbyftquerycoll" signature="hw_getobjectbyftquerycoll(int link, int collid, string query, int maxhits)" returns="array" doc="Search for fulltext query in collection and return maxhits objids" ilk="function" src="hw.c"/>
<scope name="hw_getobjectbyftquerycollobj" signature="hw_getobjectbyftquerycollobj(int link, int collid, string query, int maxhits)" returns="array" doc="Search for fulltext query in collection and return maxhits object records" ilk="function" src="hw.c"/>
<scope name="hw_getchilddoccoll" signature="hw_getchilddoccoll(int link, int objid)" returns="array" doc="Returns all children ids which are documents" ilk="function" src="hw.c"/>
<scope name="hw_getchilddoccollobj" signature="hw_getchilddoccollobj(int link, int objid)" returns="array" doc="Returns all children object records which are documents" ilk="function" src="hw.c"/>
<scope name="hw_getanchors" signature="hw_getanchors(int link, int objid)" returns="array" doc="Return all anchors of object" ilk="function" src="hw.c"/>
<scope name="hw_getanchorsobj" signature="hw_getanchorsobj(int link, int objid)" returns="array" doc="Return all object records of anchors of object" ilk="function" src="hw.c"/>
<scope name="hw_getusername" signature="hw_getusername(int link)" returns="string" doc="Returns the current user name" ilk="function" src="hw.c"/>
<scope name="hw_identify" signature="hw_identify(int link, string username, string password)" returns="void" doc="Identifies at Hyperwave server" ilk="function" src="hw.c"/>
<scope name="hw_objrec2array" signature="hw_objrec2array(string objrec, [array format])" returns="array" doc="Returns object array of object record" ilk="function" src="hw.c"/>
<scope name="hw_array2objrec" signature="hw_array2objrec(array objarr)" returns="string" doc="Returns object record of object array" ilk="function" src="hw.c"/>
<scope name="hw_incollections" signature="hw_incollections(int link, array objids, array collids, int para)" returns="array" doc="Returns object ids which are in collections" ilk="function" src="hw.c"/>
<scope name="hw_inscoll" signature="hw_inscoll(int link, int parentid, array objarr)" returns="void" doc="Inserts collection" ilk="function" src="hw.c"/>
<scope name="hw_insdoc" signature="hw_insdoc(int link, int parentid, string objrec [, string text])" returns="void" doc="Inserts document" ilk="function" src="hw.c"/>
<scope name="hw_getsrcbydestobj" signature="hw_getsrcbydestobj(int link, int destid)" returns="int" doc="Returns object id of source docuent by destination anchor" ilk="function" src="hw.c"/>
<scope name="hw_mapid" signature="hw_mapid(int link, int serverid, int destid)" returns="int" doc="Returns virtual object id of document on remote Hyperwave server" ilk="function" src="hw.c"/>
<scope name="hw_getrellink" signature="hw_getrellink(int link, int rootid, int sourceid, int destid)" returns="string" doc="Get link from source to dest relative to rootid" ilk="function" src="hw.c"/>
<scope name="hw_insertanchors" signature="hw_insertanchors(int hwdoc, array anchorecs, array dest [, array urlprefixes])" returns="string" doc="Inserts only anchors into text" ilk="function" src="hw.c"/>
<scope name="hw_connection_info" signature="hw_connection_info(int link)" returns="void" doc="Prints information about the connection to Hyperwave server" ilk="function" src="hw.c"/>
<scope name="iconv" signature="iconv(string in_charset, string out_charset, string str)" returns="string" doc="Returns str converted to the out charset character set" ilk="function" src="iconv.c"/>
<scope name="ob_iconv_handler" signature="ob_iconv_handler(string contents, int status)" returns="string" doc="Returns str in output buffer converted to the iconv output encoding character set" ilk="function" src="iconv.c"/>
<scope name="iconv_set_encoding" signature="iconv_set_encoding(string type, string charset)" returns="bool" doc="Sets internal encoding and output encoding for ob iconv handler" ilk="function" src="iconv.c"/>
<scope name="iconv_get_encoding" signature="iconv_get_encoding([string type])" returns="array" doc="Get internal encoding and output encoding for ob iconv handler" ilk="function" src="iconv.c"/>
<scope name="imap_open" signature="imap_open(string mailbox, string user, string password [, int options])" returns="resource" doc="Open an IMAP stream to a mailbox" ilk="function" src="php_imap.c"/>
<scope name="imap_reopen" signature="imap_reopen(resource stream_id, string mailbox [, int options])" returns="bool" doc="Reopen an IMAP stream to a new mailbox" ilk="function" src="php_imap.c"/>
<scope name="imap_append" signature="imap_append(resource stream_id, string folder, string message [, string options])" returns="bool" doc="Append a new message to a specified mailbox" ilk="function" src="php_imap.c"/>
<scope name="imap_num_msg" signature="imap_num_msg(resource stream_id)" returns="int" doc="Gives the number of messages in the current mailbox" ilk="function" src="php_imap.c"/>
<scope name="imap_ping" signature="imap_ping(resource stream_id)" returns="bool" doc="Check if the IMAP stream is still active" ilk="function" src="php_imap.c"/>
<scope name="imap_num_recent" signature="imap_num_recent(resource stream_id)" returns="int" doc="Gives the number of recent messages in current mailbox" ilk="function" src="php_imap.c"/>
<scope name="imap_get_quota" signature="imap_get_quota(resource stream_id, string qroot)" returns="array" doc="Returns the quota set to the mailbox account qroot" ilk="function" src="php_imap.c"/>
<scope name="imap_get_quotaroot" signature="imap_get_quotaroot(resource stream_id, string mbox)" returns="array" doc="Returns the quota set to the mailbox account mbox" ilk="function" src="php_imap.c"/>
<scope name="imap_set_quota" signature="imap_set_quota(resource stream_id, string qroot, int mailbox_size)" returns="bool" doc="Will set the quota for qroot mailbox" ilk="function" src="php_imap.c"/>
<scope name="imap_setacl" signature="imap_setacl(resource stream_id, string mailbox, string id, string rights)" returns="bool" doc="Sets the ACL for a given mailbox" ilk="function" src="php_imap.c"/>
<scope name="imap_expunge" signature="imap_expunge(resource stream_id)" returns="bool" doc="Permanently delete all messages marked for deletion" ilk="function" src="php_imap.c"/>
<scope name="imap_close" signature="imap_close(resource stream_id [, int options])" returns="bool" doc="Close an IMAP stream" ilk="function" src="php_imap.c"/>
<scope name="imap_headers" signature="imap_headers(resource stream_id)" returns="array" doc="Returns headers for all messages in a mailbox" ilk="function" src="php_imap.c"/>
<scope name="imap_body" signature="imap_body(resource stream_id, int msg_no [, int options])" returns="string" doc="Read the message body" ilk="function" src="php_imap.c"/>
<scope name="imap_mail_copy" signature="imap_mail_copy(resource stream_id, int msg_no, string mailbox [, int options])" returns="bool" doc="Copy specified message to a mailbox" ilk="function" src="php_imap.c"/>
<scope name="imap_mail_move" signature="imap_mail_move(resource stream_id, int msg_no, string mailbox [, int options])" returns="bool" doc="Move specified message to a mailbox" ilk="function" src="php_imap.c"/>
<scope name="imap_createmailbox" signature="imap_createmailbox(resource stream_id, string mailbox)" returns="bool" doc="Create a new mailbox" ilk="function" src="php_imap.c"/>
<scope name="imap_renamemailbox" signature="imap_renamemailbox(resource stream_id, string old_name, string new_name)" returns="bool" doc="Rename a mailbox" ilk="function" src="php_imap.c"/>
<scope name="imap_deletemailbox" signature="imap_deletemailbox(resource stream_id, string mailbox)" returns="bool" doc="Delete a mailbox" ilk="function" src="php_imap.c"/>
<scope name="imap_list" signature="imap_list(resource stream_id, string ref, string pattern)" returns="array" doc="Read the list of mailboxes" ilk="function" src="php_imap.c"/>
<scope name="imap_getmailboxes" signature="imap_getmailboxes(resource stream_id, string ref, string pattern)" returns="array" doc="Reads the list of mailboxes and returns a full array of objects containing name attributes and delimiter" ilk="function" src="php_imap.c"/>
<scope name="imap_scan" signature="imap_scan(resource stream_id, string ref, string pattern, string content)" returns="array" doc="Read list of mailboxes containing a certain string" ilk="function" src="php_imap.c"/>
<scope name="imap_check" signature="imap_check(resource stream_id)" returns="object" doc="Get mailbox properties" ilk="function" src="php_imap.c"/>
<scope name="imap_delete" signature="imap_delete(resource stream_id, int msg_no [, int options])" returns="bool" doc="Mark a message for deletion" ilk="function" src="php_imap.c"/>
<scope name="imap_undelete" signature="imap_undelete(resource stream_id, int msg_no)" returns="bool" doc="Remove the delete flag from a message" ilk="function" src="php_imap.c"/>
<scope name="imap_headerinfo" signature="imap_headerinfo(resource stream_id, int msg_no [, int from_length [, int subject_length [, string default_host]]])" returns="object" doc="Read the headers of the message" ilk="function" src="php_imap.c"/>
<scope name="imap_rfc822_parse_headers" signature="imap_rfc822_parse_headers(string headers [, string default_host])" returns="object" doc="Parse a set of mail headers contained in a string and return an object similar to imap headerinfo" ilk="function" src="php_imap.c"/>
<scope name="imap_lsub" signature="imap_lsub(resource stream_id, string ref, string pattern)" returns="array" doc="Return a list of subscribed mailboxes" ilk="function" src="php_imap.c"/>
<scope name="imap_getsubscribed" signature="imap_getsubscribed(resource stream_id, string ref, string pattern)" returns="array" doc="Return a list of subscribed mailboxes in the same format as imap getmailboxes" ilk="function" src="php_imap.c"/>
<scope name="imap_subscribe" signature="imap_subscribe(resource stream_id, string mailbox)" returns="bool" doc="Subscribe to a mailbox" ilk="function" src="php_imap.c"/>
<scope name="imap_unsubscribe" signature="imap_unsubscribe(resource stream_id, string mailbox)" returns="bool" doc="Unsubscribe from a mailbox" ilk="function" src="php_imap.c"/>
<scope name="imap_fetchstructure" signature="imap_fetchstructure(resource stream_id, int msg_no [, int options])" returns="object" doc="Read the full structure of a message" ilk="function" src="php_imap.c"/>
<scope name="imap_fetchbody" signature="imap_fetchbody(resource stream_id, int msg_no, string section [, int options])" returns="string" doc="Get a specific body section" ilk="function" src="php_imap.c"/>
<scope name="imap_base64" signature="imap_base64(string text)" returns="string" doc="Decode BASE encoded text" ilk="function" src="php_imap.c"/>
<scope name="imap_qprint" signature="imap_qprint(string text)" returns="string" doc="Convert a quoted-printable string to an -bit string" ilk="function" src="php_imap.c"/>
<scope name="imap_8bit" signature="imap_8bit(string text)" returns="string" doc="Convert an -bit string to a quoted-printable string" ilk="function" src="php_imap.c"/>
<scope name="imap_binary" signature="imap_binary(string text)" returns="string" doc="Convert an bit string to a base string" ilk="function" src="php_imap.c"/>
<scope name="imap_mailboxmsginfo" signature="imap_mailboxmsginfo(resource stream_id)" returns="object" doc="Returns info about the current mailbox" ilk="function" src="php_imap.c"/>
<scope name="imap_rfc822_write_address" signature="imap_rfc822_write_address(string mailbox, string host, string personal)" returns="string" doc="Returns a properly formatted email address given the mailbox host and personal info" ilk="function" src="php_imap.c"/>
<scope name="imap_rfc822_parse_adrlist" signature="imap_rfc822_parse_adrlist(string address_string, string default_host)" returns="array" doc="Parses an address string" ilk="function" src="php_imap.c"/>
<scope name="imap_utf8" signature="imap_utf8(string mime_encoded_text)" returns="string" doc="Convert a mime-encoded text to UTF-" ilk="function" src="php_imap.c"/>
<scope name="imap_utf7_decode" signature="imap_utf7_decode(string buf)" returns="string" doc="Decode a modified UTF- string" ilk="function" src="php_imap.c"/>
<scope name="imap_utf7_encode" signature="imap_utf7_encode(string buf)" returns="string" doc="Encode a string in modified UTF-" ilk="function" src="php_imap.c"/>
<scope name="imap_setflag_full" signature="imap_setflag_full(resource stream_id, string sequence, string flag [, int options])" returns="bool" doc="Sets flags on messages" ilk="function" src="php_imap.c"/>
<scope name="imap_clearflag_full" signature="imap_clearflag_full(resource stream_id, string sequence, string flag [, int options])" returns="bool" doc="Clears flags on messages" ilk="function" src="php_imap.c"/>
<scope name="imap_sort" signature="imap_sort(resource stream_id, int criteria, int reverse [, int options [, string search_criteria [, string charset]]])" returns="array" doc="Sort an array of message headers optionally including only messages that meet specified criteria" ilk="function" src="php_imap.c"/>
<scope name="imap_fetchheader" signature="imap_fetchheader(resource stream_id, int msg_no [, int options])" returns="string" doc="Get the full unfiltered header for a message" ilk="function" src="php_imap.c"/>
<scope name="imap_uid" signature="imap_uid(resource stream_id, int msg_no)" returns="int" doc="Get the unique message id associated with a standard sequential message number" ilk="function" src="php_imap.c"/>
<scope name="imap_msgno" signature="imap_msgno(resource stream_id, int unique_msg_id)" returns="int" doc="Get the sequence number associated with a UID" ilk="function" src="php_imap.c"/>
<scope name="imap_status" signature="imap_status(resource stream_id, string mailbox, int options)" returns="object" doc="Get status info from a mailbox" ilk="function" src="php_imap.c"/>
<scope name="imap_bodystruct" signature="imap_bodystruct(resource stream_id, int msg_no, string section)" returns="object" doc="Read the structure of a specified body section of a specific message" ilk="function" src="php_imap.c"/>
<scope name="imap_fetch_overview" signature="imap_fetch_overview(resource stream_id, int msg_no [, int options])" returns="array" doc="Read an overview of the information in the headers of the given message sequence" ilk="function" src="php_imap.c"/>
<scope name="imap_mail_compose" signature="imap_mail_compose(array envelope, array body)" returns="string" doc="Create a MIME message based on given envelope and body sections" ilk="function" src="php_imap.c"/>
<scope name="imap_mail" signature="imap_mail(string to, string subject, string message [, string additional_headers [, string cc [, string bcc [, string rpath]]]])" returns="bool" doc="Send an email message" ilk="function" src="php_imap.c"/>
<scope name="imap_search" signature="imap_search(resource stream_id, string criteria [, int options [, string charset]])" returns="array" doc="Return a list of messages matching the given criteria" ilk="function" src="php_imap.c"/>
<scope name="imap_alerts" signature="imap_alerts(void)" returns="array" doc="Returns an array of all IMAP alerts that have been generated since the last page load or since the last" ilk="function" src="php_imap.c"/>
<scope name="imap_errors" signature="imap_errors(void)" returns="array" doc="Returns an array of all IMAP errors generated since the last page load or since the last imap errors call" ilk="function" src="php_imap.c"/>
<scope name="imap_last_error" signature="imap_last_error(void)" returns="string" doc="Returns the last error that was generated by an IMAP function The error stack is NOT cleared after this call" ilk="function" src="php_imap.c"/>
<scope name="imap_mime_header_decode" signature="imap_mime_header_decode(string str)" returns="array" doc="Decode mime header element in accordance with RFC and return array of objects containing 'charset' encoding and decoded 'text'" ilk="function" src="php_imap.c"/>
<scope name="imap_thread" signature="imap_thread(resource stream_id [, int options])" returns="array" doc="Return threaded by REFERENCES tree" ilk="function" src="php_imap.c"/>
<scope name="imap_timeout" signature="imap_timeout(int timeout_type [, int timeout])" returns="mixed" doc="Set or fetch imap timeout" ilk="function" src="php_imap.c"/>
<scope name="ifx_connect" signature="ifx_connect([string database [, string userid [, string password]]])" returns="resource" doc="Connects to database using userid password returns connection id" ilk="function" src="ifx.ec"/>
<scope name="ifx_pconnect" signature="ifx_pconnect([string database [, string userid [, string password]]])" returns="resource" doc="Connects to database using userid password returns connection id" ilk="function" src="ifx.ec"/>
<scope name="ifx_close" signature="ifx_close([resource connid])" returns="bool" doc="Close informix connection" ilk="function" src="ifx.ec"/>
<scope name="ifx_query" signature="ifx_query(string query, resource connid [, int cursortype] [, array idarray])" returns="resource" doc="Perform a query on a given connection" ilk="function" src="ifx.ec"/>
<scope name="ifx_prepare" signature="ifx_prepare(string query, resource connid [, int cursortype] [, array idarray])" returns="resource" doc="Prepare a query on a given connection" ilk="function" src="ifx.ec"/>
<scope name="ifx_do" signature="ifx_do(resource resultid)" returns="bool" doc="Executes a previously prepared query or opens a cursor for it" ilk="function" src="ifx.ec"/>
<scope name="ifx_error" signature="ifx_error([resource connection_id])" returns="string" doc="Returns the Informix error codes SQLSTATE SQLCODE" ilk="function" src="ifx.ec"/>
<scope name="ifx_errormsg" signature="ifx_errormsg([int errorcode])" returns="string" doc="Returns the Informix errormessage associated with" ilk="function" src="ifx.ec"/>
<scope name="ifx_affected_rows" signature="ifx_affected_rows(resource resultid)" returns="int" doc="Returns the number of rows affected by query identified by resultid" ilk="function" src="ifx.ec"/>
<scope name="ifx_fetch_row" signature="ifx_fetch_row(resource resultid [, mixed position])" returns="array" doc="Fetches the next row or position row if using a scroll cursor" ilk="function" src="ifx.ec"/>
<scope name="ifx_htmltbl_result" signature="ifx_htmltbl_result(resource resultid [, string htmltableoptions])" returns="int" doc="Formats all rows of the resultid query into a html table" ilk="function" src="ifx.ec"/>
<scope name="ifx_fieldtypes" signature="ifx_fieldtypes(resource resultid)" returns="array" doc="Returns an associative array with fieldnames as key for query resultid" ilk="function" src="ifx.ec"/>
<scope name="ifx_fieldproperties" signature="ifx_fieldproperties(resource resultid)" returns="array" doc="Returns an associative for query resultid array with fieldnames as key" ilk="function" src="ifx.ec"/>
<scope name="ifx_num_rows" signature="ifx_num_rows(resource resultid)" returns="int" doc="Returns the number of rows already fetched for query identified by resultid" ilk="function" src="ifx.ec"/>
<scope name="ifx_getsqlca" signature="ifx_getsqlca(resource resultid)" returns="array" doc="Returns the sqlerrd fields of the sqlca struct for query resultid" ilk="function" src="ifx.ec"/>
<scope name="ifx_num_fields" signature="ifx_num_fields(resource resultid)" returns="int" doc="Returns the number of columns in query resultid" ilk="function" src="ifx.ec"/>
<scope name="ifx_free_result" signature="ifx_free_result(resource resultid)" returns="bool" doc="Releases resources for query associated with resultid" ilk="function" src="ifx.ec"/>
<scope name="ifx_create_blob" signature="ifx_create_blob(int type, int mode, string param)" returns="int" doc="Creates a blob-object" ilk="function" src="ifx.ec"/>
<scope name="ifx_copy_blob" signature="ifx_copy_blob(int bid)" returns="int" doc="Duplicates the given blob-object" ilk="function" src="ifx.ec"/>
<scope name="ifx_free_blob" signature="ifx_free_blob(int bid)" returns="int" doc="Deletes the blob-object" ilk="function" src="ifx.ec"/>
<scope name="ifx_get_blob" signature="ifx_get_blob(int bid)" returns="string" doc="Returns the content of the blob-object" ilk="function" src="ifx.ec"/>
<scope name="ifx_update_blob" signature="ifx_update_blob(int bid, string content)" returns="int" doc="Updates the content of the blob-object" ilk="function" src="ifx.ec"/>
<scope name="ifx_blobinfile_mode" signature="ifx_blobinfile_mode(int mode)" returns="bool" doc="Sets the default blob-mode for all select-queries" ilk="function" src="ifx.ec"/>
<scope name="ifx_textasvarchar" signature="ifx_textasvarchar(int mode)" returns="bool" doc="Sets the default text-mode for all select-queries" ilk="function" src="ifx.ec"/>
<scope name="ifx_byteasvarchar" signature="ifx_byteasvarchar(int mode)" returns="bool" doc="Sets the default byte-mode for all select-queries" ilk="function" src="ifx.ec"/>
<scope name="ifx_nullformat" signature="ifx_nullformat(int mode)" returns="bool" doc="Sets the default return value of a NULL-value on a fetch-row" ilk="function" src="ifx.ec"/>
<scope name="ifx_create_char" signature="ifx_create_char(string param)" returns="int" doc="Creates a char-object" ilk="function" src="ifx.ec"/>
<scope name="ifx_get_char" signature="ifx_get_char(int bid)" returns="string" doc="Returns the content of the char-object" ilk="function" src="ifx.ec"/>
<scope name="ifx_free_char" signature="ifx_free_char(int bid)" returns="bool" doc="Deletes the char-object" ilk="function" src="ifx.ec"/>
<scope name="ifx_update_char" signature="ifx_update_char(int bid, string content)" returns="bool" doc="Updates the content of the char-object" ilk="function" src="ifx.ec"/>
<scope name="ifxus_create_slob" signature="ifxus_create_slob(int mode)" returns="int" doc="Creates a slob-object and opens it" ilk="function" src="ifx.ec"/>
<scope name="ifxus_free_slob" signature="ifxus_free_slob(int bid)" returns="bool" doc="Deletes the slob-object" ilk="function" src="ifx.ec"/>
<scope name="ifxus_close_slob" signature="ifxus_close_slob(int bid)" returns="bool" doc="Deletes the slob-object" ilk="function" src="ifx.ec"/>
<scope name="ifxus_open_slob" signature="ifxus_open_slob(int bid, int mode)" returns="int" doc="Opens an slob-object" ilk="function" src="ifx.ec"/>
<scope name="ifxus_tell_slob" signature="ifxus_tell_slob(int bid)" returns="int" doc="Returns the current file or seek position of an open slob-object" ilk="function" src="ifx.ec"/>
<scope name="ifxus_seek_slob" signature="ifxus_seek_slob(int bid, int mode, long offset)" returns="int" doc="Sets the current file or seek position of an open slob-object" ilk="function" src="ifx.ec"/>
<scope name="ifxus_read_slob" signature="ifxus_read_slob(int bid, int nbytes)" returns="string" doc="Reads nbytes of the slob-object" ilk="function" src="ifx.ec"/>
<scope name="ifxus_write_slob" signature="ifxus_write_slob(int bid, string content)" returns="int" doc="Writes a string into the slob-object" ilk="function" src="ifx.ec"/>
<scope name="ingres_close" signature="ingres_close([resource link])" returns="bool" doc="Close an Ingres II database connection" ilk="function" src="ii.c"/>
<scope name="ingres_query" signature="ingres_query(string query [, resource link])" returns="bool" doc="Send a SQL query to Ingres II" ilk="function" src="ii.c"/>
<scope name="ingres_num_rows" signature="ingres_num_rows([resource link])" returns="int" doc="Return the number of rows affected returned by the last query" ilk="function" src="ii.c"/>
<scope name="ingres_num_fields" signature="ingres_num_fields([resource link])" returns="int" doc="Return the number of fields returned by the last query" ilk="function" src="ii.c"/>
<scope name="ingres_field_name" signature="ingres_field_name(int index [, resource link])" returns="string" doc="Return the name of a field in a query result index must be and ingres num fields" ilk="function" src="ii.c"/>
<scope name="ingres_field_type" signature="ingres_field_type(int index [, resource link])" returns="string" doc="Return the type of a field in a query result index must be and ingres num fields" ilk="function" src="ii.c"/>
<scope name="ingres_field_nullable" signature="ingres_field_nullable(int index [, resource link])" returns="string" doc="Return true if the field is nullable and false otherwise index must be and ingres num fields" ilk="function" src="ii.c"/>
<scope name="ingres_field_length" signature="ingres_field_length(int index [, resource link])" returns="string" doc="Return the length of a field in a query result index must be and ingres num fields" ilk="function" src="ii.c"/>
<scope name="ingres_field_precision" signature="ingres_field_precision(int index [, resource link])" returns="string" doc="Return the precision of a field in a query result index must be and ingres num fields" ilk="function" src="ii.c"/>
<scope name="ingres_field_scale" signature="ingres_field_scale(int index [, resource link])" returns="string" doc="Return the scale of a field in a query result index must be and ingres num fields" ilk="function" src="ii.c"/>
<scope name="ingres_fetch_array" signature="ingres_fetch_array([int result_type [, resource link]])" returns="array" doc="Fetch a row of result into an array result type can be II NUM for enumerated array II ASSOC for" ilk="function" src="ii.c"/>
<scope name="ingres_fetch_row" signature="ingres_fetch_row([resource link])" returns="array" doc="Fetch a row of result into an enumerated array" ilk="function" src="ii.c"/>
<scope name="ingres_fetch_object" signature="ingres_fetch_object([int result_type [, resource link]])" returns="array" doc="Fetch a row of result into an object result type can be II NUM for enumerated object II ASSOC for" ilk="function" src="ii.c"/>
<scope name="ingres_rollback" signature="ingres_rollback([resource link])" returns="bool" doc="Roll back a transaction" ilk="function" src="ii.c"/>
<scope name="ingres_commit" signature="ingres_commit([resource link])" returns="bool" doc="Commit a transaction" ilk="function" src="ii.c"/>
<scope name="ingres_autocommit" signature="ingres_autocommit([resource link])" returns="bool" doc="Switch autocommit on or off" ilk="function" src="ii.c"/>
<scope name="ibase_errmsg" signature="ibase_errmsg(void)" returns="string" doc="Return error message" ilk="function" src="interbase.c"/>
<scope name="ibase_connect" signature="ibase_connect(string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role]]]]]])" returns="resource" doc="Open a connection to an InterBase database" ilk="function" src="interbase.c"/>
<scope name="ibase_pconnect" signature="ibase_pconnect(string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role]]]]]])" returns="resource" doc="Open a persistent connection to an InterBase database" ilk="function" src="interbase.c"/>
<scope name="ibase_close" signature="ibase_close([resource link_identifier])" returns="bool" doc="Close an InterBase connection" ilk="function" src="interbase.c"/>
<scope name="ibase_trans" signature="ibase_trans([int trans_args [, resource link_identifier]])" returns="resource" doc="Start transaction" ilk="function" src="interbase.c"/>
<scope name="ibase_commit" signature="ibase_commit( resource link_identifier )" returns="bool" doc="Commit transaction" ilk="function" src="interbase.c"/>
<scope name="ibase_rollback" signature="ibase_rollback( resource link_identifier )" returns="bool" doc="Rollback transaction" ilk="function" src="interbase.c"/>
<scope name="ibase_query" signature="ibase_query([resource link_identifier [, string query [, int bind_args]]])" returns="resource" doc="Execute a query" ilk="function" src="interbase.c"/>
<scope name="ibase_fetch_row" signature="ibase_fetch_row(resource result [, int blob_flag])" returns="array" doc="Fetch a row from the results of a query" ilk="function" src="interbase.c"/>
<scope name="ibase_fetch_assoc" signature="ibase_fetch_assoc(resource result [, int blob_flag])" returns="array" doc="Fetch a row from the results of a query" ilk="function" src="interbase.c"/>
<scope name="ibase_fetch_object" signature="ibase_fetch_object(resource result [, int blob_flag])" returns="object" doc="Fetch a object from the results of a query" ilk="function" src="interbase.c"/>
<scope name="ibase_free_result" signature="ibase_free_result(resource result)" returns="bool" doc="Free the memory used by a result" ilk="function" src="interbase.c"/>
<scope name="ibase_prepare" signature="ibase_prepare([resource link_identifier, ] string query)" returns="resource" doc="Prepare a query for later execution" ilk="function" src="interbase.c"/>
<scope name="ibase_execute" signature="ibase_execute(resource query [, int bind_args [, int ...]])" returns="resource" doc="Execute a previously prepared query" ilk="function" src="interbase.c"/>
<scope name="ibase_free_query" signature="ibase_free_query(resource query)" returns="bool" doc="Free memory used by a query" ilk="function" src="interbase.c"/>
<scope name="ibase_timefmt" signature="ibase_timefmt(string format)" returns="int" doc="Sets the format of timestamp date and time columns returned from queries" ilk="function" src="interbase.c"/>
<scope name="ibase_num_fields" signature="ibase_num_fields(resource result)" returns="int" doc="Get the number of fields in result" ilk="function" src="interbase.c"/>
<scope name="ibase_field_info" signature="ibase_field_info(resource result, int field_number)" returns="array" doc="Get information about a field" ilk="function" src="interbase.c"/>
<scope name="ibase_blob_create" signature="ibase_blob_create([resource link_identifier])" returns="int" doc="Create blob for adding data" ilk="function" src="interbase.c"/>
<scope name="ibase_blob_open" signature="ibase_blob_open(string blob_id)" returns="int" doc="Open blob for retriving data parts" ilk="function" src="interbase.c"/>
<scope name="ibase_blob_add" signature="ibase_blob_add(int blob_id, string data)" returns="bool" doc="Add data into created blob" ilk="function" src="interbase.c"/>
<scope name="ibase_blob_get" signature="ibase_blob_get(int blob_id, int len)" returns="string" doc="Get len bytes data from open blob" ilk="function" src="interbase.c"/>
<scope name="ibase_blob_close" signature="ibase_blob_close(int blob_id)" returns="bool" doc="Close blob" ilk="function" src="interbase.c"/>
<scope name="ibase_blob_cancel" signature="ibase_blob_cancel(int blob_id)" returns="bool" doc="Cancel creating blob" ilk="function" src="interbase.c"/>
<scope name="ibase_blob_info" signature="ibase_blob_info(string blob_id_str)" returns="object" doc="Return blob length and other useful info" ilk="function" src="interbase.c"/>
<scope name="ibase_blob_echo" signature="ibase_blob_echo(string blob_id_str)" returns="bool" doc="Output blob contents to browser" ilk="function" src="interbase.c"/>
<scope name="ibase_blob_import" signature="ibase_blob_import([resource link_identifier, ] int file_id)" returns="string" doc="Create blob copy file in it and close it" ilk="function" src="interbase.c"/>
<scope name="ibase_add_user" signature="ibase_add_user(string server, string dba_user_name, string dba_password, string user_name, string password [, string first_name [, string middle_name [, string last_name]]])" returns="bool" doc="Add an user to security database only for IB or later" ilk="function" src="interbase.c"/>
<scope name="ibase_modify_user" signature="ibase_modify_user(string server, string dba_user_name, string dba_password, string user_name, string password [, string first_name [, string middle_name [, string last_name]]])" returns="bool" doc="Modify an user in security database only for IB or later" ilk="function" src="interbase.c"/>
<scope name="ibase_delete_user" signature="ibase_delete_user(string server, string dba_user_name, string dba_password, string username)" returns="bool" doc="Delete an user from security database only for IB or later" ilk="function" src="interbase.c"/>
<scope name="java_last_exception_get" signature="java_last_exception_get(void)" returns="object" doc="Get last Java exception" ilk="function" src="java.c"/>
<scope name="java_last_exception_clear" signature="java_last_exception_clear(void)" returns="void" doc="Clear last java extension" ilk="function" src="java.c"/>
<scope name="ldap_connect" signature="ldap_connect([string host [, int port]])" returns="resource" doc="Connect to an LDAP server" ilk="function" src="ldap.c"/>
<scope name="ldap_bind" signature="ldap_bind(resource link [, string dn, string password])" returns="bool" doc="Bind to LDAP directory" ilk="function" src="ldap.c"/>
<scope name="ldap_unbind" signature="ldap_unbind(resource link)" returns="bool" doc="Unbind from LDAP directory" ilk="function" src="ldap.c"/>
<scope name="ldap_read" signature="ldap_read(resource link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]])" returns="resource" doc="Read an entry" ilk="function" src="ldap.c"/>
<scope name="ldap_list" signature="ldap_list(resource link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]])" returns="resource" doc="Single-level search" ilk="function" src="ldap.c"/>
<scope name="ldap_search" signature="ldap_search(resource link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]])" returns="resource" doc="Search LDAP tree under base dn" ilk="function" src="ldap.c"/>
<scope name="ldap_free_result" signature="ldap_free_result(resource result)" returns="bool" doc="Free result memory" ilk="function" src="ldap.c"/>
<scope name="ldap_count_entries" signature="ldap_count_entries(resource link, resource result)" returns="int" doc="Count the number of entries in a search result" ilk="function" src="ldap.c"/>
<scope name="ldap_first_entry" signature="ldap_first_entry(resource link, resource result)" returns="resource" doc="Return first result id" ilk="function" src="ldap.c"/>
<scope name="ldap_next_entry" signature="ldap_next_entry(resource link, resource result_entry)" returns="resource" doc="Get next result entry" ilk="function" src="ldap.c"/>
<scope name="ldap_get_entries" signature="ldap_get_entries(resource link, resource result)" returns="array" doc="Get all result entries" ilk="function" src="ldap.c"/>
<scope name="ldap_first_attribute" signature="ldap_first_attribute(resource link, resource result_entry, int ber)" returns="string" doc="Return first attribute" ilk="function" src="ldap.c"/>
<scope name="ldap_next_attribute" signature="ldap_next_attribute(resource link, resource result_entry, resource ber)" returns="string" doc="Get the next attribute in result" ilk="function" src="ldap.c"/>
<scope name="ldap_get_attributes" signature="ldap_get_attributes(resource link, resource result_entry)" returns="array" doc="Get attributes from a search result entry" ilk="function" src="ldap.c"/>
<scope name="ldap_get_values" signature="ldap_get_values(resource link, resource result_entry, string attribute)" returns="array" doc="Get all values from a result entry" ilk="function" src="ldap.c"/>
<scope name="ldap_get_values_len" signature="ldap_get_values_len(resource link, resource result_entry, string attribute)" returns="array" doc="Get all values with lengths from a result entry" ilk="function" src="ldap.c"/>
<scope name="ldap_get_dn" signature="ldap_get_dn(resource link, resource result_entry)" returns="string" doc="Get the DN of a result entry" ilk="function" src="ldap.c"/>
<scope name="ldap_explode_dn" signature="ldap_explode_dn(string dn, int with_attrib)" returns="array" doc="Splits DN into its component parts" ilk="function" src="ldap.c"/>
<scope name="ldap_dn2ufn" signature="ldap_dn2ufn(string dn)" returns="string" doc="Convert DN to User Friendly Naming format" ilk="function" src="ldap.c"/>
<scope name="ldap_add" signature="ldap_add(resource link, string dn, array entry)" returns="bool" doc="Add entries to LDAP directory" ilk="function" src="ldap.c"/>
<scope name="ldap_mod_replace" signature="ldap_mod_replace(resource link, string dn, array entry)" returns="bool" doc="Replace attribute values with new ones" ilk="function" src="ldap.c"/>
<scope name="ldap_mod_add" signature="ldap_mod_add(resource link, string dn, array entry)" returns="bool" doc="Add attribute values to current" ilk="function" src="ldap.c"/>
<scope name="ldap_mod_del" signature="ldap_mod_del(resource link, string dn, array entry)" returns="bool" doc="Delete attribute values" ilk="function" src="ldap.c"/>
<scope name="ldap_delete" signature="ldap_delete(resource link, string dn)" returns="bool" doc="Delete an entry from a directory" ilk="function" src="ldap.c"/>
<scope name="ldap_errno" signature="ldap_errno(resource link)" returns="int" doc="Get the current ldap error number" ilk="function" src="ldap.c"/>
<scope name="ldap_err2str" signature="ldap_err2str(int errno)" returns="string" doc="Convert error number to error string" ilk="function" src="ldap.c"/>
<scope name="ldap_error" signature="ldap_error(resource link)" returns="string" doc="Get the current ldap error string" ilk="function" src="ldap.c"/>
<scope name="ldap_compare" signature="ldap_compare(resource link, string dn, string attr, string value)" returns="bool" doc="Determine if an entry has a specific value for one of its attributes" ilk="function" src="ldap.c"/>
<scope name="ldap_sort" signature="ldap_sort(resource link, resource result, string sortfilter)" returns="bool" doc="Sort LDAP result entries" ilk="function" src="ldap.c"/>
<scope name="ldap_get_option" signature="ldap_get_option(resource link, int option, mixed retval)" returns="bool" doc="Get the current value of various session-wide parameters" ilk="function" src="ldap.c"/>
<scope name="ldap_set_option" signature="ldap_set_option(resource link, int option, mixed newval)" returns="bool" doc="Set the value of various session-wide parameters" ilk="function" src="ldap.c"/>
<scope name="ldap_parse_result" signature="ldap_parse_result(resource link, resource result, int errcode, string matcheddn, string errmsg, array referrals)" returns="bool" doc="Extract information from result" ilk="function" src="ldap.c"/>
<scope name="ldap_first_reference" signature="ldap_first_reference(resource link, resource result)" returns="resource" doc="Return first reference" ilk="function" src="ldap.c"/>
<scope name="ldap_next_reference" signature="ldap_next_reference(resource link, resource reference_entry)" returns="resource" doc="Get next reference" ilk="function" src="ldap.c"/>
<scope name="ldap_parse_reference" signature="ldap_parse_reference(resource link, resource reference_entry, array referrals)" returns="bool" doc="Extract information from reference entry" ilk="function" src="ldap.c"/>
<scope name="ldap_rename" signature="ldap_rename(resource link, string dn, string newrdn, string newparent, bool deleteoldrdn)" returns="bool" doc="Modify the name of an entry" ilk="function" src="ldap.c"/>
<scope name="ldap_start_tls" signature="ldap_start_tls(resource link)" returns="bool" doc="Start TLS" ilk="function" src="ldap.c"/>
<scope name="ldap_set_rebind_proc" signature="ldap_set_rebind_proc(resource link, string callback)" returns="bool" doc="Set a callback function to do re-binds on referral chasing" ilk="function" src="ldap.c"/>
<scope name="ldap_t61_to_8859" signature="ldap_t61_to_8859(string value)" returns="string" doc="Translate t characters to characters" ilk="function" src="ldap.c"/>
<scope name="ldap_8859_to_t61" signature="ldap_8859_to_t61(string value)" returns="string" doc="Translate characters to t characters" ilk="function" src="ldap.c"/>
<scope name="mb_language" signature="mb_language([string language])" returns="string" doc="Sets the current language or Returns the current language as a string" ilk="function" src="mbstring.c"/>
<scope name="mb_internal_encoding" signature="mb_internal_encoding([string encoding])" returns="string" doc="Sets the current internal encoding or Returns the current internal encoding as a string" ilk="function" src="mbstring.c"/>
<scope name="mb_http_input" signature="mb_http_input([string type])" returns="mixed" doc="Returns the input encoding" ilk="function" src="mbstring.c"/>
<scope name="mb_http_output" signature="mb_http_output([string encoding])" returns="string" doc="Sets the current output encoding or returns the current output encoding as a string" ilk="function" src="mbstring.c"/>
<scope name="mb_detect_order" signature="mb_detect_order([mixed encoding-list])" returns="array" doc="Sets the current detect order or Return the current detect order as a array" ilk="function" src="mbstring.c"/>
<scope name="mb_substitute_character" signature="mb_substitute_character([mixed substchar])" returns="mixed" doc="Sets the current substitute character or returns the current substitute character" ilk="function" src="mbstring.c"/>
<scope name="mb_preferred_mime_name" signature="mb_preferred_mime_name(string encoding)" returns="string" doc="Return the preferred MIME name charset as a string" ilk="function" src="mbstring.c"/>
<scope name="mb_parse_str" signature="mb_parse_str(string encoded_string [, array result])" returns="bool" doc="Parses GET POST COOKIE data and sets global variables" ilk="function" src="mbstring.c"/>
<scope name="mb_output_handler" signature="mb_output_handler(string contents, int status)" returns="string" doc="Returns string in output buffer converted to the http output encoding" ilk="function" src="mbstring.c"/>
<scope name="mb_strlen" signature="mb_strlen(string str [, string encoding])" returns="int" doc="Get character numbers of a string" ilk="function" src="mbstring.c"/>
<scope name="mb_strpos" signature="mb_strpos(string haystack, string needle [, int offset [, string encoding]])" returns="int" doc="Find position of first occurrence of a string within another" ilk="function" src="mbstring.c"/>
<scope name="mb_strrpos" signature="mb_strrpos(string haystack, string needle [, string encoding])" returns="int" doc="Find the last occurrence of a character in a string within another" ilk="function" src="mbstring.c"/>
<scope name="mb_substr_count" signature="mb_substr_count(string haystack, string needle [, string encoding])" returns="int" doc="Count the number of substring occurrences" ilk="function" src="mbstring.c"/>
<scope name="mb_substr" signature="mb_substr(string str, int start [, int length [, string encoding]])" returns="string" doc="Returns part of a string" ilk="function" src="mbstring.c"/>
<scope name="mb_strcut" signature="mb_strcut(string str, int start [, int length [, string encoding]])" returns="string" doc="Returns part of a string" ilk="function" src="mbstring.c"/>
<scope name="mb_strwidth" signature="mb_strwidth(string str [, string encoding])" returns="int" doc="Gets terminal width of a string" ilk="function" src="mbstring.c"/>
<scope name="mb_strimwidth" signature="mb_strimwidth(string str, int start, int width [, string trimmarker [, string encoding]])" returns="string" doc="Trim the string in terminal width" ilk="function" src="mbstring.c"/>
<scope name="mb_convert_encoding" signature="mb_convert_encoding(string str, string to-encoding [, mixed from-encoding])" returns="string" doc="Returns converted string in desired encoding" ilk="function" src="mbstring.c"/>
<scope name="mb_convert_case" signature="mb_convert_case(string sourcestring, int mode [, string encoding])" returns="string" doc="Returns a case-folded version of sourcestring" ilk="function" src="mbstring.c"/>
<scope name="mb_strtoupper" signature="mb_strtoupper(string sourcestring [, string encoding])" returns="string" doc="Returns a uppercased version of sourcestring" ilk="function" src="mbstring.c"/>
<scope name="mb_strtolower" signature="mb_strtolower(string sourcestring [, string encoding])" returns="string" doc="Returns a lowercased version of sourcestring" ilk="function" src="mbstring.c"/>
<scope name="mb_detect_encoding" signature="mb_detect_encoding(string str [, mixed encoding_list [, bool strict]])" returns="string" doc="Encodings of the given string is returned as a string" ilk="function" src="mbstring.c"/>
<scope name="mb_encode_mimeheader" signature="mb_encode_mimeheader(string str [, string charset [, string transfer-encoding [, string linefeed [, int indent]]]])" returns="string" doc="Converts the string to MIME encoded-word in the format of charset B" ilk="function" src="mbstring.c"/>
<scope name="mb_decode_mimeheader" signature="mb_decode_mimeheader(string string)" returns="string" doc="Decodes the MIME encoded-word in the string" ilk="function" src="mbstring.c"/>
<scope name="mb_convert_kana" signature="mb_convert_kana(string str [, string option] [, string encoding])" returns="string" doc="Conversion between full-width character and half-width character Japanese" ilk="function" src="mbstring.c"/>
<scope name="mb_convert_variables" signature="mb_convert_variables(string to-encoding, mixed from-encoding [, mixed ...])" returns="string" doc="Converts the string resource in variables to desired encoding" ilk="function" src="mbstring.c"/>
<scope name="mb_encode_numericentity" signature="mb_encode_numericentity(string string, array convmap [, string encoding])" returns="string" doc="Converts specified characters to HTML numeric entities" ilk="function" src="mbstring.c"/>
<scope name="mb_decode_numericentity" signature="mb_decode_numericentity(string string, array convmap [, string encoding])" returns="string" doc="Converts HTML numeric entities to character code" ilk="function" src="mbstring.c"/>
<scope name="mb_send_mail" signature="mb_send_mail(string to, string subject, string message [, string additional_headers [, string additional_parameters]])" returns="int" doc="Sends an email message with MIME scheme" ilk="function" src="mbstring.c"/>
<scope name="mb_get_info" signature="mb_get_info([string type])" returns="mixed" doc="Returns the current settings of mbstring" ilk="function" src="mbstring.c"/>
<scope name="mb_check_encoding" signature="mb_check_encoding([string var[, string encoding]])" returns="bool" doc="Check if the string is valid for the specified encoding" ilk="function" src="mbstring.c"/>
<scope name="mb_regex_encoding" signature="mb_regex_encoding([string encoding])" returns="string" doc="Returns the current encoding for regex as a string" ilk="function" src="php_mbregex.c"/>
<scope name="mb_ereg" signature="mb_ereg(string pattern, string string [, array registers])" returns="int" doc="Regular expression match for multibyte string" ilk="function" src="php_mbregex.c"/>
<scope name="mb_eregi" signature="mb_eregi(string pattern, string string [, array registers])" returns="int" doc="Case-insensitive regular expression match for multibyte string" ilk="function" src="php_mbregex.c"/>
<scope name="mb_ereg_replace" signature="mb_ereg_replace(string pattern, string replacement, string string [, string option])" returns="string" doc="Replace regular expression for multibyte string" ilk="function" src="php_mbregex.c"/>
<scope name="mb_eregi_replace" signature="mb_eregi_replace(string pattern, string replacement, string string)" returns="string" doc="Case insensitive replace regular expression for multibyte string" ilk="function" src="php_mbregex.c"/>
<scope name="mb_split" signature="mb_split(string pattern, string string [, int limit])" returns="array" doc="split multibyte string into array by regular expression" ilk="function" src="php_mbregex.c"/>
<scope name="mb_ereg_match" signature="mb_ereg_match(string pattern, string string [,string option])" returns="bool" doc="Regular expression match for multibyte string" ilk="function" src="php_mbregex.c"/>
<scope name="mb_ereg_search" signature="mb_ereg_search([string pattern[, string option]])" returns="bool" doc="Regular expression search for multibyte string" ilk="function" src="php_mbregex.c"/>
<scope name="mb_ereg_search_pos" signature="mb_ereg_search_pos([string pattern[, string option]])" returns="array" doc="Regular expression search for multibyte string" ilk="function" src="php_mbregex.c"/>
<scope name="mb_ereg_search_regs" signature="mb_ereg_search_regs([string pattern[, string option]])" returns="array" doc="Regular expression search for multibyte string" ilk="function" src="php_mbregex.c"/>
<scope name="mb_ereg_search_init" signature="mb_ereg_search_init(string string [, string pattern[, string option]])" returns="bool" doc="Initialize string and regular expression for search" ilk="function" src="php_mbregex.c"/>
<scope name="mb_ereg_search_getregs" signature="mb_ereg_search_getregs(void)" returns="array" doc="Get matched substring of the last time" ilk="function" src="php_mbregex.c"/>
<scope name="mb_ereg_search_getpos" signature="mb_ereg_search_getpos(void)" returns="int" doc="Get search start position" ilk="function" src="php_mbregex.c"/>
<scope name="mb_ereg_search_setpos" signature="mb_ereg_search_setpos(int position)" returns="bool" doc="Set search start position" ilk="function" src="php_mbregex.c"/>
<scope name="mb_regex_set_options" signature="mb_regex_set_options([string options])" returns="string" doc="Set or get the default options for mbregex functions" ilk="function" src="php_mbregex.c"/>
<scope name="mcal_close" signature="mcal_close(int stream_id [, int options])" returns="int" doc="Close an MCAL stream" ilk="function" src="php_mcal.c"/>
<scope name="mcal_open" signature="mcal_open(string calendar, string user, string password [, int options])" returns="int" doc="Open an MCAL stream to a calendar" ilk="function" src="php_mcal.c"/>
<scope name="mcal_popen" signature="mcal_popen(string calendar, string user, string password [, int options])" returns="string" doc="Open a persistent MCAL stream to a calendar" ilk="function" src="php_mcal.c"/>
<scope name="mcal_reopen" signature="mcal_reopen(int stream_id, string calendar [, int options])" returns="int" doc="Reopen MCAL stream to a new calendar" ilk="function" src="php_mcal.c"/>
<scope name="mcal_expunge" signature="mcal_expunge(int stream_id)" returns="int" doc="Delete all events marked for deletion" ilk="function" src="php_mcal.c"/>
<scope name="mcal_fetch_event" signature="mcal_fetch_event(int stream_id, int eventid [, int options])" returns="int" doc="Fetch an event" ilk="function" src="php_mcal.c"/>
<scope name="mcal_fetch_current_stream_event" signature="mcal_fetch_current_stream_event(int stream_id)" returns="object" doc="Fetch the current event stored in the stream's event structure" ilk="function" src="php_mcal.c"/>
<scope name="mcal_list_events" signature="mcal_list_events(int stream_id, object begindate [, object enddate])" returns="array" doc="Returns list of UIDs for that day or range of days" ilk="function" src="php_mcal.c"/>
<scope name="mcal_create_calendar" signature="mcal_create_calendar(int stream_id, string calendar)" returns="string" doc="Create a new calendar" ilk="function" src="php_mcal.c"/>
<scope name="mcal_rename_calendar" signature="mcal_rename_calendar(int stream_id, string src_calendar, string dest_calendar)" returns="string" doc="Rename a calendar" ilk="function" src="php_mcal.c"/>
<scope name="mcal_list_alarms" signature="mcal_list_alarms(int stream_id, int year, int month, int day, int hour, int min, int sec)" returns="bool" doc="List alarms for a given time" ilk="function" src="php_mcal.c"/>
<scope name="mcal_delete_calendar" signature="mcal_delete_calendar(int stream_id, string calendar)" returns="string" doc="Delete calendar" ilk="function" src="php_mcal.c"/>
<scope name="mcal_delete_event" signature="mcal_delete_event(int stream_id, int event_id)" returns="string" doc="Delete an event" ilk="function" src="php_mcal.c"/>
<scope name="mcal_append_event" signature="mcal_append_event(int stream_id)" returns="string" doc="Append a new event to the calendar stream" ilk="function" src="php_mcal.c"/>
<scope name="mcal_store_event" signature="mcal_store_event(int stream_id)" returns="string" doc="Store changes to an event" ilk="function" src="php_mcal.c"/>
<scope name="mcal_snooze" signature="mcal_snooze(int stream_id, int uid)" returns="string" doc="Snooze an alarm" ilk="function" src="php_mcal.c"/>
<scope name="mcal_event_set_category" signature="mcal_event_set_category(int stream_id, string category)" returns="string" doc="Attach a category to an event" ilk="function" src="php_mcal.c"/>
<scope name="mcal_event_set_title" signature="mcal_event_set_title(int stream_id, string title)" returns="string" doc="Attach a title to an event" ilk="function" src="php_mcal.c"/>
<scope name="mcal_event_set_description" signature="mcal_event_set_description(int stream_id, string description)" returns="string" doc="Attach a description to an event" ilk="function" src="php_mcal.c"/>
<scope name="mcal_event_set_start" signature="mcal_event_set_start(int stream_id, int year,int month, int day [[[, int hour], int min], int sec])" returns="string" doc="Attach a start datetime to an event" ilk="function" src="php_mcal.c"/>
<scope name="mcal_event_set_end" signature="mcal_event_set_end(int stream_id, int year,int month, int day [[[, int hour], int min], int sec])" returns="string" doc="Attach an end datetime to an event" ilk="function" src="php_mcal.c"/>
<scope name="mcal_event_set_alarm" signature="mcal_event_set_alarm(int stream_id, int alarm)" returns="int" doc="Add an alarm to the streams global event" ilk="function" src="php_mcal.c"/>
<scope name="mcal_event_init" signature="mcal_event_init(int stream_id)" returns="int" doc="Initialize a streams global event" ilk="function" src="php_mcal.c"/>
<scope name="mcal_event_set_class" signature="mcal_event_set_class(int stream_id, int class)" returns="int" doc="Add an class to the streams global event" ilk="function" src="php_mcal.c"/>
<scope name="mcal_event_add_attribute" signature="mcal_event_add_attribute(int stream_id, string attribute, string value)" returns="string" doc="Add an attribute and value to an event" ilk="function" src="php_mcal.c"/>