File: quickref.txt

package info (click to toggle)
phpdoc 20020310-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 35,272 kB
  • ctags: 354
  • sloc: xml: 799,767; php: 1,395; cpp: 500; makefile: 200; sh: 140; awk: 51
file content (2557 lines) | stat: -rw-r--r-- 137,820 bytes parent folder | download
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
abs - Absolute value
acos - Arc cosine
acosh - Inverse hyperbolic cosine
addcslashes - Quote string with slashes in a C style
addslashes - Quote string with slashes
apache_child_terminate - Terminate apache process after this request
apache_lookup_uri - Perform a partial request for the specified URI and return all info about it 
apache_note - Get and set apache request notes
apache_setenv - Set an Apache subprocess_env variable
array - Create an array 
array_change_key_case - Returns an array with all string keys lowercased or uppercased
array_chunk - Split an array into chunks
array_count_values - Counts all the values of an array
array_diff - Computes the difference of arrays
array_fill - Fill an array with values
array_filter - Filters elements of an array using a callback function 
array_flip - Flip all the values of an array
array_intersect - Computes the intersection of arrays
array_keys - Return all the keys of an array
array_key_exists - Checks if the given key or index exists in the array
array_map - Applies the callback to the elements of the given arrays 
array_merge - Merge two or more arrays
array_merge_recursive - Merge two or more arrays recursively
array_multisort - Sort multiple or multi-dimensional arrays
array_pad - Pad array to the specified length with a value 
array_pop - Pop the element off the end of array
array_push - Push one or more elements onto the end of array 
array_rand - Pick one or more random entries out of an array 
array_reduce - Iteratively reduce the array to a single value using a callback function 
array_reverse - Return an array with elements in reverse order 
array_search - Searches the array for a given value and returns the corresponding key if successful 
array_shift - Shift an element off the beginning of array 
array_slice - Extract a slice of the array
array_splice - Remove a portion of the array and replace it with something else 
array_sum - Calculate the sum of values in an array. 
array_unique - Removes duplicate values from an array
array_unshift - Prepend one or more elements to the beginning of array 
array_values - Return all the values of an array
array_walk - Apply a user function to every member of an array 
arsort - Sort an array in reverse order and maintain index association 
ascii2ebcdic - Translate string from ASCII to EBCDIC
asin - Arc sine
asinh - Inverse hyperbolic sine
asort - Sort an array and maintain index association
aspell_check - Check a word [deprecated]
aspell_check_raw - Check a word without changing its case or trying to trim it [deprecated] 
aspell_new - Load a new dictionary [deprecated]
aspell_suggest - Suggest spellings of a word [deprecated]
assert - Checks if assertion is FALSE
assert_options - Set/get the various assert flags
atan - Arc tangent
atan2 - arc tangent of two variables
atanh - Inverse hyperbolic tangent
base64_decode - Decodes data encoded with MIME base64
base64_encode - Encodes data with MIME base64
basename - Returns filename component of path 
base_convert - Convert a number between arbitrary bases
bcadd - Add two arbitrary precision numbers
bccomp - Compare two arbitrary precision numbers
bcdiv - Divide two arbitrary precision numbers
bcmod - Get modulus of an arbitrary precision number 
bcmul - Multiply two arbitrary precision number
bcpow - Raise an arbitrary precision number to another 
bcscale - Set default scale parameter for all bc math functions 
bcsqrt - Get the square root of an arbitrary precision number 
bcsub - Subtract one arbitrary precision number from another 
bin2hex - Convert binary data into hexadecimal representation 
bindec - Binary to decimal
bindtextdomain - Sets the path for a domain
bind_textdomain_codeset - Specify the character encoding in which the messages from the DOMAIN message catalog will be re turned 
bzclose - Close a bzip2 file pointer
bzcompress - Compress a string into bzip2 encoded data
bzdecompress - Decompresses bzip2 encoded data
bzerrno - Returns a bzip2 error number
bzerror - Returns the bzip2 error number and error string in an array
bzerrstr - Returns a bzip2 error string
bzflush - Force a write of all buffered data
bzopen - Open a bzip2 compressed file
bzread - Binary safe bzip2 file read
bzwrite - Binary safe bzip2 file write
call_user_func - Call a user function given by the first parameter 
call_user_func_array - Call a user function given with an array of parameters 
call_user_method - Call a user method on an specific object 
call_user_method_array - Call a user method given with an array of parameters 
cal_days_in_month - Return the number of days in a month for a given year and calendar
cal_from_jd - Converts from Julian Day Count to a supported calendar and return extended information
cal_info - Returns information about a particular calendar
cal_to_jd - Converts from a supported calendar to Julian Day Count
ccvs_add - Add data to a transaction 
ccvs_auth - Perform credit authorization test on a transaction 
ccvs_command - Performs a command which is peculiar to a single protocol, and thus is not available in the general CCVS API 
ccvs_count - Find out how many transactions of a given type are stored in the system 
ccvs_delete - Delete a transaction
ccvs_done - Terminate CCVS engine and do cleanup work
ccvs_init - Initialize CCVS for use
ccvs_lookup - Look up an item of a particular type in the database # 
ccvs_new - Create a new, blank transaction 
ccvs_report - Return the status of the background communication process 
ccvs_return - Transfer funds from the merchant to the credit card holder 
ccvs_reverse - Perform a full reversal on an already-processed authorization 
ccvs_sale - Transfer funds from the credit card holder to the merchant 
ccvs_status - Check the status of an invoice
ccvs_textvalue - Get text return value for previous function call
ccvs_void - Perform a full reversal on a completed transaction 
ceil - Round fractions up
chdir - change directory
checkdate - Validate a gregorian date/time
checkdnsrr - Check DNS records corresponding to a given Internet host name or IP address 
chgrp - Changes file group
chmod - Changes file mode
chop - Alias of rtrim
chown - Changes file owner
chr - Return a specific character
chroot - change the root directory
chunk_split - Split a string into smaller chunks
class_exists - Checks if the class has been defined
clearstatcache - Clears file stat cache
closedir - close directory handle
closelog - Close connection to system logger
COM - COM class
compact - Create array containing variables and their values 
com_addref - Increases the components reference counter. 
com_get - Gets the value of a COM Component's property 
com_invoke - Calls a COM component's method. 
com_isenum - Grabs an IEnumVariant
com_load - Creates a new reference to a COM component 
com_load_typelib - Loads a Typelib
com_propget - Gets the value of a COM Component's property 
com_propput - Assigns a value to a COM component's property 
com_propset - Assigns a value to a COM component's property 
com_release - Decreases the components reference counter. 
com_set - Assigns a value to a COM component's property 
connection_aborted - Returns TRUE if client disconnected
connection_status - Returns connection status bitfield
connection_timeout - Return TRUE if script timed out
constant - Returns the value of a constant
convert_cyr_string - Convert from one Cyrillic character set to another 
copy - Copies file
cos - Cosine
cosh - Hyperbolic cosine
count - Count elements in a variable
count_chars - Return information about characters used in a string 
cpdf_add_annotation - Adds annotation
cpdf_add_outline - Adds bookmark for current page
cpdf_arc - Draws an arc
cpdf_begin_text - Starts text section
cpdf_circle - Draw a circle
cpdf_clip - Clips to current path
cpdf_close - Closes the pdf document
cpdf_closepath - Close path
cpdf_closepath_fill_stroke - Close, fill and stroke current path
cpdf_closepath_stroke - Close path and draw line along path
cpdf_continue_text - Output text in next line
cpdf_curveto - Draws a curve
cpdf_end_text - Ends text section
cpdf_fill - Fill current path
cpdf_fill_stroke - Fill and stroke current path
cpdf_finalize - Ends document
cpdf_finalize_page - Ends page
cpdf_global_set_document_limits - Sets document limits for any pdf document
cpdf_import_jpeg - Opens a JPEG image
cpdf_lineto - Draws a line
cpdf_moveto - Sets current point
cpdf_newpath - Starts a new path
cpdf_open - Opens a new pdf document
cpdf_output_buffer - Outputs the pdf document in memory buffer
cpdf_page_init - Starts new page
cpdf_place_inline_image - Places an image on the page
cpdf_rect - Draw a rectangle
cpdf_restore - Restores formerly saved environment
cpdf_rlineto - Draws a line
cpdf_rmoveto - Sets current point
cpdf_rotate - Sets rotation
cpdf_rotate_text - Sets text rotation angle 
cpdf_save - Saves current environment
cpdf_save_to_file - Writes the pdf document into a file
cpdf_scale - Sets scaling
cpdf_setdash - Sets dash pattern
cpdf_setflat - Sets flatness
cpdf_setgray - Sets drawing and filling color to gray value
cpdf_setgray_fill - Sets filling color to gray value
cpdf_setgray_stroke - Sets drawing color to gray value
cpdf_setlinecap - Sets linecap parameter
cpdf_setlinejoin - Sets linejoin parameter
cpdf_setlinewidth - Sets line width
cpdf_setmiterlimit - Sets miter limit
cpdf_setrgbcolor - Sets drawing and filling color to rgb color value
cpdf_setrgbcolor_fill - Sets filling color to rgb color value
cpdf_setrgbcolor_stroke - Sets drawing color to rgb color value
cpdf_set_action_url - Sets hyperlink 
cpdf_set_char_spacing - Sets character spacing
cpdf_set_creator - Sets the creator field in the pdf document
cpdf_set_current_page - Sets current page
cpdf_set_font - Select the current font face and size
cpdf_set_font_directories - Sets directories to search when using external fonts 
cpdf_set_font_map_file - Sets fontname to filename translation map when using external fonts 
cpdf_set_horiz_scaling - Sets horizontal scaling of text
cpdf_set_keywords - Sets the keywords field of the pdf document
cpdf_set_leading - Sets distance between text lines
cpdf_set_page_animation - Sets duration between pages
cpdf_set_subject - Sets the subject field of the pdf document
cpdf_set_text_matrix - Sets the text matrix
cpdf_set_text_pos - Sets text position
cpdf_set_text_rendering - Determines how text is rendered
cpdf_set_text_rise - Sets the text rise
cpdf_set_title - Sets the title field of the pdf document
cpdf_set_viewer_preferences - How to show the document in the viewer 
cpdf_set_word_spacing - Sets spacing between words
cpdf_show - Output text at current position
cpdf_show_xy - Output text at position
cpdf_stringwidth - Returns width of text in current font
cpdf_stroke - Draw line along path
cpdf_text - Output text with parameters
cpdf_translate - Sets origin of coordinate system
crack_check - Performs an obscure check with the given password
crack_closedict - Closes an open CrackLib dictionary 
crack_getlastmessage - Returns the message from the last obscure check
crack_opendict - Opens a new CrackLib dictionary
crc32 - Calculates the crc32 polynomial of a string
create_function - Create an anonymous (lambda-style) function
crypt - One-way string encryption (hashing)
ctype_alnum - Check for alphanumeric character(s)
ctype_alpha - Check for alphabetic character(s)
ctype_cntrl - Check for control character(s)
ctype_digit - Check for numeric character(s)
ctype_graph - Check for any printable character(s) except space
ctype_lower - Check for lowercase character(s)
ctype_print - Check for printable character(s)
ctype_punct - Check for any printable character which is not whitespace or an alphanumeric character 
ctype_space - Check for whitespace character(s)
ctype_upper - Check for uppercase character(s)
ctype_xdigit - Check for character(s) representing a hexadecimal digit 
curl_close - Close a CURL session
curl_errno - Return an integer containing the last error number
curl_error - Return a string contain the last error for the current session 
curl_exec - Perform a CURL session
curl_getinfo - Get information regarding a specific transfer 
curl_init - Initialize a CURL session
curl_setopt - Set an option for a CURL transfer
curl_version - Return the current CURL version
current - Return the current element in an array
cybercash_base64_decode - base64 decode data for Cybercash
cybercash_base64_encode - base64 encode data for Cybercash
cybercash_decr - Cybercash decrypt
cybercash_encr - Cybercash encrypt
cybermut_creerformulairecm - Generate HTML form of request for payment
cybermut_creerreponsecm - Generate the acknowledgement of delivery of the confirmation of payment 
cybermut_testmac - Make sure that there no was data diddling contained in the received message of confirmation 
cyrus_authenticate - Authenticate agaings a Cyrus IMAP server 
cyrus_bind - Bind callbacks to a Cyrus IMAP connection 
cyrus_close - Close connection to a cyrus server 
cyrus_connect - Connect to a Cyrus IMAP server 
cyrus_query - Send a query to a Cyrus IMAP server 
cyrus_unbind - Unbind ... 
date - Format a local time/date
dbase_add_record - Add a record to a dBase database
dbase_close - Close a dBase database
dbase_create - Creates a dBase database
dbase_delete_record - Deletes a record from a dBase database
dbase_get_record - Gets a record from a dBase database
dbase_get_record_with_names - Gets a record from a dBase database as an associative array 
dbase_numfields - Find out how many fields are in a dBase database 
dbase_numrecords - Find out how many records are in a dBase database 
dbase_open - Opens a dBase database
dbase_pack - Packs a dBase database
dbase_replace_record - Replace a record in a dBase database
dba_close - Close database
dba_delete - Delete entry specified by key
dba_exists - Check whether key exists
dba_fetch - Fetch data specified by key
dba_firstkey - Fetch first key
dba_insert - Insert entry
dba_nextkey - Fetch next key
dba_open - Open database
dba_optimize - Optimize database
dba_popen - Open database persistently
dba_replace - Replace or insert entry
dba_sync - Synchronize database
dblist - Describes the DBM-compatible library being used 
dbmclose - Closes a dbm database
dbmdelete - Deletes the value for a key from a DBM database 
dbmexists - Tells if a value exists for a key in a DBM database 
dbmfetch - Fetches a value for a key from a DBM database 
dbmfirstkey - Retrieves the first key from a DBM database 
dbminsert - Inserts a value for a key in a DBM database 
dbmnextkey - Retrieves the next key from a DBM database
dbmopen - Opens a DBM database
dbmreplace - Replaces the value for a key in a DBM database 
dbplus_add - Add a tuple to a relation
dbplus_aql - Perform AQL query
dbplus_chdir - Get/Set database virtual current directory
dbplus_close - Close a relation
dbplus_curr - Get current tuple from relation
dbplus_errcode - Get error string for given errorcode or last error 
dbplus_errno - Get error code for last operation
dbplus_find - Set a constraint on a relation
dbplus_first - Get first tuple from relation
dbplus_flush - Flush all changes made on a relation
dbplus_freealllocks - Free all locks held by this client
dbplus_freelock - Release write lock on tuple
dbplus_freerlocks - Free all tuple locks on given relation
dbplus_getlock - Get a write lock on a tuple
dbplus_getunique - Get a id number unique to a relation
dbplus_info - ???
dbplus_last - Get last tuple from relation
dbplus_lockrel - Request write lock on relation
dbplus_next - Get next tuple from relation
dbplus_open - Open relation file
dbplus_prev - Get previous tuple from relation
dbplus_rchperm - Change relation permissions
dbplus_rcreate - Creates a new DB++ relation
dbplus_rcrtexact - Creates an exact but empty copy of a relation including indices
dbplus_rcrtlike - Creates an empty copy of a relation with default indices
dbplus_resolve - Resolve host information for relation
dbplus_restorepos - ???
dbplus_rkeys - Specify new primary key for a relation
dbplus_ropen - Open relation file local
dbplus_rquery - Perform local (raw) AQL query
dbplus_rrename - Rename a relation
dbplus_rsecindex - Create a new secondary index for a relation 
dbplus_runlink - Remove relation from filesystem
dbplus_rzap - Remove all tuples from relation
dbplus_savepos - ???
dbplus_setindex - ???
dbplus_setindexbynumber - ???
dbplus_sql - Perform SQL query
dbplus_tcl - Execute TCL code on server side
dbplus_tremove - Remove tuple and return new current tuple
dbplus_undo - ???
dbplus_undoprepare - ???
dbplus_unlockrel - Give up write lock on relation
dbplus_unselect - Remove a constraint from relation
dbplus_update - Update specified tuple in relation
dbplus_xlockrel - Request exclusive lock on relation
dbplus_xunlockrel - Free exclusive lock on relation
dbx_close - Close an open connection/database
dbx_compare - Compare two rows for sorting purposes
dbx_connect - Open a connection/database
dbx_error - Report the error message of the latest function call in the module (not just in the connection) 
dbx_query - Send a query and fetch all results (if any)
dbx_sort - Sort a result from a dbx_query by a custom sort function 
dcgettext - Overrides the domain for a single lookup
dcngettext - Plural version of dcgettext() Plural version of dcgettext
dcngettext - Plural version of dcgettext() Plural version of dgettext
debugger_off - Disable internal PHP debugger
debugger_on - Enable internal PHP debugger
decbin - Decimal to binary
dechex - Decimal to hexadecimal
decoct - Decimal to octal
define - Defines a named constant.
defined - Checks whether a given named constant exists 
define_syslog_variables - Initializes all syslog related constants
deg2rad - Converts the number in degrees to the radian equivalent 
delete - A dummy manual entry
dgettext - Override the current domain
die - Alias of exit
dio_close - Closes the file descriptor given by fd
dio_fcntl - Performs a c library fcntl on fd
dio_open - Opens a new filename with specified permissions of flags and creation permissions of mode 
dio_read - Reads n bytes from fd and returns them, if n is not specified, reads 1k block 
dio_seek - Seeks to pos on fd from whence
dio_stat - Gets stat information about the file descriptor fd 
dio_truncate - Truncates file descriptor fd to offset bytes 
dio_write - Writes data to fd with optional truncation at length 
dir - directory class
dirname - Returns directory name component of path
diskfreespace - Alias of disk_free_space
disk_free_space - Returns available space in directory
disk_total_space - Returns the total size of a directory
dl - Loads a PHP extension at runtime
domxml_add_root - Adds a further root node 
domxml_attributes - Returns an array of attributes of a node 
domxml_children - Returns children of a node or document 
domxml_dumpmem - Dumps the internal XML tree back into a string 
domxml_get_attribute - Returns a certain attribute of a node 
domxml_new_child - Adds new child node 
domxml_new_xmldoc - Creates new empty XML document 
domxml_node - Creates node 
domxml_node_set_content - Sets content of a node 
domxml_node_unlink_node - Deletes node 
domxml_root - Returns root element node 
domxml_set_attribute - 
domxml_version - Get XML library version 
dotnet_load - Loads a DOTNET module
doubleval - Alias of floatval
each - Return the current key and value pair from an array and advance the array cursor 
easter_date - Get UNIX timestamp for midnight on Easter of a given year 
easter_days - Get number of days after March 21 on which Easter falls for a given year 
ebcdic2ascii - Translate string from EBCDIC to ASCII
echo - Output one or more strings
empty - Determine whether a variable is set
end - Set the internal pointer of an array to its last element 
ereg - Regular expression match
eregi - case insensitive regular expression match
eregi_replace - replace regular expression case insensitive
ereg_replace - Replace regular expression
error_log - send an error message somewhere
error_reporting - set which PHP errors are reported
escapeshellarg - escape a string to be used as a shell argument
escapeshellcmd - escape shell metacharacters
eval - Evaluate a string as PHP code
exec - Execute an external program
exit - Output a message and terminate the current script
exp - e to the power of ...
explode - Split a string by string
expm1 - Returns exp(number) - 1, computed in a way that accurate even when the value of number is close to zero 
extension_loaded - Find out whether an extension is loaded
extract - Import variables into the current symbol table from an array 
ezmlm_hash - Calculate the hash value needed by EZMLM
fbsql_affected_rows - Get number of affected rows in previous FrontBase operation 
fbsql_autocommit - Enable or disable autocommit.
fbsql_change_user - Change logged in user of the active connection 
fbsql_close - Close FrontBase connection
fbsql_commit - Commits a transaction to the database
fbsql_connect - Open a connection to a FrontBase Server
fbsql_create_blob - Create a BLOB
fbsql_create_clob - Create a CLOB
fbsql_create_db - Create a FrontBase database
fbsql_database - Get or set the database name used with a connection
fbsql_database_password - Sets or retrieves the password for a FrontBase database 
fbsql_data_seek - Move internal result pointer
fbsql_db_query - Send a FrontBase query
fbsql_db_status - Get the status for a given database
fbsql_drop_db - Drop (delete) a FrontBase database
fbsql_errno - Returns the numerical value of the error message from previous FrontBase operation 
fbsql_error - Returns the text of the error message from previous FrontBase operation 
fbsql_fetch_array - Fetch a result row as an associative array, a numeric array, or both 
fbsql_fetch_assoc - Fetch a result row as an associative array 
fbsql_fetch_field - Get column information from a result and return as an object 
fbsql_fetch_lengths - Get the length of each output in a result 
fbsql_fetch_object - Fetch a result row as an object
fbsql_fetch_row - Get a result row as an enumerated array
fbsql_field_flags - Get the flags associated with the specified field in a result 
fbsql_field_len - Returns the length of the specified field 
fbsql_field_name - Get the name of the specified field in a result 
fbsql_field_seek - Set result pointer to a specified field offset 
fbsql_field_table - Get name of the table the specified field is in 
fbsql_field_type - Get the type of the specified field in a result 
fbsql_free_result - Free result memory
fbsql_get_autostart_info - No description given yet
fbsql_hostname - Get or set the host name used with a connection
fbsql_insert_id - Get the id generated from the previous INSERT operation 
fbsql_list_dbs - List databases available on a FrontBase server 
fbsql_list_fields - List FrontBase result fields
fbsql_list_tables - List tables in a FrontBase database
fbsql_next_result - Move the internal result pointer to the next result 
fbsql_num_fields - Get number of fields in result
fbsql_num_rows - Get number of rows in result
fbsql_password - Get or set the user password used with a connection
fbsql_pconnect - Open a persistent connection to a FrontBase Server 
fbsql_query - Send a FrontBase query
fbsql_read_blob - Read a BLOB from the database
fbsql_read_clob - Read a CLOB from the database
fbsql_result - Get result data
fbsql_rollback - Rollback a transaction to the database
fbsql_select_db - Select a FrontBase database
fbsql_set_lob_mode - Set the LOB retrieve mode for a FrontBase result set 
fbsql_set_transaction - Set the transaction locking and isolation 
fbsql_start_db - Start a database on local or remote server
fbsql_stop_db - Stop a database on local or remote server
fbsql_tablename - Get table name of field
fbsql_username - Get or set the host user used with a connection
fbsql_warnings - Enable or disable FrontBase warnings
fclose - Closes an open file pointer
fdf_add_template - Adds a template into the FDF document
fdf_close - Close an FDF document
fdf_create - Create a new FDF document
fdf_get_file - Get the value of the /F key
fdf_get_status - Get the value of the /STATUS key
fdf_get_value - Get the value of a field
fdf_next_field_name - Get the next field name
fdf_open - Open a FDF document
fdf_save - Save a FDF document
fdf_set_ap - Set the appearance of a field
fdf_set_encoding - Sets FDF character encoding
fdf_set_file - Set the value of the /F key
fdf_set_flags - Sets a flag of a field
fdf_set_javascript_action - Sets an javascript action of a field
fdf_set_opt - Sets an option of a field
fdf_set_status - Set the value of the /STATUS key
fdf_set_submit_form_action - Sets a submit form action of a field
fdf_set_value - Set the value of a field
feof - Tests for end-of-file on a file pointer
fflush - Flushes the output to a file
fgetc - Gets character from file pointer
fgetcsv - Gets line from file pointer and parse for CSV fields 
fgets - Gets line from file pointer
fgetss - Gets line from file pointer and strip HTML tags 
file - Reads entire file into an array
fileatime - Gets last access time of file
filectime - Gets inode change time of file
filegroup - Gets file group
fileinode - Gets file inode
filemtime - Gets file modification time
fileowner - Gets file owner
fileperms - Gets file permissions
filepro - read and verify the map file
filepro_fieldcount - find out how many fields are in a filePro database
filepro_fieldname - gets the name of a field
filepro_fieldtype - gets the type of a field
filepro_fieldwidth - gets the width of a field
filepro_retrieve - retrieves data from a filePro database
filepro_rowcount - find out how many rows are in a filePro database
filesize - Gets file size
filetype - Gets file type
file_exists - Checks whether a file exists
floatval - Get float value of a variable
flock - Portable advisory file locking
floor - Round fractions down
flush - Flush the output buffer
fopen - Opens file or URL
fpassthru - Output all remaining data on a file pointer 
fputs - Writes to a file pointer
fread - Binary-safe file read
FrenchToJD - Converts a date from the French Republican Calendar to a Julian Day Count 
fribidi_log2vis - Convert a logical string to a visual one 
fscanf - Parses input from a file according to a format
fseek - Seeks on a file pointer
fsockopen - Open Internet or Unix domain socket connection 
fstat - Gets information about a file using an open file pointer 
ftell - Tells file pointer read/write position
ftok - Convert a pathname and a project identifier to a System V IPC key 
ftp_cdup - Changes to the parent directory
ftp_chdir - Changes directories on a FTP server
ftp_close - Closes an FTP connection
ftp_connect - Opens up an FTP connection
ftp_delete - Deletes a file on the ftp server.
ftp_exec - Request execution of a program on the ftp server. 
ftp_fget - Downloads a file from the FTP server and saves to an open file.
ftp_fput - Uploads from an open file to the FTP server.
ftp_get - Downloads a file from the FTP server.
ftp_get_option - Retrieves various runtime behaviours of the current FTP stream. 
ftp_login - Logs in an FTP connection
ftp_mdtm - Returns the last modified time of the given file.
ftp_mkdir - Creates a directory
ftp_nlist - Returns a list of files in the given directory.
ftp_pasv - Turns passive mode on or off.
ftp_put - Uploads a file to the FTP server.
ftp_pwd - Returns the current directory name
ftp_quit - Closes an FTP connection
ftp_rawlist - Returns a detailed list of files in the given directory. 
ftp_rename - Renames a file on the ftp server.
ftp_rmdir - Removes a directory
ftp_set_option - Set miscellaneous runtime FTP options. 
ftp_site - Sends a SITE command to the server.
ftp_size - Returns the size of the given file.
ftp_systype - Returns the system type identifier of the remote FTP server. 
ftruncate - Truncates a file to a given length. 
function_exists - Return TRUE if the given function has been defined 
func_get_arg - Return an item from the argument list
func_get_args - Returns an array comprising a function's argument list 
func_num_args - Returns the number of arguments passed to the function 
fwrite - Binary-safe file write
getallheaders - Fetch all HTTP request headers
getcwd - gets the current working directory
getdate - Get date/time information
getenv - Gets the value of an environment variable
gethostbyaddr - Get the Internet host name corresponding to a given IP address 
gethostbyname - Get the IP address corresponding to a given Internet host name 
gethostbynamel - Get a list of IP addresses corresponding to a given Internet host name 
GetImageSize - Get the size of an image
getlastmod - Gets time of last page modification
getmxrr - Get MX records corresponding to a given Internet host name 
getmygid - Get PHP script owner's GID
getmyinode - Gets the inode of the current script
getmypid - Gets PHP's process ID
getmyuid - Gets PHP script owner's UID
getprotobyname - Get protocol number associated with protocol name 
getprotobynumber - Get protocol name associated with protocol number 
getrandmax - Show largest possible random value
getrusage - Gets the current resource usages
getservbyname - Get port number associated with an Internet service and protocol 
getservbyport - Get Internet service which corresponds to port and protocol 
gettext - Lookup a message in the current domain
gettimeofday - Get current time
gettype - Get the type of a variable
get_browser - Tells what the user's browser is capable of 
get_cfg_var - Gets the value of a PHP configuration option 
get_class - Returns the name of the class of an object
get_class_methods - Returns an array of class methods' names
get_class_vars - Returns an array of default properties of the class 
get_current_user - Gets the name of the owner of the current PHP script 
get_declared_classes - Returns an array with the name of the defined classes
get_defined_constants - Returns an associative array with the names of all the constants and their values 
get_defined_functions - Returns an array of all defined functions 
get_defined_vars - Returns an array of all defined variables 
get_extension_funcs - Returns an array with the names of the functions of a module 
get_html_translation_table - Returns the translation table used by htmlspecialchars and htmlentities 
get_included_files - Returns an array with the names of included or required files 
get_loaded_extensions - Returns an array with the names of all modules compiled and loaded 
get_magic_quotes_gpc - Gets the current active configuration setting of magic quotes gpc 
get_magic_quotes_runtime - Gets the current active configuration setting of magic_quotes_runtime 
get_meta_tags - Extracts all meta tag content attributes from a file and returns an array 
get_object_vars - Returns an associative array of object properties
get_parent_class - Retrieves the parent class name for object or class
get_required_files - Returns an array with the names of included or required files 
get_resource_type - Returns the resource type 
gmdate - Format a GMT/CUT date/time
gmmktime - Get UNIX timestamp for a GMT date
gmp_abs - Absolute value
gmp_add - Add numbers
gmp_and - Logical AND
gmp_clrbit - Clear bit
gmp_cmp - Compare numbers
gmp_com - Calculates one's complement of a 
gmp_div - Divide numbers
gmp_divexact - Exact division of numbers
gmp_div_q - Divide numbers
gmp_div_qr - Divide numbers and get quotient and remainder
gmp_div_r - Remainder of the division of numbers
gmp_fact - Factorial
gmp_gcd - Calculate GCD
gmp_gcdext - Calculate GCD and multipliers
gmp_hamdist - Hamming distance
gmp_init - Create GMP number
gmp_intval - Convert GMP number to integer
gmp_invert - Inverse by modulo
gmp_jacobi - Jacobi symbol
gmp_legendre - Legendre symbol
gmp_mod - Modulo operation
gmp_mul - Multiply numbers
gmp_neg - Negate number
gmp_or - Logical OR
gmp_perfect_square - Perfect square check
gmp_popcount - Population count
gmp_pow - Raise number into power
gmp_powm - Raise number into power with modulo
gmp_prob_prime - Check if number is "probably prime"
gmp_random - Random number
gmp_scan0 - Scan for 0
gmp_scan1 - Scan for 1
gmp_setbit - Set bit
gmp_sign - Sign of number
gmp_sqrt - Square root
gmp_sqrtrm - Square root with remainder
gmp_strval - Convert GMP number to string
gmp_sub - Subtract numbers
gmp_xor - Logical XOR
gmstrftime - Format a GMT/CUT time/date according to locale settings 
GregorianToJD - Converts a Gregorian date to Julian Day Count 
gzclose - Close an open gz-file pointer
gzcompress - Compress a string
gzdeflate - Deflate a string
gzencode - Create a gzip compressed string
gzeof - Test for end-of-file on a gz-file pointer
gzfile - Read entire gz-file into an array
gzgetc - Get character from gz-file pointer
gzgets - Get line from file pointer
gzgetss - Get line from gz-file pointer and strip HTML tags 
gzinflate - Inflate a deflated string
gzopen - Open gz-file
gzpassthru - Output all remaining data on a gz-file pointer 
gzputs - Write to a gz-file pointer
gzread - Binary-safe gz-file read
gzrewind - Rewind the position of a gz-file pointer
gzseek - Seek on a gz-file pointer
gztell - Tell gz-file pointer read/write position
gzuncompress - Uncompress a deflated string
gzwrite - Binary-safe gz-file write
header - Send a raw HTTP header
headers_sent - Returns TRUE if headers have been sent
hebrev - Convert logical Hebrew text to visual text 
hebrevc - Convert logical Hebrew text to visual text with newline conversion 
hexdec - Hexadecimal to decimal
highlight_file - Syntax highlighting of a file
highlight_string - Syntax highlighting of a string
htmlentities - Convert all applicable characters to HTML entities 
htmlspecialchars - Convert special characters to HTML entities 
hw_Array2Objrec - convert attributes from object array to object record
hw_changeobject - Changes attributes of an object (obsolete) 
hw_Children - object ids of children
hw_ChildrenObj - object records of children
hw_Close - closes the Hyperwave connection
hw_Connect - opens a connection
hw_connection_info - Prints information about the connection to Hyperwave server 
hw_Cp - copies objects
hw_Deleteobject - deletes object
hw_DocByAnchor - object id object belonging to anchor
hw_DocByAnchorObj - object record object belonging to anchor
hw_Document_Attributes - object record of hw_document
hw_Document_BodyTag - body tag of hw_document
hw_Document_Content - returns content of hw_document
hw_Document_SetContent - sets/replaces content of hw_document
hw_Document_Size - size of hw_document
hw_dummy - Hyperwave dummy function 
hw_EditText - retrieve text document
hw_Error - error number
hw_ErrorMsg - returns error message
hw_Free_Document - frees hw_document
hw_GetAnchors - object ids of anchors of document
hw_GetAnchorsObj - object records of anchors of document
hw_GetAndLock - return bject record and lock object
hw_GetChildColl - object ids of child collections
hw_GetChildCollObj - object records of child collections
hw_GetChildDocColl - object ids of child documents of collection
hw_GetChildDocCollObj - object records of child documents of collection
hw_GetObject - object record
hw_GetObjectByQuery - search object
hw_GetObjectByQueryColl - search object in collection
hw_GetObjectByQueryCollObj - search object in collection
hw_GetObjectByQueryObj - search object
hw_GetParents - object ids of parents
hw_GetParentsObj - object records of parents
hw_getrellink - Get link from source to dest relative to rootid 
hw_GetRemote - Gets a remote document
hw_GetRemoteChildren - Gets children of remote document
hw_GetSrcByDestObj - Returns anchors pointing at object
hw_GetText - retrieve text document
hw_getusername - name of currently logged in user
hw_Identify - identifies as user
hw_InCollections - check if object ids in collections
hw_Info - info about connection
hw_InsColl - insert collection
hw_InsDoc - insert document
hw_insertanchors - Inserts only anchors into text 
hw_InsertDocument - upload any document
hw_InsertObject - inserts an object record
hw_mapid - Maps global id on virtual local id
hw_Modifyobject - modifies object record
hw_Mv - moves objects
hw_New_Document - create new document
hw_Objrec2Array - convert attributes from object record to object array
hw_Output_Document - prints hw_document
hw_pConnect - make a persistent database connection
hw_PipeDocument - retrieve any document
hw_Root - root object id
hw_setlinkroot - Set the id to which links are calculated 
hw_stat - Returns status string 
hw_Unlock - unlock object
hw_Who - List of currently logged in users
hypot - Returns sqrt( num1*num1 + num2*num2) 
ibase_blob_add - Add data into created blob 
ibase_blob_cancel - Cancel creating blob 
ibase_blob_close - Close blob 
ibase_blob_create - Create blob for adding data 
ibase_blob_echo - Output blob contents to browser 
ibase_blob_get - Get len bytes data from open blob 
ibase_blob_import - Create blob, copy file in it, and close it 
ibase_blob_info - Return blob length and other useful info 
ibase_blob_open - Open blob for retrieving data parts 
ibase_close - Close a connection to an InterBase database 
ibase_commit - Commit a transaction
ibase_connect - Open a connection to an InterBase database 
ibase_errmsg - Returns error messages 
ibase_execute - Execute a previously prepared query
ibase_fetch_object - Get an object from a InterBase database
ibase_fetch_row - Fetch a row from an InterBase database
ibase_field_info - Get information about a field 
ibase_free_query - Free memory allocated by a prepared query 
ibase_free_result - Free a result set
ibase_num_fields - Get the number of fields in a result set 
ibase_pconnect - Creates an persistent connection to an InterBase database 
ibase_prepare - Prepare a query for later binding of parameter placeholders and execution 
ibase_query - Execute a query on an InterBase database
ibase_rollback - Rolls back a transaction
ibase_timefmt - Sets the format of timestamp, date and time type columns returned from queries 
ibase_trans - Begin a transaction
icap_close - Close an ICAP stream
icap_create_calendar - Create a new calendar 
icap_delete_calendar - Delete a calendar 
icap_delete_event - Delete an event from an ICAP calendar
icap_fetch_event - Fetches an event from the calendar stream/
icap_list_alarms - Return a list of events that has an alarm triggered at the given datetime 
icap_list_events - Return a list of events between two given datetimes 
icap_open - Opens up an ICAP connection
icap_rename_calendar - Rename a calendar 
icap_reopen - Reopen ICAP stream to new calendar 
icap_snooze - Snooze an alarm
icap_store_event - Store an event into an ICAP calendar
iconv - Convert string to requested character encoding
iconv_get_encoding - Get current setting for character encoding conversion 
iconv_set_encoding - Set current setting for character encoding conversion 
ifxus_close_slob - Deletes the slob object
ifxus_create_slob - Creates an slob object and opens it
ifxus_free_slob - Deletes the slob object
ifxus_open_slob - Opens an slob object
ifxus_read_slob - Reads nbytes of the slob object
ifxus_seek_slob - Sets the current file or seek position
ifxus_tell_slob - Returns the current file or seek position
ifxus_write_slob - Writes a string into the slob object
ifx_affected_rows - Get number of rows affected by a query
ifx_blobinfile_mode - Set the default blob mode for all select queries
ifx_byteasvarchar - Set the default byte mode
ifx_close - Close Informix connection
ifx_connect - Open Informix server connection
ifx_copy_blob - Duplicates the given blob object
ifx_create_blob - Creates an blob object
ifx_create_char - Creates an char object
ifx_do - Execute a previously prepared SQL-statement 
ifx_error - Returns error code of last Informix call
ifx_errormsg - Returns error message of last Informix call
ifx_fetch_row - Get row as enumerated array
ifx_fieldproperties - List of SQL fieldproperties
ifx_fieldtypes - List of Informix SQL fields
ifx_free_blob - Deletes the blob object
ifx_free_char - Deletes the char object
ifx_free_result - Releases resources for the query
ifx_getsqlca - Get the contents of sqlca.sqlerrd[0..5] after a query 
ifx_get_blob - Return the content of a blob object
ifx_get_char - Return the content of the char object
ifx_htmltbl_result - Formats all rows of a query into a HTML table 
ifx_nullformat - Sets the default return value on a fetch row 
ifx_num_fields - Returns the number of columns in the query
ifx_num_rows - Count the rows already fetched from a query
ifx_pconnect - Open persistent Informix connection
ifx_prepare - Prepare an SQL-statement for execution
ifx_query - Send Informix query
ifx_textasvarchar - Set the default text mode
ifx_update_blob - Updates the content of the blob object
ifx_update_char - Updates the content of the char object
ignore_user_abort - Set whether a client disconnect should abort script execution 
Image2WBMP - Output image to browser or file
ImageAlphaBlending - Set the blending mode for an image
ImageArc - Draw a partial ellipse
ImageChar - Draw a character horizontally
ImageCharUp - Draw a character vertically
ImageColorAllocate - Allocate a color for an image
ImageColorAt - Get the index of the color of a pixel
ImageColorClosest - Get the index of the closest color to the specified color 
ImageColorClosestAlpha - Get the index of the closest color to the specified color + alpha 
ImageColorClosestThwb - Get the index of the color which has the hue, white and blackness nearest to the given color 
ImageColorDeAllocate - De-allocate a color for an image 
ImageColorExact - Get the index of the specified color
ImageColorExactAlpha - Get the index of the specified color + alpha
ImageColorResolve - Get the index of the specified color or its closest possible alternative 
ImageColorResolveAlpha - Get the index of the specified color + alpha or its closest possible alternative 
ImageColorSet - Set the color for the specified palette index 
ImageColorsForIndex - Get the colors for an index
ImageColorsTotal - Find out the number of colors in an image's palette 
ImageColorTransparent - Define a color as transparent
ImageCopy - Copy part of an image 
ImageCopyMerge - Copy and merge part of an image 
ImageCopyMergeGray - Copy and merge part of an image with gray scale 
ImageCopyResampled - Copy and resize part of an image with resampling
ImageCopyResized - Copy and resize part of an image
ImageCreate - Create a new palette based image
ImageCreateFromGD - Create a new image from GD file or URL 
ImageCreateFromGD2 - Create a new image from GD2 file or URL 
ImageCreateFromGD2Part - Create a new image from a given part of GD2 file or URL 
ImageCreateFromGIF - Create a new image from file or URL
ImageCreateFromJPEG - Create a new image from file or URL
ImageCreateFromPNG - Create a new image from file or URL
ImageCreateFromString - Create a new image from the image stream in the string
ImageCreateFromWBMP - Create a new image from file or URL
ImageCreateFromXBM - Create a new image from file or URL
ImageCreateFromXPM - Create a new image from file or URL
ImageCreateTrueColor - Create a new TRUE color image
ImageDashedLine - Draw a dashed line
ImageDestroy - Destroy an image
ImageEllipse - Draw an ellipse
ImageFill - Flood fill
ImageFilledArc - Draw a partial ellipse and fill it
ImageFilledEllipse - Draw a filled ellipse
ImageFilledPolygon - Draw a filled polygon
ImageFilledRectangle - Draw a filled rectangle
ImageFillToBorder - Flood fill to specific color
ImageFontHeight - Get font height
ImageFontWidth - Get font width
ImageFtBBox - Give the bounding box of a text using fonts via freetype2 
ImageFtText - Write text to the image using fonts using FreeType 2 
ImageGammaCorrect - Apply a gamma correction to a GD image 
ImageGD - Output GD image to browser or file 
ImageGD2 - Output GD2 image to browser or file 
ImageGIF - Output image to browser or file
ImageInterlace - Enable or disable interlace
ImageJPEG - Output image to browser or file
ImageLine - Draw a line
ImageLoadFont - Load a new font
ImagePaletteCopy - Copy the palette from one image to another
ImagePNG - Output a PNG image to either the browser or a file 
ImagePolygon - Draw a polygon
ImagePSBBox - Give the bounding box of a text rectangle using PostScript Type1 fonts 
ImagePSEncodeFont - Change the character encoding vector of a font 
ImagePsExtendFont - Extend or condense a font 
ImagePSFreeFont - Free memory used by a PostScript Type 1 font
ImagePSLoadFont - Load a PostScript Type 1 font from file
ImagePsSlantFont - Slant a font 
ImagePSText - To draw a text string over an image using PostScript Type1 fonts 
ImageRectangle - Draw a rectangle
ImageSetBrush - Set the brush image for line drawing
ImageSetPixel - Set a single pixel
ImageSetStyle - Set the style for line drawing 
ImageSetThickness - Set the thickness for line drawing
ImageSetTile - Set the tile image for filling
ImageString - Draw a string horizontally
ImageStringUp - Draw a string vertically
ImageSX - Get image width
ImageSY - Get image height
ImageTrueColorToPalette - Convert a TRUE color image to a palette image
ImageTTFBBox - Give the bounding box of a text using TypeType fonts 
ImageTTFText - Write text to the image using TrueType fonts 
ImageTypes - Return the image types supported by this PHP build 
ImageWBMP - Output image to browser or file
imap_8bit - Convert an 8bit string to a quoted-printable string 
imap_alerts - This function returns all IMAP alert messages (if any) that have occurred during this page request or since the alert stack was reset 
imap_append - Append a string message to a specified mailbox 
imap_base64 - Decode BASE64 encoded text
imap_binary - Convert an 8bit string to a base64 string 
imap_body - Read the message body
imap_bodystruct - Read the structure of a specified body section of a specific message 
imap_check - Check current mailbox
imap_clearflag_full - Clears flags on messages
imap_close - Close an IMAP stream
imap_createmailbox - Create a new mailbox
imap_delete - Mark a messge for deletion from current mailbox 
imap_deletemailbox - Delete a mailbox
imap_errors - This function returns all of the IMAP errors (if any) that have occurred during this page request or since the error stack was reset. 
imap_expunge - Delete all messages marked for deletion
imap_fetchbody - Fetch a particular section of the body of the message 
imap_fetchheader - Returns header for a message
imap_fetchstructure - Read the structure of a particular message 
imap_fetch_overview - Read an overview of the information in the headers of the given message 
imap_getmailboxes - Read the list of mailboxes, returning detailed information on each one 
imap_getsubscribed - List all the subscribed mailboxes
imap_get_quota - Retrieve the quota level settings, and usage statics per mailbox 
imap_header - Read the header of the message
imap_headerinfo - Read the header of the message
imap_headers - Returns headers for all messages in a mailbox 
imap_last_error - This function returns the last IMAP error (if any) that occurred during this page request 
imap_listmailbox - Read the list of mailboxes
imap_listsubscribed - List all the subscribed mailboxes
imap_mail - Send an email message 
imap_mailboxmsginfo - Get information about the current mailbox
imap_mail_compose - Create a MIME message based on given envelope and body sections 
imap_mail_copy - Copy specified messages to a mailbox
imap_mail_move - Move specified messages to a mailbox
imap_mime_header_decode - Decode MIME header elements
imap_msgno - This function returns the message sequence number for the given UID 
imap_num_msg - Gives the number of messages in the current mailbox 
imap_num_recent - Gives the number of recent messages in current mailbox
imap_open - Open an IMAP stream to a mailbox
imap_ping - Check if the IMAP stream is still active
imap_popen - Open a persistant IMAP stream to a mailbox 
imap_qprint - Convert a quoted-printable string to an 8 bit string
imap_renamemailbox - Rename an old mailbox to new mailbox
imap_reopen - Reopen IMAP stream to new mailbox
imap_rfc822_parse_adrlist - Parses an address string
imap_rfc822_parse_headers - Parse mail headers from a string
imap_rfc822_write_address - Returns a properly formatted email address given the mailbox, host, and personal info. 
imap_scanmailbox - Read the list of mailboxes, takes a string to search for in the text of the mailbox 
imap_search - This function returns an array of messages matching the given search criteria 
imap_setacl - Sets the ACL for a giving mailbox 
imap_setflag_full - Sets flags on messages
imap_set_quota - Sets a quota for a given mailbox
imap_sort - Sort an array of message headers
imap_status - This function returns status information on a mailbox other than the current one 
imap_subscribe - Subscribe to a mailbox
imap_thread - Return threaded by REFERENCES tree 
imap_uid - This function returns the UID for the given message sequence number 
imap_undelete - Unmark the message which is marked deleted 
imap_unsubscribe - Unsubscribe from a mailbox
imap_utf7_decode - Decodes a modified UTF-7 encoded string. 
imap_utf7_encode - Converts 8bit data to modified UTF-7 text. 
imap_utf8 - Converts text to UTF8 
implode - Join array elements with a string
import_request_variables - Import GET/POST/Cookie variables into the global scope
ingres_autocommit - Switch autocommit on or off
ingres_close - Close an Ingres II database connection
ingres_commit - Commit a transaction
ingres_connect - Open a connection to an Ingres II database 
ingres_fetch_array - Fetch a row of result into an array
ingres_fetch_object - Fetch a row of result into an object.
ingres_fetch_row - Fetch a row of result into an enumerated array 
ingres_field_length - Get the length of a field
ingres_field_name - Get the name of a field in a query result.
ingres_field_nullable - Test if a field is nullable
ingres_field_precision - Get the precision of a field
ingres_field_scale - Get the scale of a field
ingres_field_type - Get the type of a field in a query result 
ingres_num_fields - Get the number of fields returned by the last query 
ingres_num_rows - Get the number of rows affected or returned by the last query 
ingres_pconnect - Open a persistent connection to an Ingres II database 
ingres_query - Send a SQL query to Ingres II
ingres_rollback - Roll back a transaction
ini_alter - Changes the value of a configuration option 
ini_get - Gets the value of a configuration option
ini_get_all - Gets all configuration options
ini_restore - Restores the value of a configuration option
ini_set - Sets the value of a configuration option
intval - Get integer value of a variable
in_array - Return TRUE if a value exists in an array
ip2long - Converts a string containing an (IPv4) Internet Protocol dotted address into a proper address. 
iptcembed - Embed binary IPTC data into a JPEG image. 
iptcparse - Parse a binary IPTC http://www.iptc.org/ block into single tags. 
ircg_channel_mode - Set channel mode flags for user 
ircg_disconnect - Close connection to server 
ircg_fetch_error_msg - Returns the error from previous ircg operation 
ircg_get_username - Get username for connection 
ircg_html_encode - Encodes HTML preserving output 
ircg_ignore_add - Add a user to your ignore list on a server 
ircg_ignore_del - Remove a user from your ignore list on a server 
ircg_is_conn_alive - Check connection status 
ircg_join - Join a channel on a connected server 
ircg_kick - Kick a user out of a channel on server 
ircg_lookup_format_messages - Select a set of format strings for display of IRC messages 
ircg_msg - Send message to channel or user on server 
ircg_nick - Change nickname on server 
ircg_nickname_escape - Encode special characters in nickname to be IRC-compliant 
ircg_nickname_unescape - Decodes encoded nickname 
ircg_notice - Send a notice to a user on server 
ircg_part - Leave a channel on server 
ircg_pconnect - Connect to an IRC server 
ircg_register_format_messages - Register a set of format strings for display of IRC messages 
ircg_set_current - Set current connection for output 
ircg_set_file - Set logfile for connection 
ircg_set_on_die - Set hostaction to be execute when connection dies 
ircg_topic - Set topic for channel on server 
ircg_whois - Query user information for nick on server 
isset - Determine whether a variable is set
is_array - Finds whether a variable is an array
is_bool - Finds out whether a variable is a boolean 
is_callable - Find out whether the argument is a valid callable construct 
is_dir - Tells whether the filename is a directory
is_double - Alias of is_float
is_executable - Tells whether the filename is executable
is_file - Tells whether the filename is a regular file 
is_float - Finds whether a variable is a float
is_int - Find whether a variable is an integer
is_integer - Alias of is_int
is_link - Tells whether the filename is a symbolic link 
is_long - Alias of is_int
is_null - Finds whether a variable is NULL 
is_numeric - Finds whether a variable is a number or a numeric string 
is_object - Finds whether a variable is an object
is_readable - Tells whether the filename is readable 
is_real - Alias of is_float
is_resource - Finds whether a variable is a resource 
is_scalar - Finds whether a variable is a scalar 
is_string - Finds whether a variable is a string
is_subclass_of - Determines if an object belongs to a subclass of the specified class 
is_uploaded_file - Tells whether the file was uploaded via HTTP POST.
is_writable - Tells whether the filename is writable
is_writeable - Tells whether the filename is writable
java_last_exception_clear - Clear last Java exception
java_last_exception_get - Get last Java exception
JDDayOfWeek - Returns the day of the week
JDMonthName - Returns a month name
JDToFrench - Converts a Julian Day Count to the French Republican Calendar 
JDToGregorian - Converts Julian Day Count to Gregorian date
JDToJewish - Converts a Julian Day Count to the Jewish Calendar 
JDToJulian - Converts a Julian Day Count to a Julian Calendar Date 
jdtounix - Convert Julian Day to UNIX timestamp
JewishToJD - Converts a date in the Jewish Calendar to Julian Day Count 
join - Join array elements with a string
JPEG2WBMP - Convert JPEG image file to WBMP image file 
JulianToJD - Converts a Julian Calendar date to Julian Day Count 
key - Fetch a key from an associative array
krsort - Sort an array by key in reverse order
ksort - Sort an array by key
lcg_value - Combined linear congruential generator
ldap_8859_to_t61 - Translate 8859 characters to t61 characters 
ldap_add - Add entries to LDAP directory
ldap_bind - Bind to LDAP directory
ldap_close - Close link to LDAP server
ldap_compare - Compare value of attribute found in entry specified with DN
ldap_connect - Connect to an LDAP server
ldap_count_entries - Count the number of entries in a search
ldap_delete - Delete an entry from a directory
ldap_dn2ufn - Convert DN to User Friendly Naming format
ldap_err2str - Convert LDAP error number into string error message 
ldap_errno - Return the LDAP error number of the last LDAP command 
ldap_error - Return the LDAP error message of the last LDAP command 
ldap_explode_dn - Splits DN into its component parts
ldap_first_attribute - Return first attribute
ldap_first_entry - Return first result id
ldap_first_reference - Return first reference 
ldap_free_result - Free result memory
ldap_get_attributes - Get attributes from a search result entry
ldap_get_dn - Get the DN of a result entry
ldap_get_entries - Get all result entries
ldap_get_option - Get the current value for given option
ldap_get_values - Get all values from a result entry
ldap_get_values_len - Get all binary values from a result entry
ldap_list - Single-level search
ldap_modify - Modify an LDAP entry
ldap_mod_add - Add attribute values to current attributes
ldap_mod_del - Delete attribute values from current attributes
ldap_mod_replace - Replace attribute values with new ones
ldap_next_attribute - Get the next attribute in result
ldap_next_entry - Get next result entry
ldap_next_reference - Get next reference 
ldap_parse_reference - Extract information from reference entry 
ldap_parse_result - Extract information from result 
ldap_read - Read an entry
ldap_rename - Modify the name of an entry
ldap_search - Search LDAP tree
ldap_set_option - Set the value of the given option
ldap_set_rebind_proc - Set a callback function to do re-binds on referral chasing. 
ldap_sort - Sort LDAP result entries 
ldap_start_tls - Start TLS 
ldap_t61_to_8859 - Translate t61 characters to 8859 characters 
ldap_unbind - Unbind from LDAP directory
leak - Leak memory
levenshtein - Calculate Levenshtein distance between two strings 
link - Create a hard link
linkinfo - Gets information about a link
list - Assign variables as if they were an array 
localeconv - Get numeric formatting information
localtime - Get the local time
log - Natural logarithm
log10 - Base-10 logarithm
log1p - Returns log(1 + number), computed in a way that accurate even when the val ue of number is close to zero 
long2ip - Converts an (IPv4) Internet network address into a string in Internet standard dotted format 
lstat - Gives information about a file or symbolic link 
ltrim - Strip whitespace from the beginning of a string 
mail - send mail
mailparse_determine_best_xfer_encoding - Figures out the best way of encoding the content read from the file pointer fp, which must be seek-able 
mailparse_msg_create - Returns a handle that can be used to parse a message 
mailparse_msg_extract_part - Extracts/decodes a message section. If callbackfunc is not specified, the contents will be sent to "stdout" 
mailparse_msg_extract_part_file - Extracts/decodes a message section, decoding the transfer encoding 
mailparse_msg_free - Frees a handle allocated by mailparse_msg_crea
mailparse_msg_get_part - Returns a handle on a given section in a mimemessage 
mailparse_msg_get_part_data - Returns an associative array of info about the message 
mailparse_msg_get_structure - Returns an array of mime section names in the supplied message 
mailparse_msg_parse - Incrementally parse data into buffer 
mailparse_msg_parse_file - Parse file and return a resource representing the structure 
mailparse_rfc822_parse_addresses - Parse addresses and returns a hash containing that data 
mailparse_stream_encode - Streams data from source file pointer, apply encoding and write to destfp 
mailparse_uudecode_all - Scans the data from fp and extract each embedded uuencoded file. Returns an array listing filename information 
max - Find highest value
mb_convert_encoding - Convert character encoding
mb_convert_kana - Convert "kana" one from another ("zen-kaku" ,"han-kaku" and more) 
mb_convert_variables - Convert character code in variable(s)
mb_decode_mimeheader - Decode string in MIME header field
mb_decode_numericentity - Decode HTML numeric string reference to character 
mb_detect_encoding - Detect character encoding
mb_detect_order - Set/Get character encoding detection order 
mb_encode_mimeheader - Encode string for MIME header
mb_encode_numericentity - Encode character to HTML numeric string reference 
mb_get_info - Get internal settings of mbstring
mb_http_input - Detect HTTP input character encoding
mb_http_output - Set/Get HTTP output character encoding
mb_internal_encoding - Set/Get internal character encoding 
mb_language - Set/Get current language 
mb_output_handler - Callback function converts character encoding in output buffer 
mb_parse_str - Parse GET/POST/COOKIE data and set global variable 
mb_preferred_mime_name - Get MIME charset string
mb_send_mail - Send encoded mail. 
mb_strcut - Get part of string
mb_strimwidth - Get truncated string with specified width
mb_strlen - Get string length
mb_strpos - Find position of first occurrence of string in a string 
mb_strrpos - Find position of last occurrence of a string in a string 
mb_strwidth - Return width of string
mb_substitute_character - Set/Get substitution character
mb_substr - Get part of string
mcal_append_event - Store a new event into an MCAL calendar
mcal_close - Close an MCAL stream
mcal_create_calendar - Create a new MCAL calendar 
mcal_date_compare - Compares two dates
mcal_date_valid - Returns TRUE if the given year, month, day is a valid date 
mcal_days_in_month - Returns the number of days in the given month 
mcal_day_of_week - Returns the day of the week of the given date 
mcal_day_of_year - Returns the day of the year of the given date 
mcal_delete_calendar - Delete an MCAL calendar 
mcal_delete_event - Delete an event from an MCAL calendar
mcal_event_add_attribute - Adds an attribute and a value to the streams global event structure 
mcal_event_init - Initializes a streams global event structure 
mcal_event_set_alarm - Sets the alarm of the streams global event structure 
mcal_event_set_category - Sets the category of the streams global event structure 
mcal_event_set_class - Sets the class of the streams global event structure 
mcal_event_set_description - Sets the description of the streams global event structure 
mcal_event_set_end - Sets the end date and time of the streams global event structure 
mcal_event_set_recur_daily - Sets the recurrence of the streams global event structure 
mcal_event_set_recur_monthly_mday - Sets the recurrence of the streams global event structure 
mcal_event_set_recur_monthly_wday - Sets the recurrence of the streams global event structure 
mcal_event_set_recur_none - Sets the recurrence of the streams global event structure 
mcal_event_set_recur_weekly - Sets the recurrence of the streams global event structure 
mcal_event_set_recur_yearly - Sets the recurrence of the streams global event structure 
mcal_event_set_start - Sets the start date and time of the streams global event structure 
mcal_event_set_title - Sets the title of the streams global event structure 
mcal_expunge - Deletes all events marked for being expunged. 
mcal_fetch_current_stream_event - Returns an object containing the current streams event structure 
mcal_fetch_event - Fetches an event from the calendar stream 
mcal_is_leap_year - Returns if the given year is a leap year or not 
mcal_list_alarms - Return a list of events that has an alarm triggered at the given datetime 
mcal_list_events - Return a list of IDs for a date or a range of dates. 
mcal_next_recurrence - Returns the next recurrence of the event
mcal_open - Opens up an MCAL connection
mcal_popen - Opens up a persistent MCAL connection
mcal_rename_calendar - Rename an MCAL calendar 
mcal_reopen - Reopens an MCAL connection
mcal_snooze - Turn off an alarm for an event
mcal_store_event - Modify an existing event in an MCAL calendar
mcal_time_valid - Returns TRUE if the given year, month, day is a valid time 
mcal_week_of_year - Returns the week number of the given date 
mcrypt_cbc - Encrypt/decrypt data in CBC mode
mcrypt_cfb - Encrypt/decrypt data in CFB mode
mcrypt_create_iv - Create an initialization vector (IV) from a random source 
mcrypt_decrypt - Decrypts crypttext with given parameters
mcrypt_ecb - Encrypt/decrypt data in ECB mode
mcrypt_encrypt - Encrypts plaintext with given parameters
mcrypt_enc_get_algorithms_name - Returns the name of the opened algorithm
mcrypt_enc_get_block_size - Returns the blocksize of the opened algorithm
mcrypt_enc_get_iv_size - Returns the size of the IV of the opened algorithm
mcrypt_enc_get_key_size - Returns the maximum supported keysize of the opened mode
mcrypt_enc_get_modes_name - Returns the name of the opened mode
mcrypt_enc_get_supported_key_sizes - Returns an array with the supported keysizes of the opened algorithm
mcrypt_enc_is_block_algorithm - Checks whether the algorithm of the opened mode is a block algorithm
mcrypt_enc_is_block_algorithm_mode - Checks whether the encryption of the opened mode works on blocks
mcrypt_enc_is_block_mode - Checks whether the opened mode outputs blocks
mcrypt_enc_self_test - This function runs a self test on the opened module
mcrypt_generic - This function encrypts data
mcrypt_generic_deinit - This function terminates encrypt specified by the descriptor td 
mcrypt_generic_end - This function terminates encryption
mcrypt_generic_init - This function initializes all buffers needed for encryption
mcrypt_get_block_size - Get the block size of the specified cipher
mcrypt_get_cipher_name - Get the name of the specified cipher
mcrypt_get_iv_size - Returns the size of the IV belonging to a specific cipher/mode combination
mcrypt_get_key_size - Get the key size of the specified cipher
mcrypt_list_algorithms - Get an array of all supported ciphers
mcrypt_list_modes - Get an array of all supported modes
mcrypt_module_close - Free the descriptor td 
mcrypt_module_get_algo_block_size - Returns the blocksize of the specified algorithm
mcrypt_module_get_algo_key_size - Returns the maximum supported keysize of the opened mode
mcrypt_module_get_supported_key_sizes - Returns an array with the supported keysizes of the opened algorithm
mcrypt_module_is_block_algorithm - This function checks whether the specified algorithm is a block algorithm
mcrypt_module_is_block_algorithm_mode - This function returns if the the specified module is a block algorithm or not
mcrypt_module_is_block_mode - This function returns if the the specified mode outputs blocks or not
mcrypt_module_open - This function opens the module of the algorithm and the mode to be used
mcrypt_module_self_test - This function runs a self test on the specified module
mcrypt_ofb - Encrypt/decrypt data in OFB mode
md5 - Calculate the md5 hash of a string
md5_file - Calculates the md5 hash of a given filename
mdecrypt_generic - This function decrypts data
metaphone - Calculate the metaphone key of a string
method_exists - Checks if the class method exists
mhash - Compute hash
mhash_count - Get the highest available hash id
mhash_get_block_size - Get the block size of the specified hash
mhash_get_hash_name - Get the name of the specified hash
mhash_keygen_s2k - Generates a key
microtime - Return current UNIX timestamp with microseconds
min - Find lowest value
ming_setcubicthreshold - Set cubic threshold (?) 
ming_setscale - Set scale (?) 
ming_useswfversion - Use SWF version (?) 
mkdir - Makes directory
mktime - Get UNIX timestamp for a date
move_uploaded_file - Moves an uploaded file to a new location.
msession_connect - Connect to msession server 
msession_count - Get session count 
msession_create - Create a session 
msession_destroy - Destroy a session 
msession_disconnect - Close connection to msession server 
msession_find - Find value 
msession_get - Get value from session 
msession_getdata - Get data ... ? 
msession_get_array - Get array of ... ? 
msession_inc - Increment value in session 
msession_list - List ... ? 
msession_listvar - List sessions with variable
msession_lock - Lock a session 
msession_plugin - Call an escape function within the msession personality plugin
msession_randstr - Get random string 
msession_set - Set value in session 
msession_setdata - Set data ... ?
msession_set_array - Set array of ... 
msession_timeout - Set/get session timeout 
msession_uniq - Get uniq id 
msession_unlock - Unlock a session 
msql - Send mSQL query
msql_affected_rows - Returns number of affected rows
msql_close - Close mSQL connection
msql_connect - Open mSQL connection
msql_createdb - Create mSQL database
msql_create_db - Create mSQL database
msql_data_seek - Move internal row pointer
msql_dbname - Get current mSQL database name
msql_dropdb - Drop (delete) mSQL database
msql_drop_db - Drop (delete) mSQL database
msql_error - Returns error message of last msql call
msql_fetch_array - Fetch row as array
msql_fetch_field - Get field information
msql_fetch_object - Fetch row as object
msql_fetch_row - Get row as enumerated array
msql_fieldflags - Get field flags
msql_fieldlen - Get field length
msql_fieldname - Get field name
msql_fieldtable - Get table name for field
msql_fieldtype - Get field type
msql_field_seek - Set field offset
msql_freeresult - Free result memory
msql_free_result - Free result memory
msql_listdbs - List mSQL databases on server
msql_listfields - List result fields
msql_listtables - List tables in an mSQL database
msql_list_dbs - List mSQL databases on server
msql_list_fields - List result fields
msql_list_tables - List tables in an mSQL database
msql_numfields - Get number of fields in result
msql_numrows - Get number of rows in result
msql_num_fields - Get number of fields in result
msql_num_rows - Get number of rows in result
msql_pconnect - Open persistent mSQL connection
msql_query - Send mSQL query
msql_regcase - Make regular expression for case insensitive match 
msql_result - Get result data
msql_selectdb - Select mSQL database
msql_select_db - Select mSQL database
msql_tablename - Get table name of field
mssql_bind - Adds a parameter to a stored procedure or a remote stored procedure 
mssql_close - Close MS SQL Server connection
mssql_connect - Open MS SQL server connection
mssql_data_seek - Move internal row pointer
mssql_execute - Executes a stored procedure on a MS-SQL server database 
mssql_fetch_array - Fetch row as array
mssql_fetch_assoc - Returns an associative array of the current row in the result set specified by result_id 
mssql_fetch_batch - Returns the next batch of records 
mssql_fetch_field - Get field information
mssql_fetch_object - Fetch row as object
mssql_fetch_row - Get row as enumerated array
mssql_field_length - Get the length of a field
mssql_field_name - Get the name of a field
mssql_field_seek - Set field offset
mssql_field_type - Get the type of a field
mssql_free_result - Free result memory
mssql_get_last_message - Returns the last message from server (over min_message_severity?) 
mssql_guid_string - Converts a 16 byte binary GUID to a string 
mssql_init - Initializes a stored procedure or a remote stored procedure 
mssql_min_error_severity - Sets the lower error severity
mssql_min_message_severity - Sets the lower message severity
mssql_next_result - Move the internal result pointer to the next result
mssql_num_fields - Get number of fields in result
mssql_num_rows - Get number of rows in result
mssql_pconnect - Open persistent MS SQL connection
mssql_query - Send MS SQL query
mssql_result - Get result data
mssql_rows_affected - Returns the number of records affected by the query 
mssql_select_db - Select MS SQL database
mt_getrandmax - Show largest possible random value
mt_rand - Generate a better random value
mt_srand - Seed the better random number generator
muscat_close - Shuts down the muscat session and releases any memory back to php. [Not back to the system, note!] 
muscat_get - Gets a line back from the core muscat api. Returns a literal FALSE when there is no more to get (as opposed to ""). Use === FALSE or !== FALSE to check for this 
muscat_give - Sends string to the core muscat api 
muscat_setup - Creates a new muscat session and returns the handle. Size is the ammount of memory in bytes to allocate for muscat muscat_dir is the muscat installation dir e.g. "/usr/local/empower", it defaults to the compile time muscat directory 
muscat_setup_net - Creates a new muscat session and returns the handle. muscat_host is the hostname to connect to port is the port number to connect to - actually takes exactly the same args as fsockopen 
mysql_affected_rows - Get number of affected rows in previous MySQL operation
mysql_change_user - Change logged in user of the active connection 
mysql_close - Close MySQL connection
mysql_connect - Open a connection to a MySQL Server
mysql_create_db - Create a MySQL database
mysql_data_seek - Move internal result pointer
mysql_db_name - Get result data
mysql_db_query - Send a MySQL query
mysql_drop_db - Drop (delete) a MySQL database
mysql_errno - Returns the numerical value of the error message from previous MySQL operation 
mysql_error - Returns the text of the error message from previous MySQL operation 
mysql_escape_string - Escapes a string for use in a mysql_query. 
mysql_fetch_array - Fetch a result row as an associative array, a numeric array, or both. 
mysql_fetch_assoc - Fetch a result row as an associative array 
mysql_fetch_field - Get column information from a result and return as an object 
mysql_fetch_lengths - Get the length of each output in a result 
mysql_fetch_object - Fetch a result row as an object
mysql_fetch_row - Get a result row as an enumerated array
mysql_field_flags - Get the flags associated with the specified field in a result 
mysql_field_len - Returns the length of the specified field 
mysql_field_name - Get the name of the specified field in a result 
mysql_field_seek - Set result pointer to a specified field offset 
mysql_field_table - Get name of the table the specified field is in 
mysql_field_type - Get the type of the specified field in a result 
mysql_free_result - Free result memory
mysql_get_client_info - Get MySQL client info
mysql_get_host_info - Get MySQL host info
mysql_get_proto_info - Get MySQL protocol info
mysql_get_server_info - Get MySQL server info
mysql_insert_id - Get the id generated from the previous INSERT operation 
mysql_list_dbs - List databases available on a MySQL server 
mysql_list_fields - List MySQL result fields
mysql_list_tables - List tables in a MySQL database
mysql_num_fields - Get number of fields in result
mysql_num_rows - Get number of rows in result
mysql_pconnect - Open a persistent connection to a MySQL server 
mysql_query - Send a MySQL query
mysql_result - Get result data
mysql_select_db - Select a MySQL database
mysql_tablename - Get table name of field
mysql_unbuffered_query - Send an SQL query to MySQL, without fetching and buffering the result rows 
natcasesort - Sort an array using a case insensitive "natural order" algorithm 
natsort - Sort an array using a "natural order" algorithm 
ncurses_addch - Add character at current position and advance cursor 
ncurses_addchnstr - Add attributed string with specified length at current position 
ncurses_addchstr - Add attributed string at current position 
ncurses_addnstr - Add string with specified length at current position 
ncurses_addstr - Output text at current position 
ncurses_assume_default_colors - Define default colors for color 0 
ncurses_attroff - Turn off the given attributes 
ncurses_attron - Turn on the given attributes 
ncurses_attrset - Set given attributes 
ncurses_baudrate - Returns baudrate of terminal 
ncurses_beep - Let the terminal beep 
ncurses_bkgd - Set background property for terminal screen 
ncurses_bkgdset - Control screen background 
ncurses_border - Draw a border around the screen using attributed characters 
ncurses_can_change_color - Check if we can change terminals colors 
ncurses_cbreak - Switch of input buffering 
ncurses_clear - Clear screen 
ncurses_clrtobot - Clear screen from current position to bottom 
ncurses_clrtoeol - Clear screen from current position to end of line 
ncurses_color_set - Set fore- and background color 
ncurses_curs_set - Set cursor state 
ncurses_define_key - Define a keycode 
ncurses_def_prog_mode - Saves terminals (program) mode
ncurses_def_shell_mode - Saves terminals (shell) mode
ncurses_delay_output - Delay output on terminal using padding characters 
ncurses_delch - Delete character at current position, move rest of line left 
ncurses_deleteln - Delete line at current position, move rest of screen up 
ncurses_delwin - Delete a ncurses window 
ncurses_doupdate - Write all prepared refreshes to terminal 
ncurses_echo - Activate keyboard input echo 
ncurses_echochar - Single character output including refresh 
ncurses_end - Stop using ncurses, clean up the screen 
ncurses_erase - Erase terminal screen 
ncurses_erasechar - Returns current erase character 
ncurses_filter - 
ncurses_flash - Flash terminal screen (visual bell) 
ncurses_flushinp - Flush keyboard input buffer 
ncurses_getch - Read a character from keyboard 
ncurses_getmouse - Reads mouse event
ncurses_halfdelay - Put terminal into halfdelay mode 
ncurses_has_colors - Check if terminal has colors 
ncurses_has_ic - Check for insert- and delete-capabilities 
ncurses_has_il - Check for line insert- and delete-capabilities 
ncurses_has_key - Check for presence of a function key on terminal keyboard 
ncurses_hline - Draw a horizontal line at current position using an attributed character and max. n characters long 
ncurses_inch - Get character and attribute at current position 
ncurses_init - Initialize ncurses 
ncurses_init_color - Set new RGB value for color 
ncurses_init_pair - Allocate a color pair 
ncurses_insch - Insert character moving rest of line including character at current position 
ncurses_insdelln - Insert lines before current line scrolling down (negative numbers delete and scroll up) 
ncurses_insertln - Insert a line, move rest of screen down 
ncurses_insstr - Insert string at current position, moving rest of line right 
ncurses_instr - Reads string from terminal screen 
ncurses_isendwin - Ncurses is in endwin mode, normal screen output may be performed 
ncurses_keyok - Enable or disable a keycode 
ncurses_killchar - Returns current line kill character 
ncurses_longname - Returns terminals description
ncurses_mouseinterval - Set timeout for mouse button clicks 
ncurses_mousemask - Sets mouse options
ncurses_move - Move output position 
ncurses_mvaddch - Move current position and add character 
ncurses_mvaddchnstr - Move position and add attrributed string with specified length 
ncurses_mvaddchstr - Move position and add attributed string 
ncurses_mvaddnstr - Move position and add string with specified length 
ncurses_mvaddstr - Move position and add string 
ncurses_mvcur - Move cursor immediately 
ncurses_mvdelch - Move position and delete character, shift rest of line left 
ncurses_mvgetch - Move position and get character at new position 
ncurses_mvhline - Set new position and draw a horizontal line using an attributed character and max. n characters long 
ncurses_mvinch - Move position and get attributed character at new position 
ncurses_mvvline - Set new position and draw a vertical line using an attributed character and max. n characters long 
ncurses_mvwaddstr - Add string at new position in window 
ncurses_napms - Sleep 
ncurses_newwin - Create a new window 
ncurses_nl - Translate newline and carriage return / line feed 
ncurses_nocbreak - Switch terminal to cooked mode 
ncurses_noecho - Switch off keyboard input echo 
ncurses_nonl - Do not translate newline and carriage return / line feed 
ncurses_noqiflush - Do not flush on signal characters
ncurses_noraw - Switch terminal out of raw mode 
ncurses_putp - 
ncurses_qiflush - Flush on signal characters 
ncurses_raw - Switch terminal into raw mode 
ncurses_refresh - Refresh screen 
ncurses_resetty - Restores saved terminal state 
ncurses_savetty - Saves terminal state 
ncurses_scrl - Scroll window content up or down without changing current position 
ncurses_scr_dump - Dump screen content to file 
ncurses_scr_init - Initialize screen from file dump 
ncurses_scr_restore - Restore screen from file dump 
ncurses_scr_set - Inherit screen from file dump 
ncurses_slk_attr - Returns current soft label key attribute
ncurses_slk_attroff - 
ncurses_slk_attron - 
ncurses_slk_attrset - 
ncurses_slk_clear - Clears soft labels from screen
ncurses_slk_color - Sets color for soft label keys
ncurses_slk_init - Initializes soft label key functions
ncurses_slk_noutrefresh - Copies soft label keys to virtual screen
ncurses_slk_refresh - Copies soft label keys to screen
ncurses_slk_restore - Restores soft label keys
ncurses_slk_touch - Fources output when ncurses_slk_noutrefresh is performed
ncurses_standend - Stop using 'standout' attribute 
ncurses_standout - Start using 'standout' attribute 
ncurses_start_color - Start using colors 
ncurses_termattrs - Returns a logical OR of all attribute flags supported by terminal 
ncurses_termname - Returns terminals (short)-name
ncurses_timeout - Set timeout for special key sequences 
ncurses_typeahead - Specify different filedescriptor for typeahead checking 
ncurses_ungetch - Put a character back into the input stream 
ncurses_ungetmouse - Pushes mouse event to queue
ncurses_use_default_colors - Assign terminal default colors to color id -1 
ncurses_use_env - Control use of environment information about terminal size 
ncurses_use_extended_names - Control use of extended names in terminfo descriptions 
ncurses_vidattr - 
ncurses_vline - Draw a vertical line at current position using an attributed character and max. n characters long 
ncurses_wrefresh - Refresh window on terminal screen 
next - Advance the internal array pointer of an array 
ngettext - Plural version of gettext
nl2br - Inserts HTML line breaks before all newlines in a string 
nl_langinfo - Query language and locale information 
notes_body - Open the message msg_number in the specified mailbox on the specified server (leave serv
notes_copy_db - title]) Create a note using form form_name 
notes_create_db - Create a Lotus Notes database 
notes_create_note - Create a note using form form_name 
notes_drop_db - Drop a Lotus Notes database 
notes_find_note - Returns a note id found in database_name. Specify the name of the note. Leaving type bla
notes_header_info - Open the message msg_number in the specified mailbox on the specified server (leave serv
notes_list_msgs - Returns the notes from a selected database_name
notes_mark_read - Mark a note_id as read for the User user_name
notes_mark_unread - Mark a note_id as unread for the User user_name
notes_nav_create - Create a navigator name, in database_name 
notes_search - Find notes that match keywords in database_name
notes_unread - Returns the unread note id's for the current User user_name
notes_version - Get the version Lotus Notes 
number_format - Format a number with grouped thousands
ob_clean - Clean (erase) the output buffer 
ob_end_clean - Clean (erase) the output buffer and turn off output buffering 
ob_end_flush - Flush (send) the output buffer and turn off output buffering 
ob_flush - Flush (send) the output buffer 
ob_get_contents - Return the contents of the output buffer 
ob_get_length - Return the length of the output buffer 
ob_get_level - Return the nesting level of the output buffering mechanism 
ob_gzhandler - ob_start callback function to gzip output buffer 
ob_iconv_handler - Convert character encoding as output buffer handler 
ob_implicit_flush - Turn implicit flush on/off 
ob_start - Turn on output buffering
OCIBindByName - Bind a PHP variable to an Oracle Placeholder 
OCICancel - Cancel reading from cursor
OCICollAppend - Coming soon.
OCICollAssign - Coming soon.
OCICollAssignElem - Coming soon.
OCICollGetElem - Coming soon.
OCICollMax - Coming soon.
OCICollSize - Coming soon.
OCICollTrim - Coming soon.
OCIColumnIsNULL - test whether a result column is NULL
OCIColumnName - Returns the name of a column.
OCIColumnPrecision - Coming soon.
OCIColumnScale - Coming soon.
OCIColumnSize - return result column size
OCIColumnType - Returns the data type of a column.
OCIColumnTypeRaw - Coming soon.
OCICommit - Commits outstanding transactions
OCIDefineByName - Use a PHP variable for the define-step during a SELECT 
OCIError - Return the last error of stmt|conn|global. If no error happened returns FALSE. 
OCIExecute - Execute a statement
OCIFetch - Fetches the next row into result-buffer
OCIFetchInto - Fetches the next row into result-array
OCIFetchStatement - Fetch all rows of result data into an array.
OCIFreeCollection - Coming soon.
OCIFreeCursor - Free all resources associated with a cursor. 
OCIFreeDesc - Deletes a large object descriptor.
OCIFreeStatement - Free all resources associated with a statement. 
OCIInternalDebug - Enables or disables internal debug output. By default it is disabled 
OCILoadLob - Coming soon.
OCILogOff - Disconnects from Oracle
OCILogon - Establishes a connection to Oracle
OCINewCollection - Coming soon.
OCINewCursor - Return a new cursor (Statement-Handle) - use to bind ref-cursors. 
OCINewDescriptor - Initialize a new empty descriptor LOB/FILE (LOB is default) 
OCINLogon - Connect to an Oracle database and log on using a new connection. Returns a new session.
OCINumCols - Return the number of result columns in a statement 
OCIParse - Parse a query and return a statement
OCIPLogon - Connect to an Oracle database and log on using a persistent connection. Returns a new session.
OCIResult - Returns column value for fetched row
OCIRollback - Rolls back outstanding transactions
OCIRowCount - Gets the number of affected rows
OCISaveLob - Coming soon.
OCISaveLobFile - Coming soon.
OCIServerVersion - Return a string containing server version information.
OCISetPrefetch - sets number of rows to be prefetched
OCIStatementType - Return the type of an OCI statement.
OCIWriteLobToFile - Coming soon.
octdec - Octal to decimal
odbc_autocommit - Toggle autocommit behaviour
odbc_binmode - Handling of binary column data
odbc_close - Close an ODBC connection
odbc_close_all - Close all ODBC connections
odbc_columnprivileges - Returns a result identifier that can be used to fetch a list of columns and associated privileges 
odbc_columns - Lists the column names in specified tables. Returns a result identifier containing the information. 
odbc_commit - Commit an ODBC transaction
odbc_connect - Connect to a datasource
odbc_cursor - Get cursorname
odbc_do - Synonym for odbc_exec
odbc_error - Get the last error code
odbc_errormsg - Get the last error message
odbc_exec - Prepare and execute a SQL statement
odbc_execute - Execute a prepared statement
odbc_fetch_array - Fetch a result row as an associative array 
odbc_fetch_into - Fetch one result row into array
odbc_fetch_object - Fetch a result row as an object 
odbc_fetch_row - Fetch a row
odbc_field_len - Get the length (precision) of a field
odbc_field_name - Get the columnname
odbc_field_num - Return column number
odbc_field_precision - Synonym for odbc_field_len
odbc_field_scale - Get the scale of a field
odbc_field_type - Datatype of a field
odbc_foreignkeys - Returns a list of foreign keys in the specified table or a list of foreign keys in other tables that refer to the primary key in the specified table 
odbc_free_result - Free resources associated with a result
odbc_gettypeinfo - Returns a result identifier containing information about data types supported by the data source. 
odbc_longreadlen - Handling of LONG columns
odbc_next_result - Checks if multiple results are avaiable 
odbc_num_fields - Number of columns in a result
odbc_num_rows - Number of rows in a result
odbc_pconnect - Open a persistent database connection
odbc_prepare - Prepares a statement for execution
odbc_primarykeys - Returns a result identifier that can be used to fetch the column names that comprise the primary key for a table 
odbc_procedurecolumns - Retrieve information about parameters to procedures 
odbc_procedures - Get the list of procedures stored in a specific data source. Returns a result identifier containing the information. 
odbc_result - Get result data
odbc_result_all - Print result as HTML table
odbc_rollback - Rollback a transaction
odbc_setoption - Adjust ODBC settings. Returns FALSE if an error occurs, otherwise TRUE. 
odbc_specialcolumns - Returns either the optimal set of columns that uniquely identifies a row in the table or columns that are automatically updated when any value in the row is updated by a transaction 
odbc_statistics - Retrieve statistics about a table
odbc_tableprivileges - Lists tables and the privileges associated with each table 
odbc_tables - Get the list of table names stored in a specific data source. Returns a result identifier containing the information. 
opendir - open directory handle
openlog - Open connection to system logger
openssl_csr_export - Exports a CSR to file or a var 
openssl_csr_export_to_file - Exports a CSR to file or a var 
openssl_csr_new - Generates a privkey and CSR 
openssl_csr_sign - Signs a cert with another CERT 
openssl_error_string - Return openSSL error message
openssl_free_key - Free key resource
openssl_get_privatekey - Prepare a PEM formatted private key for use
openssl_get_publickey - Extract public key from certificate and prepare it for use
openssl_open - Open sealed data
openssl_pkcs7_decrypt - Decrypts an S/MIME encrypted message
openssl_pkcs7_encrypt - Encrypt an S/MIME message
openssl_pkcs7_sign - sign an S/MIME message
openssl_pkcs7_verify - Verifies the signature of an S/MIME signed message
openssl_pkey_export - Gets an exportable representation of a key into a string or file 
openssl_pkey_export_to_file - Gets an exportable representation of a key into a file 
openssl_pkey_new - Generates a new private key 
openssl_private_decrypt - Decrypts data with private key 
openssl_private_encrypt - Encrypts data with private key 
openssl_public_decrypt - Decrypts data with public key 
openssl_public_encrypt - Encrypts data with public key 
openssl_seal - Seal (encrypt) data
openssl_sign - Generate signature
openssl_verify - Verify signature
openssl_x509_checkpurpose - Verifies if a certificate can be used for a particular purpose
openssl_x509_check_private_key - Checks if a private key corresponds to a CERT 
openssl_x509_export - Exports a CERT to file or a var 
openssl_x509_export_to_file - Exports a CERT to file or a var 
openssl_x509_free - Free certificate resource
openssl_x509_parse - Parse an X509 certificate and return the information as an array
openssl_x509_read - Parse an X.509 certificate and return a resource identifier for it
Ora_Bind - bind a PHP variable to an Oracle parameter
Ora_Close - close an Oracle cursor
Ora_ColumnName - get name of Oracle result column
Ora_ColumnSize - get size of Oracle result column
Ora_ColumnType - get type of Oracle result column
Ora_Commit - commit an Oracle transaction
Ora_CommitOff - disable automatic commit
Ora_CommitOn - enable automatic commit
Ora_Do - Parse, Exec, Fetch
Ora_Error - get Oracle error message
Ora_ErrorCode - get Oracle error code
Ora_Exec - execute parsed statement on an Oracle cursor
Ora_Fetch - fetch a row of data from a cursor
Ora_Fetch_Into - Fetch a row into the specified result array
Ora_GetColumn - get data from a fetched column
Ora_Logoff - close an Oracle connection
Ora_Logon - open an Oracle connection
Ora_Numcols - Returns the number of columns
Ora_Numrows - Returns the number of rows
Ora_Open - open an Oracle cursor
Ora_Parse - parse an SQL statement
Ora_pLogon - Open a persistent Oracle connection 
Ora_Rollback - roll back transaction
OrbitEnum - Use CORBA enums
OrbitObject - Access CORBA objects
OrbitStruct - Use CORBA structs
ord - Return ASCII value of character
overload - Enable property and method call overloading for a class
ovrimos_close - Closes the connection to ovrimos
ovrimos_commit - Commits the transaction
ovrimos_connect - Connect to the specified database
ovrimos_cursor - Returns the name of the cursor
ovrimos_exec - Executes an SQL statement
ovrimos_execute - Executes a prepared SQL statement
ovrimos_fetch_into - Fetches a row from the result set
ovrimos_fetch_row - Fetches a row from the result set
ovrimos_field_len - Returns the length of the output column
ovrimos_field_name - Returns the output column name
ovrimos_field_num - Returns the (1-based) index of the output column 
ovrimos_field_type - Returns the (numeric) type of the output column 
ovrimos_free_result - Frees the specified result_id
ovrimos_longreadlen - Specifies how many bytes are to be retrieved from long datatypes 
ovrimos_num_fields - Returns the number of columns
ovrimos_num_rows - Returns the number of rows affected by update operations 
ovrimos_prepare - Prepares an SQL statement
ovrimos_result - Retrieves the output column
ovrimos_result_all - Prints the whole result set as an HTML table 
ovrimos_rollback - Rolls back the transaction
pack - Pack data into binary string.
parse_ini_file - Parse a configuration file
parse_str - Parses the string into variables
parse_url - Parse a URL and return its components
passthru - Execute an external program and display raw output 
pathinfo - Returns information about a file path
Pattern Modifiers - Describes possible modifiers in regex patterns
Pattern Syntax - Describes PCRE regex syntax
pclose - Closes process file pointer
pdf_add_annotation - Deprecated: Adds annotation
pdf_add_bookmark - Adds bookmark for current page
pdf_add_launchlink - Add a launch annotation for current page
pdf_add_locallink - Add a link annotation for current page
pdf_add_note - Add a note annotation for current page
pdf_add_outline - Deprecated: Adds bookmark for current page
pdf_add_pdflink - Adds file link annotation for current page
pdf_add_thumbnail - Adds thumbnail for current page
pdf_add_weblink - Adds weblink for current page
pdf_arc - Draws an arc (counterclockwise)
pdf_arcn - Draws an arc (clockwise)
pdf_attach_file - Adds a file attachement for current page
pdf_begin_page - Starts new page
pdf_begin_pattern - Starts new pattern
pdf_begin_template - Starts new template
pdf_circle - Draws a circle
pdf_clip - Clips to current path
pdf_close - Closes a pdf object
pdf_closepath - Closes path
pdf_closepath_fill_stroke - Closes, fills and strokes current path
pdf_closepath_stroke - Closes path and draws line along path
pdf_close_image - Closes an image
pdf_close_pdi - Close the input PDF document 
pdf_close_pdi_page - Close the page handle 
pdf_concat - Concatenate a matrix to the CTM
pdf_continue_text - Outputs text in next line
pdf_curveto - Draws a curve
pdf_delete - Deletes a PDF object
pdf_endpath - Deprecated: Ends current path
pdf_end_page - Ends a page
pdf_end_pattern - Finish pattern
pdf_end_template - Finish template
pdf_fill - Fills current path
pdf_fill_stroke - Fills and strokes current path
pdf_findfont - Prepare font for later use with pdf_setfont.
pdf_get_buffer - Fetch the buffer containig the generated PDF data.
pdf_get_font - Deprecated: font handling
pdf_get_fontname - Deprecated: font handling
pdf_get_fontsize - Deprecated: font handling
pdf_get_image_height - Returns height of an image
pdf_get_image_width - Returns width of an image
pdf_get_majorversion - Returns the major version number of the PDFlib 
pdf_get_minorversion - Returns the minor version number of the PDFlib 
pdf_get_parameter - Gets certain parameters
pdf_get_pdi_parameter - Get some PDI string parameters
pdf_get_pdi_value - Gets some PDI numerical parameters
pdf_get_value - Gets certain numerical value
pdf_initgraphics - Resets graphic state
pdf_lineto - Draws a line
pdf_makespotcolor - Makes a spotcolor
pdf_moveto - Sets current point
pdf_new - Creates a new pdf object
pdf_open - Deprecated: Open a new pdf object
pdf_open_CCITT - Opens a new image file with raw CCITT data
pdf_open_file - Opens a new pdf object
pdf_open_gif - Deprecated: Opens a GIF image
pdf_open_image - Versatile function for images
pdf_open_image_file - Reads an image from a file
pdf_open_jpeg - Deprecated: Opens a JPEG image
pdf_open_memory_image - Opens an image created with PHP's image functions
pdf_open_pdi - Opens a PDF file 
pdf_open_pdi_page - Prepare a page 
pdf_open_png - Deprecated: Opens a PNG image 
pdf_open_tiff - Deprecated: Opens a TIFF image
pdf_place_image - Places an image on the page
pdf_place_pdi_page - Places an image on the page
pdf_rect - Draws a rectangle
pdf_restore - Restores formerly saved environment
pdf_rotate - Sets rotation
pdf_save - Saves the current environment
pdf_scale - Sets scaling
pdf_setcolor - Sets fill and stroke color
pdf_setdash - Sets dash pattern
pdf_setflat - Sets flatness
pdf_setfont - Set the current font
pdf_setgray - Sets drawing and filling color to gray value
pdf_setgray_fill - Sets filling color to gray value
pdf_setgray_stroke - Sets drawing color to gray value
pdf_setlinecap - Sets linecap parameter
pdf_setlinejoin - Sets linejoin parameter
pdf_setlinewidth - Sets line width
pdf_setmatrix - Sets current transformation matrix
pdf_setmiterlimit - Sets miter limit
pdf_setpolydash - Sets complicated dash pattern
pdf_setrgbcolor - Sets drawing and filling color to rgb color value
pdf_setrgbcolor_fill - Sets filling color to rgb color value
pdf_setrgbcolor_stroke - Sets drawing color to rgb color value
pdf_set_border_color - Sets color of border around links and annotations
pdf_set_border_dash - Sets dash style of border around links and annotations
pdf_set_border_style - Sets style of border around links and annotations
pdf_set_char_spacing - Deprecated: Sets character spacing
pdf_set_duration - Deprecated: Sets duration between pages
pdf_set_font - Deprecated: Selects a font face and size
pdf_set_horiz_scaling - Sets horizontal scaling of text
pdf_set_info - Fills a field of the document information
pdf_set_info_author - Fills the author field of the document 
pdf_set_info_creator - Fills the creator field of the document 
pdf_set_info_keywords - Fills the keywords field of the document 
pdf_set_info_subject - Fills the subject field of the document 
pdf_set_info_title - Fills the title field of the document 
pdf_set_leading - Deprecated: Sets distance between text lines
pdf_set_parameter - Sets certain parameters
pdf_set_text_matrix - Deprecated: Sets the text matrix
pdf_set_text_pos - Sets text position
pdf_set_text_rendering - Deprecated: Determines how text is rendered
pdf_set_text_rise - Deprecated: Sets the text rise
pdf_set_value - Sets certain numerical value
pdf_set_word_spacing - Depriciated: Sets spacing between words
pdf_show - Output text at current position
pdf_show_boxed - Output text in a box
pdf_show_xy - Output text at given position
pdf_skew - Skews the coordinate system
pdf_stringwidth - Returns width of text using current font
pdf_stroke - Draws line along path
pdf_translate - Sets origin of coordinate system
pfpro_cleanup - Shuts down the Payflow Pro library
pfpro_init - Initialises the Payflow Pro library
pfpro_process - Process a transaction with Payflow Pro
pfpro_process_raw - Process a raw transaction with Payflow Pro
pfpro_version - Returns the version of the Payflow Pro software
pfsockopen - Open persistent Internet or Unix domain socket connection 
pg_cancel_query - Cancel async query 
pg_client_encoding - Get the client encoding 
pg_close - Close a PostgreSQL connection
pg_cmdtuples - Returns number of affected records(tuples)
pg_connect - Open a PostgreSQL connection
pg_connection_busy - Get connection is busy or not 
pg_connection_reset - Reset connection (reconnect) 
pg_connection_status - Get connection status 
pg_copy_from - Copy table from array 
pg_copy_to - Copy table to array 
pg_dbname - Get the database name
pg_end_copy - Sync with PostgreSQL backend
pg_errormessage - Get the last error message string of a connection
pg_escape_bytea - Escape binary for bytea type 
pg_escape_string - Escape string for text/char type 
pg_exec - Execute a query
pg_fetch_array - Fetch a row as an array
pg_fetch_object - Fetch a row as an object
pg_fetch_row - Get a row as an enumerated array
pg_fieldisnull - Test if a field is NULL
pg_fieldname - Returns the name of a field
pg_fieldnum - Returns the field number of the named field
pg_fieldprtlen - Returns the printed length
pg_fieldsize - Returns the internal storage size of the named field 
pg_fieldtype - Returns the type name for the corresponding field number 
pg_freeresult - Free result memory
pg_getlastoid - Returns the last object's oid
pg_get_result - Get asynchronous query result 
pg_host - Returns the host name associated with the connection 
pg_last_notice - Returns the last notice message from PostgreSQL server 
pg_loclose - Close a large object
pg_locreate - Create a large object
pg_loexport - Export a large object to file
pg_loimport - Import a large object from file
pg_loopen - Open a large object
pg_loread - Read a large object
pg_loreadall - Read a entire large object and send straight to browser 
pg_lounlink - Delete a large object
pg_lowrite - Write a large object
pg_lo_seek - Seeks position of large object 
pg_lo_tell - Returns current position of large object 
pg_numfields - Returns the number of fields
pg_numrows - Returns the number of rows
pg_options - Get the options associated with the connection
pg_pconnect - Open a persistent PostgreSQL connection
pg_port - Return the port number associated with the connection 
pg_put_line - Send a NULL-terminated string to PostgreSQL backend
pg_result - Returns values from a result resource
pg_result_error - Get error message associated with result 
pg_result_status - Get status of query result 
pg_send_query - Send asynchronous query 
pg_set_client_encoding - Set the client encoding 
pg_trace - Enable tracing a PostgreSQL connection
pg_tty - Return the tty name associated with the connection 
pg_untrace - Disable tracing of a PostgreSQL connection
phpcredits - Prints out the credits for PHP
phpinfo - Outputs lots of PHP information
phpversion - Gets the current PHP version
php_logo_guid - Gets the logo guid
php_sapi_name - Returns the type of interface between web server and PHP 
php_uname - Returns information about the operating system PHP was built on 
pi - Get value of pi
PNG2WBMP - Convert PNG image file to WBMP image file 
popen - Opens process file pointer
pos - Get the current element from an array
posix_ctermid - Get path name of controlling terminal
posix_getcwd - Pathname of current directory
posix_getegid - Return the effective group ID of the current process 
posix_geteuid - Return the effective user ID of the current process 
posix_getgid - Return the real group ID of the current process 
posix_getgrgid - Return info about a group by group id
posix_getgrnam - Return info about a group by name
posix_getgroups - Return the group set of the current process 
posix_getlogin - Return login name
posix_getpgid - Get process group id for job control
posix_getpgrp - Return the current process group identifier 
posix_getpid - Return the current process identifier
posix_getppid - Return the parent process identifier
posix_getpwnam - Return info about a user by username
posix_getpwuid - Return info about a user by user id
posix_getrlimit - Return info about system ressource limits
posix_getsid - Get the current sid of the process
posix_getuid - Return the real user ID of the current process 
posix_isatty - Determine if a file descriptor is an interactive terminal 
posix_kill - Send a signal to a process
posix_mkfifo - Create a fifo special file (a named pipe) 
posix_setegid - Set the effective GID of the current process 
posix_seteuid - Set the effective UID of the current process 
posix_setgid - Set the GID of the current process 
posix_setpgid - set process group id for job control
posix_setsid - Make the current process a session leader
posix_setuid - Set the UID of the current process 
posix_times - Get process times
posix_ttyname - Determine terminal device name
posix_uname - Get system name
pow - Exponential expression
preg_grep - Return array entries that match the pattern 
preg_match - Perform a regular expression match
preg_match_all - Perform a global regular expression match
preg_quote - Quote regular expression characters
preg_replace - Perform a regular expression search and replace
preg_replace_callback - Perform a regular expression search and replace using a callback
preg_split - Split string by a regular expression
prev - Rewind the internal array pointer
print - Output a string
printer_abort - Deletes the printer's spool file
printer_close - Close an open printer connection
printer_create_brush - Create a new brush
printer_create_dc - Create a new device context
printer_create_font - Create a new font
printer_create_pen - Create a new pen
printer_delete_brush - Delete a brush
printer_delete_dc - Delete a device context
printer_delete_font - Delete a font
printer_delete_pen - Delete a pen
printer_draw_bmp - Draw a bmp
printer_draw_chord - Draw a chord
printer_draw_elipse - Draw an ellipse
printer_draw_line - Draw a line
printer_draw_pie - Draw a pie
printer_draw_rectangle - Draw a rectangle
printer_draw_roundrect - Draw a rectangle with rounded corners
printer_draw_text - Draw text
printer_end_doc - Close document
printer_end_page - Close active page
printer_get_option - Retrieve printer configuration data
printer_list - Return an array of printers attached to the server 
printer_logical_fontheight - Get logical font height
printer_open - Open connection to a printer
printer_select_brush - Select a brush
printer_select_font - Select a font
printer_select_pen - Select a pen
printer_set_option - Configure the printer connection
printer_start_doc - Start a new document
printer_start_page - Start a new page
printer_write - Write data to the printer
printf - Output a formatted string
print_r - Prints human-readable information about a variable 
pspell_add_to_personal - Add the word to a personal wordlist
pspell_add_to_session - Add the word to the wordlist in the current session 
pspell_check - Check a word
pspell_clear_session - Clear the current session
pspell_config_create - Create a config used to open a dictionary
pspell_config_ignore - Ignore words less than N characters long
pspell_config_mode - Change the mode number of suggestions returned
pspell_config_personal - Set a file that contains personal wordlist
pspell_config_repl - Set a file that contains replacement pairs
pspell_config_runtogether - Consider run-together words as valid compounds
pspell_config_save_repl - Determine whether to save a replacement pairs list along with the wordlist
pspell_new - Load a new dictionary
pspell_new_config - Load a new dictionary with settings based on a given config 
pspell_new_personal - Load a new dictionary with personal wordlist
pspell_save_wordlist - Save the personal wordlist to a file
pspell_store_replacement - Store a replacement pair for a word
pspell_suggest - Suggest spellings of a word
putenv - Sets the value of an environment variable
qdom_error - Returns the error string from the last QDOM operation or FALSE if no errors occured
qdom_tree - creates a tree of an xml string 
quoted_printable_decode - Convert a quoted-printable string to an 8 bit string 
quotemeta - Quote meta characters
rad2deg - Converts the radian number to the equivalent number in degrees 
rand - Generate a random value
range - Create an array containing a range of elements 
rawurldecode - Decode URL-encoded strings
rawurlencode - URL-encode according to RFC1738
readdir - read entry from directory handle
readfile - Outputs a file
readgzfile - Output a gz-file
readline - Reads a line
readline_add_history - Adds a line to the history
readline_clear_history - Clears the history
readline_completion_function - Registers a completion function
readline_info - Gets/sets various internal readline variables
readline_list_history - Lists the history
readline_read_history - Reads the history
readline_write_history - Writes the history
readlink - Returns the target of a symbolic link
read_exif_data - Read the EXIF headers from a JPEG
realpath - Returns canonicalized absolute pathname
recode - Recode a string according to a recode request
recode_file - Recode from file to file according to recode request 
recode_string - Recode a string according to a recode request
register_shutdown_function - Register a function for execution on shutdown 
register_tick_function - Register a function for execution on each tick 
rename - Renames a file
reset - Set the internal pointer of an array to its first element 
restore_error_handler - Restores the previous error handler function 
rewind - Rewind the position of a file pointer
rewinddir - rewind directory handle
rmdir - Removes directory
round - Rounds a float
rsort - Sort an array in reverse order
rtrim - Strip whitespace from the end of a string 
satellite_caught_exception - See if an exception was caught from the previous function 
satellite_exception_id - Get the repository id for the latest exception.
satellite_exception_value - Get the exception struct for the latest exception 
satellite_get_repository_id - NOT IMPLEMENTED 
satellite_load_idl - Instruct the type manager to load an IDL file if not already loaded 
satellite_object_to_string - Convert an object to its string representation 
sem_acquire - Acquire a semaphore
sem_get - Get a semaphore id
sem_release - Release a semaphore
sem_remove - Remove a semaphore
serialize - Generates a storable representation of a value 
sesam_affected_rows - Get number of rows affected by an immediate query 
sesam_commit - Commit pending updates to the SESAM database 
sesam_connect - Open SESAM database connection
sesam_diagnostic - Return status information for last SESAM call 
sesam_disconnect - Detach from SESAM connection
sesam_errormsg - Returns error message of last SESAM call
sesam_execimm - Execute an "immediate" SQL-statement
sesam_fetch_array - Fetch one row as an associative array
sesam_fetch_result - Return all or part of a query result
sesam_fetch_row - Fetch one row as an array
sesam_field_array - Return meta information about individual columns in a result 
sesam_field_name - Return one column name of the result set 
sesam_free_result - Releases resources for the query
sesam_num_fields - Return the number of fields/columns in a result set 
sesam_query - Perform a SESAM SQL query and prepare the result
sesam_rollback - Discard any pending updates to the SESAM database 
sesam_seek_row - Set scrollable cursor mode for subsequent fetches 
sesam_settransaction - Set SESAM transaction parameters
session_cache_expire - Return current cache expire
session_cache_limiter - Get and/or set the current cache limiter
session_decode - Decodes session data from a string
session_destroy - Destroys all data registered to a session
session_encode - Encodes the current session data as a string 
session_get_cookie_params - Get the session cookie parameters 
session_id - Get and/or set the current session id
session_is_registered - Find out if a variable is registered in a session 
session_module_name - Get and/or set the current session module
session_name - Get and/or set the current session name
session_register - Register one or more variables with the current session 
session_save_path - Get and/or set the current session save path
session_set_cookie_params - Set the session cookie parameters 
session_set_save_handler - Sets user-level session storage functions 
session_start - Initialize session data
session_unregister - Unregister a variable from the current session 
session_unset - Free all session variables 
session_write_close - Write session data and end session
setcookie - Send a cookie
setlocale - Set locale information
settype - Set the type of a variable
set_error_handler - Sets a user-defined error handler function. 
set_file_buffer - Sets file buffering on the given file pointer 
set_magic_quotes_runtime - Sets the current active configuration setting of magic_quotes_runtime 
set_time_limit - Limits the maximum execution time
shell_exec - Execute command via shell and return complete output as string 
shmop_close - Close shared memory block
shmop_delete - Delete shared memory block
shmop_open - Create or open shared memory block
shmop_read - Read data from shared memory block
shmop_size - Get size of shared memory block
shmop_write - Write data into shared memory block
shm_attach - Creates or open a shared memory segment
shm_detach - Disconnects from shared memory segment
shm_get_var - Returns a variable from shared memory
shm_put_var - Inserts or updates a variable in shared memory
shm_remove - Removes shared memory from Unix systems
shm_remove_var - Removes a variable from shared memory 
show_source - Syntax highlighting of a file
shuffle - Shuffle an array
similar_text - Calculate the similarity between two strings 
sin - Sine
sinh - Hyperbolic sine
sizeof - Get the number of elements in variable
sleep - Delay execution
snmpget - Fetch an SNMP object
snmprealwalk - Return all objects including their respective object id withing the specified one 
snmpset - Set an SNMP object
snmpwalk - Fetch all the SNMP objects from an agent
snmpwalkoid - Query for a tree of information about a network entity 
snmp_get_quick_print - Fetch the current value of the UCD library's quick_print setting 
snmp_set_quick_print - Set the value of quick_print within the UCD SNMP library. 
socket_accept - Accepts a connection on a socket
socket_bind - Binds a name to a socket
socket_close - Closes a socket descriptor
socket_connect - Initiates a connection on a socket
socket_create - Create a socket (endpoint for communication)
socket_create_listen - Opens a socket on port to accept connections 
socket_create_pair - Creates a pair of indistinguishable sockets and stores them in fds. 
socket_fd_alloc - Allocates a new file descriptor set 
socket_fd_clear - Clears (a) file descriptor(s) from a set 
socket_fd_free - Deallocates a file descriptor set 
socket_fd_isset - Checks to see if a file descriptor is set within the file descrirptor set 
socket_fd_set - Adds (a) file descriptor(s) to a set 
socket_fd_zero - Clears a file descriptor set 
socket_getopt - Gets socket options for the socket 
socket_getpeername - Given an fd, stores a string representing sa.sin_addr and the value of sa.sin_port into addr and port describing the remote side of a socket 
socket_getsockname - Given an fd, stores a string representing sa.sin_addr and the value of sa.sin_port into addr and port describing the local side of a socket 
socket_get_status - Returns information about existing socket resource 
socket_iovec_add - Adds a new vector to the scatter/gather array 
socket_iovec_alloc - ...]) Builds a 'struct iovec' for use with sendmsg, recvmsg, writev, and readv 
socket_iovec_delete - Deletes a vector from an array of vectors 
socket_iovec_fetch - Returns the data held in the iovec specified by iovec_id[iovec_position] 
socket_iovec_free - Frees the iovec specified by iovec_id 
socket_iovec_set - Sets the data held in iovec_id[iovec_position] to new_val 
socket_last_error - Returns/Clears the last error on the socket 
socket_listen - Listens for a connection on a socket
socket_read - Reads from a socket
socket_readv - Reads from an fd, using the scatter-gather array defined by iovec_id 
socket_recv - Receives data from a connected socket 
socket_recvfrom - Receives data from a socket, connected or not 
socket_recvmsg - Used to receive messages on a socket, whether connection-oriented or not 
socket_select - Runs the select() system call on the sets mentioned with a timeout specified by tv_sec and tv_usec 
socket_send - Sends data to a connected socket 
socket_sendmsg - Sends a message to a socket, regardless of whether it is connection-oriented or not 
socket_sendto - Sends a message to a socket, whether it is connected or not 
socket_setopt - |array optval) Sets socket options for the socket 
socket_set_blocking - Set blocking/non-blocking mode on a socket
socket_set_nonblock - Sets nonblocking mode for file descriptor fd 
socket_set_timeout - Set timeout period on a socket
socket_shutdown - Shuts down a socket for receiving, sending, or both. 
socket_strerror - Return a string describing a socket error
socket_write - Write to a socket
socket_writev - Writes to a file descriptor, fd, using the scatter-gather array defined by iovec_id 
sort - Sort an array
soundex - Calculate the soundex key of a string
split - split string into array by regular expression
spliti - Split string into array by regular expression case insensitive 
sprintf - Return a formatted string
sql_regcase - Make regular expression for case insensitive match 
sqrt - Square root
srand - Seed the random number generator
sscanf - Parses input from a string according to a format 
stat - Gives information about a file
strcasecmp - Binary safe case-insensitive string comparison 
strchr - Find the first occurrence of a character 
strcmp - Binary safe string comparison
strcoll - Locale based string comparison
strcspn - Find length of initial segment not matching mask 
strftime - Format a local time/date according to locale settings 
stripcslashes - Un-quote string quoted with addcslashes 
stripslashes - Un-quote string quoted with addslashes 
strip_tags - Strip HTML and PHP tags from a string
stristr - Case-insensitive strstr 
strlen - Get string length
strnatcasecmp - Case insensitive string comparisons using a "natural order" algorithm 
strnatcmp - String comparisons using a "natural order" algorithm 
strncasecmp - Binary safe case-insensitive string comparison of the first n characters 
strncmp - Binary safe string comparison of the first n characters 
strpos - Find position of first occurrence of a string 
strrchr - Find the last occurrence of a character in a string 
strrev - Reverse a string
strrpos - Find position of last occurrence of a char in a string 
strspn - Find length of initial segment matching mask 
strstr - Find first occurrence of a string
strtok - Tokenize string
strtolower - Make a string lowercase
strtotime - Parse about any English textual datetime description into a UNIX timestamp 
strtoupper - Make a string uppercase
strtr - Translate certain characters
strval - Get string value of a variable
str_pad - Pad a string to a certain length with another string 
str_repeat - Repeat a string
str_replace - Replace all occurrences of the search string with the replacement string 
str_rot13 - Perform the rot13 transform on a string
substr - Return part of a string
substr_count - Count the number of substring occurrences
substr_replace - Replace text within a portion of a string
SWFAction - Creates a new Action.
SWFBitmap - Loads Bitmap object
SWFBitmap->getHeight - Returns the bitmap's height.
SWFBitmap->getWidth - Returns the bitmap's width.
SWFbutton - Creates a new Button.
SWFbutton->addAction - Adds an action
SWFbutton->addShape - Adds a shape to a button
SWFbutton->setAction - Sets the action
SWFbutton->setdown - Alias for addShape(shape, SWFBUTTON_DOWN))
SWFbutton->setHit - Alias for addShape(shape, SWFBUTTON_HIT)
SWFbutton->setOver - Alias for addShape(shape, SWFBUTTON_OVER)
SWFbutton->setUp - Alias for addShape(shape, SWFBUTTON_UP)
swfbutton_keypress - Returns the action flag for keyPress(char) 
SWFDisplayItem - Creates a new displayitem object.
SWFDisplayItem->addColor - Adds the given color to this item's color transform.
SWFDisplayItem->move - Moves object in relative coordinates.
SWFDisplayItem->moveTo - Moves object in global coordinates.
SWFDisplayItem->multColor - Multiplies the item's color transform.
SWFDisplayItem->remove - Removes the object from the movie
SWFDisplayItem->Rotate - Rotates in relative coordinates.
SWFDisplayItem->rotateTo - Rotates the object in global coordinates.
SWFDisplayItem->scale - Scales the object in relative coordinates.
SWFDisplayItem->scaleTo - Scales the object in global coordinates.
SWFDisplayItem->setDepth - Sets z-order
SWFDisplayItem->setName - Sets the object's name
SWFDisplayItem->setRatio - Sets the object's ratio.
SWFDisplayItem->skewX - Sets the X-skew.
SWFDisplayItem->skewXTo - Sets the X-skew.
SWFDisplayItem->skewY - Sets the Y-skew.
SWFDisplayItem->skewYTo - Sets the Y-skew.
SWFFill - Loads SWFFill object
SWFFill->moveTo - Moves fill origin
SWFFill->rotateTo - Sets fill's rotation
SWFFill->scaleTo - Sets fill's scale
SWFFill->skewXTo - Sets fill x-skew
SWFFill->skewYTo - Sets fill y-skew
SWFFont - Loads a font definition
swffont->getwidth - Returns the string's width
SWFGradient - Creates a gradient object
SWFGradient->addEntry - Adds an entry to the gradient list.
SWFMorph - Creates a new SWFMorph object.
SWFMorph->getshape1 - Gets a handle to the starting shape
SWFMorph->getshape2 - Gets a handle to the ending shape
SWFMovie - Creates a new movie object, representing an SWF version 4 movie.
SWFMovie->add - Adds any type of data to a movie.
SWFMovie->nextframe - Moves to the next frame of the animation.
SWFMovie->output - Dumps your lovingly prepared movie out.
SWFMovie->remove - Removes the object instance from the display list.
SWFMovie->save - Saves your movie in a file.
SWFMovie->setbackground - Sets the background color.
SWFMovie->setdimension - Sets the movie's width and height.
SWFMovie->setframes - Sets the total number of frames in the animation.
SWFMovie->setrate - Sets the animation's frame rate.
SWFMovie->streammp3 - Streams a MP3 file.
SWFShape - Creates a new shape object.
SWFShape->addFill - Adds a solid fill to the shape.
SWFShape->drawCurve - Draws a curve (relative).
SWFShape->drawCurveTo - Draws a curve.
SWFShape->drawLine - Draws a line (relative).
SWFShape->drawLineTo - Draws a line.
SWFShape->movePen - Moves the shape's pen (relative).
SWFShape->movePenTo - Moves the shape's pen.
SWFShape->setLeftFill - Sets left rasterizing color.
SWFShape->setLine - Sets the shape's line style.
SWFShape->setRightFill - Sets right rasterizing color.
SWFSprite - Creates a movie clip (a sprite)
SWFSprite->add - Adds an object to a sprite
SWFSprite->nextframe - Moves to the next frame of the animation.
SWFSprite->remove - Removes an object to a sprite
SWFSprite->setframes - Sets the total number of frames in the animation.
SWFText - Creates a new SWFText object.
SWFText->addString - Draws a string
SWFText->getWidth - Computes string's width
SWFText->moveTo - Moves the pen
SWFText->setColor - Sets the current font color
SWFText->setFont - Sets the current font
SWFText->setHeight - Sets the current font height
SWFText->setSpacing - Sets the current font spacing
SWFTextField - Creates a text field object
SWFTextField->addstring - Concatenates the given string to the text field
SWFTextField->align - Sets the text field alignment
SWFTextField->setbounds - Sets the text field width and height
SWFTextField->setcolor - Sets the color of the text field. 
SWFTextField->setFont - Sets the text field font
SWFTextField->setHeight - Sets the font height of this text field font.
SWFTextField->setindentation - Sets the indentation of the first line.
SWFTextField->setLeftMargin - Sets the left margin width of the text field.
SWFTextField->setLineSpacing - Sets the line spacing of the text field.
SWFTextField->setMargins - Sets the margins width of the text field.
SWFTextField->setname - Sets the variable name
SWFTextField->setrightMargin - Sets the right margin width of the text field.
swf_actiongeturl - Get a URL from a Shockwave Flash movie
swf_actiongotoframe - Play a frame and then stop
swf_actiongotolabel - Display a frame with the specified label 
swf_actionnextframe - Go foward one frame
swf_actionplay - Start playing the flash movie from the current frame 
swf_actionprevframe - Go backwards one frame
swf_actionsettarget - Set the context for actions
swf_actionstop - Stop playing the flash movie at the current frame 
swf_actiontogglequality - Toggle between low and high quality 
swf_actionwaitforframe - Skip actions if a frame has not been loaded 
swf_addbuttonrecord - Controls location, appearance and active area of the current button 
swf_addcolor - Set the global add color to the rgba value specified 
swf_closefile - Close the current Shockwave Flash file
swf_definebitmap - Define a bitmap
swf_definefont - Defines a font 
swf_defineline - Define a line
swf_definepoly - Define a polygon 
swf_definerect - Define a rectangle
swf_definetext - Define a text string
swf_endbutton - End the definition of the current button 
swf_enddoaction - End the current action
swf_endshape - Completes the definition of the current shape 
swf_endsymbol - End the definition of a symbol
swf_fontsize - Change the font size
swf_fontslant - Set the font slant
swf_fonttracking - Set the current font tracking
swf_getbitmapinfo - Get information about a bitmap
swf_getfontinfo - The height in pixels of a capital A and a lowercase x 
swf_getframe - Get the frame number of the current frame
swf_labelframe - Label the current frame
swf_lookat - Define a viewing transformation
swf_modifyobject - Modify an object
swf_mulcolor - Sets the global multiply color to the rgba value specified 
swf_nextid - Returns the next free object id
swf_oncondition - Describe a transition used to trigger an action list 
swf_openfile - Open a new Shockwave Flash file
swf_ortho - Defines an orthographic mapping of user coordinates onto the current viewport 
swf_ortho2 - Defines 2D orthographic mapping of user coordinates onto the current viewport 
swf_perspective - Define a perspective projection transformation 
swf_placeobject - Place an object onto the screen
swf_polarview - Define the viewer's position with polar coordinates 
swf_popmatrix - Restore a previous transformation matrix 
swf_posround - Enables or Disables the rounding of the translation when objects are placed or moved 
swf_pushmatrix - Push the current transformation matrix back unto the stack 
swf_removeobject - Remove an object
swf_rotate - Rotate the current transformation
swf_scale - Scale the current transformation
swf_setfont - Change the current font
swf_setframe - Switch to a specified frame
swf_shapearc - Draw a circular arc
swf_shapecurveto - Draw a quadratic bezier curve between two points 
swf_shapecurveto3 - Draw a cubic bezier curve
swf_shapefillbitmapclip - Set current fill mode to clipped bitmap 
swf_shapefillbitmaptile - Set current fill mode to tiled bitmap 
swf_shapefilloff - Turns off filling
swf_shapefillsolid - Set the current fill style to the specified color 
swf_shapelinesolid - Set the current line style
swf_shapelineto - Draw a line
swf_shapemoveto - Move the current position
swf_showframe - Display the current frame
swf_startbutton - Start the definition of a button
swf_startdoaction - Start a description of an action list for the current frame 
swf_startshape - Start a complex shape
swf_startsymbol - Define a symbol
swf_textwidth - Get the width of a string
swf_translate - Translate the current transformations
swf_viewport - Select an area for future drawing
sybase_affected_rows - get number of affected rows in last query
sybase_close - close Sybase connection
sybase_connect - open Sybase server connection
sybase_data_seek - move internal row pointer
sybase_fetch_array - fetch row as array
sybase_fetch_field - get field information
sybase_fetch_object - fetch row as object
sybase_fetch_row - get row as enumerated array
sybase_field_seek - set field offset
sybase_free_result - free result memory
sybase_get_last_message - Returns the last message from the server
sybase_min_client_severity - Sets minimum client severity
sybase_min_error_severity - Sets minimum error severity
sybase_min_message_severity - Sets minimum message severity
sybase_min_server_severity - Sets minimum server severity
sybase_num_fields - get number of fields in result
sybase_num_rows - get number of rows in result
sybase_pconnect - open persistent Sybase connection
sybase_query - send Sybase query
sybase_result - get result data
sybase_select_db - select Sybase database
symlink - Creates a symbolic link
syslog - Generate a system log message
system - Execute an external program and display output
tan - Tangent
tanh - Hyperbolic tangent
tempnam - Create file with unique file name
textdomain - Sets the default domain
time - Return current UNIX timestamp
tmpfile - Creates a temporary file
touch - Sets access and modification time of file
trigger_error - Generates a user-level error/warning/notice message 
trim - Strip whitespace from the beginning and end of a string 
uasort - Sort an array with a user-defined comparison function and maintain index association 
ucfirst - Make a string's first character uppercase
ucwords - Uppercase the first character of each word in a string 
udm_add_search_limit - Add various search limits
udm_alloc_agent - Allocate mnoGoSearch session
udm_api_version - Get mnoGoSearch API version.
udm_cat_list - Get all the categories on the same level with the current one.
udm_cat_path - Get the path to the current category.
udm_check_charset - Check if the given charset is known to mnogosearch 
udm_check_stored - Check connection to stored 
udm_clear_search_limits - Clear all mnoGoSearch search restrictions
udm_close_stored - Close connection to stored 
udm_crc32 - Return CRC32 checksum of gived string 
udm_errno - Get mnoGoSearch error number
udm_error - Get mnoGoSearch error message
udm_find - Perform search
udm_free_agent - Free mnoGoSearch session
udm_free_ispell_data - Free memory allocated for ispell data
udm_free_res - Free mnoGoSearch result
udm_get_doc_count - Get total number of documents in database.
udm_get_res_field - Fetch mnoGoSearch result field
udm_get_res_param - Get mnoGoSearch result parameters
udm_load_ispell_data - Load ispell data
udm_open_stored - Open connection to stored 
udm_set_agent_param - Set mnoGoSearch agent session parameters
uksort - Sort an array by keys using a user-defined comparison function 
umask - Changes the current umask
uniqid - Generate a unique id
unixtojd - Convert UNIX timestamp to Julian Day
unlink - Deletes a file
unpack - Unpack data from binary string
unregister_tick_function - De-register a function for execution on each tick 
unserialize - Creates a PHP value from a stored representation 
unset - Unset a given variable
urldecode - Decodes URL-encoded string
urlencode - URL-encodes string
user_error - Generates a user-level error/warning/notice message 
usleep - Delay execution in microseconds
usort - Sort an array by values using a user-defined comparison function 
utf8_decode - Converts a string with ISO-8859-1 characters encoded with UTF-8 to single-byte ISO-8859-1. 
utf8_encode - encodes an ISO-8859-1 string to UTF-8
VARIANT - VARIANT class
var_dump - Dumps information about a variable
var_export - Outputs or returns a string representation of avariable
version_compare - Compares two "PHP-standardized" version number strings 
virtual - Perform an Apache sub-request
vpopmail_add_alias_domain - Add an alias for a virtual domain 
vpopmail_add_alias_domain_ex - Add alias to an existing virtual domain 
vpopmail_add_domain - Add a new virtual domain 
vpopmail_add_domain_ex - Add a new virtual domain 
vpopmail_add_user - Add a new user to the specified virtual domain 
vpopmail_alias_add - insert a virtual alias 
vpopmail_alias_del - deletes all virtual aliases of a user 
vpopmail_alias_del_domain - deletes all virtual aliases of a domain 
vpopmail_alias_get - get all lines of an alias for a domain 
vpopmail_alias_get_all - get all lines of an alias for a domain 
vpopmail_auth_user - Attempt to validate a username/domain/password. Returns true/false 
vpopmail_del_domain - Delete a virtual domain 
vpopmail_del_domain_ex - Delete a virtual domain 
vpopmail_del_user - Delete a user from a virtual domain 
vpopmail_error - Get text message for last vpopmail error. Returns string 
vpopmail_passwd - Change a virtual user's password 
vpopmail_set_user_quota - Sets a virtual user's quota 
vprintf - Output a formatted string
vsprintf - Return a formatted string
w32api_deftype - ...) Defines a type for use with other w32api_functions. 
w32api_init_dtype - ; Creates an instance to the data type typename and fills it with the values val1, val2, the function
w32api_invoke_function - ....) Invokes function funcname with the arguments passed after the function name 
w32api_register_function - Registers function function_name from library with PHP 
w32api_set_call_method - Sets the calling method used 
wddx_add_vars - Add variables to a WDDX packet with the specified ID 
wddx_deserialize - Deserializes a WDDX packet
wddx_packet_end - Ends a WDDX packet with the specified ID
wddx_packet_start - Starts a new WDDX packet with structure inside it 
wddx_serialize_value - Serialize a single value into a WDDX packet
wddx_serialize_vars - Serialize variables into a WDDX packet
wordwrap - Wraps a string to a given number of characters using a string break character. 
xmldoc - Creates a DOM object of an XML document
xmldocfile - Creates a DOM object from XML file
xmlrpc_decode - Decodes XML into native PHP types 
xmlrpc_decode_request - Decodes XML into native PHP types 
xmlrpc_encode - Generates XML for a PHP value 
xmlrpc_encode_request - Generates XML for a method request 
xmlrpc_get_type - Gets xmlrpc type for a PHP value. Especially useful for base64 and datetime strings 
xmlrpc_parse_method_descriptions - Decodes XML into a list of method descriptions 
xmlrpc_server_add_introspection_data - Adds introspection documentation 
xmlrpc_server_call_method - Parses XML requests and call methods 
xmlrpc_server_create - Creates an xmlrpc server 
xmlrpc_server_destroy - Destroys server resources 
xmlrpc_server_register_introspection_callback - Register a PHP function to generate documentation 
xmlrpc_server_register_method - Register a PHP function to resource method matching method_name 
xmlrpc_set_type - Sets xmlrpc type, base64 or datetime, for a PHP string value 
xmltree - Creates a tree of PHP objects from XML document 
xml_error_string - get XML parser error string
xml_get_current_byte_index - get current byte index for an XML parser
xml_get_current_column_number - Get current column number for an XML parser 
xml_get_current_line_number - get current line number for an XML parser
xml_get_error_code - get XML parser error code
xml_parse - start parsing an XML document
xml_parser_create - create an XML parser
xml_parser_create_ns - Create an XML parser 
xml_parser_free - Free an XML parser
xml_parser_get_option - get options from an XML parser
xml_parser_set_option - set options in an XML parser
xml_parse_into_struct - Parse XML data into an array structure
xml_set_character_data_handler - set up character data handler
xml_set_default_handler - set up default handler
xml_set_element_handler - set up start and end element handlers
xml_set_end_namespace_decl_handler - Set up character data handler 
xml_set_external_entity_ref_handler - set up external entity reference handler
xml_set_notation_decl_handler - set up notation declaration handler
xml_set_object - Use XML Parser within an object
xml_set_processing_instruction_handler - Set up processing instruction (PI) handler 
xml_set_start_namespace_decl_handler - Set up character data handler 
xml_set_unparsed_entity_decl_handler - Set up unparsed entity declaration handler 
xpath_eval - Evaluates the XPath Location Path in the given string 
xpath_eval_expression - Evaluates the XPath Location Path in the given string 
xpath_new_context - Creates new xpath context 
xptr_eval - Evaluate the XPtr Location Path in the given string 
xptr_new_context - Create new XPath Context 
xslt_create - Create a new XSLT processor.
xslt_errno - Return a error number
xslt_error - Return a error string
xslt_free - Free XSLT processor
xslt_process - Perform an XSLT transformation
xslt_set_base - Set the base URI for all XSLT transformations
xslt_set_encoding - Set the encoding for the parsing of XML documents
xslt_set_error_handler - Set an error handler for a XSLT processor
xslt_set_log - Set the log file to write log messages to
xslt_set_sax_handler - Set SAX handlers for a XSLT processor
xslt_set_sax_handlers - Set the SAX handlers to be called when the XML document gets processed 
xslt_set_scheme_handler - Set Scheme handlers for a XSLT processor
xslt_set_scheme_handlers - Set the scheme handlers for the XSLT processor 
yaz_addinfo - Returns additional error information
yaz_ccl_conf - Configure CCL parser
yaz_ccl_parse - Invoke CCL Parser
yaz_close - Closes a YAZ connection
yaz_connect - Prepares for a connection and Z-association to a Z39.50 target. 
yaz_database - Specifies the databases within a session 
yaz_element - Specifies Element-Set Name for retrieval 
yaz_errno - Returns error number
yaz_error - Returns error description
yaz_hits - Returns number of hits for last search
yaz_itemorder - Prepares for Z39.50 Item Order with an ILL-Request package 
yaz_present - Prepares for retrieval (Z39.50 present). 
yaz_range - Specifies the maximum number of records to retrieve 
yaz_record - Returns a record
yaz_scan - Prepares for a scan
yaz_scan_result - Returns Scan Response result
yaz_search - Prepares for a search
yaz_sort - Sets sorting criteria
yaz_syntax - Specifies the preferred record syntax for retrieval. 
yaz_wait - Wait for Z39.50 requests to complete
yp_all - Traverse the map and call a function on each entry 
yp_cat - Return an array containing the entire map 
yp_errno - Returns the error code of the previous operation 
yp_err_string - Returns the error string associated with the previous operation 
yp_first - Returns the first key-value pair from the named map 
yp_get_default_domain - Fetches the machine's default NIS domain
yp_master - Returns the machine name of the master NIS server for a map 
yp_match - Returns the matched line
yp_next - Returns the next key-value pair in the named map.
yp_order - Returns the order number for a map
zend_logo_guid - Gets the zend guid
zend_version - Gets the version of the current Zend engine
zip_close - Close a Zip File Archive
zip_entry_close - Close a Directory Entry
zip_entry_compressedsize - Retrieve the Compressed Size of a Directory Entry
zip_entry_compressionmethod - Retrieve the Compression Method of a Directory Entry 
zip_entry_filesize - Retrieve the Actual File Size of a Directory Entry 
zip_entry_name - Retrieve the Name of a Directory Entry
zip_entry_open - Open a Directory Entry for Reading
zip_entry_read - Read From an Open Directory Entry
zip_open - Open a Zip File Archive
zip_read - Read Next Entry in a Zip File Archive