summaryrefslogtreecommitdiffstats
path: root/ubuntu/_base/tdewebdev/debian/docrc/php.docrc
blob: 7ff67ec65b6ee14974f824915e70c50e2e1919b4 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
#This file was autogenerated.  To recreate it with a new set of PHP docs, run docgen.pl <php-version> <path-to-html-docs>
#If you find this file broken grossly, send a rant to robert@artnickel.com or be useful and fix the bug and let me know!

#TDE Config File

[Tree]

Doc dir=php

#top level elements
Top Element=PHP 20030401 documentation

PHP 20030401 documentation=Table of Contents,#Getting Started,#Language Reference,#Features,#Function Reference,#Extending PHP 4.0,#FAQ: Frequently Asked Questions,#Appendixes

Table of Contents=index.html

Getting Started=Introduction,A simple tutorial,Installation,Configuration,Security
Introduction=introduction.html
A simple tutorial=tutorial.html
Installation=installation.html
Configuration=configuration.html
Security=security.html


Language Reference=Basic syntax,Types,Variables,Constants,Expressions,Operators,Control Structures,Functions,Classes and Objects,References Explained
Basic syntax=language.basic-syntax.html
Types=language.types.html
Variables=language.variables.html
Constants=language.constants.html
Expressions=language.expressions.html
Operators=language.operators.html
Control Structures=control-structures.html
Functions=functions.html
Classes and Objects=language.oop.html
References Explained=language.references.html


Features=HTTP authentication with PHP,Cookies,Handling file uploads,Using remote files,Connection handling,Persistent Database Connections,Safe Mode,Using PHP from the command line
HTTP authentication with PHP=features.http-auth.html
Cookies=features.cookies.html
Handling file uploads=features.file-upload.html
Using remote files=features.remote-files.html
Connection handling=features.connection-handling.html
Persistent Database Connections=features.persistent-connections.html
Safe Mode=features.safe-mode.html
Using PHP from the command line=features.commandline.html


Function Reference=Apache-specific Functions,Array Functions,Aspell functions (deprecated),BCMath Arbitrary Precision Mathematics Functions,Bzip2 Compression Functions,Calendar functions,CCVS API Functions,COM support functions for Windows,Class/Object Functions,ClibPDF functions,Crack functions,CURL- Client URL Library Functions,Cybercash payment functions,Crédit Mutuel CyberMUT functions,Cyrus IMAP administration functions,Character type functions,Database (dbm-style) abstraction layer functions,Date and Time functions,dBase functions,DBM Functions (deprecated),dbx functions,DB++ Functions,Direct IO functions,Directory functions,DOM XML functions,.NET functions,Error Handling and Logging Functions,FrontBase Functions,filePro functions,Filesystem functions,Forms Data Format functions,FriBiDi functions,FTP functions,Function Handling functions,Gettext,GMP functions,HTTP functions,Hyperwave functions,Hyperwave API functions,iconv functions,Image functions,IMAP- POP3 and NNTP functions,Informix functions,InterBase functions,Ingres II functions,IRC Gateway Functions,PHP / Java Integration,LDAP functions,Mail functions,mailparse functions,Mathematical Functions,Multi-Byte String Functions,MCAL functions,Mcrypt Encryption Functions,MCVE Payment Functions,Mhash Functions,Mimetype Functions,Microsoft SQL Server functions,Ming functions for Flash,Miscellaneous functions,mnoGoSearch Functions,mSQL functions,MySQL Functions,Mohawk Software session handler functions,muscat functions,Network Functions,Ncurses terminal screen control functions,Lotus Notes functions,Unified ODBC functions,Object Aggregation/Composition Functions,Oracle 8 functions,OpenSSL functions,Oracle functions,Ovrimos SQL functions,Output Control Functions,Object property and method call overloading,PDF functions,Verisign Payflow Pro functions,PHP Options&Information,POSIX functions,PostgreSQL functions,Process Control Functions,Program Execution functions,Printer functions,Pspell Functions,GNU Readline,GNU Recode functions,Regular Expression Functions (Perl-Compatible),qtdom functions,Regular Expression Functions (POSIX Extended),Semaphore- Shared Memory and IPC Functions,SESAM database functions,Session handling functions,Shared Memory Functions,Shockwave Flash functions,SNMP functions,Socket functions,Stream functions,String functions,Sybase functions,Tokenizer functions,URL Functions,Variable Functions,vpopmail functions,W32api functions,WDDX Functions,XML parser functions,XML-RPC functions,XSLT functions,YAZ functions,YP/NIS Functions,Zip File Functions (Read Only Access),Zlib Compression Functions
Apache-specific Functions=ref.apache.html
Array Functions=ref.array.html
Aspell functions (deprecated)=ref.aspell.html
BCMath Arbitrary Precision Mathematics Functions=ref.bc.html
Bzip2 Compression Functions=ref.bzip2.html
Calendar functions=ref.calendar.html
CCVS API Functions=ref.ccvs.html
COM support functions for Windows=ref.com.html
Class/Object Functions=ref.classobj.html
ClibPDF functions=ref.cpdf.html
Crack functions=ref.crack.html
CURL- Client URL Library Functions=ref.curl.html
Cybercash payment functions=ref.cybercash.html
Crédit Mutuel CyberMUT functions=ref.cybermut.html
Cyrus IMAP administration functions=ref.cyrus.html
Character type functions=ref.ctype.html
Database (dbm-style) abstraction layer functions=ref.dba.html
Date and Time functions=ref.datetime.html
dBase functions=ref.dbase.html
DBM Functions (deprecated)=ref.dbm.html
dbx functions=ref.dbx.html
DB++ Functions=ref.dbplus.html
Direct IO functions=ref.dio.html
Directory functions=ref.dir.html
DOM XML functions=ref.domxml.html
.NET functions=ref.dotnet.html
Error Handling and Logging Functions=ref.errorfunc.html
FrontBase Functions=ref.fbsql.html
filePro functions=ref.filepro.html
Filesystem functions=ref.filesystem.html
Forms Data Format functions=ref.fdf.html
FriBiDi functions=ref.fribidi.html
FTP functions=ref.ftp.html
Function Handling functions=ref.funchand.html
Gettext=ref.gettext.html
GMP functions=ref.gmp.html
HTTP functions=ref.http.html
Hyperwave functions=ref.hyperwave.html
Hyperwave API functions=ref.hwapi.html
iconv functions=ref.iconv.html
Image functions=ref.image.html
IMAP- POP3 and NNTP functions=ref.imap.html
Informix functions=ref.ifx.html
InterBase functions=ref.ibase.html
Ingres II functions=ref.ingres.html
IRC Gateway Functions=ref.ircg.html
PHP / Java Integration=ref.java.html
LDAP functions=ref.ldap.html
Mail functions=ref.mail.html
mailparse functions=ref.mailparse.html
Mathematical Functions=ref.math.html
Multi-Byte String Functions=ref.mbstring.html
MCAL functions=ref.mcal.html
Mcrypt Encryption Functions=ref.mcrypt.html
MCVE Payment Functions=ref.mcve.html
Mhash Functions=ref.mhash.html
Mimetype Functions=ref.mime-magic.html
Microsoft SQL Server functions=ref.mssql.html
Ming functions for Flash=ref.ming.html
Miscellaneous functions=ref.misc.html
mnoGoSearch Functions=ref.mnogo.html
mSQL functions=ref.msql.html
MySQL Functions=ref.mysql.html
Mohawk Software session handler functions=ref.msession.html
muscat functions=ref.muscat.html
Network Functions=ref.network.html
Ncurses terminal screen control functions=ref.ncurses.html
Lotus Notes functions=ref.notes.html
Unified ODBC functions=ref.odbc.html
Object Aggregation/Composition Functions=ref.objaggregation.html
Oracle 8 functions=ref.oci8.html
OpenSSL functions=ref.openssl.html
Oracle functions=ref.oracle.html
Ovrimos SQL functions=ref.ovrimos.html
Output Control Functions=ref.outcontrol.html
Object property and method call overloading=ref.overload.html
PDF functions=ref.pdf.html
Verisign Payflow Pro functions=ref.pfpro.html
PHP Options&Information=ref.info.html
POSIX functions=ref.posix.html
PostgreSQL functions=ref.pgsql.html
Process Control Functions=ref.pcntl.html
Program Execution functions=ref.exec.html
Printer functions=ref.printer.html
Pspell Functions=ref.pspell.html
GNU Readline=ref.readline.html
GNU Recode functions=ref.recode.html
Regular Expression Functions (Perl-Compatible)=ref.pcre.html
qtdom functions=ref.qtdom.html
Regular Expression Functions (POSIX Extended)=ref.regex.html
Semaphore- Shared Memory and IPC Functions=ref.sem.html
SESAM database functions=ref.sesam.html
Session handling functions=ref.session.html
Shared Memory Functions=ref.shmop.html
Shockwave Flash functions=ref.swf.html
SNMP functions=ref.snmp.html
Socket functions=ref.sockets.html
Stream functions=ref.stream.html
String functions=ref.strings.html
Sybase functions=ref.sybase.html
Tokenizer functions=ref.tokenizer.html
URL Functions=ref.url.html
Variable Functions=ref.variables.html
vpopmail functions=ref.vpopmail.html
W32api functions=ref.w32api.html
WDDX Functions=ref.wddx.html
XML parser functions=ref.xml.html
XML-RPC functions=ref.xmlrpc.html
XSLT functions=ref.xslt.html
YAZ functions=ref.yaz.html
YP/NIS Functions=ref.nis.html
Zip File Functions (Read Only Access)=ref.zip.html
Zlib Compression Functions=ref.zlib.html


Extending PHP 4.0=Overview,Extension Possibilities,Source Layout,PHP's Automatic Build System,Creating Extensions,Using Extensions,Troubleshooting,Source Discussion,Accepting Arguments,Creating Variables,Duplicating Variable Contents: The Copy Constructor,Returning Values,Printing Information,Startup and Shutdown Functions,Calling User Functions,Initialization File Support,Where to Go from Here,Reference: Some Configuration Macros,API Macros,Streams API for PHP Extension Authors,,,,,,,,,
Overview=zend.overview.html
Extension Possibilities=zend.possibilities.html
Source Layout=zend.layout.html
PHP's Automatic Build System=zend.build.html
Creating Extensions=zend.creating.html
Using Extensions=zend.using.html
Troubleshooting=zend.troubleshooting.html
Source Discussion=zend.structure.html
Accepting Arguments=zend.arguments.html
Creating Variables=zend.variables.html
Duplicating Variable Contents: The Copy Constructor=zend.copy-constructor.html
Returning Values=zend.returning.html
Printing Information=zend.printing.html
Startup and Shutdown Functions=zend.startup-and-shutdown.html
Calling User Functions=zend.calling-user-functions.html
Initialization File Support=zend.ini-file-support.html
Where to Go from Here=zend.where-to-go.html
Reference: Some Configuration Macros=zend.configuration-macros.html
API Macros=zend.api-macros.html
Streams API for PHP Extension Authors=streams.html


FAQ: Frequently Asked Questions=General Information,Mailing lists,Obtaining PHP,Database issues,Installation,Build Problems,Using PHP,PHP and HTML,PHP and COM,PHP and other languages,Migrating from PHP 2 to PHP 3,Migrating from PHP 3 to PHP 4,Miscellaneous Questions
General Information=faq.general.html
Mailing lists=faq.mailinglist.html
Obtaining PHP=faq.obtaining.html
Database issues=faq.databases.html
Installation=faq.installation.html
Build Problems=faq.build.html
Using PHP=faq.using.html
PHP and HTML=faq.html.html
PHP and COM=faq.com.html
PHP and other languages=faq.languages.html
Migrating from PHP 2 to PHP 3=faq.migration.html
Migrating from PHP 3 to PHP 4=faq.migration4.html
Miscellaneous Questions=faq.misc.html


Appendixes=History of PHP and related projects,Migrating from PHP 3 to PHP 4,Migrating from PHP/FI 2 to PHP 3,Debugging PHP,Extending PHP,List of Function Aliases,List of Reserved Words,List of Resource Types,List of Supported Protocols/Wrappers,List of Parser Tokens,,Missing Stuff
History of PHP and related projects=history.html
Migrating from PHP 3 to PHP 4=migration4.html
Migrating from PHP/FI 2 to PHP 3=migration.html
Debugging PHP=debugger.html
Extending PHP=phpdevel.html
List of Function Aliases=aliases.html
List of Reserved Words=reserved.html
List of Resource Types=resource.html
List of Supported Protocols/Wrappers=wrappers.html
List of Parser Tokens=tokens.html
Missing Stuff=missing-stuff.html


#Keywords for context help
[Context]

ContextList=calling_user_functions.html,features.safe_mode.functions.html,abs,acos,acosh,addcslashes,addslashes,aggregate_info,aggregate_methods_by_list,aggregate_methods_by_regexp,aggregate_methods,aggregate_properties_by_list,aggregate_properties_by_regexp,aggregate_properties,aggregate,aggregation_info,apache_child_terminate,apache_lookup_uri,apache_note,apache_request_headers,apache_response_headers,apache_setenv,array_change_key_case,array_chunk,array_count_values,array_diff_assoc,array_diff,array_fill,array_filter,array_flip,array_intersect_assoc,array_intersect,array_key_exists,array_keys,array_map,array_merge_recursive,array_merge,array_multisort,array_pad,array_pop,array_push,array_rand,array_reduce,array_reverse,array_search,array_shift,array_slice,array_splice,array_sum,array_unique,array_unshift,array_values,array_walk,array,arsort,ascii2ebcdic,asin,asinh,asort,aspell_check_raw,aspell_check,aspell_new,aspell_suggest,assert_options,assert,atan,atan2,atanh,base_convert,base64_decode,base64_encode,basename,bcadd,bccomp,bcdiv,bcmod,bcmul,bcpow,bcpowmod,bcscale,bcsqrt,bcsub,bin2hex,bind_textdomain_codeset,bindec,bindtextdomain,bzclose,bzcompress,bzdecompress,bzerrno,bzerror,bzerrstr,bzflush,bzopen,bzread,bzwrite,cal_days_in_month,cal_from_jd,cal_info,cal_to_jd,call_user_func_array,call_user_func,call_user_method_array,call_user_method,ccvs_add,ccvs_auth,ccvs_command,ccvs_count,ccvs_delete,ccvs_done,ccvs_init,ccvs_lookup,ccvs_new,ccvs_report,ccvs_return,ccvs_reverse,ccvs_sale,ccvs_status,ccvs_textvalue,ccvs_void,ceil,chdir,checkdate,checkdnsrr,chgrp,chmod,chop,chown,chr,chroot,chunk_split,class_exists,clearstatcache,closedir,closelog,com_addref,com_get,com_invoke,com_isenum,com_load_typelib,com_load,com_propget,com_propput,com_propset,com_release,com_set,compact,connection_aborted,connection_status,connection_timeout,constant,convert_cyr_string,copy,cos,cosh,count_chars,count,cpdf_add_annotation,cpdf_add_outline,cpdf_arc,cpdf_begin_text,cpdf_circle,cpdf_clip,cpdf_close,cpdf_closepath_fill_stroke,cpdf_closepath_stroke,cpdf_closepath,cpdf_continue_text,cpdf_curveto,cpdf_end_text,cpdf_fill_stroke,cpdf_fill,cpdf_finalize_page,cpdf_finalize,cpdf_global_set_document_limits,cpdf_import_jpeg,cpdf_lineto,cpdf_moveto,cpdf_newpath,cpdf_open,cpdf_output_buffer,cpdf_page_init,cpdf_place_inline_image,cpdf_rect,cpdf_restore,cpdf_rlineto,cpdf_rmoveto,cpdf_rotate_text,cpdf_rotate,cpdf_save_to_file,cpdf_save,cpdf_scale,cpdf_set_action_url,cpdf_set_char_spacing,cpdf_set_creator,cpdf_set_current_page,cpdf_set_font_directories,cpdf_set_font_map_file,cpdf_set_font,cpdf_set_horiz_scaling,cpdf_set_keywords,cpdf_set_leading,cpdf_set_page_animation,cpdf_set_subject,cpdf_set_text_matrix,cpdf_set_text_pos,cpdf_set_text_rendering,cpdf_set_text_rise,cpdf_set_title,cpdf_set_viewer_preferences,cpdf_set_word_spacing,cpdf_setdash,cpdf_setflat,cpdf_setgray_fill,cpdf_setgray_stroke,cpdf_setgray,cpdf_setlinecap,cpdf_setlinejoin,cpdf_setlinewidth,cpdf_setmiterlimit,cpdf_setrgbcolor_fill,cpdf_setrgbcolor_stroke,cpdf_setrgbcolor,cpdf_show_xy,cpdf_show,cpdf_stringwidth,cpdf_stroke,cpdf_text,cpdf_translate,crack_check,crack_closedict,crack_getlastmessage,crack_opendict,crc32,create_function,crypt,ctype_alnum,ctype_alpha,ctype_cntrl,ctype_digit,ctype_graph,ctype_lower,ctype_print,ctype_punct,ctype_space,ctype_upper,ctype_xdigit,curl_close,curl_errno,curl_error,curl_exec,curl_getinfo,curl_init,curl_setopt,curl_version,current,cybercash_base64_decode,cybercash_base64_encode,cybercash_decr,cybercash_encr,cybermut_creerformulairecm,cybermut_creerreponsecm,cybermut_testmac,cyrus_authenticate,cyrus_bind,cyrus_close,cyrus_connect,cyrus_query,cyrus_unbind,date,dba_close,dba_delete,dba_exists,dba_fetch,dba_firstkey,dba_handlers,dba_insert,dba_list,dba_nextkey,dba_open,dba_optimize,dba_popen,dba_replace,dba_sync,dbase_add_record,dbase_close,dbase_create,dbase_delete_record,dbase_get_record_with_names,dbase_get_record,dbase_numfields,dbase_numrecords,dbase_open,dbase_pack,dbase_replace_record,dblist,dbmclose,dbmdelete,dbmexists,dbmfetch,dbmfirstkey,dbminsert,dbmnextkey,dbmopen,dbmreplace,dbplus_add,dbplus_aql,dbplus_chdir,dbplus_close,dbplus_curr,dbplus_errcode,dbplus_errno,dbplus_find,dbplus_first,dbplus_flush,dbplus_freealllocks,dbplus_freelock,dbplus_freerlocks,dbplus_getlock,dbplus_getunique,dbplus_info,dbplus_last,dbplus_lockrel,dbplus_next,dbplus_open,dbplus_prev,dbplus_rchperm,dbplus_rcreate,dbplus_rcrtexact,dbplus_rcrtlike,dbplus_resolve,dbplus_restorepos,dbplus_rkeys,dbplus_ropen,dbplus_rquery,dbplus_rrename,dbplus_rsecindex,dbplus_runlink,dbplus_rzap,dbplus_savepos,dbplus_setindex,dbplus_setindexbynumber,dbplus_sql,dbplus_tcl,dbplus_tremove,dbplus_undo,dbplus_undoprepare,dbplus_unlockrel,dbplus_unselect,dbplus_update,dbplus_xlockrel,dbplus_xunlockrel,dbx_close,dbx_compare,dbx_connect,dbx_error,dbx_escape_string,dbx_query,dbx_sort,dcgettext,dcngettext,deaggregate,debug_backtrace,debugger_off,debugger_on,decbin,dechex,decoct,define_syslog_variables,define,defined,deg2rad,delete,dgettext,die,dio_close,dio_fcntl,dio_open,dio_read,dio_seek,dio_stat,dio_tcsetattr,dio_truncate,dio_write,dirname,disk_free_space,disk_total_space,diskfreespace,dl,dngettext,dns_check_record,dns_get_mx,dns_get_record,domattribute_name,domattribute_specified,domattribute_value,domdocument_add_root,domdocument_create_attribute,domdocument_create_cdata_section,domdocument_create_comment,domdocument_create_element,domdocument_create_element_ns,domdocument_create_entity_reference,domdocument_create_processing_instruction,domdocument_create_text_node,domdocument_doctype,domdocument_document_element,domdocument_dump_file,domdocument_dump_mem,domdocument_get_element_by_id,domdocument_get_elements_by_tagname,domdocument_html_dump_mem,domdocument_xinclude,domdocumenttype_entities,domdocumenttype_internal_subset,domdocumenttype_name,domdocumenttype_notations,domdocumenttype_public_id,domdocumenttype_system_id,domelement_get_attribute_node,domelement_get_attribute,domelement_get_elements_by_tagname,domelement_has_attribute,domelement_remove_attribute,domelement_set_attribute,domelement_tagname,domnode_add_namespace,domnode_append_child,domnode_append_sibling,domnode_attributes,domnode_child_nodes,domnode_clone_node,domnode_dump_node,domnode_first_child,domnode_get_content,domnode_has_attributes,domnode_has_child_nodes,domnode_insert_before,domnode_is_blank_node,domnode_last_child,domnode_next_sibling,domnode_node_name,domnode_node_type,domnode_node_value,domnode_owner_document,domnode_parent_node,domnode_prefix,domnode_previous_sibling,domnode_remove_child,domnode_replace_child,domnode_replace_node,domnode_set_content,domnode_set_name,domnode_set_namespace,domnode_unlink_node,domprocessinginstruction_data,domprocessinginstruction_target,domxml_new_doc,domxml_open_file,domxml_open_mem,domxml_version,domxml_xmltree,domxml_xslt_stylesheet_doc,domxml_xslt_stylesheet_file,domxml_xslt_stylesheet,domxsltstylesheet_process,domxsltstylesheet_result_dump_file,domxsltstylesheet_result_dump_mem,dotnet_load,doubleval,each,easter_date,easter_days,ebcdic2ascii,echo,empty,end,ereg_replace,ereg,eregi_replace,eregi,error_log,error_reporting,escapeshellarg,escapeshellcmd,eval,exec,exif_imagetype,exif_read_data,exif_thumbnail,exit,exp,explode,expm1,extension_loaded,extract,ezmlm_hash,fbsql_affected_rows,fbsql_autocommit,fbsql_change_user,fbsql_close,fbsql_commit,fbsql_connect,fbsql_create_blob,fbsql_create_clob,fbsql_create_db,fbsql_data_seek,fbsql_database_password,fbsql_database,fbsql_db_query,fbsql_db_status,fbsql_drop_db,fbsql_errno,fbsql_error,fbsql_fetch_array,fbsql_fetch_assoc,fbsql_fetch_field,fbsql_fetch_lengths,fbsql_fetch_object,fbsql_fetch_row,fbsql_field_flags,fbsql_field_len,fbsql_field_name,fbsql_field_seek,fbsql_field_table,fbsql_field_type,fbsql_free_result,fbsql_get_autostart_info,fbsql_hostname,fbsql_insert_id,fbsql_list_dbs,fbsql_list_fields,fbsql_list_tables,fbsql_next_result,fbsql_num_fields,fbsql_num_rows,fbsql_password,fbsql_pconnect,fbsql_query,fbsql_read_blob,fbsql_read_clob,fbsql_result,fbsql_rollback,fbsql_select_db,fbsql_set_lob_mode,fbsql_set_transaction,fbsql_start_db,fbsql_stop_db,fbsql_tablename,fbsql_username,fbsql_warnings,fclose,fdf_add_doc_javascript,fdf_add_template,fdf_close,fdf_create,fdf_errno,fdf_error,fdf_get_ap,fdf_get_attachment,fdf_get_encoding,fdf_get_file,fdf_get_status,fdf_get_value,fdf_get_version,fdf_header,fdf_next_field_name,fdf_open_string,fdf_open,fdf_save_string,fdf_save,fdf_set_ap,fdf_set_encoding,fdf_set_file,fdf_set_flags,fdf_set_javascript_action,fdf_set_opt,fdf_set_status,fdf_set_submit_form_action,fdf_set_target_frame,fdf_set_value,fdf_set_version,feof,fflush,fgetc,fgetcsv,fgets,fgetss,file_exists,file_get_contents,file,fileatime,filectime,filegroup,fileinode,filemtime,fileowner,fileperms,filepro_fieldcount,filepro_fieldname,filepro_fieldtype,filepro_fieldwidth,filepro_retrieve,filepro_rowcount,filepro,filesize,filetype,floatval,flock,floor,flush,fmod,fnmatch,fopen,fpassthru,fprintf,fputs,fread,frenchtojd,fribidi_log2vis,fscanf,fseek,fsockopen,fstat,ftell,ftok,ftp_cdup,ftp_chdir,ftp_close,ftp_connect,ftp_delete,ftp_exec,ftp_fget,ftp_fput,ftp_get_option,ftp_get,ftp_login,ftp_mdtm,ftp_mkdir,ftp_nb_continue,ftp_nb_fget,ftp_nb_fput,ftp_nb_get,ftp_nb_put,ftp_nlist,ftp_pasv,ftp_put,ftp_pwd,ftp_quit,ftp_rawlist,ftp_rename,ftp_rmdir,ftp_set_option,ftp_site,ftp_size,ftp_ssl_connect,ftp_systype,ftruncate,func_get_arg,func_get_args,func_num_args,function_exists,fwrite,gd_info,get_browser,get_cfg_var,get_class_methods,get_class_vars,get_class,get_current_user,get_declared_classes,get_defined_constants,get_defined_functions,get_defined_vars,get_extension_funcs,get_html_translation_table,get_included_files,get_loaded_extensions,get_magic_quotes_gpc,get_magic_quotes_runtime,get_meta_tags,get_object_vars,get_parent_class,get_required_files,get_resource_type,getallheaders,getcwd,getdate,getenv,gethostbyaddr,gethostbyname,gethostbynamel,getimagesize,getlastmod,getmxrr,getmygid,getmyinode,getmypid,getmyuid,getopt,getprotobyname,getprotobynumber,getrandmax,getrusage,getservbyname,getservbyport,gettext,gettimeofday,gettype,glob,gmdate,gmmktime,gmp_abs,gmp_add,gmp_and,gmp_clrbit,gmp_cmp,gmp_com,gmp_div_q,gmp_div_qr,gmp_div_r,gmp_div,gmp_divexact,gmp_fact,gmp_gcd,gmp_gcdext,gmp_hamdist,gmp_init,gmp_intval,gmp_invert,gmp_jacobi,gmp_legendre,gmp_mod,gmp_mul,gmp_neg,gmp_or,gmp_perfect_square,gmp_popcount,gmp_pow,gmp_powm,gmp_prob_prime,gmp_random,gmp_scan0,gmp_scan1,gmp_setbit,gmp_sign,gmp_sqrt,gmp_sqrtrm,gmp_strval,gmp_sub,gmp_xor,gmstrftime,gregoriantojd,gzclose,gzcompress,gzdeflate,gzencode,gzeof,gzfile,gzgetc,gzgets,gzgetss,gzinflate,gzopen,gzpassthru,gzputs,gzread,gzrewind,gzseek,gztell,gzuncompress,gzwrite,header,headers_sent,hebrev,hebrevc,hexdec,highlight_file,highlight_string,html_entity_decode,htmlentities,htmlspecialchars,hw_array2objrec,hw_changeobject,hw_children,hw_childrenobj,hw_close,hw_connect,hw_connection_info,hw_cp,hw_deleteobject,hw_docbyanchor,hw_docbyanchorobj,hw_document_attributes,hw_document_bodytag,hw_document_content,hw_document_setcontent,hw_document_size,hw_dummy,hw_edittext,hw_error,hw_errormsg,hw_free_document,hw_getanchors,hw_getanchorsobj,hw_getandlock,hw_getchildcoll,hw_getchildcollobj,hw_getchilddoccoll,hw_getchilddoccollobj,hw_getobject,hw_getobjectbyquery,hw_getobjectbyquerycoll,hw_getobjectbyquerycollobj,hw_getobjectbyqueryobj,hw_getparents,hw_getparentsobj,hw_getrellink,hw_getremote,hw_getremotechildren,hw_getsrcbydestobj,hw_gettext,hw_getusername,hw_identify,hw_incollections,hw_info,hw_inscoll,hw_insdoc,hw_insertanchors,hw_insertdocument,hw_insertobject,hw_mapid,hw_modifyobject,hw_mv,hw_new_document,hw_objrec2array,hw_output_document,hw_pconnect,hw_pipedocument,hw_root,hw_setlinkroot,hw_stat,hw_unlock,hw_who,hwapi_attribute_key,hwapi_attribute_langdepvalue,hwapi_attribute_value,hwapi_attribute_values,hwapi_attribute,hwapi_checkin,hwapi_checkout,hwapi_children,hwapi_content_mimetype,hwapi_content_read,hwapi_content,hwapi_copy,hwapi_dbstat,hwapi_dcstat,hwapi_dstanchors,hwapi_dstofsrcanchors,hwapi_error_count,hwapi_error_reason,hwapi_find,hwapi_ftstat,hwapi_hgcsp,hwapi_hwstat,hwapi_identify,hwapi_info,hwapi_insert,hwapi_insertanchor,hwapi_insertcollection,hwapi_insertdocument,hwapi_link,hwapi_lock,hwapi_move,hwapi_new_content,hwapi_object_assign,hwapi_object_attreditable,hwapi_object_count,hwapi_object_insert,hwapi_object_new,hwapi_object_remove,hwapi_object_title,hwapi_object_value,hwapi_object,hwapi_objectbyanchor,hwapi_parents,hwapi_reason_description,hwapi_reason_type,hwapi_remove,hwapi_replace,hwapi_setcommitedversion,hwapi_srcanchors,hwapi_srcsofdst,hwapi_unlock,hwapi_user,hwapi_userlist,hypot,ibase_blob_add,ibase_blob_cancel,ibase_blob_close,ibase_blob_create,ibase_blob_echo,ibase_blob_get,ibase_blob_import,ibase_blob_info,ibase_blob_open,ibase_close,ibase_commit,ibase_connect,ibase_errmsg,ibase_execute,ibase_fetch_object,ibase_fetch_row,ibase_field_info,ibase_free_query,ibase_free_result,ibase_num_fields,ibase_pconnect,ibase_prepare,ibase_query,ibase_rollback,ibase_timefmt,ibase_trans,iconv_get_encoding,iconv_set_encoding,iconv,ifx_affected_rows,ifx_blobinfile_mode,ifx_byteasvarchar,ifx_close,ifx_connect,ifx_copy_blob,ifx_create_blob,ifx_create_char,ifx_do,ifx_error,ifx_errormsg,ifx_fetch_row,ifx_fieldproperties,ifx_fieldtypes,ifx_free_blob,ifx_free_char,ifx_free_result,ifx_get_blob,ifx_get_char,ifx_getsqlca,ifx_htmltbl_result,ifx_nullformat,ifx_num_fields,ifx_num_rows,ifx_pconnect,ifx_prepare,ifx_query,ifx_textasvarchar,ifx_update_blob,ifx_update_char,ifxus_close_slob,ifxus_create_slob,ifxus_free_slob,ifxus_open_slob,ifxus_read_slob,ifxus_seek_slob,ifxus_tell_slob,ifxus_write_slob,ignore_user_abort,image_type_to_mime_type,image2wbmp,imagealphablending,imagearc,imagechar,imagecharup,imagecolorallocate,imagecolorallocatealpha,imagecolorat,imagecolorclosest,imagecolorclosestalpha,imagecolorclosesthwb,imagecolordeallocate,imagecolorexact,imagecolorexactalpha,imagecolorresolve,imagecolorresolvealpha,imagecolorset,imagecolorsforindex,imagecolorstotal,imagecolortransparent,imagecopy,imagecopymerge,imagecopymergegray,imagecopyresampled,imagecopyresized,imagecreate,imagecreatefromgd,imagecreatefromgd2,imagecreatefromgd2part,imagecreatefromgif,imagecreatefromjpeg,imagecreatefrompng,imagecreatefromstring,imagecreatefromwbmp,imagecreatefromxbm,imagecreatefromxpm,imagecreatetruecolor,imagedashedline,imagedestroy,imageellipse,imagefill,imagefilledarc,imagefilledellipse,imagefilledpolygon,imagefilledrectangle,imagefilltoborder,imagefontheight,imagefontwidth,imageftbbox,imagefttext,imagegammacorrect,imagegd,imagegd2,imagegif,imageinterlace,imagejpeg,imageline,imageloadfont,imagepalettecopy,imagepng,imagepolygon,imagepsbbox,imagepscopyfont,imagepsencodefont,imagepsextendfont,imagepsfreefont,imagepsloadfont,imagepsslantfont,imagepstext,imagerectangle,imagerotate,imagesetbrush,imagesetpixel,imagesetstyle,imagesetthickness,imagesettile,imagestring,imagestringup,imagesx,imagesy,imagetruecolortopalette,imagettfbbox,imagettftext,imagetypes,imagewbmp,imap_8bit,imap_alerts,imap_append,imap_base64,imap_binary,imap_body,imap_bodystruct,imap_check,imap_clearflag_full,imap_close,imap_createmailbox,imap_delete,imap_deletemailbox,imap_errors,imap_expunge,imap_fetch_overview,imap_fetchbody,imap_fetchheader,imap_fetchstructure,imap_get_quota,imap_get_quotaroot,imap_getmailboxes,imap_getsubscribed,imap_header,imap_headerinfo,imap_headers,imap_last_error,imap_list,imap_listmailbox,imap_listscan,imap_listsubscribed,imap_lsub,imap_mail_compose,imap_mail_copy,imap_mail_move,imap_mail,imap_mailboxmsginfo,imap_mime_header_decode,imap_msgno,imap_num_msg,imap_num_recent,imap_open,imap_ping,imap_qprint,imap_renamemailbox,imap_reopen,imap_rfc822_parse_adrlist,imap_rfc822_parse_headers,imap_rfc822_write_address,imap_scanmailbox,imap_search,imap_set_quota,imap_setacl,imap_setflag_full,imap_sort,imap_status,imap_subscribe,imap_thread,imap_uid,imap_undelete,imap_unsubscribe,imap_utf7_decode,imap_utf7_encode,imap_utf8,implode,import_request_variables,in_array,include_once,include,ingres_autocommit,ingres_close,ingres_commit,ingres_connect,ingres_fetch_array,ingres_fetch_object,ingres_fetch_row,ingres_field_length,ingres_field_name,ingres_field_nullable,ingres_field_precision,ingres_field_scale,ingres_field_type,ingres_num_fields,ingres_num_rows,ingres_pconnect,ingres_query,ingres_rollback,ini_alter,ini_get_all,ini_get,ini_restore,ini_set,intval,ip2long,iptcembed,iptcparse,ircg_channel_mode,ircg_disconnect,ircg_fetch_error_msg,ircg_get_username,ircg_html_encode,ircg_ignore_add,ircg_ignore_del,ircg_is_conn_alive,ircg_join,ircg_kick,ircg_lookup_format_messages,ircg_msg,ircg_nick,ircg_nickname_escape,ircg_nickname_unescape,ircg_notice,ircg_part,ircg_pconnect,ircg_register_format_messages,ircg_set_current,ircg_set_file,ircg_set_on_die,ircg_topic,ircg_whois,is_a,is_array,is_bool,is_callable,is_dir,is_double,is_executable,is_file,is_finite,is_float,is_infinite,is_int,is_integer,is_link,is_long,is_nan,is_null,is_numeric,is_object,is_readable,is_real,is_resource,is_scalar,is_string,is_subclass_of,is_uploaded_file,is_writable,is_writeable,isset,java_last_exception_clear,java_last_exception_get,jddayofweek,jdmonthname,jdtofrench,jdtogregorian,jdtojewish,jdtojulian,jdtounix,jewishtojd,join,jpeg2wbmp,juliantojd,key,krsort,ksort,lcg_value,ldap_8859_to_t61,ldap_add,ldap_bind,ldap_close,ldap_compare,ldap_connect,ldap_count_entries,ldap_delete,ldap_dn2ufn,ldap_err2str,ldap_errno,ldap_error,ldap_explode_dn,ldap_first_attribute,ldap_first_entry,ldap_first_reference,ldap_free_result,ldap_get_attributes,ldap_get_dn,ldap_get_entries,ldap_get_option,ldap_get_values_len,ldap_get_values,ldap_list,ldap_mod_add,ldap_mod_del,ldap_mod_replace,ldap_modify,ldap_next_attribute,ldap_next_entry,ldap_next_reference,ldap_parse_reference,ldap_parse_result,ldap_read,ldap_rename,ldap_search,ldap_set_option,ldap_set_rebind_proc,ldap_sort,ldap_start_tls,ldap_t61_to_8859,ldap_unbind,levenshtein,link,linkinfo,list,localeconv,localtime,log,log10,log1p,long2ip,lstat,ltrim,mail,mailparse_determine_best_xfer_encoding,mailparse_msg_create,mailparse_msg_extract_part_file,mailparse_msg_extract_part,mailparse_msg_free,mailparse_msg_get_part_data,mailparse_msg_get_part,mailparse_msg_get_structure,mailparse_msg_parse_file,mailparse_msg_parse,mailparse_rfc822_parse_addresses,mailparse_stream_encode,mailparse_uudecode_all,max,mb_convert_case,mb_convert_encoding,mb_convert_kana,mb_convert_variables,mb_decode_mimeheader,mb_decode_numericentity,mb_detect_encoding,mb_detect_order,mb_encode_mimeheader,mb_encode_numericentity,mb_ereg_match,mb_ereg_replace,mb_ereg_search_getpos,mb_ereg_search_getregs,mb_ereg_search_init,mb_ereg_search_pos,mb_ereg_search_regs,mb_ereg_search_setpos,mb_ereg_search,mb_ereg,mb_eregi_replace,mb_eregi,mb_get_info,mb_http_input,mb_http_output,mb_internal_encoding,mb_language,mb_output_handler,mb_parse_str,mb_preferred_mime_name,mb_regex_encoding,mb_regex_set_options,mb_send_mail,mb_split,mb_strcut,mb_strimwidth,mb_strlen,mb_strpos,mb_strrpos,mb_strtolower,mb_strtoupper,mb_strwidth,mb_substitute_character,mb_substr_count,mb_substr,mcal_append_event,mcal_close,mcal_create_calendar,mcal_date_compare,mcal_date_valid,mcal_day_of_week,mcal_day_of_year,mcal_days_in_month,mcal_delete_calendar,mcal_delete_event,mcal_event_add_attribute,mcal_event_init,mcal_event_set_alarm,mcal_event_set_category,mcal_event_set_class,mcal_event_set_description,mcal_event_set_end,mcal_event_set_recur_daily,mcal_event_set_recur_monthly_mday,mcal_event_set_recur_monthly_wday,mcal_event_set_recur_none,mcal_event_set_recur_weekly,mcal_event_set_recur_yearly,mcal_event_set_start,mcal_event_set_title,mcal_expunge,mcal_fetch_current_stream_event,mcal_fetch_event,mcal_is_leap_year,mcal_list_alarms,mcal_list_events,mcal_next_recurrence,mcal_open,mcal_popen,mcal_rename_calendar,mcal_reopen,mcal_snooze,mcal_store_event,mcal_time_valid,mcal_week_of_year,mcrypt_cbc,mcrypt_cfb,mcrypt_create_iv,mcrypt_decrypt,mcrypt_ecb,mcrypt_enc_get_algorithms_name,mcrypt_enc_get_block_size,mcrypt_enc_get_iv_size,mcrypt_enc_get_key_size,mcrypt_enc_get_modes_name,mcrypt_enc_get_supported_key_sizes,mcrypt_enc_is_block_algorithm_mode,mcrypt_enc_is_block_algorithm,mcrypt_enc_is_block_mode,mcrypt_enc_self_test,mcrypt_encrypt,mcrypt_generic_deinit,mcrypt_generic_end,mcrypt_generic_init,mcrypt_generic,mcrypt_get_block_size,mcrypt_get_cipher_name,mcrypt_get_iv_size,mcrypt_get_key_size,mcrypt_list_algorithms,mcrypt_list_modes,mcrypt_module_close,mcrypt_module_get_algo_block_size,mcrypt_module_get_algo_key_size,mcrypt_module_get_supported_key_sizes,mcrypt_module_is_block_algorithm_mode,mcrypt_module_is_block_algorithm,mcrypt_module_is_block_mode,mcrypt_module_open,mcrypt_module_self_test,mcrypt_ofb,mcve_adduser,mcve_adduserarg,mcve_bt,mcve_checkstatus,mcve_chkpwd,mcve_chngpwd,mcve_completeauthorizations,mcve_connect,mcve_connectionerror,mcve_deleteresponse,mcve_deletetrans,mcve_deleteusersetup,mcve_deluser,mcve_destroyconn,mcve_destroyengine,mcve_disableuser,mcve_edituser,mcve_enableuser,mcve_force,mcve_getcell,mcve_getcellbynum,mcve_getcommadelimited,mcve_getheader,mcve_getuserarg,mcve_getuserparam,mcve_gft,mcve_gl,mcve_gut,mcve_initconn,mcve_initengine,mcve_initusersetup,mcve_iscommadelimited,mcve_liststats,mcve_listusers,mcve_maxconntimeout,mcve_monitor,mcve_numcolumns,mcve_numrows,mcve_override,mcve_parsecommadelimited,mcve_ping,mcve_preauth,mcve_preauthcompletion,mcve_qc,mcve_responseparam,mcve_return,mcve_returncode,mcve_returnstatus,mcve_sale,mcve_setblocking,mcve_setdropfile,mcve_setip,mcve_setssl,mcve_settimeout,mcve_settle,mcve_text_avs,mcve_text_code,mcve_text_cv,mcve_transactionauth,mcve_transactionavs,mcve_transactionbatch,mcve_transactioncv,mcve_transactionid,mcve_transactionitem,mcve_transactionssent,mcve_transactiontext,mcve_transinqueue,mcve_transnew,mcve_transparam,mcve_transsend,mcve_ub,mcve_uwait,mcve_verifyconnection,mcve_verifysslcert,mcve_void,md5_file,md5,mdecrypt_generic,metaphone,method_exists,mhash_count,mhash_get_block_size,mhash_get_hash_name,mhash_keygen_s2k,mhash,microtime,mime_content_type,min,ming_setcubicthreshold,ming_setscale,ming_useswfversion,mkdir,mktime,money_format,move_uploaded_file,msession_connect,msession_count,msession_create,msession_destroy,msession_disconnect,msession_find,msession_get_array,msession_get,msession_getdata,msession_inc,msession_list,msession_listvar,msession_lock,msession_plugin,msession_randstr,msession_set_array,msession_set,msession_setdata,msession_timeout,msession_uniq,msession_unlock,msg_get_queue,msg_receive,msg_remove_queue,msg_send,msg_set_queue,msg_stat_queue,msql_affected_rows,msql_close,msql_connect,msql_create_db,msql_createdb,msql_data_seek,msql_dbname,msql_drop_db,msql_dropdb,msql_error,msql_fetch_array,msql_fetch_field,msql_fetch_object,msql_fetch_row,msql_field_seek,msql_fieldflags,msql_fieldlen,msql_fieldname,msql_fieldtable,msql_fieldtype,msql_free_result,msql_freeresult,msql_list_dbs,msql_list_fields,msql_list_tables,msql_listdbs,msql_listfields,msql_listtables,msql_num_fields,msql_num_rows,msql_numfields,msql_numrows,msql_pconnect,msql_query,msql_regcase,msql_result,msql_select_db,msql_selectdb,msql_tablename,msql,mssql_bind,mssql_close,mssql_connect,mssql_data_seek,mssql_execute,mssql_fetch_array,mssql_fetch_assoc,mssql_fetch_batch,mssql_fetch_field,mssql_fetch_object,mssql_fetch_row,mssql_field_length,mssql_field_name,mssql_field_seek,mssql_field_type,mssql_free_result,mssql_free_statement,mssql_get_last_message,mssql_guid_string,mssql_init,mssql_min_error_severity,mssql_min_message_severity,mssql_next_result,mssql_num_fields,mssql_num_rows,mssql_pconnect,mssql_query,mssql_result,mssql_rows_affected,mssql_select_db,mt_getrandmax,mt_rand,mt_srand,muscat_close,muscat_get,muscat_give,muscat_setup_net,muscat_setup,mysql_affected_rows,mysql_change_user,mysql_character_set_name,mysql_close,mysql_connect,mysql_create_db,mysql_data_seek,mysql_db_name,mysql_db_query,mysql_drop_db,mysql_errno,mysql_error,mysql_escape_string,mysql_fetch_array,mysql_fetch_assoc,mysql_fetch_field,mysql_fetch_lengths,mysql_fetch_object,mysql_fetch_row,mysql_field_flags,mysql_field_len,mysql_field_name,mysql_field_seek,mysql_field_table,mysql_field_type,mysql_free_result,mysql_get_client_info,mysql_get_host_info,mysql_get_proto_info,mysql_get_server_info,mysql_info,mysql_insert_id,mysql_list_dbs,mysql_list_fields,mysql_list_processes,mysql_list_tables,mysql_num_fields,mysql_num_rows,mysql_pconnect,mysql_ping,mysql_query,mysql_real_escape_string,mysql_result,mysql_select_db,mysql_stat,mysql_tablename,mysql_thread_id,mysql_unbuffered_query,natcasesort,natsort,ncurses_addch,ncurses_addchnstr,ncurses_addchstr,ncurses_addnstr,ncurses_addstr,ncurses_assume_default_colors,ncurses_attroff,ncurses_attron,ncurses_attrset,ncurses_baudrate,ncurses_beep,ncurses_bkgd,ncurses_bkgdset,ncurses_border,ncurses_can_change_color,ncurses_cbreak,ncurses_clear,ncurses_clrtobot,ncurses_clrtoeol,ncurses_color_set,ncurses_curs_set,ncurses_def_prog_mode,ncurses_def_shell_mode,ncurses_define_key,ncurses_delay_output,ncurses_delch,ncurses_deleteln,ncurses_delwin,ncurses_doupdate,ncurses_echo,ncurses_echochar,ncurses_end,ncurses_erase,ncurses_erasechar,ncurses_filter,ncurses_flash,ncurses_flushinp,ncurses_getch,ncurses_getmouse,ncurses_halfdelay,ncurses_has_colors,ncurses_has_ic,ncurses_has_il,ncurses_has_key,ncurses_hline,ncurses_inch,ncurses_init_color,ncurses_init_pair,ncurses_init,ncurses_insch,ncurses_insdelln,ncurses_insertln,ncurses_insstr,ncurses_instr,ncurses_isendwin,ncurses_keyok,ncurses_killchar,ncurses_longname,ncurses_mouseinterval,ncurses_mousemask,ncurses_move,ncurses_mvaddch,ncurses_mvaddchnstr,ncurses_mvaddchstr,ncurses_mvaddnstr,ncurses_mvaddstr,ncurses_mvcur,ncurses_mvdelch,ncurses_mvgetch,ncurses_mvhline,ncurses_mvinch,ncurses_mvvline,ncurses_mvwaddstr,ncurses_napms,ncurses_newwin,ncurses_nl,ncurses_nocbreak,ncurses_noecho,ncurses_nonl,ncurses_noqiflush,ncurses_noraw,ncurses_putp,ncurses_qiflush,ncurses_raw,ncurses_refresh,ncurses_resetty,ncurses_savetty,ncurses_scr_dump,ncurses_scr_init,ncurses_scr_restore,ncurses_scr_set,ncurses_scrl,ncurses_slk_attr,ncurses_slk_attroff,ncurses_slk_attron,ncurses_slk_attrset,ncurses_slk_clear,ncurses_slk_color,ncurses_slk_init,ncurses_slk_noutrefresh,ncurses_slk_refresh,ncurses_slk_restore,ncurses_slk_touch,ncurses_standend,ncurses_standout,ncurses_start_color,ncurses_termattrs,ncurses_termname,ncurses_timeout,ncurses_typeahead,ncurses_ungetch,ncurses_ungetmouse,ncurses_use_default_colors,ncurses_use_env,ncurses_use_extended_names,ncurses_vidattr,ncurses_vline,ncurses_wrefresh,next,ngettext,nl_langinfo,nl2br,notes_body,notes_copy_db,notes_create_db,notes_create_note,notes_drop_db,notes_find_note,notes_header_info,notes_list_msgs,notes_mark_read,notes_mark_unread,notes_nav_create,notes_search,notes_unread,notes_version,number_format,ob_clean,ob_end_clean,ob_end_flush,ob_flush,ob_get_contents,ob_get_length,ob_get_level,ob_get_status,ob_gzhandler,ob_iconv_handler,ob_implicit_flush,ob_start,ocibindbyname,ocicancel,ocicollappend,ocicollassign,ocicollassignelem,ocicollgetelem,ocicollmax,ocicollsize,ocicolltrim,ocicolumnisnull,ocicolumnname,ocicolumnprecision,ocicolumnscale,ocicolumnsize,ocicolumntype,ocicolumntyperaw,ocicommit,ocidefinebyname,ocierror,ociexecute,ocifetch,ocifetchinto,ocifetchstatement,ocifreecollection,ocifreecursor,ocifreedesc,ocifreestatement,ociinternaldebug,ociloadlob,ocilogoff,ocilogon,ocinewcollection,ocinewcursor,ocinewdescriptor,ocinlogon,ocinumcols,ociparse,ociplogon,ociresult,ocirollback,ocirowcount,ocisavelob,ocisavelobfile,ociserverversion,ocisetprefetch,ocistatementtype,ociwritelobtofile,octdec,odbc_autocommit,odbc_binmode,odbc_close_all,odbc_close,odbc_columnprivileges,odbc_columns,odbc_commit,odbc_connect,odbc_cursor,odbc_data_source,odbc_do,odbc_error,odbc_errormsg,odbc_exec,odbc_execute,odbc_fetch_array,odbc_fetch_into,odbc_fetch_object,odbc_fetch_row,odbc_field_len,odbc_field_name,odbc_field_num,odbc_field_precision,odbc_field_scale,odbc_field_type,odbc_foreignkeys,odbc_free_result,odbc_gettypeinfo,odbc_longreadlen,odbc_next_result,odbc_num_fields,odbc_num_rows,odbc_pconnect,odbc_prepare,odbc_primarykeys,odbc_procedurecolumns,odbc_procedures,odbc_result_all,odbc_result,odbc_rollback,odbc_setoption,odbc_specialcolumns,odbc_statistics,odbc_tableprivileges,odbc_tables,opendir,openlog,openssl_csr_export_to_file,openssl_csr_export,openssl_csr_new,openssl_csr_sign,openssl_error_string,openssl_free_key,openssl_get_privatekey,openssl_get_publickey,openssl_open,openssl_pkcs7_decrypt,openssl_pkcs7_encrypt,openssl_pkcs7_sign,openssl_pkcs7_verify,openssl_pkey_export_to_file,openssl_pkey_export,openssl_pkey_get_private,openssl_pkey_get_public,openssl_pkey_new,openssl_private_decrypt,openssl_private_encrypt,openssl_public_decrypt,openssl_public_encrypt,openssl_seal,openssl_sign,openssl_verify,openssl_x509_check_private_key,openssl_x509_checkpurpose,openssl_x509_export_to_file,openssl_x509_export,openssl_x509_free,openssl_x509_parse,openssl_x509_read,ora_bind,ora_close,ora_columnname,ora_columnsize,ora_columntype,ora_commit,ora_commitoff,ora_commiton,ora_do,ora_error,ora_errorcode,ora_exec,ora_fetch_into,ora_fetch,ora_getcolumn,ora_logoff,ora_logon,ora_numcols,ora_numrows,ora_open,ora_parse,ora_plogon,ora_rollback,ord,overload,ovrimos_close,ovrimos_commit,ovrimos_connect,ovrimos_cursor,ovrimos_exec,ovrimos_execute,ovrimos_fetch_into,ovrimos_fetch_row,ovrimos_field_len,ovrimos_field_name,ovrimos_field_num,ovrimos_field_type,ovrimos_free_result,ovrimos_longreadlen,ovrimos_num_fields,ovrimos_num_rows,ovrimos_prepare,ovrimos_result_all,ovrimos_result,ovrimos_rollback,pack,parse_ini_file,parse_str,parse_url,passthru,pathinfo,pclose,pcntl_exec,pcntl_fork,pcntl_signal,pcntl_waitpid,pcntl_wexitstatus,pcntl_wifexited,pcntl_wifsignaled,pcntl_wifstopped,pcntl_wstopsig,pcntl_wtermsig,pdf_add_annotation,pdf_add_bookmark,pdf_add_launchlink,pdf_add_locallink,pdf_add_note,pdf_add_outline,pdf_add_pdflink,pdf_add_thumbnail,pdf_add_weblink,pdf_arc,pdf_arcn,pdf_attach_file,pdf_begin_page,pdf_begin_pattern,pdf_begin_template,pdf_circle,pdf_clip,pdf_close_image,pdf_close_pdi_page,pdf_close_pdi,pdf_close,pdf_closepath_fill_stroke,pdf_closepath_stroke,pdf_closepath,pdf_concat,pdf_continue_text,pdf_curveto,pdf_delete,pdf_end_page,pdf_end_pattern,pdf_end_template,pdf_endpath,pdf_fill_stroke,pdf_fill,pdf_findfont,pdf_get_buffer,pdf_get_font,pdf_get_fontname,pdf_get_fontsize,pdf_get_image_height,pdf_get_image_width,pdf_get_majorversion,pdf_get_minorversion,pdf_get_parameter,pdf_get_pdi_parameter,pdf_get_pdi_value,pdf_get_value,pdf_initgraphics,pdf_lineto,pdf_makespotcolor,pdf_moveto,pdf_new,pdf_open_ccitt,pdf_open_file,pdf_open_gif,pdf_open_image_file,pdf_open_image,pdf_open_jpeg,pdf_open_memory_image,pdf_open_pdi_page,pdf_open_pdi,pdf_open_png,pdf_open_tiff,pdf_open,pdf_place_image,pdf_place_pdi_page,pdf_rect,pdf_restore,pdf_rotate,pdf_save,pdf_scale,pdf_set_border_color,pdf_set_border_dash,pdf_set_border_style,pdf_set_char_spacing,pdf_set_duration,pdf_set_font,pdf_set_horiz_scaling,pdf_set_info_author,pdf_set_info_creator,pdf_set_info_keywords,pdf_set_info_subject,pdf_set_info_title,pdf_set_info,pdf_set_leading,pdf_set_parameter,pdf_set_text_matrix,pdf_set_text_pos,pdf_set_text_rendering,pdf_set_text_rise,pdf_set_value,pdf_set_word_spacing,pdf_setcolor,pdf_setdash,pdf_setflat,pdf_setfont,pdf_setgray_fill,pdf_setgray_stroke,pdf_setgray,pdf_setlinecap,pdf_setlinejoin,pdf_setlinewidth,pdf_setmatrix,pdf_setmiterlimit,pdf_setpolydash,pdf_setrgbcolor_fill,pdf_setrgbcolor_stroke,pdf_setrgbcolor,pdf_show_boxed,pdf_show_xy,pdf_show,pdf_skew,pdf_stringwidth,pdf_stroke,pdf_translate,pfpro_cleanup,pfpro_init,pfpro_process_raw,pfpro_process,pfpro_version,pfsockopen,pg_affected_rows,pg_cancel_query,pg_client_encoding,pg_close,pg_connect,pg_connection_busy,pg_connection_reset,pg_connection_status,pg_convert,pg_copy_from,pg_copy_to,pg_dbname,pg_delete,pg_end_copy,pg_escape_bytea,pg_escape_string,pg_fetch_all,pg_fetch_array,pg_fetch_assoc,pg_fetch_object,pg_fetch_result,pg_fetch_row,pg_field_is_null,pg_field_name,pg_field_num,pg_field_prtlen,pg_field_size,pg_field_type,pg_free_result,pg_get_notify,pg_get_pid,pg_get_result,pg_host,pg_insert,pg_last_error,pg_last_notice,pg_last_oid,pg_lo_close,pg_lo_create,pg_lo_export,pg_lo_import,pg_lo_open,pg_lo_read_all,pg_lo_read,pg_lo_seek,pg_lo_tell,pg_lo_unlink,pg_lo_write,pg_meta_data,pg_num_fields,pg_num_rows,pg_options,pg_pconnect,pg_ping,pg_port,pg_put_line,pg_query,pg_result_error,pg_result_seek,pg_result_status,pg_select,pg_send_query,pg_set_client_encoding,pg_trace,pg_tty,pg_unescape_bytea,pg_untrace,pg_update,php_ini_scanned_files,php_logo_guid,php_sapi_name,php_uname,phpcredits,phpinfo,phpversion,pi,png2wbmp,popen,pos,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pow,preg_grep,preg_match_all,preg_match,preg_quote,preg_replace_callback,preg_replace,preg_split,prev,print_r,print,printer_abort,printer_close,printer_create_brush,printer_create_dc,printer_create_font,printer_create_pen,printer_delete_brush,printer_delete_dc,printer_delete_font,printer_delete_pen,printer_draw_bmp,printer_draw_chord,printer_draw_elipse,printer_draw_line,printer_draw_pie,printer_draw_rectangle,printer_draw_roundrect,printer_draw_text,printer_end_doc,printer_end_page,printer_get_option,printer_list,printer_logical_fontheight,printer_open,printer_select_brush,printer_select_font,printer_select_pen,printer_set_option,printer_start_doc,printer_start_page,printer_write,printf,proc_close,proc_open,pspell_add_to_personal,pspell_add_to_session,pspell_check,pspell_clear_session,pspell_config_create,pspell_config_ignore,pspell_config_mode,pspell_config_personal,pspell_config_repl,pspell_config_runtogether,pspell_config_save_repl,pspell_new_config,pspell_new_personal,pspell_new,pspell_save_wordlist,pspell_store_replacement,pspell_suggest,putenv,qdom_error,qdom_tree,quoted_printable_decode,quotemeta,rad2deg,rand,range,rawurldecode,rawurlencode,read_exif_data,readdir,readfile,readgzfile,readline_add_history,readline_clear_history,readline_completion_function,readline_info,readline_list_history,readline_read_history,readline_write_history,readline,readlink,realpath,recode_file,recode_string,recode,register_shutdown_function,register_tick_function,rename,require_once,require,reset,restore_error_handler,return,rewind,rewinddir,rmdir,round,rsort,rtrim,sem_acquire,sem_get,sem_release,sem_remove,serialize,sesam_affected_rows,sesam_commit,sesam_connect,sesam_diagnostic,sesam_disconnect,sesam_errormsg,sesam_execimm,sesam_fetch_array,sesam_fetch_result,sesam_fetch_row,sesam_field_array,sesam_field_name,sesam_free_result,sesam_num_fields,sesam_query,sesam_rollback,sesam_seek_row,sesam_settransaction,session_cache_expire,session_cache_limiter,session_decode,session_destroy,session_encode,session_get_cookie_params,session_id,session_is_registered,session_module_name,session_name,session_readonly,session_register,session_save_path,session_set_cookie_params,session_set_save_handler,session_start,session_unregister,session_unset,session_write_close,set_error_handler,set_file_buffer,set_magic_quotes_runtime,set_time_limit,setcookie,setlocale,settype,sha1_file,sha1,shell_exec,shm_attach,shm_detach,shm_get_var,shm_put_var,shm_remove_var,shm_remove,shmop_close,shmop_delete,shmop_open,shmop_read,shmop_size,shmop_write,show_source,shuffle,similar_text,sin,sinh,sizeof,sleep,snmp_get_quick_print,snmp_set_quick_print,snmpget,snmprealwalk,snmpset,snmpwalk,snmpwalkoid,socket_accept,socket_bind,socket_clear_error,socket_close,socket_connect,socket_create_listen,socket_create_pair,socket_create,socket_get_option,socket_get_status,socket_getpeername,socket_getsockname,socket_iovec_add,socket_iovec_alloc,socket_iovec_delete,socket_iovec_fetch,socket_iovec_free,socket_iovec_set,socket_last_error,socket_listen,socket_read,socket_readv,socket_recv,socket_recvfrom,socket_recvmsg,socket_select,socket_send,socket_sendmsg,socket_sendto,socket_set_blocking,socket_set_nonblock,socket_set_option,socket_set_timeout,socket_shutdown,socket_strerror,socket_write,socket_writev,sort,soundex,split,spliti,sprintf,sql_regcase,sqrt,srand,sscanf,stat,str_pad,str_repeat,str_replace,str_rot13,str_shuffle,str_word_count,strcasecmp,strchr,strcmp,strcoll,strcspn,stream_context_create,stream_context_get_options,stream_context_set_option,stream_context_set_params,stream_filter_append,stream_filter_prepend,stream_get_filters,stream_get_meta_data,stream_get_wrappers,stream_register_filter,stream_register_wrapper,stream_select,stream_set_blocking,stream_set_timeout,stream_set_write_buffer,strftime,strip_tags,stripcslashes,stripslashes,stristr,strlen,strnatcasecmp,strnatcmp,strncasecmp,strncmp,strpos,strrchr,strrev,strrpos,strspn,strstr,strtok,strtolower,strtotime,strtoupper,strtr,strval,substr_count,substr_replace,substr,swf_actiongeturl,swf_actiongotoframe,swf_actiongotolabel,swf_actionnextframe,swf_actionplay,swf_actionprevframe,swf_actionsettarget,swf_actionstop,swf_actiontogglequality,swf_actionwaitforframe,swf_addbuttonrecord,swf_addcolor,swf_closefile,swf_definebitmap,swf_definefont,swf_defineline,swf_definepoly,swf_definerect,swf_definetext,swf_endbutton,swf_enddoaction,swf_endshape,swf_endsymbol,swf_fontsize,swf_fontslant,swf_fonttracking,swf_getbitmapinfo,swf_getfontinfo,swf_getframe,swf_labelframe,swf_lookat,swf_modifyobject,swf_mulcolor,swf_nextid,swf_oncondition,swf_openfile,swf_ortho,swf_ortho2,swf_perspective,swf_placeobject,swf_polarview,swf_popmatrix,swf_posround,swf_pushmatrix,swf_removeobject,swf_rotate,swf_scale,swf_setfont,swf_setframe,swf_shapearc,swf_shapecurveto,swf_shapecurveto3,swf_shapefillbitmapclip,swf_shapefillbitmaptile,swf_shapefilloff,swf_shapefillsolid,swf_shapelinesolid,swf_shapelineto,swf_shapemoveto,swf_showframe,swf_startbutton,swf_startdoaction,swf_startshape,swf_startsymbol,swf_textwidth,swf_translate,swf_viewport,swfaction,swfbitmap.getheight,swfbitmap.getwidth,swfbitmap,swfbutton_keypress,swfbutton.addaction,swfbutton.addshape,swfbutton,swfbutton.setaction,swfbutton.setdown,swfbutton.sethit,swfbutton.setover,swfbutton.setup,swfdisplayitem.addcolor,swfdisplayitem,swfdisplayitem.move,swfdisplayitem.moveto,swfdisplayitem.multcolor,swfdisplayitem.remove,swfdisplayitem.rotate,swfdisplayitem.rotateto,swfdisplayitem.scale,swfdisplayitem.scaleto,swfdisplayitem.setdepth,swfdisplayitem.setname,swfdisplayitem.setratio,swfdisplayitem.skewx,swfdisplayitem.skewxto,swfdisplayitem.skewy,swfdisplayitem.skewyto,swffill,swffill.moveto,swffill.rotateto,swffill.scaleto,swffill.skewxto,swffill.skewyto,swffont.getwidth,swffont,swfgradient.addentry,swfgradient,swfmorph.getshape1,swfmorph.getshape2,swfmorph,swfmovie.add,swfmovie,swfmovie.nextframe,swfmovie.output,swfmovie.remove,swfmovie.save,swfmovie.setbackground,swfmovie.setdimension,swfmovie.setframes,swfmovie.setrate,swfmovie.streammp3,swfshape.addfill,swfshape.drawcurve,swfshape.drawcurveto,swfshape.drawline,swfshape.drawlineto,swfshape,swfshape.movepen,swfshape.movepento,swfshape.setleftfill,swfshape.setline,swfshape.setrightfill,swfsprite.add,swfsprite,swfsprite.nextframe,swfsprite.remove,swfsprite.setframes,swftext.addstring,swftext.getwidth,swftext,swftext.moveto,swftext.setcolor,swftext.setfont,swftext.setheight,swftext.setspacing,swftextfield.addstring,swftextfield.align,swftextfield,swftextfield.setbounds,swftextfield.setcolor,swftextfield.setfont,swftextfield.setheight,swftextfield.setindentation,swftextfield.setleftmargin,swftextfield.setlinespacing,swftextfield.setmargins,swftextfield.setname,swftextfield.setrightmargin,sybase_affected_rows,sybase_close,sybase_connect,sybase_data_seek,sybase_fetch_array,sybase_fetch_field,sybase_fetch_object,sybase_fetch_row,sybase_field_seek,sybase_free_result,sybase_get_last_message,sybase_min_client_severity,sybase_min_error_severity,sybase_min_message_severity,sybase_min_server_severity,sybase_num_fields,sybase_num_rows,sybase_pconnect,sybase_query,sybase_result,sybase_select_db,symlink,syslog,system,tan,tanh,tempnam,textdomain,time,tmpfile,token_get_all,token_name,touch,trigger_error,trim,uasort,ucfirst,ucwords,udm_add_search_limit,udm_alloc_agent,udm_api_version,udm_cat_list,udm_cat_path,udm_check_charset,udm_check_stored,udm_clear_search_limits,udm_close_stored,udm_crc32,udm_errno,udm_error,udm_find,udm_free_agent,udm_free_ispell_data,udm_free_res,udm_get_doc_count,udm_get_res_field,udm_get_res_param,udm_load_ispell_data,udm_open_stored,udm_set_agent_param,uksort,umask,uniqid,unixtojd,unlink,unpack,unregister_tick_function,unserialize,unset,urldecode,urlencode,user_error,usleep,usort,utf8_decode,utf8_encode,var_dump,var_export,version_compare,virtual,vpopmail_add_alias_domain_ex,vpopmail_add_alias_domain,vpopmail_add_domain_ex,vpopmail_add_domain,vpopmail_add_user,vpopmail_alias_add,vpopmail_alias_del_domain,vpopmail_alias_del,vpopmail_alias_get_all,vpopmail_alias_get,vpopmail_auth_user,vpopmail_del_domain_ex,vpopmail_del_domain,vpopmail_del_user,vpopmail_error,vpopmail_passwd,vpopmail_set_user_quota,vprintf,vsprintf,w32api_deftype,w32api_init_dtype,w32api_invoke_function,w32api_register_function,w32api_set_call_method,wddx_add_vars,wddx_deserialize,wddx_packet_end,wddx_packet_start,wddx_serialize_value,wddx_serialize_vars,wordwrap,xml_error_string,xml_get_current_byte_index,xml_get_current_column_number,xml_get_current_line_number,xml_get_error_code,xml_parse_into_struct,xml_parse,xml_parser_create_ns,xml_parser_create,xml_parser_free,xml_parser_get_option,xml_parser_set_option,xml_set_character_data_handler,xml_set_default_handler,xml_set_element_handler,xml_set_end_namespace_decl_handler,xml_set_external_entity_ref_handler,xml_set_notation_decl_handler,xml_set_object,xml_set_processing_instruction_handler,xml_set_start_namespace_decl_handler,xml_set_unparsed_entity_decl_handler,xmlrpc_decode_request,xmlrpc_decode,xmlrpc_encode_request,xmlrpc_encode,xmlrpc_get_type,xmlrpc_parse_method_descriptions,xmlrpc_server_add_introspection_data,xmlrpc_server_call_method,xmlrpc_server_create,xmlrpc_server_destroy,xmlrpc_server_register_introspection_callback,xmlrpc_server_register_method,xmlrpc_set_type,xpath_eval_expression,xpath_eval,xpath_new_context,xptr_eval,xptr_new_context,xslt_create,xslt_errno,xslt_error,xslt_free,xslt_process,xslt_set_base,xslt_set_encoding,xslt_set_error_handler,xslt_set_log,xslt_set_sax_handler,xslt_set_sax_handlers,xslt_set_scheme_handler,xslt_set_scheme_handlers,yaz_addinfo,yaz_ccl_conf,yaz_ccl_parse,yaz_close,yaz_connect,yaz_database,yaz_element,yaz_errno,yaz_error,yaz_get_option,yaz_hits,yaz_itemorder,yaz_present,yaz_range,yaz_record,yaz_scan_result,yaz_scan,yaz_schema,yaz_search,yaz_set_option,yaz_sort,yaz_syntax,yaz_wait,yp_all,yp_cat,yp_err_string,yp_errno,yp_first,yp_get_default_domain,yp_master,yp_match,yp_next,yp_order,zend_logo_guid,zend_version,zip_close,zip_entry_close,zip_entry_compressedsize,zip_entry_compressionmethod,zip_entry_filesize,zip_entry_name,zip_entry_open,zip_entry_read,zip_open,zip_read,functions.arguments.html,functions.html,functions.old_syntax.html,functions.returning_values.html,functions.variable_functions.html,language.oop.magic_functions.html,zend.calling_user_functions.html,zend.structure.exporting_functions.html,zend.structure.function_block.html

calling_user_functions.html=calling-user-functions.html
features.safe_mode.functions.html=features.safe-mode.functions.html
abs=function.abs.html
acos=function.acos.html
acosh=function.acosh.html
addcslashes=function.addcslashes.html
addslashes=function.addslashes.html
aggregate_info=function.aggregate-info.html
aggregate_methods_by_list=function.aggregate-methods-by-list.html
aggregate_methods_by_regexp=function.aggregate-methods-by-regexp.html
aggregate_methods=function.aggregate-methods.html
aggregate_properties_by_list=function.aggregate-properties-by-list.html
aggregate_properties_by_regexp=function.aggregate-properties-by-regexp.html
aggregate_properties=function.aggregate-properties.html
aggregate=function.aggregate.html
aggregation_info=function.aggregation-info.html
apache_child_terminate=function.apache-child-terminate.html
apache_lookup_uri=function.apache-lookup-uri.html
apache_note=function.apache-note.html
apache_request_headers=function.apache-request-headers.html
apache_response_headers=function.apache-response-headers.html
apache_setenv=function.apache-setenv.html
array_change_key_case=function.array-change-key-case.html
array_chunk=function.array-chunk.html
array_count_values=function.array-count-values.html
array_diff_assoc=function.array-diff-assoc.html
array_diff=function.array-diff.html
array_fill=function.array-fill.html
array_filter=function.array-filter.html
array_flip=function.array-flip.html
array_intersect_assoc=function.array-intersect-assoc.html
array_intersect=function.array-intersect.html
array_key_exists=function.array-key-exists.html
array_keys=function.array-keys.html
array_map=function.array-map.html
array_merge_recursive=function.array-merge-recursive.html
array_merge=function.array-merge.html
array_multisort=function.array-multisort.html
array_pad=function.array-pad.html
array_pop=function.array-pop.html
array_push=function.array-push.html
array_rand=function.array-rand.html
array_reduce=function.array-reduce.html
array_reverse=function.array-reverse.html
array_search=function.array-search.html
array_shift=function.array-shift.html
array_slice=function.array-slice.html
array_splice=function.array-splice.html
array_sum=function.array-sum.html
array_unique=function.array-unique.html
array_unshift=function.array-unshift.html
array_values=function.array-values.html
array_walk=function.array-walk.html
array=function.array.html
arsort=function.arsort.html
ascii2ebcdic=function.ascii2ebcdic.html
asin=function.asin.html
asinh=function.asinh.html
asort=function.asort.html
aspell_check_raw=function.aspell-check-raw.html
aspell_check=function.aspell-check.html
aspell_new=function.aspell-new.html
aspell_suggest=function.aspell-suggest.html
assert_options=function.assert-options.html
assert=function.assert.html
atan=function.atan.html
atan2=function.atan2.html
atanh=function.atanh.html
base_convert=function.base-convert.html
base64_decode=function.base64-decode.html
base64_encode=function.base64-encode.html
basename=function.basename.html
bcadd=function.bcadd.html
bccomp=function.bccomp.html
bcdiv=function.bcdiv.html
bcmod=function.bcmod.html
bcmul=function.bcmul.html
bcpow=function.bcpow.html
bcpowmod=function.bcpowmod.html
bcscale=function.bcscale.html
bcsqrt=function.bcsqrt.html
bcsub=function.bcsub.html
bin2hex=function.bin2hex.html
bind_textdomain_codeset=function.bind-textdomain-codeset.html
bindec=function.bindec.html
bindtextdomain=function.bindtextdomain.html
bzclose=function.bzclose.html
bzcompress=function.bzcompress.html
bzdecompress=function.bzdecompress.html
bzerrno=function.bzerrno.html
bzerror=function.bzerror.html
bzerrstr=function.bzerrstr.html
bzflush=function.bzflush.html
bzopen=function.bzopen.html
bzread=function.bzread.html
bzwrite=function.bzwrite.html
cal_days_in_month=function.cal-days-in-month.html
cal_from_jd=function.cal-from-jd.html
cal_info=function.cal-info.html
cal_to_jd=function.cal-to-jd.html
call_user_func_array=function.call-user-func-array.html
call_user_func=function.call-user-func.html
call_user_method_array=function.call-user-method-array.html
call_user_method=function.call-user-method.html
ccvs_add=function.ccvs-add.html
ccvs_auth=function.ccvs-auth.html
ccvs_command=function.ccvs-command.html
ccvs_count=function.ccvs-count.html
ccvs_delete=function.ccvs-delete.html
ccvs_done=function.ccvs-done.html
ccvs_init=function.ccvs-init.html
ccvs_lookup=function.ccvs-lookup.html
ccvs_new=function.ccvs-new.html
ccvs_report=function.ccvs-report.html
ccvs_return=function.ccvs-return.html
ccvs_reverse=function.ccvs-reverse.html
ccvs_sale=function.ccvs-sale.html
ccvs_status=function.ccvs-status.html
ccvs_textvalue=function.ccvs-textvalue.html
ccvs_void=function.ccvs-void.html
ceil=function.ceil.html
chdir=function.chdir.html
checkdate=function.checkdate.html
checkdnsrr=function.checkdnsrr.html
chgrp=function.chgrp.html
chmod=function.chmod.html
chop=function.chop.html
chown=function.chown.html
chr=function.chr.html
chroot=function.chroot.html
chunk_split=function.chunk-split.html
class_exists=function.class-exists.html
clearstatcache=function.clearstatcache.html
closedir=function.closedir.html
closelog=function.closelog.html
com_addref=function.com-addref.html
com_get=function.com-get.html
com_invoke=function.com-invoke.html
com_isenum=function.com-isenum.html
com_load_typelib=function.com-load-typelib.html
com_load=function.com-load.html
com_propget=function.com-propget.html
com_propput=function.com-propput.html
com_propset=function.com-propset.html
com_release=function.com-release.html
com_set=function.com-set.html
compact=function.compact.html
connection_aborted=function.connection-aborted.html
connection_status=function.connection-status.html
connection_timeout=function.connection-timeout.html
constant=function.constant.html
convert_cyr_string=function.convert-cyr-string.html
copy=function.copy.html
cos=function.cos.html
cosh=function.cosh.html
count_chars=function.count-chars.html
count=function.count.html
cpdf_add_annotation=function.cpdf-add-annotation.html
cpdf_add_outline=function.cpdf-add-outline.html
cpdf_arc=function.cpdf-arc.html
cpdf_begin_text=function.cpdf-begin-text.html
cpdf_circle=function.cpdf-circle.html
cpdf_clip=function.cpdf-clip.html
cpdf_close=function.cpdf-close.html
cpdf_closepath_fill_stroke=function.cpdf-closepath-fill-stroke.html
cpdf_closepath_stroke=function.cpdf-closepath-stroke.html
cpdf_closepath=function.cpdf-closepath.html
cpdf_continue_text=function.cpdf-continue-text.html
cpdf_curveto=function.cpdf-curveto.html
cpdf_end_text=function.cpdf-end-text.html
cpdf_fill_stroke=function.cpdf-fill-stroke.html
cpdf_fill=function.cpdf-fill.html
cpdf_finalize_page=function.cpdf-finalize-page.html
cpdf_finalize=function.cpdf-finalize.html
cpdf_global_set_document_limits=function.cpdf-global-set-document-limits.html
cpdf_import_jpeg=function.cpdf-import-jpeg.html
cpdf_lineto=function.cpdf-lineto.html
cpdf_moveto=function.cpdf-moveto.html
cpdf_newpath=function.cpdf-newpath.html
cpdf_open=function.cpdf-open.html
cpdf_output_buffer=function.cpdf-output-buffer.html
cpdf_page_init=function.cpdf-page-init.html
cpdf_place_inline_image=function.cpdf-place-inline-image.html
cpdf_rect=function.cpdf-rect.html
cpdf_restore=function.cpdf-restore.html
cpdf_rlineto=function.cpdf-rlineto.html
cpdf_rmoveto=function.cpdf-rmoveto.html
cpdf_rotate_text=function.cpdf-rotate-text.html
cpdf_rotate=function.cpdf-rotate.html
cpdf_save_to_file=function.cpdf-save-to-file.html
cpdf_save=function.cpdf-save.html
cpdf_scale=function.cpdf-scale.html
cpdf_set_action_url=function.cpdf-set-action-url.html
cpdf_set_char_spacing=function.cpdf-set-char-spacing.html
cpdf_set_creator=function.cpdf-set-creator.html
cpdf_set_current_page=function.cpdf-set-current-page.html
cpdf_set_font_directories=function.cpdf-set-font-directories.html
cpdf_set_font_map_file=function.cpdf-set-font-map-file.html
cpdf_set_font=function.cpdf-set-font.html
cpdf_set_horiz_scaling=function.cpdf-set-horiz-scaling.html
cpdf_set_keywords=function.cpdf-set-keywords.html
cpdf_set_leading=function.cpdf-set-leading.html
cpdf_set_page_animation=function.cpdf-set-page-animation.html
cpdf_set_subject=function.cpdf-set-subject.html
cpdf_set_text_matrix=function.cpdf-set-text-matrix.html
cpdf_set_text_pos=function.cpdf-set-text-pos.html
cpdf_set_text_rendering=function.cpdf-set-text-rendering.html
cpdf_set_text_rise=function.cpdf-set-text-rise.html
cpdf_set_title=function.cpdf-set-title.html
cpdf_set_viewer_preferences=function.cpdf-set-viewer-preferences.html
cpdf_set_word_spacing=function.cpdf-set-word-spacing.html
cpdf_setdash=function.cpdf-setdash.html
cpdf_setflat=function.cpdf-setflat.html
cpdf_setgray_fill=function.cpdf-setgray-fill.html
cpdf_setgray_stroke=function.cpdf-setgray-stroke.html
cpdf_setgray=function.cpdf-setgray.html
cpdf_setlinecap=function.cpdf-setlinecap.html
cpdf_setlinejoin=function.cpdf-setlinejoin.html
cpdf_setlinewidth=function.cpdf-setlinewidth.html
cpdf_setmiterlimit=function.cpdf-setmiterlimit.html
cpdf_setrgbcolor_fill=function.cpdf-setrgbcolor-fill.html
cpdf_setrgbcolor_stroke=function.cpdf-setrgbcolor-stroke.html
cpdf_setrgbcolor=function.cpdf-setrgbcolor.html
cpdf_show_xy=function.cpdf-show-xy.html
cpdf_show=function.cpdf-show.html
cpdf_stringwidth=function.cpdf-stringwidth.html
cpdf_stroke=function.cpdf-stroke.html
cpdf_text=function.cpdf-text.html
cpdf_translate=function.cpdf-translate.html
crack_check=function.crack-check.html
crack_closedict=function.crack-closedict.html
crack_getlastmessage=function.crack-getlastmessage.html
crack_opendict=function.crack-opendict.html
crc32=function.crc32.html
create_function=function.create-function.html
crypt=function.crypt.html
ctype_alnum=function.ctype-alnum.html
ctype_alpha=function.ctype-alpha.html
ctype_cntrl=function.ctype-cntrl.html
ctype_digit=function.ctype-digit.html
ctype_graph=function.ctype-graph.html
ctype_lower=function.ctype-lower.html
ctype_print=function.ctype-print.html
ctype_punct=function.ctype-punct.html
ctype_space=function.ctype-space.html
ctype_upper=function.ctype-upper.html
ctype_xdigit=function.ctype-xdigit.html
curl_close=function.curl-close.html
curl_errno=function.curl-errno.html
curl_error=function.curl-error.html
curl_exec=function.curl-exec.html
curl_getinfo=function.curl-getinfo.html
curl_init=function.curl-init.html
curl_setopt=function.curl-setopt.html
curl_version=function.curl-version.html
current=function.current.html
cybercash_base64_decode=function.cybercash-base64-decode.html
cybercash_base64_encode=function.cybercash-base64-encode.html
cybercash_decr=function.cybercash-decr.html
cybercash_encr=function.cybercash-encr.html
cybermut_creerformulairecm=function.cybermut-creerformulairecm.html
cybermut_creerreponsecm=function.cybermut-creerreponsecm.html
cybermut_testmac=function.cybermut-testmac.html
cyrus_authenticate=function.cyrus-authenticate.html
cyrus_bind=function.cyrus-bind.html
cyrus_close=function.cyrus-close.html
cyrus_connect=function.cyrus-connect.html
cyrus_query=function.cyrus-query.html
cyrus_unbind=function.cyrus-unbind.html
date=function.date.html
dba_close=function.dba-close.html
dba_delete=function.dba-delete.html
dba_exists=function.dba-exists.html
dba_fetch=function.dba-fetch.html
dba_firstkey=function.dba-firstkey.html
dba_handlers=function.dba-handlers.html
dba_insert=function.dba-insert.html
dba_list=function.dba-list.html
dba_nextkey=function.dba-nextkey.html
dba_open=function.dba-open.html
dba_optimize=function.dba-optimize.html
dba_popen=function.dba-popen.html
dba_replace=function.dba-replace.html
dba_sync=function.dba-sync.html
dbase_add_record=function.dbase-add-record.html
dbase_close=function.dbase-close.html
dbase_create=function.dbase-create.html
dbase_delete_record=function.dbase-delete-record.html
dbase_get_record_with_names=function.dbase-get-record-with-names.html
dbase_get_record=function.dbase-get-record.html
dbase_numfields=function.dbase-numfields.html
dbase_numrecords=function.dbase-numrecords.html
dbase_open=function.dbase-open.html
dbase_pack=function.dbase-pack.html
dbase_replace_record=function.dbase-replace-record.html
dblist=function.dblist.html
dbmclose=function.dbmclose.html
dbmdelete=function.dbmdelete.html
dbmexists=function.dbmexists.html
dbmfetch=function.dbmfetch.html
dbmfirstkey=function.dbmfirstkey.html
dbminsert=function.dbminsert.html
dbmnextkey=function.dbmnextkey.html
dbmopen=function.dbmopen.html
dbmreplace=function.dbmreplace.html
dbplus_add=function.dbplus-add.html
dbplus_aql=function.dbplus-aql.html
dbplus_chdir=function.dbplus-chdir.html
dbplus_close=function.dbplus-close.html
dbplus_curr=function.dbplus-curr.html
dbplus_errcode=function.dbplus-errcode.html
dbplus_errno=function.dbplus-errno.html
dbplus_find=function.dbplus-find.html
dbplus_first=function.dbplus-first.html
dbplus_flush=function.dbplus-flush.html
dbplus_freealllocks=function.dbplus-freealllocks.html
dbplus_freelock=function.dbplus-freelock.html
dbplus_freerlocks=function.dbplus-freerlocks.html
dbplus_getlock=function.dbplus-getlock.html
dbplus_getunique=function.dbplus-getunique.html
dbplus_info=function.dbplus-info.html
dbplus_last=function.dbplus-last.html
dbplus_lockrel=function.dbplus-lockrel.html
dbplus_next=function.dbplus-next.html
dbplus_open=function.dbplus-open.html
dbplus_prev=function.dbplus-prev.html
dbplus_rchperm=function.dbplus-rchperm.html
dbplus_rcreate=function.dbplus-rcreate.html
dbplus_rcrtexact=function.dbplus-rcrtexact.html
dbplus_rcrtlike=function.dbplus-rcrtlike.html
dbplus_resolve=function.dbplus-resolve.html
dbplus_restorepos=function.dbplus-restorepos.html
dbplus_rkeys=function.dbplus-rkeys.html
dbplus_ropen=function.dbplus-ropen.html
dbplus_rquery=function.dbplus-rquery.html
dbplus_rrename=function.dbplus-rrename.html
dbplus_rsecindex=function.dbplus-rsecindex.html
dbplus_runlink=function.dbplus-runlink.html
dbplus_rzap=function.dbplus-rzap.html
dbplus_savepos=function.dbplus-savepos.html
dbplus_setindex=function.dbplus-setindex.html
dbplus_setindexbynumber=function.dbplus-setindexbynumber.html
dbplus_sql=function.dbplus-sql.html
dbplus_tcl=function.dbplus-tcl.html
dbplus_tremove=function.dbplus-tremove.html
dbplus_undo=function.dbplus-undo.html
dbplus_undoprepare=function.dbplus-undoprepare.html
dbplus_unlockrel=function.dbplus-unlockrel.html
dbplus_unselect=function.dbplus-unselect.html
dbplus_update=function.dbplus-update.html
dbplus_xlockrel=function.dbplus-xlockrel.html
dbplus_xunlockrel=function.dbplus-xunlockrel.html
dbx_close=function.dbx-close.html
dbx_compare=function.dbx-compare.html
dbx_connect=function.dbx-connect.html
dbx_error=function.dbx-error.html
dbx_escape_string=function.dbx-escape-string.html
dbx_query=function.dbx-query.html
dbx_sort=function.dbx-sort.html
dcgettext=function.dcgettext.html
dcngettext=function.dcngettext.html
deaggregate=function.deaggregate.html
debug_backtrace=function.debug-backtrace.html
debugger_off=function.debugger-off.html
debugger_on=function.debugger-on.html
decbin=function.decbin.html
dechex=function.dechex.html
decoct=function.decoct.html
define_syslog_variables=function.define-syslog-variables.html
define=function.define.html
defined=function.defined.html
deg2rad=function.deg2rad.html
delete=function.delete.html
dgettext=function.dgettext.html
die=function.die.html
dio_close=function.dio-close.html
dio_fcntl=function.dio-fcntl.html
dio_open=function.dio-open.html
dio_read=function.dio-read.html
dio_seek=function.dio-seek.html
dio_stat=function.dio-stat.html
dio_tcsetattr=function.dio-tcsetattr.html
dio_truncate=function.dio-truncate.html
dio_write=function.dio-write.html
dirname=function.dirname.html
disk_free_space=function.disk-free-space.html
disk_total_space=function.disk-total-space.html
diskfreespace=function.diskfreespace.html
dl=function.dl.html
dngettext=function.dngettext.html
dns_check_record=function.dns-check-record.html
dns_get_mx=function.dns-get-mx.html
dns_get_record=function.dns-get-record.html
domattribute_name=function.domattribute-name.html
domattribute_specified=function.domattribute-specified.html
domattribute_value=function.domattribute-value.html
domdocument_add_root=function.domdocument-add-root.html
domdocument_create_attribute=function.domdocument-create-attribute.html
domdocument_create_cdata_section=function.domdocument-create-cdata-section.html
domdocument_create_comment=function.domdocument-create-comment.html
domdocument_create_element=function.domdocument-create-element.html
domdocument_create_element_ns=function.domdocument-create-element_ns.html
domdocument_create_entity_reference=function.domdocument-create-entity-reference.html
domdocument_create_processing_instruction=function.domdocument-create-processing-instruction.html
domdocument_create_text_node=function.domdocument-create-text-node.html
domdocument_doctype=function.domdocument-doctype.html
domdocument_document_element=function.domdocument-document-element.html
domdocument_dump_file=function.domdocument-dump-file.html
domdocument_dump_mem=function.domdocument-dump-mem.html
domdocument_get_element_by_id=function.domdocument-get-element-by-id.html
domdocument_get_elements_by_tagname=function.domdocument-get-elements-by-tagname.html
domdocument_html_dump_mem=function.domdocument-html-dump-mem.html
domdocument_xinclude=function.domdocument-xinclude.html
domdocumenttype_entities=function.domdocumenttype-entities.html
domdocumenttype_internal_subset=function.domdocumenttype-internal-subset.html
domdocumenttype_name=function.domdocumenttype-name.html
domdocumenttype_notations=function.domdocumenttype-notations.html
domdocumenttype_public_id=function.domdocumenttype-public-id.html
domdocumenttype_system_id=function.domdocumenttype-system-id.html
domelement_get_attribute_node=function.domelement-get-attribute-node.html
domelement_get_attribute=function.domelement-get-attribute.html
domelement_get_elements_by_tagname=function.domelement-get-elements-by-tagname.html
domelement_has_attribute=function.domelement-has-attribute.html
domelement_remove_attribute=function.domelement-remove-attribute.html
domelement_set_attribute=function.domelement-set-attribute.html
domelement_tagname=function.domelement-tagname.html
domnode_add_namespace=function.domnode-add-namespace.html
domnode_append_child=function.domnode-append-child.html
domnode_append_sibling=function.domnode-append-sibling.html
domnode_attributes=function.domnode-attributes.html
domnode_child_nodes=function.domnode-child-nodes.html
domnode_clone_node=function.domnode-clone-node.html
domnode_dump_node=function.domnode-dump-node.html
domnode_first_child=function.domnode-first-child.html
domnode_get_content=function.domnode-get-content.html
domnode_has_attributes=function.domnode-has-attributes.html
domnode_has_child_nodes=function.domnode-has-child-nodes.html
domnode_insert_before=function.domnode-insert-before.html
domnode_is_blank_node=function.domnode-is-blank-node.html
domnode_last_child=function.domnode-last-child.html
domnode_next_sibling=function.domnode-next-sibling.html
domnode_node_name=function.domnode-node-name.html
domnode_node_type=function.domnode-node-type.html
domnode_node_value=function.domnode-node-value.html
domnode_owner_document=function.domnode-owner-document.html
domnode_parent_node=function.domnode-parent-node.html
domnode_prefix=function.domnode-prefix.html
domnode_previous_sibling=function.domnode-previous-sibling.html
domnode_remove_child=function.domnode-remove-child.html
domnode_replace_child=function.domnode-replace-child.html
domnode_replace_node=function.domnode-replace-node.html
domnode_set_content=function.domnode-set-content.html
domnode_set_name=function.domnode-set-name.html
domnode_set_namespace=function.domnode-set-namespace.html
domnode_unlink_node=function.domnode-unlink-node.html
domprocessinginstruction_data=function.domprocessinginstruction-data.html
domprocessinginstruction_target=function.domprocessinginstruction-target.html
domxml_new_doc=function.domxml-new-doc.html
domxml_open_file=function.domxml-open-file.html
domxml_open_mem=function.domxml-open-mem.html
domxml_version=function.domxml-version.html
domxml_xmltree=function.domxml-xmltree.html
domxml_xslt_stylesheet_doc=function.domxml-xslt-stylesheet-doc.html
domxml_xslt_stylesheet_file=function.domxml-xslt-stylesheet-file.html
domxml_xslt_stylesheet=function.domxml-xslt-stylesheet.html
domxsltstylesheet_process=function.domxsltstylesheet-process.html
domxsltstylesheet_result_dump_file=function.domxsltstylesheet-result-dump-file.html
domxsltstylesheet_result_dump_mem=function.domxsltstylesheet-result-dump-mem.html
dotnet_load=function.dotnet-load.html
doubleval=function.doubleval.html
each=function.each.html
easter_date=function.easter-date.html
easter_days=function.easter-days.html
ebcdic2ascii=function.ebcdic2ascii.html
echo=function.echo.html
empty=function.empty.html
end=function.end.html
ereg_replace=function.ereg-replace.html
ereg=function.ereg.html
eregi_replace=function.eregi-replace.html
eregi=function.eregi.html
error_log=function.error-log.html
error_reporting=function.error-reporting.html
escapeshellarg=function.escapeshellarg.html
escapeshellcmd=function.escapeshellcmd.html
eval=function.eval.html
exec=function.exec.html
exif_imagetype=function.exif-imagetype.html
exif_read_data=function.exif-read-data.html
exif_thumbnail=function.exif-thumbnail.html
exit=function.exit.html
exp=function.exp.html
explode=function.explode.html
expm1=function.expm1.html
extension_loaded=function.extension-loaded.html
extract=function.extract.html
ezmlm_hash=function.ezmlm-hash.html
fbsql_affected_rows=function.fbsql-affected-rows.html
fbsql_autocommit=function.fbsql-autocommit.html
fbsql_change_user=function.fbsql-change-user.html
fbsql_close=function.fbsql-close.html
fbsql_commit=function.fbsql-commit.html
fbsql_connect=function.fbsql-connect.html
fbsql_create_blob=function.fbsql-create-blob.html
fbsql_create_clob=function.fbsql-create-clob.html
fbsql_create_db=function.fbsql-create-db.html
fbsql_data_seek=function.fbsql-data-seek.html
fbsql_database_password=function.fbsql-database-password.html
fbsql_database=function.fbsql-database.html
fbsql_db_query=function.fbsql-db-query.html
fbsql_db_status=function.fbsql-db-status.html
fbsql_drop_db=function.fbsql-drop-db.html
fbsql_errno=function.fbsql-errno.html
fbsql_error=function.fbsql-error.html
fbsql_fetch_array=function.fbsql-fetch-array.html
fbsql_fetch_assoc=function.fbsql-fetch-assoc.html
fbsql_fetch_field=function.fbsql-fetch-field.html
fbsql_fetch_lengths=function.fbsql-fetch-lengths.html
fbsql_fetch_object=function.fbsql-fetch-object.html
fbsql_fetch_row=function.fbsql-fetch-row.html
fbsql_field_flags=function.fbsql-field-flags.html
fbsql_field_len=function.fbsql-field-len.html
fbsql_field_name=function.fbsql-field-name.html
fbsql_field_seek=function.fbsql-field-seek.html
fbsql_field_table=function.fbsql-field-table.html
fbsql_field_type=function.fbsql-field-type.html
fbsql_free_result=function.fbsql-free-result.html
fbsql_get_autostart_info=function.fbsql-get-autostart-info.html
fbsql_hostname=function.fbsql-hostname.html
fbsql_insert_id=function.fbsql-insert-id.html
fbsql_list_dbs=function.fbsql-list-dbs.html
fbsql_list_fields=function.fbsql-list-fields.html
fbsql_list_tables=function.fbsql-list-tables.html
fbsql_next_result=function.fbsql-next-result.html
fbsql_num_fields=function.fbsql-num-fields.html
fbsql_num_rows=function.fbsql-num-rows.html
fbsql_password=function.fbsql-password.html
fbsql_pconnect=function.fbsql-pconnect.html
fbsql_query=function.fbsql-query.html
fbsql_read_blob=function.fbsql-read-blob.html
fbsql_read_clob=function.fbsql-read-clob.html
fbsql_result=function.fbsql-result.html
fbsql_rollback=function.fbsql-rollback.html
fbsql_select_db=function.fbsql-select-db.html
fbsql_set_lob_mode=function.fbsql-set-lob-mode.html
fbsql_set_transaction=function.fbsql-set-transaction.html
fbsql_start_db=function.fbsql-start-db.html
fbsql_stop_db=function.fbsql-stop-db.html
fbsql_tablename=function.fbsql-tablename.html
fbsql_username=function.fbsql-username.html
fbsql_warnings=function.fbsql-warnings.html
fclose=function.fclose.html
fdf_add_doc_javascript=function.fdf-add-doc-javascript.html
fdf_add_template=function.fdf-add-template.html
fdf_close=function.fdf-close.html
fdf_create=function.fdf-create.html
fdf_errno=function.fdf-errno.html
fdf_error=function.fdf-error.html
fdf_get_ap=function.fdf-get-ap.html
fdf_get_attachment=function.fdf-get-attachment.html
fdf_get_encoding=function.fdf-get-encoding.html
fdf_get_file=function.fdf-get-file.html
fdf_get_status=function.fdf-get-status.html
fdf_get_value=function.fdf-get-value.html
fdf_get_version=function.fdf-get-version.html
fdf_header=function.fdf-header.html
fdf_next_field_name=function.fdf-next-field-name.html
fdf_open_string=function.fdf-open-string.html
fdf_open=function.fdf-open.html
fdf_save_string=function.fdf-save-string.html
fdf_save=function.fdf-save.html
fdf_set_ap=function.fdf-set-ap.html
fdf_set_encoding=function.fdf-set-encoding.html
fdf_set_file=function.fdf-set-file.html
fdf_set_flags=function.fdf-set-flags.html
fdf_set_javascript_action=function.fdf-set-javascript-action.html
fdf_set_opt=function.fdf-set-opt.html
fdf_set_status=function.fdf-set-status.html
fdf_set_submit_form_action=function.fdf-set-submit-form-action.html
fdf_set_target_frame=function.fdf-set-target-frame.html
fdf_set_value=function.fdf-set-value.html
fdf_set_version=function.fdf-set-version.html
feof=function.feof.html
fflush=function.fflush.html
fgetc=function.fgetc.html
fgetcsv=function.fgetcsv.html
fgets=function.fgets.html
fgetss=function.fgetss.html
file_exists=function.file-exists.html
file_get_contents=function.file-get-contents.html
file=function.file.html
fileatime=function.fileatime.html
filectime=function.filectime.html
filegroup=function.filegroup.html
fileinode=function.fileinode.html
filemtime=function.filemtime.html
fileowner=function.fileowner.html
fileperms=function.fileperms.html
filepro_fieldcount=function.filepro-fieldcount.html
filepro_fieldname=function.filepro-fieldname.html
filepro_fieldtype=function.filepro-fieldtype.html
filepro_fieldwidth=function.filepro-fieldwidth.html
filepro_retrieve=function.filepro-retrieve.html
filepro_rowcount=function.filepro-rowcount.html
filepro=function.filepro.html
filesize=function.filesize.html
filetype=function.filetype.html
floatval=function.floatval.html
flock=function.flock.html
floor=function.floor.html
flush=function.flush.html
fmod=function.fmod.html
fnmatch=function.fnmatch.html
fopen=function.fopen.html
fpassthru=function.fpassthru.html
fprintf=function.fprintf.html
fputs=function.fputs.html
fread=function.fread.html
frenchtojd=function.frenchtojd.html
fribidi_log2vis=function.fribidi-log2vis.html
fscanf=function.fscanf.html
fseek=function.fseek.html
fsockopen=function.fsockopen.html
fstat=function.fstat.html
ftell=function.ftell.html
ftok=function.ftok.html
ftp_cdup=function.ftp-cdup.html
ftp_chdir=function.ftp-chdir.html
ftp_close=function.ftp-close.html
ftp_connect=function.ftp-connect.html
ftp_delete=function.ftp-delete.html
ftp_exec=function.ftp-exec.html
ftp_fget=function.ftp-fget.html
ftp_fput=function.ftp-fput.html
ftp_get_option=function.ftp-get-option.html
ftp_get=function.ftp-get.html
ftp_login=function.ftp-login.html
ftp_mdtm=function.ftp-mdtm.html
ftp_mkdir=function.ftp-mkdir.html
ftp_nb_continue=function.ftp-nb-continue.html
ftp_nb_fget=function.ftp-nb-fget.html
ftp_nb_fput=function.ftp-nb-fput.html
ftp_nb_get=function.ftp-nb-get.html
ftp_nb_put=function.ftp-nb-put.html
ftp_nlist=function.ftp-nlist.html
ftp_pasv=function.ftp-pasv.html
ftp_put=function.ftp-put.html
ftp_pwd=function.ftp-pwd.html
ftp_quit=function.ftp-quit.html
ftp_rawlist=function.ftp-rawlist.html
ftp_rename=function.ftp-rename.html
ftp_rmdir=function.ftp-rmdir.html
ftp_set_option=function.ftp-set-option.html
ftp_site=function.ftp-site.html
ftp_size=function.ftp-size.html
ftp_ssl_connect=function.ftp-ssl-connect.html
ftp_systype=function.ftp-systype.html
ftruncate=function.ftruncate.html
func_get_arg=function.func-get-arg.html
func_get_args=function.func-get-args.html
func_num_args=function.func-num-args.html
function_exists=function.function-exists.html
fwrite=function.fwrite.html
gd_info=function.gd-info.html
get_browser=function.get-browser.html
get_cfg_var=function.get-cfg-var.html
get_class_methods=function.get-class-methods.html
get_class_vars=function.get-class-vars.html
get_class=function.get-class.html
get_current_user=function.get-current-user.html
get_declared_classes=function.get-declared-classes.html
get_defined_constants=function.get-defined-constants.html
get_defined_functions=function.get-defined-functions.html
get_defined_vars=function.get-defined-vars.html
get_extension_funcs=function.get-extension-funcs.html
get_html_translation_table=function.get-html-translation-table.html
get_included_files=function.get-included-files.html
get_loaded_extensions=function.get-loaded-extensions.html
get_magic_quotes_gpc=function.get-magic-quotes-gpc.html
get_magic_quotes_runtime=function.get-magic-quotes-runtime.html
get_meta_tags=function.get-meta-tags.html
get_object_vars=function.get-object-vars.html
get_parent_class=function.get-parent-class.html
get_required_files=function.get-required-files.html
get_resource_type=function.get-resource-type.html
getallheaders=function.getallheaders.html
getcwd=function.getcwd.html
getdate=function.getdate.html
getenv=function.getenv.html
gethostbyaddr=function.gethostbyaddr.html
gethostbyname=function.gethostbyname.html
gethostbynamel=function.gethostbynamel.html
getimagesize=function.getimagesize.html
getlastmod=function.getlastmod.html
getmxrr=function.getmxrr.html
getmygid=function.getmygid.html
getmyinode=function.getmyinode.html
getmypid=function.getmypid.html
getmyuid=function.getmyuid.html
getopt=function.getopt.html
getprotobyname=function.getprotobyname.html
getprotobynumber=function.getprotobynumber.html
getrandmax=function.getrandmax.html
getrusage=function.getrusage.html
getservbyname=function.getservbyname.html
getservbyport=function.getservbyport.html
gettext=function.gettext.html
gettimeofday=function.gettimeofday.html
gettype=function.gettype.html
glob=function.glob.html
gmdate=function.gmdate.html
gmmktime=function.gmmktime.html
gmp_abs=function.gmp-abs.html
gmp_add=function.gmp-add.html
gmp_and=function.gmp-and.html
gmp_clrbit=function.gmp-clrbit.html
gmp_cmp=function.gmp-cmp.html
gmp_com=function.gmp-com.html
gmp_div_q=function.gmp-div-q.html
gmp_div_qr=function.gmp-div-qr.html
gmp_div_r=function.gmp-div-r.html
gmp_div=function.gmp-div.html
gmp_divexact=function.gmp-divexact.html
gmp_fact=function.gmp-fact.html
gmp_gcd=function.gmp-gcd.html
gmp_gcdext=function.gmp-gcdext.html
gmp_hamdist=function.gmp-hamdist.html
gmp_init=function.gmp-init.html
gmp_intval=function.gmp-intval.html
gmp_invert=function.gmp-invert.html
gmp_jacobi=function.gmp-jacobi.html
gmp_legendre=function.gmp-legendre.html
gmp_mod=function.gmp-mod.html
gmp_mul=function.gmp-mul.html
gmp_neg=function.gmp-neg.html
gmp_or=function.gmp-or.html
gmp_perfect_square=function.gmp-perfect-square.html
gmp_popcount=function.gmp-popcount.html
gmp_pow=function.gmp-pow.html
gmp_powm=function.gmp-powm.html
gmp_prob_prime=function.gmp-prob-prime.html
gmp_random=function.gmp-random.html
gmp_scan0=function.gmp-scan0.html
gmp_scan1=function.gmp-scan1.html
gmp_setbit=function.gmp-setbit.html
gmp_sign=function.gmp-sign.html
gmp_sqrt=function.gmp-sqrt.html
gmp_sqrtrm=function.gmp-sqrtrm.html
gmp_strval=function.gmp-strval.html
gmp_sub=function.gmp-sub.html
gmp_xor=function.gmp-xor.html
gmstrftime=function.gmstrftime.html
gregoriantojd=function.gregoriantojd.html
gzclose=function.gzclose.html
gzcompress=function.gzcompress.html
gzdeflate=function.gzdeflate.html
gzencode=function.gzencode.html
gzeof=function.gzeof.html
gzfile=function.gzfile.html
gzgetc=function.gzgetc.html
gzgets=function.gzgets.html
gzgetss=function.gzgetss.html
gzinflate=function.gzinflate.html
gzopen=function.gzopen.html
gzpassthru=function.gzpassthru.html
gzputs=function.gzputs.html
gzread=function.gzread.html
gzrewind=function.gzrewind.html
gzseek=function.gzseek.html
gztell=function.gztell.html
gzuncompress=function.gzuncompress.html
gzwrite=function.gzwrite.html
header=function.header.html
headers_sent=function.headers-sent.html
hebrev=function.hebrev.html
hebrevc=function.hebrevc.html
hexdec=function.hexdec.html
highlight_file=function.highlight-file.html
highlight_string=function.highlight-string.html
html_entity_decode=function.html-entity-decode.html
htmlentities=function.htmlentities.html
htmlspecialchars=function.htmlspecialchars.html
hw_array2objrec=function.hw-array2objrec.html
hw_changeobject=function.hw-changeobject.html
hw_children=function.hw-children.html
hw_childrenobj=function.hw-childrenobj.html
hw_close=function.hw-close.html
hw_connect=function.hw-connect.html
hw_connection_info=function.hw-connection-info.html
hw_cp=function.hw-cp.html
hw_deleteobject=function.hw-deleteobject.html
hw_docbyanchor=function.hw-docbyanchor.html
hw_docbyanchorobj=function.hw-docbyanchorobj.html
hw_document_attributes=function.hw-document-attributes.html
hw_document_bodytag=function.hw-document-bodytag.html
hw_document_content=function.hw-document-content.html
hw_document_setcontent=function.hw-document-setcontent.html
hw_document_size=function.hw-document-size.html
hw_dummy=function.hw-dummy.html
hw_edittext=function.hw-edittext.html
hw_error=function.hw-error.html
hw_errormsg=function.hw-errormsg.html
hw_free_document=function.hw-free-document.html
hw_getanchors=function.hw-getanchors.html
hw_getanchorsobj=function.hw-getanchorsobj.html
hw_getandlock=function.hw-getandlock.html
hw_getchildcoll=function.hw-getchildcoll.html
hw_getchildcollobj=function.hw-getchildcollobj.html
hw_getchilddoccoll=function.hw-getchilddoccoll.html
hw_getchilddoccollobj=function.hw-getchilddoccollobj.html
hw_getobject=function.hw-getobject.html
hw_getobjectbyquery=function.hw-getobjectbyquery.html
hw_getobjectbyquerycoll=function.hw-getobjectbyquerycoll.html
hw_getobjectbyquerycollobj=function.hw-getobjectbyquerycollobj.html
hw_getobjectbyqueryobj=function.hw-getobjectbyqueryobj.html
hw_getparents=function.hw-getparents.html
hw_getparentsobj=function.hw-getparentsobj.html
hw_getrellink=function.hw-getrellink.html
hw_getremote=function.hw-getremote.html
hw_getremotechildren=function.hw-getremotechildren.html
hw_getsrcbydestobj=function.hw-getsrcbydestobj.html
hw_gettext=function.hw-gettext.html
hw_getusername=function.hw-getusername.html
hw_identify=function.hw-identify.html
hw_incollections=function.hw-incollections.html
hw_info=function.hw-info.html
hw_inscoll=function.hw-inscoll.html
hw_insdoc=function.hw-insdoc.html
hw_insertanchors=function.hw-insertanchors.html
hw_insertdocument=function.hw-insertdocument.html
hw_insertobject=function.hw-insertobject.html
hw_mapid=function.hw-mapid.html
hw_modifyobject=function.hw-modifyobject.html
hw_mv=function.hw-mv.html
hw_new_document=function.hw-new-document.html
hw_objrec2array=function.hw-objrec2array.html
hw_output_document=function.hw-output-document.html
hw_pconnect=function.hw-pconnect.html
hw_pipedocument=function.hw-pipedocument.html
hw_root=function.hw-root.html
hw_setlinkroot=function.hw-setlinkroot.html
hw_stat=function.hw-stat.html
hw_unlock=function.hw-unlock.html
hw_who=function.hw-who.html
hwapi_attribute_key=function.hwapi-attribute-key.html
hwapi_attribute_langdepvalue=function.hwapi-attribute-langdepvalue.html
hwapi_attribute_value=function.hwapi-attribute-value.html
hwapi_attribute_values=function.hwapi-attribute-values.html
hwapi_attribute=function.hwapi-attribute.html
hwapi_checkin=function.hwapi-checkin.html
hwapi_checkout=function.hwapi-checkout.html
hwapi_children=function.hwapi-children.html
hwapi_content_mimetype=function.hwapi-content-mimetype.html
hwapi_content_read=function.hwapi-content-read.html
hwapi_content=function.hwapi-content.html
hwapi_copy=function.hwapi-copy.html
hwapi_dbstat=function.hwapi-dbstat.html
hwapi_dcstat=function.hwapi-dcstat.html
hwapi_dstanchors=function.hwapi-dstanchors.html
hwapi_dstofsrcanchors=function.hwapi-dstofsrcanchors.html
hwapi_error_count=function.hwapi-error-count.html
hwapi_error_reason=function.hwapi-error-reason.html
hwapi_find=function.hwapi-find.html
hwapi_ftstat=function.hwapi-ftstat.html
hwapi_hgcsp=function.hwapi-hgcsp.html
hwapi_hwstat=function.hwapi-hwstat.html
hwapi_identify=function.hwapi-identify.html
hwapi_info=function.hwapi-info.html
hwapi_insert=function.hwapi-insert.html
hwapi_insertanchor=function.hwapi-insertanchor.html
hwapi_insertcollection=function.hwapi-insertcollection.html
hwapi_insertdocument=function.hwapi-insertdocument.html
hwapi_link=function.hwapi-link.html
hwapi_lock=function.hwapi-lock.html
hwapi_move=function.hwapi-move.html
hwapi_new_content=function.hwapi-new-content.html
hwapi_object_assign=function.hwapi-object-assign.html
hwapi_object_attreditable=function.hwapi-object-attreditable.html
hwapi_object_count=function.hwapi-object-count.html
hwapi_object_insert=function.hwapi-object-insert.html
hwapi_object_new=function.hwapi-object-new.html
hwapi_object_remove=function.hwapi-object-remove.html
hwapi_object_title=function.hwapi-object-title.html
hwapi_object_value=function.hwapi-object-value.html
hwapi_object=function.hwapi-object.html
hwapi_objectbyanchor=function.hwapi-objectbyanchor.html
hwapi_parents=function.hwapi-parents.html
hwapi_reason_description=function.hwapi-reason-description.html
hwapi_reason_type=function.hwapi-reason-type.html
hwapi_remove=function.hwapi-remove.html
hwapi_replace=function.hwapi-replace.html
hwapi_setcommitedversion=function.hwapi-setcommitedversion.html
hwapi_srcanchors=function.hwapi-srcanchors.html
hwapi_srcsofdst=function.hwapi-srcsofdst.html
hwapi_unlock=function.hwapi-unlock.html
hwapi_user=function.hwapi-user.html
hwapi_userlist=function.hwapi-userlist.html
hypot=function.hypot.html
ibase_blob_add=function.ibase-blob-add.html
ibase_blob_cancel=function.ibase-blob-cancel.html
ibase_blob_close=function.ibase-blob-close.html
ibase_blob_create=function.ibase-blob-create.html
ibase_blob_echo=function.ibase-blob-echo.html
ibase_blob_get=function.ibase-blob-get.html
ibase_blob_import=function.ibase-blob-import.html
ibase_blob_info=function.ibase-blob-info.html
ibase_blob_open=function.ibase-blob-open.html
ibase_close=function.ibase-close.html
ibase_commit=function.ibase-commit.html
ibase_connect=function.ibase-connect.html
ibase_errmsg=function.ibase-errmsg.html
ibase_execute=function.ibase-execute.html
ibase_fetch_object=function.ibase-fetch-object.html
ibase_fetch_row=function.ibase-fetch-row.html
ibase_field_info=function.ibase-field-info.html
ibase_free_query=function.ibase-free-query.html
ibase_free_result=function.ibase-free-result.html
ibase_num_fields=function.ibase-num-fields.html
ibase_pconnect=function.ibase-pconnect.html
ibase_prepare=function.ibase-prepare.html
ibase_query=function.ibase-query.html
ibase_rollback=function.ibase-rollback.html
ibase_timefmt=function.ibase-timefmt.html
ibase_trans=function.ibase-trans.html
iconv_get_encoding=function.iconv-get-encoding.html
iconv_set_encoding=function.iconv-set-encoding.html
iconv=function.iconv.html
ifx_affected_rows=function.ifx-affected-rows.html
ifx_blobinfile_mode=function.ifx-blobinfile-mode.html
ifx_byteasvarchar=function.ifx-byteasvarchar.html
ifx_close=function.ifx-close.html
ifx_connect=function.ifx-connect.html
ifx_copy_blob=function.ifx-copy-blob.html
ifx_create_blob=function.ifx-create-blob.html
ifx_create_char=function.ifx-create-char.html
ifx_do=function.ifx-do.html
ifx_error=function.ifx-error.html
ifx_errormsg=function.ifx-errormsg.html
ifx_fetch_row=function.ifx-fetch-row.html
ifx_fieldproperties=function.ifx-fieldproperties.html
ifx_fieldtypes=function.ifx-fieldtypes.html
ifx_free_blob=function.ifx-free-blob.html
ifx_free_char=function.ifx-free-char.html
ifx_free_result=function.ifx-free-result.html
ifx_get_blob=function.ifx-get-blob.html
ifx_get_char=function.ifx-get-char.html
ifx_getsqlca=function.ifx-getsqlca.html
ifx_htmltbl_result=function.ifx-htmltbl-result.html
ifx_nullformat=function.ifx-nullformat.html
ifx_num_fields=function.ifx-num-fields.html
ifx_num_rows=function.ifx-num-rows.html
ifx_pconnect=function.ifx-pconnect.html
ifx_prepare=function.ifx-prepare.html
ifx_query=function.ifx-query.html
ifx_textasvarchar=function.ifx-textasvarchar.html
ifx_update_blob=function.ifx-update-blob.html
ifx_update_char=function.ifx-update-char.html
ifxus_close_slob=function.ifxus-close-slob.html
ifxus_create_slob=function.ifxus-create-slob.html
ifxus_free_slob=function.ifxus-free-slob.html
ifxus_open_slob=function.ifxus-open-slob.html
ifxus_read_slob=function.ifxus-read-slob.html
ifxus_seek_slob=function.ifxus-seek-slob.html
ifxus_tell_slob=function.ifxus-tell-slob.html
ifxus_write_slob=function.ifxus-write-slob.html
ignore_user_abort=function.ignore-user-abort.html
image_type_to_mime_type=function.image-type-to-mime-type.html
image2wbmp=function.image2wbmp.html
imagealphablending=function.imagealphablending.html
imagearc=function.imagearc.html
imagechar=function.imagechar.html
imagecharup=function.imagecharup.html
imagecolorallocate=function.imagecolorallocate.html
imagecolorallocatealpha=function.imagecolorallocatealpha.html
imagecolorat=function.imagecolorat.html
imagecolorclosest=function.imagecolorclosest.html
imagecolorclosestalpha=function.imagecolorclosestalpha.html
imagecolorclosesthwb=function.imagecolorclosesthwb.html
imagecolordeallocate=function.imagecolordeallocate.html
imagecolorexact=function.imagecolorexact.html
imagecolorexactalpha=function.imagecolorexactalpha.html
imagecolorresolve=function.imagecolorresolve.html
imagecolorresolvealpha=function.imagecolorresolvealpha.html
imagecolorset=function.imagecolorset.html
imagecolorsforindex=function.imagecolorsforindex.html
imagecolorstotal=function.imagecolorstotal.html
imagecolortransparent=function.imagecolortransparent.html
imagecopy=function.imagecopy.html
imagecopymerge=function.imagecopymerge.html
imagecopymergegray=function.imagecopymergegray.html
imagecopyresampled=function.imagecopyresampled.html
imagecopyresized=function.imagecopyresized.html
imagecreate=function.imagecreate.html
imagecreatefromgd=function.imagecreatefromgd.html
imagecreatefromgd2=function.imagecreatefromgd2.html
imagecreatefromgd2part=function.imagecreatefromgd2part.html
imagecreatefromgif=function.imagecreatefromgif.html
imagecreatefromjpeg=function.imagecreatefromjpeg.html
imagecreatefrompng=function.imagecreatefrompng.html
imagecreatefromstring=function.imagecreatefromstring.html
imagecreatefromwbmp=function.imagecreatefromwbmp.html
imagecreatefromxbm=function.imagecreatefromxbm.html
imagecreatefromxpm=function.imagecreatefromxpm.html
imagecreatetruecolor=function.imagecreatetruecolor.html
imagedashedline=function.imagedashedline.html
imagedestroy=function.imagedestroy.html
imageellipse=function.imageellipse.html
imagefill=function.imagefill.html
imagefilledarc=function.imagefilledarc.html
imagefilledellipse=function.imagefilledellipse.html
imagefilledpolygon=function.imagefilledpolygon.html
imagefilledrectangle=function.imagefilledrectangle.html
imagefilltoborder=function.imagefilltoborder.html
imagefontheight=function.imagefontheight.html
imagefontwidth=function.imagefontwidth.html
imageftbbox=function.imageftbbox.html
imagefttext=function.imagefttext.html
imagegammacorrect=function.imagegammacorrect.html
imagegd=function.imagegd.html
imagegd2=function.imagegd2.html
imagegif=function.imagegif.html
imageinterlace=function.imageinterlace.html
imagejpeg=function.imagejpeg.html
imageline=function.imageline.html
imageloadfont=function.imageloadfont.html
imagepalettecopy=function.imagepalettecopy.html
imagepng=function.imagepng.html
imagepolygon=function.imagepolygon.html
imagepsbbox=function.imagepsbbox.html
imagepscopyfont=function.imagepscopyfont.html
imagepsencodefont=function.imagepsencodefont.html
imagepsextendfont=function.imagepsextendfont.html
imagepsfreefont=function.imagepsfreefont.html
imagepsloadfont=function.imagepsloadfont.html
imagepsslantfont=function.imagepsslantfont.html
imagepstext=function.imagepstext.html
imagerectangle=function.imagerectangle.html
imagerotate=function.imagerotate.html
imagesetbrush=function.imagesetbrush.html
imagesetpixel=function.imagesetpixel.html
imagesetstyle=function.imagesetstyle.html
imagesetthickness=function.imagesetthickness.html
imagesettile=function.imagesettile.html
imagestring=function.imagestring.html
imagestringup=function.imagestringup.html
imagesx=function.imagesx.html
imagesy=function.imagesy.html
imagetruecolortopalette=function.imagetruecolortopalette.html
imagettfbbox=function.imagettfbbox.html
imagettftext=function.imagettftext.html
imagetypes=function.imagetypes.html
imagewbmp=function.imagewbmp.html
imap_8bit=function.imap-8bit.html
imap_alerts=function.imap-alerts.html
imap_append=function.imap-append.html
imap_base64=function.imap-base64.html
imap_binary=function.imap-binary.html
imap_body=function.imap-body.html
imap_bodystruct=function.imap-bodystruct.html
imap_check=function.imap-check.html
imap_clearflag_full=function.imap-clearflag-full.html
imap_close=function.imap-close.html
imap_createmailbox=function.imap-createmailbox.html
imap_delete=function.imap-delete.html
imap_deletemailbox=function.imap-deletemailbox.html
imap_errors=function.imap-errors.html
imap_expunge=function.imap-expunge.html
imap_fetch_overview=function.imap-fetch-overview.html
imap_fetchbody=function.imap-fetchbody.html
imap_fetchheader=function.imap-fetchheader.html
imap_fetchstructure=function.imap-fetchstructure.html
imap_get_quota=function.imap-get-quota.html
imap_get_quotaroot=function.imap-get-quotaroot.html
imap_getmailboxes=function.imap-getmailboxes.html
imap_getsubscribed=function.imap-getsubscribed.html
imap_header=function.imap-header.html
imap_headerinfo=function.imap-headerinfo.html
imap_headers=function.imap-headers.html
imap_last_error=function.imap-last-error.html
imap_list=function.imap-list.html
imap_listmailbox=function.imap-listmailbox.html
imap_listscan=function.imap-listscan.html
imap_listsubscribed=function.imap-listsubscribed.html
imap_lsub=function.imap-lsub.html
imap_mail_compose=function.imap-mail-compose.html
imap_mail_copy=function.imap-mail-copy.html
imap_mail_move=function.imap-mail-move.html
imap_mail=function.imap-mail.html
imap_mailboxmsginfo=function.imap-mailboxmsginfo.html
imap_mime_header_decode=function.imap-mime-header-decode.html
imap_msgno=function.imap-msgno.html
imap_num_msg=function.imap-num-msg.html
imap_num_recent=function.imap-num-recent.html
imap_open=function.imap-open.html
imap_ping=function.imap-ping.html
imap_qprint=function.imap-qprint.html
imap_renamemailbox=function.imap-renamemailbox.html
imap_reopen=function.imap-reopen.html
imap_rfc822_parse_adrlist=function.imap-rfc822-parse-adrlist.html
imap_rfc822_parse_headers=function.imap-rfc822-parse-headers.html
imap_rfc822_write_address=function.imap-rfc822-write-address.html
imap_scanmailbox=function.imap-scanmailbox.html
imap_search=function.imap-search.html
imap_set_quota=function.imap-set-quota.html
imap_setacl=function.imap-setacl.html
imap_setflag_full=function.imap-setflag-full.html
imap_sort=function.imap-sort.html
imap_status=function.imap-status.html
imap_subscribe=function.imap-subscribe.html
imap_thread=function.imap-thread.html
imap_uid=function.imap-uid.html
imap_undelete=function.imap-undelete.html
imap_unsubscribe=function.imap-unsubscribe.html
imap_utf7_decode=function.imap-utf7-decode.html
imap_utf7_encode=function.imap-utf7-encode.html
imap_utf8=function.imap-utf8.html
implode=function.implode.html
import_request_variables=function.import-request-variables.html
in_array=function.in-array.html
include_once=function.include-once.html
include=function.include.html
ingres_autocommit=function.ingres-autocommit.html
ingres_close=function.ingres-close.html
ingres_commit=function.ingres-commit.html
ingres_connect=function.ingres-connect.html
ingres_fetch_array=function.ingres-fetch-array.html
ingres_fetch_object=function.ingres-fetch-object.html
ingres_fetch_row=function.ingres-fetch-row.html
ingres_field_length=function.ingres-field-length.html
ingres_field_name=function.ingres-field-name.html
ingres_field_nullable=function.ingres-field-nullable.html
ingres_field_precision=function.ingres-field-precision.html
ingres_field_scale=function.ingres-field-scale.html
ingres_field_type=function.ingres-field-type.html
ingres_num_fields=function.ingres-num-fields.html
ingres_num_rows=function.ingres-num-rows.html
ingres_pconnect=function.ingres-pconnect.html
ingres_query=function.ingres-query.html
ingres_rollback=function.ingres-rollback.html
ini_alter=function.ini-alter.html
ini_get_all=function.ini-get-all.html
ini_get=function.ini-get.html
ini_restore=function.ini-restore.html
ini_set=function.ini-set.html
intval=function.intval.html
ip2long=function.ip2long.html
iptcembed=function.iptcembed.html
iptcparse=function.iptcparse.html
ircg_channel_mode=function.ircg-channel-mode.html
ircg_disconnect=function.ircg-disconnect.html
ircg_fetch_error_msg=function.ircg-fetch-error-msg.html
ircg_get_username=function.ircg-get-username.html
ircg_html_encode=function.ircg-html-encode.html
ircg_ignore_add=function.ircg-ignore-add.html
ircg_ignore_del=function.ircg-ignore-del.html
ircg_is_conn_alive=function.ircg-is-conn-alive.html
ircg_join=function.ircg-join.html
ircg_kick=function.ircg-kick.html
ircg_lookup_format_messages=function.ircg-lookup-format-messages.html
ircg_msg=function.ircg-msg.html
ircg_nick=function.ircg-nick.html
ircg_nickname_escape=function.ircg-nickname-escape.html
ircg_nickname_unescape=function.ircg-nickname-unescape.html
ircg_notice=function.ircg-notice.html
ircg_part=function.ircg-part.html
ircg_pconnect=function.ircg-pconnect.html
ircg_register_format_messages=function.ircg-register-format-messages.html
ircg_set_current=function.ircg-set-current.html
ircg_set_file=function.ircg-set-file.html
ircg_set_on_die=function.ircg-set-on-die.html
ircg_topic=function.ircg-topic.html
ircg_whois=function.ircg-whois.html
is_a=function.is-a.html
is_array=function.is-array.html
is_bool=function.is-bool.html
is_callable=function.is-callable.html
is_dir=function.is-dir.html
is_double=function.is-double.html
is_executable=function.is-executable.html
is_file=function.is-file.html
is_finite=function.is-finite.html
is_float=function.is-float.html
is_infinite=function.is-infinite.html
is_int=function.is-int.html
is_integer=function.is-integer.html
is_link=function.is-link.html
is_long=function.is-long.html
is_nan=function.is-nan.html
is_null=function.is-null.html
is_numeric=function.is-numeric.html
is_object=function.is-object.html
is_readable=function.is-readable.html
is_real=function.is-real.html
is_resource=function.is-resource.html
is_scalar=function.is-scalar.html
is_string=function.is-string.html
is_subclass_of=function.is-subclass-of.html
is_uploaded_file=function.is-uploaded-file.html
is_writable=function.is-writable.html
is_writeable=function.is-writeable.html
isset=function.isset.html
java_last_exception_clear=function.java-last-exception-clear.html
java_last_exception_get=function.java-last-exception-get.html
jddayofweek=function.jddayofweek.html
jdmonthname=function.jdmonthname.html
jdtofrench=function.jdtofrench.html
jdtogregorian=function.jdtogregorian.html
jdtojewish=function.jdtojewish.html
jdtojulian=function.jdtojulian.html
jdtounix=function.jdtounix.html
jewishtojd=function.jewishtojd.html
join=function.join.html
jpeg2wbmp=function.jpeg2wbmp.html
juliantojd=function.juliantojd.html
key=function.key.html
krsort=function.krsort.html
ksort=function.ksort.html
lcg_value=function.lcg-value.html
ldap_8859_to_t61=function.ldap-8859-to-t61.html
ldap_add=function.ldap-add.html
ldap_bind=function.ldap-bind.html
ldap_close=function.ldap-close.html
ldap_compare=function.ldap-compare.html
ldap_connect=function.ldap-connect.html
ldap_count_entries=function.ldap-count-entries.html
ldap_delete=function.ldap-delete.html
ldap_dn2ufn=function.ldap-dn2ufn.html
ldap_err2str=function.ldap-err2str.html
ldap_errno=function.ldap-errno.html
ldap_error=function.ldap-error.html
ldap_explode_dn=function.ldap-explode-dn.html
ldap_first_attribute=function.ldap-first-attribute.html
ldap_first_entry=function.ldap-first-entry.html
ldap_first_reference=function.ldap-first-reference.html
ldap_free_result=function.ldap-free-result.html
ldap_get_attributes=function.ldap-get-attributes.html
ldap_get_dn=function.ldap-get-dn.html
ldap_get_entries=function.ldap-get-entries.html
ldap_get_option=function.ldap-get-option.html
ldap_get_values_len=function.ldap-get-values-len.html
ldap_get_values=function.ldap-get-values.html
ldap_list=function.ldap-list.html
ldap_mod_add=function.ldap-mod-add.html
ldap_mod_del=function.ldap-mod-del.html
ldap_mod_replace=function.ldap-mod-replace.html
ldap_modify=function.ldap-modify.html
ldap_next_attribute=function.ldap-next-attribute.html
ldap_next_entry=function.ldap-next-entry.html
ldap_next_reference=function.ldap-next-reference.html
ldap_parse_reference=function.ldap-parse-reference.html
ldap_parse_result=function.ldap-parse-result.html
ldap_read=function.ldap-read.html
ldap_rename=function.ldap-rename.html
ldap_search=function.ldap-search.html
ldap_set_option=function.ldap-set-option.html
ldap_set_rebind_proc=function.ldap-set-rebind-proc.html
ldap_sort=function.ldap-sort.html
ldap_start_tls=function.ldap-start-tls.html
ldap_t61_to_8859=function.ldap-t61-to-8859.html
ldap_unbind=function.ldap-unbind.html
levenshtein=function.levenshtein.html
link=function.link.html
linkinfo=function.linkinfo.html
list=function.list.html
localeconv=function.localeconv.html
localtime=function.localtime.html
log=function.log.html
log10=function.log10.html
log1p=function.log1p.html
long2ip=function.long2ip.html
lstat=function.lstat.html
ltrim=function.ltrim.html
mail=function.mail.html
mailparse_determine_best_xfer_encoding=function.mailparse-determine-best-xfer-encoding.html
mailparse_msg_create=function.mailparse-msg-create.html
mailparse_msg_extract_part_file=function.mailparse-msg-extract-part-file.html
mailparse_msg_extract_part=function.mailparse-msg-extract-part.html
mailparse_msg_free=function.mailparse-msg-free.html
mailparse_msg_get_part_data=function.mailparse-msg-get-part-data.html
mailparse_msg_get_part=function.mailparse-msg-get-part.html
mailparse_msg_get_structure=function.mailparse-msg-get-structure.html
mailparse_msg_parse_file=function.mailparse-msg-parse-file.html
mailparse_msg_parse=function.mailparse-msg-parse.html
mailparse_rfc822_parse_addresses=function.mailparse-rfc822-parse-addresses.html
mailparse_stream_encode=function.mailparse-stream-encode.html
mailparse_uudecode_all=function.mailparse-uudecode-all.html
max=function.max.html
mb_convert_case=function.mb-convert-case.html
mb_convert_encoding=function.mb-convert-encoding.html
mb_convert_kana=function.mb-convert-kana.html
mb_convert_variables=function.mb-convert-variables.html
mb_decode_mimeheader=function.mb-decode-mimeheader.html
mb_decode_numericentity=function.mb-decode-numericentity.html
mb_detect_encoding=function.mb-detect-encoding.html
mb_detect_order=function.mb-detect-order.html
mb_encode_mimeheader=function.mb-encode-mimeheader.html
mb_encode_numericentity=function.mb-encode-numericentity.html
mb_ereg_match=function.mb-ereg-match.html
mb_ereg_replace=function.mb-ereg-replace.html
mb_ereg_search_getpos=function.mb-ereg-search-getpos.html
mb_ereg_search_getregs=function.mb-ereg-search-getregs.html
mb_ereg_search_init=function.mb-ereg-search-init.html
mb_ereg_search_pos=function.mb-ereg-search-pos.html
mb_ereg_search_regs=function.mb-ereg-search-regs.html
mb_ereg_search_setpos=function.mb-ereg-search-setpos.html
mb_ereg_search=function.mb-ereg-search.html
mb_ereg=function.mb-ereg.html
mb_eregi_replace=function.mb-eregi-replace.html
mb_eregi=function.mb-eregi.html
mb_get_info=function.mb-get-info.html
mb_http_input=function.mb-http-input.html
mb_http_output=function.mb-http-output.html
mb_internal_encoding=function.mb-internal-encoding.html
mb_language=function.mb-language.html
mb_output_handler=function.mb-output-handler.html
mb_parse_str=function.mb-parse-str.html
mb_preferred_mime_name=function.mb-preferred-mime-name.html
mb_regex_encoding=function.mb-regex-encoding.html
mb_regex_set_options=function.mb-regex-set-options.html
mb_send_mail=function.mb-send-mail.html
mb_split=function.mb-split.html
mb_strcut=function.mb-strcut.html
mb_strimwidth=function.mb-strimwidth.html
mb_strlen=function.mb-strlen.html
mb_strpos=function.mb-strpos.html
mb_strrpos=function.mb-strrpos.html
mb_strtolower=function.mb-strtolower.html
mb_strtoupper=function.mb-strtoupper.html
mb_strwidth=function.mb-strwidth.html
mb_substitute_character=function.mb-substitute-character.html
mb_substr_count=function.mb-substr-count.html
mb_substr=function.mb-substr.html
mcal_append_event=function.mcal-append-event.html
mcal_close=function.mcal-close.html
mcal_create_calendar=function.mcal-create-calendar.html
mcal_date_compare=function.mcal-date-compare.html
mcal_date_valid=function.mcal-date-valid.html
mcal_day_of_week=function.mcal-day-of-week.html
mcal_day_of_year=function.mcal-day-of-year.html
mcal_days_in_month=function.mcal-days-in-month.html
mcal_delete_calendar=function.mcal-delete-calendar.html
mcal_delete_event=function.mcal-delete-event.html
mcal_event_add_attribute=function.mcal-event-add-attribute.html
mcal_event_init=function.mcal-event-init.html
mcal_event_set_alarm=function.mcal-event-set-alarm.html
mcal_event_set_category=function.mcal-event-set-category.html
mcal_event_set_class=function.mcal-event-set-class.html
mcal_event_set_description=function.mcal-event-set-description.html
mcal_event_set_end=function.mcal-event-set-end.html
mcal_event_set_recur_daily=function.mcal-event-set-recur-daily.html
mcal_event_set_recur_monthly_mday=function.mcal-event-set-recur-monthly-mday.html
mcal_event_set_recur_monthly_wday=function.mcal-event-set-recur-monthly-wday.html
mcal_event_set_recur_none=function.mcal-event-set-recur-none.html
mcal_event_set_recur_weekly=function.mcal-event-set-recur-weekly.html
mcal_event_set_recur_yearly=function.mcal-event-set-recur-yearly.html
mcal_event_set_start=function.mcal-event-set-start.html
mcal_event_set_title=function.mcal-event-set-title.html
mcal_expunge=function.mcal-expunge.html
mcal_fetch_current_stream_event=function.mcal-fetch-current-stream-event.html
mcal_fetch_event=function.mcal-fetch-event.html
mcal_is_leap_year=function.mcal-is-leap-year.html
mcal_list_alarms=function.mcal-list-alarms.html
mcal_list_events=function.mcal-list-events.html
mcal_next_recurrence=function.mcal-next-recurrence.html
mcal_open=function.mcal-open.html
mcal_popen=function.mcal-popen.html
mcal_rename_calendar=function.mcal-rename-calendar.html
mcal_reopen=function.mcal-reopen.html
mcal_snooze=function.mcal-snooze.html
mcal_store_event=function.mcal-store-event.html
mcal_time_valid=function.mcal-time-valid.html
mcal_week_of_year=function.mcal-week-of-year.html
mcrypt_cbc=function.mcrypt-cbc.html
mcrypt_cfb=function.mcrypt-cfb.html
mcrypt_create_iv=function.mcrypt-create-iv.html
mcrypt_decrypt=function.mcrypt-decrypt.html
mcrypt_ecb=function.mcrypt-ecb.html
mcrypt_enc_get_algorithms_name=function.mcrypt-enc-get-algorithms-name.html
mcrypt_enc_get_block_size=function.mcrypt-enc-get-block-size.html
mcrypt_enc_get_iv_size=function.mcrypt-enc-get-iv-size.html
mcrypt_enc_get_key_size=function.mcrypt-enc-get-key-size.html
mcrypt_enc_get_modes_name=function.mcrypt-enc-get-modes-name.html
mcrypt_enc_get_supported_key_sizes=function.mcrypt-enc-get-supported-key-sizes.html
mcrypt_enc_is_block_algorithm_mode=function.mcrypt-enc-is-block-algorithm-mode.html
mcrypt_enc_is_block_algorithm=function.mcrypt-enc-is-block-algorithm.html
mcrypt_enc_is_block_mode=function.mcrypt-enc-is-block-mode.html
mcrypt_enc_self_test=function.mcrypt-enc-self-test.html
mcrypt_encrypt=function.mcrypt-encrypt.html
mcrypt_generic_deinit=function.mcrypt-generic-deinit.html
mcrypt_generic_end=function.mcrypt-generic-end.html
mcrypt_generic_init=function.mcrypt-generic-init.html
mcrypt_generic=function.mcrypt-generic.html
mcrypt_get_block_size=function.mcrypt-get-block-size.html
mcrypt_get_cipher_name=function.mcrypt-get-cipher-name.html
mcrypt_get_iv_size=function.mcrypt-get-iv-size.html
mcrypt_get_key_size=function.mcrypt-get-key-size.html
mcrypt_list_algorithms=function.mcrypt-list-algorithms.html
mcrypt_list_modes=function.mcrypt-list-modes.html
mcrypt_module_close=function.mcrypt-module-close.html
mcrypt_module_get_algo_block_size=function.mcrypt-module-get-algo-block-size.html
mcrypt_module_get_algo_key_size=function.mcrypt-module-get-algo-key-size.html
mcrypt_module_get_supported_key_sizes=function.mcrypt-module-get-supported-key-sizes.html
mcrypt_module_is_block_algorithm_mode=function.mcrypt-module-is-block-algorithm-mode.html
mcrypt_module_is_block_algorithm=function.mcrypt-module-is-block-algorithm.html
mcrypt_module_is_block_mode=function.mcrypt-module-is-block-mode.html
mcrypt_module_open=function.mcrypt-module-open.html
mcrypt_module_self_test=function.mcrypt-module-self-test.html
mcrypt_ofb=function.mcrypt-ofb.html
mcve_adduser=function.mcve-adduser.html
mcve_adduserarg=function.mcve-adduserarg.html
mcve_bt=function.mcve-bt.html
mcve_checkstatus=function.mcve-checkstatus.html
mcve_chkpwd=function.mcve-chkpwd.html
mcve_chngpwd=function.mcve-chngpwd.html
mcve_completeauthorizations=function.mcve-completeauthorizations.html
mcve_connect=function.mcve-connect.html
mcve_connectionerror=function.mcve-connectionerror.html
mcve_deleteresponse=function.mcve-deleteresponse.html
mcve_deletetrans=function.mcve-deletetrans.html
mcve_deleteusersetup=function.mcve-deleteusersetup.html
mcve_deluser=function.mcve-deluser.html
mcve_destroyconn=function.mcve-destroyconn.html
mcve_destroyengine=function.mcve-destroyengine.html
mcve_disableuser=function.mcve-disableuser.html
mcve_edituser=function.mcve-edituser.html
mcve_enableuser=function.mcve-enableuser.html
mcve_force=function.mcve-force.html
mcve_getcell=function.mcve-getcell.html
mcve_getcellbynum=function.mcve-getcellbynum.html
mcve_getcommadelimited=function.mcve-getcommadelimited.html
mcve_getheader=function.mcve-getheader.html
mcve_getuserarg=function.mcve-getuserarg.html
mcve_getuserparam=function.mcve-getuserparam.html
mcve_gft=function.mcve-gft.html
mcve_gl=function.mcve-gl.html
mcve_gut=function.mcve-gut.html
mcve_initconn=function.mcve-initconn.html
mcve_initengine=function.mcve-initengine.html
mcve_initusersetup=function.mcve-initusersetup.html
mcve_iscommadelimited=function.mcve-iscommadelimited.html
mcve_liststats=function.mcve-liststats.html
mcve_listusers=function.mcve-listusers.html
mcve_maxconntimeout=function.mcve-maxconntimeout.html
mcve_monitor=function.mcve-monitor.html
mcve_numcolumns=function.mcve-numcolumns.html
mcve_numrows=function.mcve-numrows.html
mcve_override=function.mcve-override.html
mcve_parsecommadelimited=function.mcve-parsecommadelimited.html
mcve_ping=function.mcve-ping.html
mcve_preauth=function.mcve-preauth.html
mcve_preauthcompletion=function.mcve-preauthcompletion.html
mcve_qc=function.mcve-qc.html
mcve_responseparam=function.mcve-responseparam.html
mcve_return=function.mcve-return.html
mcve_returncode=function.mcve-returncode.html
mcve_returnstatus=function.mcve-returnstatus.html
mcve_sale=function.mcve-sale.html
mcve_setblocking=function.mcve-setblocking.html
mcve_setdropfile=function.mcve-setdropfile.html
mcve_setip=function.mcve-setip.html
mcve_setssl=function.mcve-setssl.html
mcve_settimeout=function.mcve-settimeout.html
mcve_settle=function.mcve-settle.html
mcve_text_avs=function.mcve-text-avs.html
mcve_text_code=function.mcve-text-code.html
mcve_text_cv=function.mcve-text-cv.html
mcve_transactionauth=function.mcve-transactionauth.html
mcve_transactionavs=function.mcve-transactionavs.html
mcve_transactionbatch=function.mcve-transactionbatch.html
mcve_transactioncv=function.mcve-transactioncv.html
mcve_transactionid=function.mcve-transactionid.html
mcve_transactionitem=function.mcve-transactionitem.html
mcve_transactionssent=function.mcve-transactionssent.html
mcve_transactiontext=function.mcve-transactiontext.html
mcve_transinqueue=function.mcve-transinqueue.html
mcve_transnew=function.mcve-transnew.html
mcve_transparam=function.mcve-transparam.html
mcve_transsend=function.mcve-transsend.html
mcve_ub=function.mcve-ub.html
mcve_uwait=function.mcve-uwait.html
mcve_verifyconnection=function.mcve-verifyconnection.html
mcve_verifysslcert=function.mcve-verifysslcert.html
mcve_void=function.mcve-void.html
md5_file=function.md5-file.html
md5=function.md5.html
mdecrypt_generic=function.mdecrypt-generic.html
metaphone=function.metaphone.html
method_exists=function.method-exists.html
mhash_count=function.mhash-count.html
mhash_get_block_size=function.mhash-get-block-size.html
mhash_get_hash_name=function.mhash-get-hash-name.html
mhash_keygen_s2k=function.mhash-keygen-s2k.html
mhash=function.mhash.html
microtime=function.microtime.html
mime_content_type=function.mime-content-type.html
min=function.min.html
ming_setcubicthreshold=function.ming-setcubicthreshold.html
ming_setscale=function.ming-setscale.html
ming_useswfversion=function.ming-useswfversion.html
mkdir=function.mkdir.html
mktime=function.mktime.html
money_format=function.money-format.html
move_uploaded_file=function.move-uploaded-file.html
msession_connect=function.msession-connect.html
msession_count=function.msession-count.html
msession_create=function.msession-create.html
msession_destroy=function.msession-destroy.html
msession_disconnect=function.msession-disconnect.html
msession_find=function.msession-find.html
msession_get_array=function.msession-get-array.html
msession_get=function.msession-get.html
msession_getdata=function.msession-getdata.html
msession_inc=function.msession-inc.html
msession_list=function.msession-list.html
msession_listvar=function.msession-listvar.html
msession_lock=function.msession-lock.html
msession_plugin=function.msession-plugin.html
msession_randstr=function.msession-randstr.html
msession_set_array=function.msession-set-array.html
msession_set=function.msession-set.html
msession_setdata=function.msession-setdata.html
msession_timeout=function.msession-timeout.html
msession_uniq=function.msession-uniq.html
msession_unlock=function.msession-unlock.html
msg_get_queue=function.msg-get-queue.html
msg_receive=function.msg-receive.html
msg_remove_queue=function.msg-remove-queue.html
msg_send=function.msg-send.html
msg_set_queue=function.msg-set-queue.html
msg_stat_queue=function.msg-stat-queue.html
msql_affected_rows=function.msql-affected-rows.html
msql_close=function.msql-close.html
msql_connect=function.msql-connect.html
msql_create_db=function.msql-create-db.html
msql_createdb=function.msql-createdb.html
msql_data_seek=function.msql-data-seek.html
msql_dbname=function.msql-dbname.html
msql_drop_db=function.msql-drop-db.html
msql_dropdb=function.msql-dropdb.html
msql_error=function.msql-error.html
msql_fetch_array=function.msql-fetch-array.html
msql_fetch_field=function.msql-fetch-field.html
msql_fetch_object=function.msql-fetch-object.html
msql_fetch_row=function.msql-fetch-row.html
msql_field_seek=function.msql-field-seek.html
msql_fieldflags=function.msql-fieldflags.html
msql_fieldlen=function.msql-fieldlen.html
msql_fieldname=function.msql-fieldname.html
msql_fieldtable=function.msql-fieldtable.html
msql_fieldtype=function.msql-fieldtype.html
msql_free_result=function.msql-free-result.html
msql_freeresult=function.msql-freeresult.html
msql_list_dbs=function.msql-list-dbs.html
msql_list_fields=function.msql-list-fields.html
msql_list_tables=function.msql-list-tables.html
msql_listdbs=function.msql-listdbs.html
msql_listfields=function.msql-listfields.html
msql_listtables=function.msql-listtables.html
msql_num_fields=function.msql-num-fields.html
msql_num_rows=function.msql-num-rows.html
msql_numfields=function.msql-numfields.html
msql_numrows=function.msql-numrows.html
msql_pconnect=function.msql-pconnect.html
msql_query=function.msql-query.html
msql_regcase=function.msql-regcase.html
msql_result=function.msql-result.html
msql_select_db=function.msql-select-db.html
msql_selectdb=function.msql-selectdb.html
msql_tablename=function.msql-tablename.html
msql=function.msql.html
mssql_bind=function.mssql-bind.html
mssql_close=function.mssql-close.html
mssql_connect=function.mssql-connect.html
mssql_data_seek=function.mssql-data-seek.html
mssql_execute=function.mssql-execute.html
mssql_fetch_array=function.mssql-fetch-array.html
mssql_fetch_assoc=function.mssql-fetch-assoc.html
mssql_fetch_batch=function.mssql-fetch-batch.html
mssql_fetch_field=function.mssql-fetch-field.html
mssql_fetch_object=function.mssql-fetch-object.html
mssql_fetch_row=function.mssql-fetch-row.html
mssql_field_length=function.mssql-field-length.html
mssql_field_name=function.mssql-field-name.html
mssql_field_seek=function.mssql-field-seek.html
mssql_field_type=function.mssql-field-type.html
mssql_free_result=function.mssql-free-result.html
mssql_free_statement=function.mssql-free-statement.html
mssql_get_last_message=function.mssql-get-last-message.html
mssql_guid_string=function.mssql-guid-string.html
mssql_init=function.mssql-init.html
mssql_min_error_severity=function.mssql-min-error-severity.html
mssql_min_message_severity=function.mssql-min-message-severity.html
mssql_next_result=function.mssql-next-result.html
mssql_num_fields=function.mssql-num-fields.html
mssql_num_rows=function.mssql-num-rows.html
mssql_pconnect=function.mssql-pconnect.html
mssql_query=function.mssql-query.html
mssql_result=function.mssql-result.html
mssql_rows_affected=function.mssql-rows-affected.html
mssql_select_db=function.mssql-select-db.html
mt_getrandmax=function.mt-getrandmax.html
mt_rand=function.mt-rand.html
mt_srand=function.mt-srand.html
muscat_close=function.muscat-close.html
muscat_get=function.muscat-get.html
muscat_give=function.muscat-give.html
muscat_setup_net=function.muscat-setup-net.html
muscat_setup=function.muscat-setup.html
mysql_affected_rows=function.mysql-affected-rows.html
mysql_change_user=function.mysql-change-user.html
mysql_character_set_name=function.mysql-character-set-name.html
mysql_close=function.mysql-close.html
mysql_connect=function.mysql-connect.html
mysql_create_db=function.mysql-create-db.html
mysql_data_seek=function.mysql-data-seek.html
mysql_db_name=function.mysql-db-name.html
mysql_db_query=function.mysql-db-query.html
mysql_drop_db=function.mysql-drop-db.html
mysql_errno=function.mysql-errno.html
mysql_error=function.mysql-error.html
mysql_escape_string=function.mysql-escape-string.html
mysql_fetch_array=function.mysql-fetch-array.html
mysql_fetch_assoc=function.mysql-fetch-assoc.html
mysql_fetch_field=function.mysql-fetch-field.html
mysql_fetch_lengths=function.mysql-fetch-lengths.html
mysql_fetch_object=function.mysql-fetch-object.html
mysql_fetch_row=function.mysql-fetch-row.html
mysql_field_flags=function.mysql-field-flags.html
mysql_field_len=function.mysql-field-len.html
mysql_field_name=function.mysql-field-name.html
mysql_field_seek=function.mysql-field-seek.html
mysql_field_table=function.mysql-field-table.html
mysql_field_type=function.mysql-field-type.html
mysql_free_result=function.mysql-free-result.html
mysql_get_client_info=function.mysql-get-client-info.html
mysql_get_host_info=function.mysql-get-host-info.html
mysql_get_proto_info=function.mysql-get-proto-info.html
mysql_get_server_info=function.mysql-get-server-info.html
mysql_info=function.mysql-info.html
mysql_insert_id=function.mysql-insert-id.html
mysql_list_dbs=function.mysql-list-dbs.html
mysql_list_fields=function.mysql-list-fields.html
mysql_list_processes=function.mysql-list-processes.html
mysql_list_tables=function.mysql-list-tables.html
mysql_num_fields=function.mysql-num-fields.html
mysql_num_rows=function.mysql-num-rows.html
mysql_pconnect=function.mysql-pconnect.html
mysql_ping=function.mysql-ping.html
mysql_query=function.mysql-query.html
mysql_real_escape_string=function.mysql-real-escape-string.html
mysql_result=function.mysql-result.html
mysql_select_db=function.mysql-select-db.html
mysql_stat=function.mysql-stat.html
mysql_tablename=function.mysql-tablename.html
mysql_thread_id=function.mysql-thread-id.html
mysql_unbuffered_query=function.mysql-unbuffered-query.html
natcasesort=function.natcasesort.html
natsort=function.natsort.html
ncurses_addch=function.ncurses-addch.html
ncurses_addchnstr=function.ncurses-addchnstr.html
ncurses_addchstr=function.ncurses-addchstr.html
ncurses_addnstr=function.ncurses-addnstr.html
ncurses_addstr=function.ncurses-addstr.html
ncurses_assume_default_colors=function.ncurses-assume-default-colors.html
ncurses_attroff=function.ncurses-attroff.html
ncurses_attron=function.ncurses-attron.html
ncurses_attrset=function.ncurses-attrset.html
ncurses_baudrate=function.ncurses-baudrate.html
ncurses_beep=function.ncurses-beep.html
ncurses_bkgd=function.ncurses-bkgd.html
ncurses_bkgdset=function.ncurses-bkgdset.html
ncurses_border=function.ncurses-border.html
ncurses_can_change_color=function.ncurses-can-change-color.html
ncurses_cbreak=function.ncurses-cbreak.html
ncurses_clear=function.ncurses-clear.html
ncurses_clrtobot=function.ncurses-clrtobot.html
ncurses_clrtoeol=function.ncurses-clrtoeol.html
ncurses_color_set=function.ncurses-color-set.html
ncurses_curs_set=function.ncurses-curs-set.html
ncurses_def_prog_mode=function.ncurses-def-prog-mode.html
ncurses_def_shell_mode=function.ncurses-def-shell-mode.html
ncurses_define_key=function.ncurses-define-key.html
ncurses_delay_output=function.ncurses-delay-output.html
ncurses_delch=function.ncurses-delch.html
ncurses_deleteln=function.ncurses-deleteln.html
ncurses_delwin=function.ncurses-delwin.html
ncurses_doupdate=function.ncurses-doupdate.html
ncurses_echo=function.ncurses-echo.html
ncurses_echochar=function.ncurses-echochar.html
ncurses_end=function.ncurses-end.html
ncurses_erase=function.ncurses-erase.html
ncurses_erasechar=function.ncurses-erasechar.html
ncurses_filter=function.ncurses-filter.html
ncurses_flash=function.ncurses-flash.html
ncurses_flushinp=function.ncurses-flushinp.html
ncurses_getch=function.ncurses-getch.html
ncurses_getmouse=function.ncurses-getmouse.html
ncurses_halfdelay=function.ncurses-halfdelay.html
ncurses_has_colors=function.ncurses-has-colors.html
ncurses_has_ic=function.ncurses-has-ic.html
ncurses_has_il=function.ncurses-has-il.html
ncurses_has_key=function.ncurses-has-key.html
ncurses_hline=function.ncurses-hline.html
ncurses_inch=function.ncurses-inch.html
ncurses_init_color=function.ncurses-init-color.html
ncurses_init_pair=function.ncurses-init-pair.html
ncurses_init=function.ncurses-init.html
ncurses_insch=function.ncurses-insch.html
ncurses_insdelln=function.ncurses-insdelln.html
ncurses_insertln=function.ncurses-insertln.html
ncurses_insstr=function.ncurses-insstr.html
ncurses_instr=function.ncurses-instr.html
ncurses_isendwin=function.ncurses-isendwin.html
ncurses_keyok=function.ncurses-keyok.html
ncurses_killchar=function.ncurses-killchar.html
ncurses_longname=function.ncurses-longname.html
ncurses_mouseinterval=function.ncurses-mouseinterval.html
ncurses_mousemask=function.ncurses-mousemask.html
ncurses_move=function.ncurses-move.html
ncurses_mvaddch=function.ncurses-mvaddch.html
ncurses_mvaddchnstr=function.ncurses-mvaddchnstr.html
ncurses_mvaddchstr=function.ncurses-mvaddchstr.html
ncurses_mvaddnstr=function.ncurses-mvaddnstr.html
ncurses_mvaddstr=function.ncurses-mvaddstr.html
ncurses_mvcur=function.ncurses-mvcur.html
ncurses_mvdelch=function.ncurses-mvdelch.html
ncurses_mvgetch=function.ncurses-mvgetch.html
ncurses_mvhline=function.ncurses-mvhline.html
ncurses_mvinch=function.ncurses-mvinch.html
ncurses_mvvline=function.ncurses-mvvline.html
ncurses_mvwaddstr=function.ncurses-mvwaddstr.html
ncurses_napms=function.ncurses-napms.html
ncurses_newwin=function.ncurses-newwin.html
ncurses_nl=function.ncurses-nl.html
ncurses_nocbreak=function.ncurses-nocbreak.html
ncurses_noecho=function.ncurses-noecho.html
ncurses_nonl=function.ncurses-nonl.html
ncurses_noqiflush=function.ncurses-noqiflush.html
ncurses_noraw=function.ncurses-noraw.html
ncurses_putp=function.ncurses-putp.html
ncurses_qiflush=function.ncurses-qiflush.html
ncurses_raw=function.ncurses-raw.html
ncurses_refresh=function.ncurses-refresh.html
ncurses_resetty=function.ncurses-resetty.html
ncurses_savetty=function.ncurses-savetty.html
ncurses_scr_dump=function.ncurses-scr-dump.html
ncurses_scr_init=function.ncurses-scr-init.html
ncurses_scr_restore=function.ncurses-scr-restore.html
ncurses_scr_set=function.ncurses-scr-set.html
ncurses_scrl=function.ncurses-scrl.html
ncurses_slk_attr=function.ncurses-slk-attr.html
ncurses_slk_attroff=function.ncurses-slk-attroff.html
ncurses_slk_attron=function.ncurses-slk-attron.html
ncurses_slk_attrset=function.ncurses-slk-attrset.html
ncurses_slk_clear=function.ncurses-slk-clear.html
ncurses_slk_color=function.ncurses-slk-color.html
ncurses_slk_init=function.ncurses-slk-init.html
ncurses_slk_noutrefresh=function.ncurses-slk-noutrefresh.html
ncurses_slk_refresh=function.ncurses-slk-refresh.html
ncurses_slk_restore=function.ncurses-slk-restore.html
ncurses_slk_touch=function.ncurses-slk-touch.html
ncurses_standend=function.ncurses-standend.html
ncurses_standout=function.ncurses-standout.html
ncurses_start_color=function.ncurses-start-color.html
ncurses_termattrs=function.ncurses-termattrs.html
ncurses_termname=function.ncurses-termname.html
ncurses_timeout=function.ncurses-timeout.html
ncurses_typeahead=function.ncurses-typeahead.html
ncurses_ungetch=function.ncurses-ungetch.html
ncurses_ungetmouse=function.ncurses-ungetmouse.html
ncurses_use_default_colors=function.ncurses-use-default-colors.html
ncurses_use_env=function.ncurses-use-env.html
ncurses_use_extended_names=function.ncurses-use-extended-names.html
ncurses_vidattr=function.ncurses-vidattr.html
ncurses_vline=function.ncurses-vline.html
ncurses_wrefresh=function.ncurses-wrefresh.html
next=function.next.html
ngettext=function.ngettext.html
nl_langinfo=function.nl-langinfo.html
nl2br=function.nl2br.html
notes_body=function.notes-body.html
notes_copy_db=function.notes-copy-db.html
notes_create_db=function.notes-create-db.html
notes_create_note=function.notes-create-note.html
notes_drop_db=function.notes-drop-db.html
notes_find_note=function.notes-find-note.html
notes_header_info=function.notes-header-info.html
notes_list_msgs=function.notes-list-msgs.html
notes_mark_read=function.notes-mark-read.html
notes_mark_unread=function.notes-mark-unread.html
notes_nav_create=function.notes-nav-create.html
notes_search=function.notes-search.html
notes_unread=function.notes-unread.html
notes_version=function.notes-version.html
number_format=function.number-format.html
ob_clean=function.ob-clean.html
ob_end_clean=function.ob-end-clean.html
ob_end_flush=function.ob-end-flush.html
ob_flush=function.ob-flush.html
ob_get_contents=function.ob-get-contents.html
ob_get_length=function.ob-get-length.html
ob_get_level=function.ob-get-level.html
ob_get_status=function.ob-get-status.html
ob_gzhandler=function.ob-gzhandler.html
ob_iconv_handler=function.ob-iconv-handler.html
ob_implicit_flush=function.ob-implicit-flush.html
ob_start=function.ob-start.html
ocibindbyname=function.ocibindbyname.html
ocicancel=function.ocicancel.html
ocicollappend=function.ocicollappend.html
ocicollassign=function.ocicollassign.html
ocicollassignelem=function.ocicollassignelem.html
ocicollgetelem=function.ocicollgetelem.html
ocicollmax=function.ocicollmax.html
ocicollsize=function.ocicollsize.html
ocicolltrim=function.ocicolltrim.html
ocicolumnisnull=function.ocicolumnisnull.html
ocicolumnname=function.ocicolumnname.html
ocicolumnprecision=function.ocicolumnprecision.html
ocicolumnscale=function.ocicolumnscale.html
ocicolumnsize=function.ocicolumnsize.html
ocicolumntype=function.ocicolumntype.html
ocicolumntyperaw=function.ocicolumntyperaw.html
ocicommit=function.ocicommit.html
ocidefinebyname=function.ocidefinebyname.html
ocierror=function.ocierror.html
ociexecute=function.ociexecute.html
ocifetch=function.ocifetch.html
ocifetchinto=function.ocifetchinto.html
ocifetchstatement=function.ocifetchstatement.html
ocifreecollection=function.ocifreecollection.html
ocifreecursor=function.ocifreecursor.html
ocifreedesc=function.ocifreedesc.html
ocifreestatement=function.ocifreestatement.html
ociinternaldebug=function.ociinternaldebug.html
ociloadlob=function.ociloadlob.html
ocilogoff=function.ocilogoff.html
ocilogon=function.ocilogon.html
ocinewcollection=function.ocinewcollection.html
ocinewcursor=function.ocinewcursor.html
ocinewdescriptor=function.ocinewdescriptor.html
ocinlogon=function.ocinlogon.html
ocinumcols=function.ocinumcols.html
ociparse=function.ociparse.html
ociplogon=function.ociplogon.html
ociresult=function.ociresult.html
ocirollback=function.ocirollback.html
ocirowcount=function.ocirowcount.html
ocisavelob=function.ocisavelob.html
ocisavelobfile=function.ocisavelobfile.html
ociserverversion=function.ociserverversion.html
ocisetprefetch=function.ocisetprefetch.html
ocistatementtype=function.ocistatementtype.html
ociwritelobtofile=function.ociwritelobtofile.html
octdec=function.octdec.html
odbc_autocommit=function.odbc-autocommit.html
odbc_binmode=function.odbc-binmode.html
odbc_close_all=function.odbc-close-all.html
odbc_close=function.odbc-close.html
odbc_columnprivileges=function.odbc-columnprivileges.html
odbc_columns=function.odbc-columns.html
odbc_commit=function.odbc-commit.html
odbc_connect=function.odbc-connect.html
odbc_cursor=function.odbc-cursor.html
odbc_data_source=function.odbc-data-source.html
odbc_do=function.odbc-do.html
odbc_error=function.odbc-error.html
odbc_errormsg=function.odbc-errormsg.html
odbc_exec=function.odbc-exec.html
odbc_execute=function.odbc-execute.html
odbc_fetch_array=function.odbc-fetch-array.html
odbc_fetch_into=function.odbc-fetch-into.html
odbc_fetch_object=function.odbc-fetch-object.html
odbc_fetch_row=function.odbc-fetch-row.html
odbc_field_len=function.odbc-field-len.html
odbc_field_name=function.odbc-field-name.html
odbc_field_num=function.odbc-field-num.html
odbc_field_precision=function.odbc-field-precision.html
odbc_field_scale=function.odbc-field-scale.html
odbc_field_type=function.odbc-field-type.html
odbc_foreignkeys=function.odbc-foreignkeys.html
odbc_free_result=function.odbc-free-result.html
odbc_gettypeinfo=function.odbc-gettypeinfo.html
odbc_longreadlen=function.odbc-longreadlen.html
odbc_next_result=function.odbc-next-result.html
odbc_num_fields=function.odbc-num-fields.html
odbc_num_rows=function.odbc-num-rows.html
odbc_pconnect=function.odbc-pconnect.html
odbc_prepare=function.odbc-prepare.html
odbc_primarykeys=function.odbc-primarykeys.html
odbc_procedurecolumns=function.odbc-procedurecolumns.html
odbc_procedures=function.odbc-procedures.html
odbc_result_all=function.odbc-result-all.html
odbc_result=function.odbc-result.html
odbc_rollback=function.odbc-rollback.html
odbc_setoption=function.odbc-setoption.html
odbc_specialcolumns=function.odbc-specialcolumns.html
odbc_statistics=function.odbc-statistics.html
odbc_tableprivileges=function.odbc-tableprivileges.html
odbc_tables=function.odbc-tables.html
opendir=function.opendir.html
openlog=function.openlog.html
openssl_csr_export_to_file=function.openssl-csr-export-to-file.html
openssl_csr_export=function.openssl-csr-export.html
openssl_csr_new=function.openssl-csr-new.html
openssl_csr_sign=function.openssl-csr-sign.html
openssl_error_string=function.openssl-error-string.html
openssl_free_key=function.openssl-free-key.html
openssl_get_privatekey=function.openssl-get-privatekey.html
openssl_get_publickey=function.openssl-get-publickey.html
openssl_open=function.openssl-open.html
openssl_pkcs7_decrypt=function.openssl-pkcs7-decrypt.html
openssl_pkcs7_encrypt=function.openssl-pkcs7-encrypt.html
openssl_pkcs7_sign=function.openssl-pkcs7-sign.html
openssl_pkcs7_verify=function.openssl-pkcs7-verify.html
openssl_pkey_export_to_file=function.openssl-pkey-export-to-file.html
openssl_pkey_export=function.openssl-pkey-export.html
openssl_pkey_get_private=function.openssl-pkey-get-private.html
openssl_pkey_get_public=function.openssl-pkey-get-public.html
openssl_pkey_new=function.openssl-pkey-new.html
openssl_private_decrypt=function.openssl-private-decrypt.html
openssl_private_encrypt=function.openssl-private-encrypt.html
openssl_public_decrypt=function.openssl-public-decrypt.html
openssl_public_encrypt=function.openssl-public-encrypt.html
openssl_seal=function.openssl-seal.html
openssl_sign=function.openssl-sign.html
openssl_verify=function.openssl-verify.html
openssl_x509_check_private_key=function.openssl-x509-check-private-key.html
openssl_x509_checkpurpose=function.openssl-x509-checkpurpose.html
openssl_x509_export_to_file=function.openssl-x509-export-to-file.html
openssl_x509_export=function.openssl-x509-export.html
openssl_x509_free=function.openssl-x509-free.html
openssl_x509_parse=function.openssl-x509-parse.html
openssl_x509_read=function.openssl-x509-read.html
ora_bind=function.ora-bind.html
ora_close=function.ora-close.html
ora_columnname=function.ora-columnname.html
ora_columnsize=function.ora-columnsize.html
ora_columntype=function.ora-columntype.html
ora_commit=function.ora-commit.html
ora_commitoff=function.ora-commitoff.html
ora_commiton=function.ora-commiton.html
ora_do=function.ora-do.html
ora_error=function.ora-error.html
ora_errorcode=function.ora-errorcode.html
ora_exec=function.ora-exec.html
ora_fetch_into=function.ora-fetch-into.html
ora_fetch=function.ora-fetch.html
ora_getcolumn=function.ora-getcolumn.html
ora_logoff=function.ora-logoff.html
ora_logon=function.ora-logon.html
ora_numcols=function.ora-numcols.html
ora_numrows=function.ora-numrows.html
ora_open=function.ora-open.html
ora_parse=function.ora-parse.html
ora_plogon=function.ora-plogon.html
ora_rollback=function.ora-rollback.html
ord=function.ord.html
overload=function.overload.html
ovrimos_close=function.ovrimos-close.html
ovrimos_commit=function.ovrimos-commit.html
ovrimos_connect=function.ovrimos-connect.html
ovrimos_cursor=function.ovrimos-cursor.html
ovrimos_exec=function.ovrimos-exec.html
ovrimos_execute=function.ovrimos-execute.html
ovrimos_fetch_into=function.ovrimos-fetch-into.html
ovrimos_fetch_row=function.ovrimos-fetch-row.html
ovrimos_field_len=function.ovrimos-field-len.html
ovrimos_field_name=function.ovrimos-field-name.html
ovrimos_field_num=function.ovrimos-field-num.html
ovrimos_field_type=function.ovrimos-field-type.html
ovrimos_free_result=function.ovrimos-free-result.html
ovrimos_longreadlen=function.ovrimos-longreadlen.html
ovrimos_num_fields=function.ovrimos-num-fields.html
ovrimos_num_rows=function.ovrimos-num-rows.html
ovrimos_prepare=function.ovrimos-prepare.html
ovrimos_result_all=function.ovrimos-result-all.html
ovrimos_result=function.ovrimos-result.html
ovrimos_rollback=function.ovrimos-rollback.html
pack=function.pack.html
parse_ini_file=function.parse-ini-file.html
parse_str=function.parse-str.html
parse_url=function.parse-url.html
passthru=function.passthru.html
pathinfo=function.pathinfo.html
pclose=function.pclose.html
pcntl_exec=function.pcntl-exec.html
pcntl_fork=function.pcntl-fork.html
pcntl_signal=function.pcntl-signal.html
pcntl_waitpid=function.pcntl-waitpid.html
pcntl_wexitstatus=function.pcntl-wexitstatus.html
pcntl_wifexited=function.pcntl-wifexited.html
pcntl_wifsignaled=function.pcntl-wifsignaled.html
pcntl_wifstopped=function.pcntl-wifstopped.html
pcntl_wstopsig=function.pcntl-wstopsig.html
pcntl_wtermsig=function.pcntl-wtermsig.html
pdf_add_annotation=function.pdf-add-annotation.html
pdf_add_bookmark=function.pdf-add-bookmark.html
pdf_add_launchlink=function.pdf-add-launchlink.html
pdf_add_locallink=function.pdf-add-locallink.html
pdf_add_note=function.pdf-add-note.html
pdf_add_outline=function.pdf-add-outline.html
pdf_add_pdflink=function.pdf-add-pdflink.html
pdf_add_thumbnail=function.pdf-add-thumbnail.html
pdf_add_weblink=function.pdf-add-weblink.html
pdf_arc=function.pdf-arc.html
pdf_arcn=function.pdf-arcn.html
pdf_attach_file=function.pdf-attach-file.html
pdf_begin_page=function.pdf-begin-page.html
pdf_begin_pattern=function.pdf-begin-pattern.html
pdf_begin_template=function.pdf-begin-template.html
pdf_circle=function.pdf-circle.html
pdf_clip=function.pdf-clip.html
pdf_close_image=function.pdf-close-image.html
pdf_close_pdi_page=function.pdf-close-pdi-page.html
pdf_close_pdi=function.pdf-close-pdi.html
pdf_close=function.pdf-close.html
pdf_closepath_fill_stroke=function.pdf-closepath-fill-stroke.html
pdf_closepath_stroke=function.pdf-closepath-stroke.html
pdf_closepath=function.pdf-closepath.html
pdf_concat=function.pdf-concat.html
pdf_continue_text=function.pdf-continue-text.html
pdf_curveto=function.pdf-curveto.html
pdf_delete=function.pdf-delete.html
pdf_end_page=function.pdf-end-page.html
pdf_end_pattern=function.pdf-end-pattern.html
pdf_end_template=function.pdf-end-template.html
pdf_endpath=function.pdf-endpath.html
pdf_fill_stroke=function.pdf-fill-stroke.html
pdf_fill=function.pdf-fill.html
pdf_findfont=function.pdf-findfont.html
pdf_get_buffer=function.pdf-get-buffer.html
pdf_get_font=function.pdf-get-font.html
pdf_get_fontname=function.pdf-get-fontname.html
pdf_get_fontsize=function.pdf-get-fontsize.html
pdf_get_image_height=function.pdf-get-image-height.html
pdf_get_image_width=function.pdf-get-image-width.html
pdf_get_majorversion=function.pdf-get-majorversion.html
pdf_get_minorversion=function.pdf-get-minorversion.html
pdf_get_parameter=function.pdf-get-parameter.html
pdf_get_pdi_parameter=function.pdf-get-pdi-parameter.html
pdf_get_pdi_value=function.pdf-get-pdi-value.html
pdf_get_value=function.pdf-get-value.html
pdf_initgraphics=function.pdf-initgraphics.html
pdf_lineto=function.pdf-lineto.html
pdf_makespotcolor=function.pdf-makespotcolor.html
pdf_moveto=function.pdf-moveto.html
pdf_new=function.pdf-new.html
pdf_open_ccitt=function.pdf-open-ccitt.html
pdf_open_file=function.pdf-open-file.html
pdf_open_gif=function.pdf-open-gif.html
pdf_open_image_file=function.pdf-open-image-file.html
pdf_open_image=function.pdf-open-image.html
pdf_open_jpeg=function.pdf-open-jpeg.html
pdf_open_memory_image=function.pdf-open-memory-image.html
pdf_open_pdi_page=function.pdf-open-pdi-page.html
pdf_open_pdi=function.pdf-open-pdi.html
pdf_open_png=function.pdf-open-png.html
pdf_open_tiff=function.pdf-open-tiff.html
pdf_open=function.pdf-open.html
pdf_place_image=function.pdf-place-image.html
pdf_place_pdi_page=function.pdf-place-pdi-page.html
pdf_rect=function.pdf-rect.html
pdf_restore=function.pdf-restore.html
pdf_rotate=function.pdf-rotate.html
pdf_save=function.pdf-save.html
pdf_scale=function.pdf-scale.html
pdf_set_border_color=function.pdf-set-border-color.html
pdf_set_border_dash=function.pdf-set-border-dash.html
pdf_set_border_style=function.pdf-set-border-style.html
pdf_set_char_spacing=function.pdf-set-char-spacing.html
pdf_set_duration=function.pdf-set-duration.html
pdf_set_font=function.pdf-set-font.html
pdf_set_horiz_scaling=function.pdf-set-horiz-scaling.html
pdf_set_info_author=function.pdf-set-info-author.html
pdf_set_info_creator=function.pdf-set-info-creator.html
pdf_set_info_keywords=function.pdf-set-info-keywords.html
pdf_set_info_subject=function.pdf-set-info-subject.html
pdf_set_info_title=function.pdf-set-info-title.html
pdf_set_info=function.pdf-set-info.html
pdf_set_leading=function.pdf-set-leading.html
pdf_set_parameter=function.pdf-set-parameter.html
pdf_set_text_matrix=function.pdf-set-text-matrix.html
pdf_set_text_pos=function.pdf-set-text-pos.html
pdf_set_text_rendering=function.pdf-set-text-rendering.html
pdf_set_text_rise=function.pdf-set-text-rise.html
pdf_set_value=function.pdf-set-value.html
pdf_set_word_spacing=function.pdf-set-word-spacing.html
pdf_setcolor=function.pdf-setcolor.html
pdf_setdash=function.pdf-setdash.html
pdf_setflat=function.pdf-setflat.html
pdf_setfont=function.pdf-setfont.html
pdf_setgray_fill=function.pdf-setgray-fill.html
pdf_setgray_stroke=function.pdf-setgray-stroke.html
pdf_setgray=function.pdf-setgray.html
pdf_setlinecap=function.pdf-setlinecap.html
pdf_setlinejoin=function.pdf-setlinejoin.html
pdf_setlinewidth=function.pdf-setlinewidth.html
pdf_setmatrix=function.pdf-setmatrix.html
pdf_setmiterlimit=function.pdf-setmiterlimit.html
pdf_setpolydash=function.pdf-setpolydash.html
pdf_setrgbcolor_fill=function.pdf-setrgbcolor-fill.html
pdf_setrgbcolor_stroke=function.pdf-setrgbcolor-stroke.html
pdf_setrgbcolor=function.pdf-setrgbcolor.html
pdf_show_boxed=function.pdf-show-boxed.html
pdf_show_xy=function.pdf-show-xy.html
pdf_show=function.pdf-show.html
pdf_skew=function.pdf-skew.html
pdf_stringwidth=function.pdf-stringwidth.html
pdf_stroke=function.pdf-stroke.html
pdf_translate=function.pdf-translate.html
pfpro_cleanup=function.pfpro-cleanup.html
pfpro_init=function.pfpro-init.html
pfpro_process_raw=function.pfpro-process-raw.html
pfpro_process=function.pfpro-process.html
pfpro_version=function.pfpro-version.html
pfsockopen=function.pfsockopen.html
pg_affected_rows=function.pg-affected-rows.html
pg_cancel_query=function.pg-cancel-query.html
pg_client_encoding=function.pg-client-encoding.html
pg_close=function.pg-close.html
pg_connect=function.pg-connect.html
pg_connection_busy=function.pg-connection-busy.html
pg_connection_reset=function.pg-connection-reset.html
pg_connection_status=function.pg-connection-status.html
pg_convert=function.pg-convert.html
pg_copy_from=function.pg-copy-from.html
pg_copy_to=function.pg-copy-to.html
pg_dbname=function.pg-dbname.html
pg_delete=function.pg-delete.html
pg_end_copy=function.pg-end-copy.html
pg_escape_bytea=function.pg-escape-bytea.html
pg_escape_string=function.pg-escape-string.html
pg_fetch_all=function.pg-fetch-all.html
pg_fetch_array=function.pg-fetch-array.html
pg_fetch_assoc=function.pg-fetch-assoc.html
pg_fetch_object=function.pg-fetch-object.html
pg_fetch_result=function.pg-fetch-result.html
pg_fetch_row=function.pg-fetch-row.html
pg_field_is_null=function.pg-field-is-null.html
pg_field_name=function.pg-field-name.html
pg_field_num=function.pg-field-num.html
pg_field_prtlen=function.pg-field-prtlen.html
pg_field_size=function.pg-field-size.html
pg_field_type=function.pg-field-type.html
pg_free_result=function.pg-free-result.html
pg_get_notify=function.pg-get-notify.html
pg_get_pid=function.pg-get-pid.html
pg_get_result=function.pg-get-result.html
pg_host=function.pg-host.html
pg_insert=function.pg-insert.html
pg_last_error=function.pg-last-error.html
pg_last_notice=function.pg-last-notice.html
pg_last_oid=function.pg-last-oid.html
pg_lo_close=function.pg-lo-close.html
pg_lo_create=function.pg-lo-create.html
pg_lo_export=function.pg-lo-export.html
pg_lo_import=function.pg-lo-import.html
pg_lo_open=function.pg-lo-open.html
pg_lo_read_all=function.pg-lo-read-all.html
pg_lo_read=function.pg-lo-read.html
pg_lo_seek=function.pg-lo-seek.html
pg_lo_tell=function.pg-lo-tell.html
pg_lo_unlink=function.pg-lo-unlink.html
pg_lo_write=function.pg-lo-write.html
pg_meta_data=function.pg-meta-data.html
pg_num_fields=function.pg-num-fields.html
pg_num_rows=function.pg-num-rows.html
pg_options=function.pg-options.html
pg_pconnect=function.pg-pconnect.html
pg_ping=function.pg-ping.html
pg_port=function.pg-port.html
pg_put_line=function.pg-put-line.html
pg_query=function.pg-query.html
pg_result_error=function.pg-result-error.html
pg_result_seek=function.pg-result-seek.html
pg_result_status=function.pg-result-status.html
pg_select=function.pg-select.html
pg_send_query=function.pg-send-query.html
pg_set_client_encoding=function.pg-set-client-encoding.html
pg_trace=function.pg-trace.html
pg_tty=function.pg-tty.html
pg_unescape_bytea=function.pg-unescape-bytea.html
pg_untrace=function.pg-untrace.html
pg_update=function.pg-update.html
php_ini_scanned_files=function.php-ini-scanned-files.html
php_logo_guid=function.php-logo-guid.html
php_sapi_name=function.php-sapi-name.html
php_uname=function.php-uname.html
phpcredits=function.phpcredits.html
phpinfo=function.phpinfo.html
phpversion=function.phpversion.html
pi=function.pi.html
png2wbmp=function.png2wbmp.html
popen=function.popen.html
pos=function.pos.html
posix_ctermid=function.posix-ctermid.html
posix_getcwd=function.posix-getcwd.html
posix_getegid=function.posix-getegid.html
posix_geteuid=function.posix-geteuid.html
posix_getgid=function.posix-getgid.html
posix_getgrgid=function.posix-getgrgid.html
posix_getgrnam=function.posix-getgrnam.html
posix_getgroups=function.posix-getgroups.html
posix_getlogin=function.posix-getlogin.html
posix_getpgid=function.posix-getpgid.html
posix_getpgrp=function.posix-getpgrp.html
posix_getpid=function.posix-getpid.html
posix_getppid=function.posix-getppid.html
posix_getpwnam=function.posix-getpwnam.html
posix_getpwuid=function.posix-getpwuid.html
posix_getrlimit=function.posix-getrlimit.html
posix_getsid=function.posix-getsid.html
posix_getuid=function.posix-getuid.html
posix_isatty=function.posix-isatty.html
posix_kill=function.posix-kill.html
posix_mkfifo=function.posix-mkfifo.html
posix_setegid=function.posix-setegid.html
posix_seteuid=function.posix-seteuid.html
posix_setgid=function.posix-setgid.html
posix_setpgid=function.posix-setpgid.html
posix_setsid=function.posix-setsid.html
posix_setuid=function.posix-setuid.html
posix_times=function.posix-times.html
posix_ttyname=function.posix-ttyname.html
posix_uname=function.posix-uname.html
pow=function.pow.html
preg_grep=function.preg-grep.html
preg_match_all=function.preg-match-all.html
preg_match=function.preg-match.html
preg_quote=function.preg-quote.html
preg_replace_callback=function.preg-replace-callback.html
preg_replace=function.preg-replace.html
preg_split=function.preg-split.html
prev=function.prev.html
print_r=function.print-r.html
print=function.print.html
printer_abort=function.printer-abort.html
printer_close=function.printer-close.html
printer_create_brush=function.printer-create-brush.html
printer_create_dc=function.printer-create-dc.html
printer_create_font=function.printer-create-font.html
printer_create_pen=function.printer-create-pen.html
printer_delete_brush=function.printer-delete-brush.html
printer_delete_dc=function.printer-delete-dc.html
printer_delete_font=function.printer-delete-font.html
printer_delete_pen=function.printer-delete-pen.html
printer_draw_bmp=function.printer-draw-bmp.html
printer_draw_chord=function.printer-draw-chord.html
printer_draw_elipse=function.printer-draw-elipse.html
printer_draw_line=function.printer-draw-line.html
printer_draw_pie=function.printer-draw-pie.html
printer_draw_rectangle=function.printer-draw-rectangle.html
printer_draw_roundrect=function.printer-draw-roundrect.html
printer_draw_text=function.printer-draw-text.html
printer_end_doc=function.printer-end-doc.html
printer_end_page=function.printer-end-page.html
printer_get_option=function.printer-get-option.html
printer_list=function.printer-list.html
printer_logical_fontheight=function.printer-logical-fontheight.html
printer_open=function.printer-open.html
printer_select_brush=function.printer-select-brush.html
printer_select_font=function.printer-select-font.html
printer_select_pen=function.printer-select-pen.html
printer_set_option=function.printer-set-option.html
printer_start_doc=function.printer-start-doc.html
printer_start_page=function.printer-start-page.html
printer_write=function.printer-write.html
printf=function.printf.html
proc_close=function.proc-close.html
proc_open=function.proc-open.html
pspell_add_to_personal=function.pspell-add-to-personal.html
pspell_add_to_session=function.pspell-add-to-session.html
pspell_check=function.pspell-check.html
pspell_clear_session=function.pspell-clear-session.html
pspell_config_create=function.pspell-config-create.html
pspell_config_ignore=function.pspell-config-ignore.html
pspell_config_mode=function.pspell-config-mode.html
pspell_config_personal=function.pspell-config-personal.html
pspell_config_repl=function.pspell-config-repl.html
pspell_config_runtogether=function.pspell-config-runtogether.html
pspell_config_save_repl=function.pspell-config-save-repl.html
pspell_new_config=function.pspell-new-config.html
pspell_new_personal=function.pspell-new-personal.html
pspell_new=function.pspell-new.html
pspell_save_wordlist=function.pspell-save-wordlist.html
pspell_store_replacement=function.pspell-store-replacement.html
pspell_suggest=function.pspell-suggest.html
putenv=function.putenv.html
qdom_error=function.qdom-error.html
qdom_tree=function.qdom-tree.html
quoted_printable_decode=function.quoted-printable-decode.html
quotemeta=function.quotemeta.html
rad2deg=function.rad2deg.html
rand=function.rand.html
range=function.range.html
rawurldecode=function.rawurldecode.html
rawurlencode=function.rawurlencode.html
read_exif_data=function.read-exif-data.html
readdir=function.readdir.html
readfile=function.readfile.html
readgzfile=function.readgzfile.html
readline_add_history=function.readline-add-history.html
readline_clear_history=function.readline-clear-history.html
readline_completion_function=function.readline-completion-function.html
readline_info=function.readline-info.html
readline_list_history=function.readline-list-history.html
readline_read_history=function.readline-read-history.html
readline_write_history=function.readline-write-history.html
readline=function.readline.html
readlink=function.readlink.html
realpath=function.realpath.html
recode_file=function.recode-file.html
recode_string=function.recode-string.html
recode=function.recode.html
register_shutdown_function=function.register-shutdown-function.html
register_tick_function=function.register-tick-function.html
rename=function.rename.html
require_once=function.require-once.html
require=function.require.html
reset=function.reset.html
restore_error_handler=function.restore-error-handler.html
return=function.return.html
rewind=function.rewind.html
rewinddir=function.rewinddir.html
rmdir=function.rmdir.html
round=function.round.html
rsort=function.rsort.html
rtrim=function.rtrim.html
sem_acquire=function.sem-acquire.html
sem_get=function.sem-get.html
sem_release=function.sem-release.html
sem_remove=function.sem-remove.html
serialize=function.serialize.html
sesam_affected_rows=function.sesam-affected-rows.html
sesam_commit=function.sesam-commit.html
sesam_connect=function.sesam-connect.html
sesam_diagnostic=function.sesam-diagnostic.html
sesam_disconnect=function.sesam-disconnect.html
sesam_errormsg=function.sesam-errormsg.html
sesam_execimm=function.sesam-execimm.html
sesam_fetch_array=function.sesam-fetch-array.html
sesam_fetch_result=function.sesam-fetch-result.html
sesam_fetch_row=function.sesam-fetch-row.html
sesam_field_array=function.sesam-field-array.html
sesam_field_name=function.sesam-field-name.html
sesam_free_result=function.sesam-free-result.html
sesam_num_fields=function.sesam-num-fields.html
sesam_query=function.sesam-query.html
sesam_rollback=function.sesam-rollback.html
sesam_seek_row=function.sesam-seek-row.html
sesam_settransaction=function.sesam-settransaction.html
session_cache_expire=function.session-cache-expire.html
session_cache_limiter=function.session-cache-limiter.html
session_decode=function.session-decode.html
session_destroy=function.session-destroy.html
session_encode=function.session-encode.html
session_get_cookie_params=function.session-get-cookie-params.html
session_id=function.session-id.html
session_is_registered=function.session-is-registered.html
session_module_name=function.session-module-name.html
session_name=function.session-name.html
session_readonly=function.session-readonly.html
session_register=function.session-register.html
session_save_path=function.session-save-path.html
session_set_cookie_params=function.session-set-cookie-params.html
session_set_save_handler=function.session-set-save-handler.html
session_start=function.session-start.html
session_unregister=function.session-unregister.html
session_unset=function.session-unset.html
session_write_close=function.session-write-close.html
set_error_handler=function.set-error-handler.html
set_file_buffer=function.set-file-buffer.html
set_magic_quotes_runtime=function.set-magic-quotes-runtime.html
set_time_limit=function.set-time-limit.html
setcookie=function.setcookie.html
setlocale=function.setlocale.html
settype=function.settype.html
sha1_file=function.sha1-file.html
sha1=function.sha1.html
shell_exec=function.shell-exec.html
shm_attach=function.shm-attach.html
shm_detach=function.shm-detach.html
shm_get_var=function.shm-get-var.html
shm_put_var=function.shm-put-var.html
shm_remove_var=function.shm-remove-var.html
shm_remove=function.shm-remove.html
shmop_close=function.shmop-close.html
shmop_delete=function.shmop-delete.html
shmop_open=function.shmop-open.html
shmop_read=function.shmop-read.html
shmop_size=function.shmop-size.html
shmop_write=function.shmop-write.html
show_source=function.show-source.html
shuffle=function.shuffle.html
similar_text=function.similar-text.html
sin=function.sin.html
sinh=function.sinh.html
sizeof=function.sizeof.html
sleep=function.sleep.html
snmp_get_quick_print=function.snmp-get-quick-print.html
snmp_set_quick_print=function.snmp-set-quick-print.html
snmpget=function.snmpget.html
snmprealwalk=function.snmprealwalk.html
snmpset=function.snmpset.html
snmpwalk=function.snmpwalk.html
snmpwalkoid=function.snmpwalkoid.html
socket_accept=function.socket-accept.html
socket_bind=function.socket-bind.html
socket_clear_error=function.socket-clear-error.html
socket_close=function.socket-close.html
socket_connect=function.socket-connect.html
socket_create_listen=function.socket-create-listen.html
socket_create_pair=function.socket-create-pair.html
socket_create=function.socket-create.html
socket_get_option=function.socket-get-option.html
socket_get_status=function.socket-get-status.html
socket_getpeername=function.socket-getpeername.html
socket_getsockname=function.socket-getsockname.html
socket_iovec_add=function.socket-iovec-add.html
socket_iovec_alloc=function.socket-iovec-alloc.html
socket_iovec_delete=function.socket-iovec-delete.html
socket_iovec_fetch=function.socket-iovec-fetch.html
socket_iovec_free=function.socket-iovec-free.html
socket_iovec_set=function.socket-iovec-set.html
socket_last_error=function.socket-last-error.html
socket_listen=function.socket-listen.html
socket_read=function.socket-read.html
socket_readv=function.socket-readv.html
socket_recv=function.socket-recv.html
socket_recvfrom=function.socket-recvfrom.html
socket_recvmsg=function.socket-recvmsg.html
socket_select=function.socket-select.html
socket_send=function.socket-send.html
socket_sendmsg=function.socket-sendmsg.html
socket_sendto=function.socket-sendto.html
socket_set_blocking=function.socket-set-blocking.html
socket_set_nonblock=function.socket-set-nonblock.html
socket_set_option=function.socket-set-option.html
socket_set_timeout=function.socket-set-timeout.html
socket_shutdown=function.socket-shutdown.html
socket_strerror=function.socket-strerror.html
socket_write=function.socket-write.html
socket_writev=function.socket-writev.html
sort=function.sort.html
soundex=function.soundex.html
split=function.split.html
spliti=function.spliti.html
sprintf=function.sprintf.html
sql_regcase=function.sql-regcase.html
sqrt=function.sqrt.html
srand=function.srand.html
sscanf=function.sscanf.html
stat=function.stat.html
str_pad=function.str-pad.html
str_repeat=function.str-repeat.html
str_replace=function.str-replace.html
str_rot13=function.str-rot13.html
str_shuffle=function.str-shuffle.html
str_word_count=function.str-word-count.html
strcasecmp=function.strcasecmp.html
strchr=function.strchr.html
strcmp=function.strcmp.html
strcoll=function.strcoll.html
strcspn=function.strcspn.html
stream_context_create=function.stream-context-create.html
stream_context_get_options=function.stream-context-get-options.html
stream_context_set_option=function.stream-context-set-option.html
stream_context_set_params=function.stream-context-set-params.html
stream_filter_append=function.stream-filter-append.html
stream_filter_prepend=function.stream-filter-prepend.html
stream_get_filters=function.stream-get-filters.html
stream_get_meta_data=function.stream-get-meta-data.html
stream_get_wrappers=function.stream-get-wrappers.html
stream_register_filter=function.stream-register-filter.html
stream_register_wrapper=function.stream-register-wrapper.html
stream_select=function.stream-select.html
stream_set_blocking=function.stream-set-blocking.html
stream_set_timeout=function.stream-set-timeout.html
stream_set_write_buffer=function.stream-set-write-buffer.html
strftime=function.strftime.html
strip_tags=function.strip-tags.html
stripcslashes=function.stripcslashes.html
stripslashes=function.stripslashes.html
stristr=function.stristr.html
strlen=function.strlen.html
strnatcasecmp=function.strnatcasecmp.html
strnatcmp=function.strnatcmp.html
strncasecmp=function.strncasecmp.html
strncmp=function.strncmp.html
strpos=function.strpos.html
strrchr=function.strrchr.html
strrev=function.strrev.html
strrpos=function.strrpos.html
strspn=function.strspn.html
strstr=function.strstr.html
strtok=function.strtok.html
strtolower=function.strtolower.html
strtotime=function.strtotime.html
strtoupper=function.strtoupper.html
strtr=function.strtr.html
strval=function.strval.html
substr_count=function.substr-count.html
substr_replace=function.substr-replace.html
substr=function.substr.html
swf_actiongeturl=function.swf-actiongeturl.html
swf_actiongotoframe=function.swf-actiongotoframe.html
swf_actiongotolabel=function.swf-actiongotolabel.html
swf_actionnextframe=function.swf-actionnextframe.html
swf_actionplay=function.swf-actionplay.html
swf_actionprevframe=function.swf-actionprevframe.html
swf_actionsettarget=function.swf-actionsettarget.html
swf_actionstop=function.swf-actionstop.html
swf_actiontogglequality=function.swf-actiontogglequality.html
swf_actionwaitforframe=function.swf-actionwaitforframe.html
swf_addbuttonrecord=function.swf-addbuttonrecord.html
swf_addcolor=function.swf-addcolor.html
swf_closefile=function.swf-closefile.html
swf_definebitmap=function.swf-definebitmap.html
swf_definefont=function.swf-definefont.html
swf_defineline=function.swf-defineline.html
swf_definepoly=function.swf-definepoly.html
swf_definerect=function.swf-definerect.html
swf_definetext=function.swf-definetext.html
swf_endbutton=function.swf-endbutton.html
swf_enddoaction=function.swf-enddoaction.html
swf_endshape=function.swf-endshape.html
swf_endsymbol=function.swf-endsymbol.html
swf_fontsize=function.swf-fontsize.html
swf_fontslant=function.swf-fontslant.html
swf_fonttracking=function.swf-fonttracking.html
swf_getbitmapinfo=function.swf-getbitmapinfo.html
swf_getfontinfo=function.swf-getfontinfo.html
swf_getframe=function.swf-getframe.html
swf_labelframe=function.swf-labelframe.html
swf_lookat=function.swf-lookat.html
swf_modifyobject=function.swf-modifyobject.html
swf_mulcolor=function.swf-mulcolor.html
swf_nextid=function.swf-nextid.html
swf_oncondition=function.swf-oncondition.html
swf_openfile=function.swf-openfile.html
swf_ortho=function.swf-ortho.html
swf_ortho2=function.swf-ortho2.html
swf_perspective=function.swf-perspective.html
swf_placeobject=function.swf-placeobject.html
swf_polarview=function.swf-polarview.html
swf_popmatrix=function.swf-popmatrix.html
swf_posround=function.swf-posround.html
swf_pushmatrix=function.swf-pushmatrix.html
swf_removeobject=function.swf-removeobject.html
swf_rotate=function.swf-rotate.html
swf_scale=function.swf-scale.html
swf_setfont=function.swf-setfont.html
swf_setframe=function.swf-setframe.html
swf_shapearc=function.swf-shapearc.html
swf_shapecurveto=function.swf-shapecurveto.html
swf_shapecurveto3=function.swf-shapecurveto3.html
swf_shapefillbitmapclip=function.swf-shapefillbitmapclip.html
swf_shapefillbitmaptile=function.swf-shapefillbitmaptile.html
swf_shapefilloff=function.swf-shapefilloff.html
swf_shapefillsolid=function.swf-shapefillsolid.html
swf_shapelinesolid=function.swf-shapelinesolid.html
swf_shapelineto=function.swf-shapelineto.html
swf_shapemoveto=function.swf-shapemoveto.html
swf_showframe=function.swf-showframe.html
swf_startbutton=function.swf-startbutton.html
swf_startdoaction=function.swf-startdoaction.html
swf_startshape=function.swf-startshape.html
swf_startsymbol=function.swf-startsymbol.html
swf_textwidth=function.swf-textwidth.html
swf_translate=function.swf-translate.html
swf_viewport=function.swf-viewport.html
swfaction=function.swfaction.html
swfbitmap.getheight=function.swfbitmap.getheight.html
swfbitmap.getwidth=function.swfbitmap.getwidth.html
swfbitmap=function.swfbitmap.html
swfbutton_keypress=function.swfbutton-keypress.html
swfbutton.addaction=function.swfbutton.addaction.html
swfbutton.addshape=function.swfbutton.addshape.html
swfbutton=function.swfbutton.html
swfbutton.setaction=function.swfbutton.setaction.html
swfbutton.setdown=function.swfbutton.setdown.html
swfbutton.sethit=function.swfbutton.sethit.html
swfbutton.setover=function.swfbutton.setover.html
swfbutton.setup=function.swfbutton.setup.html
swfdisplayitem.addcolor=function.swfdisplayitem.addcolor.html
swfdisplayitem=function.swfdisplayitem.html
swfdisplayitem.move=function.swfdisplayitem.move.html
swfdisplayitem.moveto=function.swfdisplayitem.moveto.html
swfdisplayitem.multcolor=function.swfdisplayitem.multcolor.html
swfdisplayitem.remove=function.swfdisplayitem.remove.html
swfdisplayitem.rotate=function.swfdisplayitem.rotate.html
swfdisplayitem.rotateto=function.swfdisplayitem.rotateto.html
swfdisplayitem.scale=function.swfdisplayitem.scale.html
swfdisplayitem.scaleto=function.swfdisplayitem.scaleto.html
swfdisplayitem.setdepth=function.swfdisplayitem.setdepth.html
swfdisplayitem.setname=function.swfdisplayitem.setname.html
swfdisplayitem.setratio=function.swfdisplayitem.setratio.html
swfdisplayitem.skewx=function.swfdisplayitem.skewx.html
swfdisplayitem.skewxto=function.swfdisplayitem.skewxto.html
swfdisplayitem.skewy=function.swfdisplayitem.skewy.html
swfdisplayitem.skewyto=function.swfdisplayitem.skewyto.html
swffill=function.swffill.html
swffill.moveto=function.swffill.moveto.html
swffill.rotateto=function.swffill.rotateto.html
swffill.scaleto=function.swffill.scaleto.html
swffill.skewxto=function.swffill.skewxto.html
swffill.skewyto=function.swffill.skewyto.html
swffont.getwidth=function.swffont.getwidth.html
swffont=function.swffont.html
swfgradient.addentry=function.swfgradient.addentry.html
swfgradient=function.swfgradient.html
swfmorph.getshape1=function.swfmorph.getshape1.html
swfmorph.getshape2=function.swfmorph.getshape2.html
swfmorph=function.swfmorph.html
swfmovie.add=function.swfmovie.add.html
swfmovie=function.swfmovie.html
swfmovie.nextframe=function.swfmovie.nextframe.html
swfmovie.output=function.swfmovie.output.html
swfmovie.remove=function.swfmovie.remove.html
swfmovie.save=function.swfmovie.save.html
swfmovie.setbackground=function.swfmovie.setbackground.html
swfmovie.setdimension=function.swfmovie.setdimension.html
swfmovie.setframes=function.swfmovie.setframes.html
swfmovie.setrate=function.swfmovie.setrate.html
swfmovie.streammp3=function.swfmovie.streammp3.html
swfshape.addfill=function.swfshape.addfill.html
swfshape.drawcurve=function.swfshape.drawcurve.html
swfshape.drawcurveto=function.swfshape.drawcurveto.html
swfshape.drawline=function.swfshape.drawline.html
swfshape.drawlineto=function.swfshape.drawlineto.html
swfshape=function.swfshape.html
swfshape.movepen=function.swfshape.movepen.html
swfshape.movepento=function.swfshape.movepento.html
swfshape.setleftfill=function.swfshape.setleftfill.html
swfshape.setline=function.swfshape.setline.html
swfshape.setrightfill=function.swfshape.setrightfill.html
swfsprite.add=function.swfsprite.add.html
swfsprite=function.swfsprite.html
swfsprite.nextframe=function.swfsprite.nextframe.html
swfsprite.remove=function.swfsprite.remove.html
swfsprite.setframes=function.swfsprite.setframes.html
swftext.addstring=function.swftext.addstring.html
swftext.getwidth=function.swftext.getwidth.html
swftext=function.swftext.html
swftext.moveto=function.swftext.moveto.html
swftext.setcolor=function.swftext.setcolor.html
swftext.setfont=function.swftext.setfont.html
swftext.setheight=function.swftext.setheight.html
swftext.setspacing=function.swftext.setspacing.html
swftextfield.addstring=function.swftextfield.addstring.html
swftextfield.align=function.swftextfield.align.html
swftextfield=function.swftextfield.html
swftextfield.setbounds=function.swftextfield.setbounds.html
swftextfield.setcolor=function.swftextfield.setcolor.html
swftextfield.setfont=function.swftextfield.setfont.html
swftextfield.setheight=function.swftextfield.setheight.html
swftextfield.setindentation=function.swftextfield.setindentation.html
swftextfield.setleftmargin=function.swftextfield.setleftmargin.html
swftextfield.setlinespacing=function.swftextfield.setlinespacing.html
swftextfield.setmargins=function.swftextfield.setmargins.html
swftextfield.setname=function.swftextfield.setname.html
swftextfield.setrightmargin=function.swftextfield.setrightmargin.html
sybase_affected_rows=function.sybase-affected-rows.html
sybase_close=function.sybase-close.html
sybase_connect=function.sybase-connect.html
sybase_data_seek=function.sybase-data-seek.html
sybase_fetch_array=function.sybase-fetch-array.html
sybase_fetch_field=function.sybase-fetch-field.html
sybase_fetch_object=function.sybase-fetch-object.html
sybase_fetch_row=function.sybase-fetch-row.html
sybase_field_seek=function.sybase-field-seek.html
sybase_free_result=function.sybase-free-result.html
sybase_get_last_message=function.sybase-get-last-message.html
sybase_min_client_severity=function.sybase-min-client-severity.html
sybase_min_error_severity=function.sybase-min-error-severity.html
sybase_min_message_severity=function.sybase-min-message-severity.html
sybase_min_server_severity=function.sybase-min-server-severity.html
sybase_num_fields=function.sybase-num-fields.html
sybase_num_rows=function.sybase-num-rows.html
sybase_pconnect=function.sybase-pconnect.html
sybase_query=function.sybase-query.html
sybase_result=function.sybase-result.html
sybase_select_db=function.sybase-select-db.html
symlink=function.symlink.html
syslog=function.syslog.html
system=function.system.html
tan=function.tan.html
tanh=function.tanh.html
tempnam=function.tempnam.html
textdomain=function.textdomain.html
time=function.time.html
tmpfile=function.tmpfile.html
token_get_all=function.token-get-all.html
token_name=function.token-name.html
touch=function.touch.html
trigger_error=function.trigger-error.html
trim=function.trim.html
uasort=function.uasort.html
ucfirst=function.ucfirst.html
ucwords=function.ucwords.html
udm_add_search_limit=function.udm-add-search-limit.html
udm_alloc_agent=function.udm-alloc-agent.html
udm_api_version=function.udm-api-version.html
udm_cat_list=function.udm-cat-list.html
udm_cat_path=function.udm-cat-path.html
udm_check_charset=function.udm-check-charset.html
udm_check_stored=function.udm-check-stored.html
udm_clear_search_limits=function.udm-clear-search-limits.html
udm_close_stored=function.udm-close-stored.html
udm_crc32=function.udm-crc32.html
udm_errno=function.udm-errno.html
udm_error=function.udm-error.html
udm_find=function.udm-find.html
udm_free_agent=function.udm-free-agent.html
udm_free_ispell_data=function.udm-free-ispell-data.html
udm_free_res=function.udm-free-res.html
udm_get_doc_count=function.udm-get-doc-count.html
udm_get_res_field=function.udm-get-res-field.html
udm_get_res_param=function.udm-get-res-param.html
udm_load_ispell_data=function.udm-load-ispell-data.html
udm_open_stored=function.udm-open-stored.html
udm_set_agent_param=function.udm-set-agent-param.html
uksort=function.uksort.html
umask=function.umask.html
uniqid=function.uniqid.html
unixtojd=function.unixtojd.html
unlink=function.unlink.html
unpack=function.unpack.html
unregister_tick_function=function.unregister-tick-function.html
unserialize=function.unserialize.html
unset=function.unset.html
urldecode=function.urldecode.html
urlencode=function.urlencode.html
user_error=function.user-error.html
usleep=function.usleep.html
usort=function.usort.html
utf8_decode=function.utf8-decode.html
utf8_encode=function.utf8-encode.html
var_dump=function.var-dump.html
var_export=function.var-export.html
version_compare=function.version-compare.html
virtual=function.virtual.html
vpopmail_add_alias_domain_ex=function.vpopmail-add-alias-domain-ex.html
vpopmail_add_alias_domain=function.vpopmail-add-alias-domain.html
vpopmail_add_domain_ex=function.vpopmail-add-domain-ex.html
vpopmail_add_domain=function.vpopmail-add-domain.html
vpopmail_add_user=function.vpopmail-add-user.html
vpopmail_alias_add=function.vpopmail-alias-add.html
vpopmail_alias_del_domain=function.vpopmail-alias-del-domain.html
vpopmail_alias_del=function.vpopmail-alias-del.html
vpopmail_alias_get_all=function.vpopmail-alias-get-all.html
vpopmail_alias_get=function.vpopmail-alias-get.html
vpopmail_auth_user=function.vpopmail-auth-user.html
vpopmail_del_domain_ex=function.vpopmail-del-domain-ex.html
vpopmail_del_domain=function.vpopmail-del-domain.html
vpopmail_del_user=function.vpopmail-del-user.html
vpopmail_error=function.vpopmail-error.html
vpopmail_passwd=function.vpopmail-passwd.html
vpopmail_set_user_quota=function.vpopmail-set-user-quota.html
vprintf=function.vprintf.html
vsprintf=function.vsprintf.html
w32api_deftype=function.w32api-deftype.html
w32api_init_dtype=function.w32api-init-dtype.html
w32api_invoke_function=function.w32api-invoke-function.html
w32api_register_function=function.w32api-register-function.html
w32api_set_call_method=function.w32api-set-call-method.html
wddx_add_vars=function.wddx-add-vars.html
wddx_deserialize=function.wddx-deserialize.html
wddx_packet_end=function.wddx-packet-end.html
wddx_packet_start=function.wddx-packet-start.html
wddx_serialize_value=function.wddx-serialize-value.html
wddx_serialize_vars=function.wddx-serialize-vars.html
wordwrap=function.wordwrap.html
xml_error_string=function.xml-error-string.html
xml_get_current_byte_index=function.xml-get-current-byte-index.html
xml_get_current_column_number=function.xml-get-current-column-number.html
xml_get_current_line_number=function.xml-get-current-line-number.html
xml_get_error_code=function.xml-get-error-code.html
xml_parse_into_struct=function.xml-parse-into-struct.html
xml_parse=function.xml-parse.html
xml_parser_create_ns=function.xml-parser-create-ns.html
xml_parser_create=function.xml-parser-create.html
xml_parser_free=function.xml-parser-free.html
xml_parser_get_option=function.xml-parser-get-option.html
xml_parser_set_option=function.xml-parser-set-option.html
xml_set_character_data_handler=function.xml-set-character-data-handler.html
xml_set_default_handler=function.xml-set-default-handler.html
xml_set_element_handler=function.xml-set-element-handler.html
xml_set_end_namespace_decl_handler=function.xml-set-end-namespace-decl-handler.html
xml_set_external_entity_ref_handler=function.xml-set-external-entity-ref-handler.html
xml_set_notation_decl_handler=function.xml-set-notation-decl-handler.html
xml_set_object=function.xml-set-object.html
xml_set_processing_instruction_handler=function.xml-set-processing-instruction-handler.html
xml_set_start_namespace_decl_handler=function.xml-set-start-namespace-decl-handler.html
xml_set_unparsed_entity_decl_handler=function.xml-set-unparsed-entity-decl-handler.html
xmlrpc_decode_request=function.xmlrpc-decode-request.html
xmlrpc_decode=function.xmlrpc-decode.html
xmlrpc_encode_request=function.xmlrpc-encode-request.html
xmlrpc_encode=function.xmlrpc-encode.html
xmlrpc_get_type=function.xmlrpc-get-type.html
xmlrpc_parse_method_descriptions=function.xmlrpc-parse-method-descriptions.html
xmlrpc_server_add_introspection_data=function.xmlrpc-server-add-introspection-data.html
xmlrpc_server_call_method=function.xmlrpc-server-call-method.html
xmlrpc_server_create=function.xmlrpc-server-create.html
xmlrpc_server_destroy=function.xmlrpc-server-destroy.html
xmlrpc_server_register_introspection_callback=function.xmlrpc-server-register-introspection-callback.html
xmlrpc_server_register_method=function.xmlrpc-server-register-method.html
xmlrpc_set_type=function.xmlrpc-set-type.html
xpath_eval_expression=function.xpath-eval-expression.html
xpath_eval=function.xpath-eval.html
xpath_new_context=function.xpath-new-context.html
xptr_eval=function.xptr-eval.html
xptr_new_context=function.xptr-new-context.html
xslt_create=function.xslt-create.html
xslt_errno=function.xslt-errno.html
xslt_error=function.xslt-error.html
xslt_free=function.xslt-free.html
xslt_process=function.xslt-process.html
xslt_set_base=function.xslt-set-base.html
xslt_set_encoding=function.xslt-set-encoding.html
xslt_set_error_handler=function.xslt-set-error-handler.html
xslt_set_log=function.xslt-set-log.html
xslt_set_sax_handler=function.xslt-set-sax-handler.html
xslt_set_sax_handlers=function.xslt-set-sax-handlers.html
xslt_set_scheme_handler=function.xslt-set-scheme-handler.html
xslt_set_scheme_handlers=function.xslt-set-scheme-handlers.html
yaz_addinfo=function.yaz-addinfo.html
yaz_ccl_conf=function.yaz-ccl-conf.html
yaz_ccl_parse=function.yaz-ccl-parse.html
yaz_close=function.yaz-close.html
yaz_connect=function.yaz-connect.html
yaz_database=function.yaz-database.html
yaz_element=function.yaz-element.html
yaz_errno=function.yaz-errno.html
yaz_error=function.yaz-error.html
yaz_get_option=function.yaz-get-option.html
yaz_hits=function.yaz-hits.html
yaz_itemorder=function.yaz-itemorder.html
yaz_present=function.yaz-present.html
yaz_range=function.yaz-range.html
yaz_record=function.yaz-record.html
yaz_scan_result=function.yaz-scan-result.html
yaz_scan=function.yaz-scan.html
yaz_schema=function.yaz-schema.html
yaz_search=function.yaz-search.html
yaz_set_option=function.yaz-set-option.html
yaz_sort=function.yaz-sort.html
yaz_syntax=function.yaz-syntax.html
yaz_wait=function.yaz-wait.html
yp_all=function.yp-all.html
yp_cat=function.yp-cat.html
yp_err_string=function.yp-err-string.html
yp_errno=function.yp-errno.html
yp_first=function.yp-first.html
yp_get_default_domain=function.yp-get-default-domain.html
yp_master=function.yp-master.html
yp_match=function.yp-match.html
yp_next=function.yp-next.html
yp_order=function.yp-order.html
zend_logo_guid=function.zend-logo-guid.html
zend_version=function.zend-version.html
zip_close=function.zip-close.html
zip_entry_close=function.zip-entry-close.html
zip_entry_compressedsize=function.zip-entry-compressedsize.html
zip_entry_compressionmethod=function.zip-entry-compressionmethod.html
zip_entry_filesize=function.zip-entry-filesize.html
zip_entry_name=function.zip-entry-name.html
zip_entry_open=function.zip-entry-open.html
zip_entry_read=function.zip-entry-read.html
zip_open=function.zip-open.html
zip_read=function.zip-read.html
functions.arguments.html=functions.arguments.html
functions.html=functions.html
functions.old_syntax.html=functions.old-syntax.html
functions.returning_values.html=functions.returning-values.html
functions.variable_functions.html=functions.variable-functions.html
language.oop.magic_functions.html=language.oop.magic-functions.html
zend.calling_user_functions.html=zend.calling-user-functions.html
zend.structure.exporting_functions.html=zend.structure.exporting-functions.html
zend.structure.function_block.html=zend.structure.function-block.html