summaryrefslogtreecommitdiff
path: root/etc/todo/scanners/php_builtin_functions.txt
blob: ba8897a770107be4435b2ffa9185738b5fcd26ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
abs
acos
acosh
addcslashes
addslashes
aggregate
aggregate_info
aggregate_methods
aggregate_methods_by_list
aggregate_methods_by_regexp
aggregate_properties
aggregate_properties_by_list
aggregate_properties_by_regexp
aggregation_info
apache_child_terminate
apache_get_modules
apache_get_version
apache_getenv
apache_lookup_uri
apache_note
apache_request_headers
apache_reset_timeout
apache_response_headers
apache_setenv
apc_add
apc_cache_info
apc_clear_cache
apc_compile_file
apc_define_constants
apc_delete
apc_fetch
apc_load_constants
apc_sma_info
apc_store
apd_breakpoint
apd_callstack
apd_clunk
apd_continue
apd_croak
apd_dump_function_table
apd_dump_persistent_resources
apd_dump_regular_resources
apd_echo
apd_get_active_symbols
apd_set_pprof_trace
apd_set_session
apd_set_session_trace
apd_set_session_trace_socket
array
array_change_key_case
array_chunk
array_combine
array_count_values
array_diff
array_diff_assoc
array_diff_key
array_diff_uassoc
array_diff_ukey
array_fill
array_fill_keys
array_filter
array_flip
array_intersect
array_intersect_assoc
array_intersect_key
array_intersect_uassoc
array_intersect_ukey
array_key_exists
array_keys
array_map
array_merge
array_merge_recursive
array_multisort
array_pad
array_pop
array_product
array_push
array_rand
array_reduce
array_reverse
array_search
array_shift
array_slice
array_splice
array_sum
array_udiff
array_udiff_assoc
array_udiff_uassoc
array_uintersect
array_uintersect_assoc
array_uintersect_uassoc
array_unique
array_unshift
array_values
array_walk
array_walk_recursive
arsort
ascii2ebcdic
asin
asinh
asort
assert
assert_options
atan
atan2
atanh
base_convert
base64_decode
base64_encode
basename
bbcode_add_element
bbcode_add_smiley
bbcode_create
bbcode_destroy
bbcode_parse
bbcode_set_arg_parser
bbcode_set_flags
bcadd
bccomp
bcdiv
bcmod
bcmul
bcompiler_load
bcompiler_load_exe
bcompiler_parse_class
bcompiler_read
bcompiler_write_class
bcompiler_write_constant
bcompiler_write_exe_footer
bcompiler_write_file
bcompiler_write_footer
bcompiler_write_function
bcompiler_write_functions_from_file
bcompiler_write_header
bcompiler_write_included_filename
bcpow
bcpowmod
bcscale
bcsqrt
bcsub
bin2hex
bind_textdomain_codeset
bindec
bindtextdomain
bzclose
bzcompress
bzdecompress
bzerrno
bzerror
bzerrstr
bzflush
bzopen
bzread
bzwrite
cal_days_in_month
cal_from_jd
cal_info
cal_to_jd
calcul_hmac
calculhmac
call_user_func
call_user_func_array
call_user_method
call_user_method_array
ceil
chdir
checkdate
checkdnsrr
chgrp
chmod
chop
chown
chr
chroot
chunk_split
class_exists
class_implements
class_parents
classkit_import
classkit_method_add
classkit_method_copy
classkit_method_redefine
classkit_method_remove
classkit_method_rename
clearstatcache
closedir
closelog
com_addref
com_create_guid
com_event_sink
com_get
com_get_active_object
com_invoke
com_isenum
com_load
com_load_typelib
com_message_pump
com_print_typeinfo
com_propget
com_propput
com_propset
com_release
com_set
compact
connection_aborted
connection_status
connection_timeout
constant
convert_cyr_string
convert_uudecode
convert_uuencode
copy
cos
cosh
count
count_chars
counter_bump
counter_bump_value
counter_create
counter_get
counter_get_meta
counter_get_named
counter_get_value
counter_reset
counter_reset_value
crack_check
crack_closedict
crack_getlastmessage
crack_opendict
crc32
create_function
crypt
ctype_alnum
ctype_alpha
ctype_cntrl
ctype_digit
ctype_graph
ctype_lower
ctype_print
ctype_punct
ctype_space
ctype_upper
ctype_xdigit
curl_close
curl_copy_handle
curl_errno
curl_error
curl_exec
curl_getinfo
curl_init
curl_multi_add_handle
curl_multi_close
curl_multi_exec
curl_multi_getcontent
curl_multi_info_read
curl_multi_init
curl_multi_remove_handle
curl_multi_select
curl_setopt
curl_setopt_array
curl_version
current
cyrus_authenticate
cyrus_bind
cyrus_close
cyrus_connect
cyrus_query
cyrus_unbind
date
date_add
date_create
date_create_from_format
date_date_set
date_default_timezone_get
date_default_timezone_set
date_diff
date_format
date_get_last_errors
date_interval_create_from_date_string
date_interval_format
date_isodate_set
date_modify
date_offset_get
date_parse
date_parse_from_format
date_sub
date_sun_info
date_sunrise
date_sunset
date_time_set
date_timestamp_get
date_timestamp_set
date_timezone_get
date_timezone_set
db2_autocommit
db2_bind_param
db2_client_info
db2_close
db2_column_privileges
db2_columns
db2_commit
db2_conn_error
db2_conn_errormsg
db2_connect
db2_cursor_type
db2_escape_string
db2_exec
db2_execute
db2_fetch_array
db2_fetch_assoc
db2_fetch_both
db2_fetch_object
db2_fetch_row
db2_field_display_size
db2_field_name
db2_field_num
db2_field_precision
db2_field_scale
db2_field_type
db2_field_width
db2_foreign_keys
db2_free_result
db2_free_stmt
db2_get_option
db2_last_insert_id
db2_lob_read
db2_next_result
db2_num_fields
db2_num_rows
db2_pclose
db2_pconnect
db2_prepare
db2_primary_keys
db2_procedure_columns
db2_procedures
db2_result
db2_rollback
db2_server_info
db2_set_option
db2_special_columns
db2_statistics
db2_stmt_error
db2_stmt_errormsg
db2_table_privileges
db2_tables
dba_close
dba_delete
dba_exists
dba_fetch
dba_firstkey
dba_handlers
dba_insert
dba_key_split
dba_list
dba_nextkey
dba_open
dba_optimize
dba_popen
dba_replace
dba_sync
dbase_add_record
dbase_close
dbase_create
dbase_delete_record
dbase_get_header_info
dbase_get_record
dbase_get_record_with_names
dbase_numfields
dbase_numrecords
dbase_open
dbase_pack
dbase_replace_record
dbplus_add
dbplus_aql
dbplus_chdir
dbplus_close
dbplus_curr
dbplus_errcode
dbplus_errno
dbplus_find
dbplus_first
dbplus_flush
dbplus_freealllocks
dbplus_freelock
dbplus_freerlocks
dbplus_getlock
dbplus_getunique
dbplus_info
dbplus_last
dbplus_lockrel
dbplus_next
dbplus_open
dbplus_prev
dbplus_rchperm
dbplus_rcreate
dbplus_rcrtexact
dbplus_rcrtlike
dbplus_resolve
dbplus_restorepos
dbplus_rkeys
dbplus_ropen
dbplus_rquery
dbplus_rrename
dbplus_rsecindex
dbplus_runlink
dbplus_rzap
dbplus_savepos
dbplus_setindex
dbplus_setindexbynumber
dbplus_sql
dbplus_tcl
dbplus_tremove
dbplus_undo
dbplus_undoprepare
dbplus_unlockrel
dbplus_unselect
dbplus_update
dbplus_xlockrel
dbplus_xunlockrel
dbx_close
dbx_compare
dbx_connect
dbx_error
dbx_escape_string
dbx_fetch_row
dbx_query
dbx_sort
dcgettext
dcngettext
deaggregate
debug_backtrace
debug_print_backtrace
debug_zval_dump
decbin
dechex
decoct
define
define_syslog_variables
defined
deg2rad
delete
dgettext
die
dio_close
dio_fcntl
dio_open
dio_read
dio_seek
dio_stat
dio_tcsetattr
dio_truncate
dio_write
dirname
disk_free_space
disk_total_space
diskfreespace
dl
dngettext
dns_check_record
dns_get_mx
dns_get_record
dom_import_simplexml
domattribute_name
domattribute_set_value
domattribute_specified
domattribute_value
domdocument_add_root
domdocument_create_attribute
domdocument_create_cdata_section
domdocument_create_comment
domdocument_create_element
domdocument_create_element_ns
domdocument_create_entity_reference
domdocument_create_processing_instruction
domdocument_create_text_node
domdocument_doctype
domdocument_document_element
domdocument_dump_file
domdocument_dump_mem
domdocument_get_element_by_id
domdocument_get_elements_by_tagname
domdocument_html_dump_mem
domdocument_xinclude
domdocumenttype_entities
domdocumenttype_internal_subset
domdocumenttype_name
domdocumenttype_notations
domdocumenttype_public_id
domdocumenttype_system_id
domelement_get_attribute
domelement_get_attribute_node
domelement_get_elements_by_tagname
domelement_has_attribute
domelement_remove_attribute
domelement_set_attribute
domelement_set_attribute_node
domelement_tagname
domnode_add_namespace
domnode_append_child
domnode_append_sibling
domnode_attributes
domnode_child_nodes
domnode_clone_node
domnode_dump_node
domnode_first_child
domnode_get_content
domnode_has_attributes
domnode_has_child_nodes
domnode_insert_before
domnode_is_blank_node
domnode_last_child
domnode_next_sibling
domnode_node_name
domnode_node_type
domnode_node_value
domnode_owner_document
domnode_parent_node
domnode_prefix
domnode_previous_sibling
domnode_remove_child
domnode_replace_child
domnode_replace_node
domnode_set_content
domnode_set_name
domnode_set_namespace
domnode_unlink_node
domprocessinginstruction_data
domprocessinginstruction_target
domxml_new_doc
domxml_open_file
domxml_open_mem
domxml_version
domxml_xmltree
domxml_xslt_stylesheet
domxml_xslt_stylesheet_doc
domxml_xslt_stylesheet_file
domxml_xslt_version
domxsltstylesheet_process
domxsltstylesheet_result_dump_file
domxsltstylesheet_result_dump_mem
dotnet_load
doubleval
each
easter_date
easter_days
ebcdic2ascii
echo
empty
enchant_broker_describe
enchant_broker_dict_exists
enchant_broker_free
enchant_broker_free_dict
enchant_broker_get_error
enchant_broker_init
enchant_broker_list_dicts
enchant_broker_request_dict
enchant_broker_request_pwl_dict
enchant_broker_set_ordering
enchant_dict_add_to_personal
enchant_dict_add_to_session
enchant_dict_check
enchant_dict_describe
enchant_dict_get_error
enchant_dict_is_in_session
enchant_dict_quick_check
enchant_dict_store_replacement
enchant_dict_suggest
end
ereg
ereg_replace
eregi
eregi_replace
error_get_last
error_log
error_reporting
escapeshellarg
escapeshellcmd
eval
exec
exif_imagetype
exif_read_data
exif_tagname
exif_thumbnail
exit
exp
expect_expectl
expect_popen
explode
expm1
extension_loaded
extract
ezmlm_hash
fam_cancel_monitor
fam_close
fam_monitor_collection
fam_monitor_directory
fam_monitor_file
fam_next_event
fam_open
fam_pending
fam_resume_monitor
fam_suspend_monitor
fbsql_affected_rows
fbsql_autocommit
fbsql_blob_size
fbsql_change_user
fbsql_clob_size
fbsql_close
fbsql_commit
fbsql_connect
fbsql_create_blob
fbsql_create_clob
fbsql_create_db
fbsql_data_seek
fbsql_database
fbsql_database_password
fbsql_db_query
fbsql_db_status
fbsql_drop_db
fbsql_errno
fbsql_error
fbsql_fetch_array
fbsql_fetch_assoc
fbsql_fetch_field
fbsql_fetch_lengths
fbsql_fetch_object
fbsql_fetch_row
fbsql_field_flags
fbsql_field_len
fbsql_field_name
fbsql_field_seek
fbsql_field_table
fbsql_field_type
fbsql_free_result
fbsql_get_autostart_info
fbsql_hostname
fbsql_insert_id
fbsql_list_dbs
fbsql_list_fields
fbsql_list_tables
fbsql_next_result
fbsql_num_fields
fbsql_num_rows
fbsql_password
fbsql_pconnect
fbsql_query
fbsql_read_blob
fbsql_read_clob
fbsql_result
fbsql_rollback
fbsql_rows_fetched
fbsql_select_db
fbsql_set_characterset
fbsql_set_lob_mode
fbsql_set_password
fbsql_set_transaction
fbsql_start_db
fbsql_stop_db
fbsql_table_name
fbsql_tablename
fbsql_username
fbsql_warnings
fclose
fdf_add_doc_javascript
fdf_add_template
fdf_close
fdf_create
fdf_enum_values
fdf_errno
fdf_error
fdf_get_ap
fdf_get_attachment
fdf_get_encoding
fdf_get_file
fdf_get_flags
fdf_get_opt
fdf_get_status
fdf_get_value
fdf_get_version
fdf_header
fdf_next_field_name
fdf_open
fdf_open_string
fdf_remove_item
fdf_save
fdf_save_string
fdf_set_ap
fdf_set_encoding
fdf_set_file
fdf_set_flags
fdf_set_javascript_action
fdf_set_on_import_javascript
fdf_set_opt
fdf_set_status
fdf_set_submit_form_action
fdf_set_target_frame
fdf_set_value
fdf_set_version
feof
fflush
fgetc
fgetcsv
fgets
fgetss
file
file_exists
file_get_contents
file_put_contents
fileatime
filectime
filegroup
fileinode
filemtime
fileowner
fileperms
filepro
filepro_fieldcount
filepro_fieldname
filepro_fieldtype
filepro_fieldwidth
filepro_retrieve
filepro_rowcount
filesize
filetype
filter_has_var
filter_id
filter_input
filter_input_array
filter_list
filter_var
filter_var_array
finfo_buffer
finfo_close
finfo_file
finfo_open
finfo_set_flags
floatval
flock
floor
flush
fmod
fnmatch
fopen
fpassthru
fprintf
fputcsv
fputs
fread
frenchtojd
fribidi_log2vis
fscanf
fseek
fsockopen
fstat
ftell
ftok
ftp_alloc
ftp_cdup
ftp_chdir
ftp_chmod
ftp_close
ftp_connect
ftp_delete
ftp_exec
ftp_fget
ftp_fput
ftp_get
ftp_get_option
ftp_login
ftp_mdtm
ftp_mkdir
ftp_nb_continue
ftp_nb_fget
ftp_nb_fput
ftp_nb_get
ftp_nb_put
ftp_nlist
ftp_pasv
ftp_put
ftp_pwd
ftp_quit
ftp_raw
ftp_rawlist
ftp_rename
ftp_rmdir
ftp_set_option
ftp_site
ftp_size
ftp_ssl_connect
ftp_systype
ftruncate
func_get_arg
func_get_args
func_num_args
function_exists
fwrite
gc_collect_cycles
gc_disable
gc_enable
gc_enabled
gd_info
geoip_continent_code_by_name
geoip_country_code_by_name
geoip_country_code3_by_name
geoip_country_name_by_name
geoip_database_info
geoip_db_avail
geoip_db_filename
geoip_db_get_all_info
geoip_id_by_name
geoip_isp_by_name
geoip_org_by_name
geoip_record_by_name
geoip_region_by_name
geoip_region_name_by_code
geoip_time_zone_by_country_and_region
get_browser
get_called_class
get_cfg_var
get_class
get_class_methods
get_class_vars
get_current_user
get_declared_classes
get_declared_interfaces
get_defined_constants
get_defined_functions
get_defined_vars
get_extension_funcs
get_headers
get_html_translation_table
get_include_path
get_included_files
get_loaded_extensions
get_magic_quotes_gpc
get_magic_quotes_runtime
get_meta_tags
get_object_vars
get_parent_class
get_required_files
get_resource_type
getallheaders
getcwd
getdate
getenv
gethostbyaddr
gethostbyname
gethostbynamel
getimagesize
getlastmod
getmxrr
getmygid
getmyinode
getmypid
getmyuid
getopt
getprotobyname
getprotobynumber
getrandmax
getrusage
getservbyname
getservbyport
gettext
gettimeofday
gettype
glob
gmdate
gmmktime
gmp_abs
gmp_add
gmp_and
gmp_clrbit
gmp_cmp
gmp_com
gmp_div
gmp_div_q
gmp_div_qr
gmp_div_r
gmp_divexact
gmp_fact
gmp_gcd
gmp_gcdext
gmp_hamdist
gmp_init
gmp_intval
gmp_invert
gmp_jacobi
gmp_legendre
gmp_mod
gmp_mul
gmp_neg
gmp_nextprime
gmp_or
gmp_perfect_square
gmp_popcount
gmp_pow
gmp_powm
gmp_prob_prime
gmp_random
gmp_scan0
gmp_scan1
gmp_setbit
gmp_sign
gmp_sqrt
gmp_sqrtrem
gmp_strval
gmp_sub
gmp_testbit
gmp_xor
gmstrftime
gnupg_adddecryptkey
gnupg_addencryptkey
gnupg_addsignkey
gnupg_cleardecryptkeys
gnupg_clearencryptkeys
gnupg_clearsignkeys
gnupg_decrypt
gnupg_decryptverify
gnupg_encrypt
gnupg_encryptsign
gnupg_export
gnupg_geterror
gnupg_getprotocol
gnupg_import
gnupg_init
gnupg_keyinfo
gnupg_setarmor
gnupg_seterrormode
gnupg_setsignmode
gnupg_sign
gnupg_verify
gopher_parsedir
grapheme_extract
grapheme_stripos
grapheme_stristr
grapheme_strlen
grapheme_strpos
grapheme_strripos
grapheme_strrpos
grapheme_strstr
grapheme_substr
gregoriantojd
gzclose
gzcompress
gzdecode
gzdeflate
gzencode
gzeof
gzfile
gzgetc
gzgets
gzgetss
gzinflate
gzopen
gzpassthru
gzputs
gzread
gzrewind
gzseek
gztell
gzuncompress
gzwrite
halt_compiler
haruannotation_setborderstyle
haruannotation_sethighlightmode
haruannotation_seticon
haruannotation_setopened
harudestination_setfit
harudestination_setfitb
harudestination_setfitbh
harudestination_setfitbv
harudestination_setfith
harudestination_setfitr
harudestination_setfitv
harudestination_setxyz
harudoc_addpage
harudoc_addpagelabel
harudoc_construct
harudoc_createoutline
harudoc_getcurrentencoder
harudoc_getcurrentpage
harudoc_getencoder
harudoc_getfont
harudoc_getinfoattr
harudoc_getpagelayout
harudoc_getpagemode
harudoc_getstreamsize
harudoc_insertpage
harudoc_loadjpeg
harudoc_loadpng
harudoc_loadraw
harudoc_loadttc
harudoc_loadttf
harudoc_loadtype1
harudoc_output
harudoc_readfromstream
harudoc_reseterror
harudoc_resetstream
harudoc_save
harudoc_savetostream
harudoc_setcompressionmode
harudoc_setcurrentencoder
harudoc_setencryptionmode
harudoc_setinfoattr
harudoc_setinfodateattr
harudoc_setopenaction
harudoc_setpagelayout
harudoc_setpagemode
harudoc_setpagesconfiguration
harudoc_setpassword
harudoc_setpermission
harudoc_usecnsencodings
harudoc_usecnsfonts
harudoc_usecntencodings
harudoc_usecntfonts
harudoc_usejpencodings
harudoc_usejpfonts
harudoc_usekrencodings
harudoc_usekrfonts
haruencoder_getbytetype
haruencoder_gettype
haruencoder_getunicode
haruencoder_getwritingmode
harufont_getascent
harufont_getcapheight
harufont_getdescent
harufont_getencodingname
harufont_getfontname
harufont_gettextwidth
harufont_getunicodewidth
harufont_getxheight
harufont_measuretext
haruimage_getbitspercomponent
haruimage_getcolorspace
haruimage_getheight
haruimage_getsize
haruimage_getwidth
haruimage_setcolormask
haruimage_setmaskimage
haruoutline_setdestination
haruoutline_setopened
harupage_arc
harupage_begintext
harupage_circle
harupage_closepath
harupage_concat
harupage_createdestination
harupage_createlinkannotation
harupage_createtextannotation
harupage_createurlannotation
harupage_curveto
harupage_curveto2
harupage_curveto3
harupage_drawimage
harupage_ellipse
harupage_endpath
harupage_endtext
harupage_eofill
harupage_eofillstroke
harupage_fill
harupage_fillstroke
harupage_getcharspace
harupage_getcmykfill
harupage_getcmykstroke
harupage_getcurrentfont
harupage_getcurrentfontsize
harupage_getcurrentpos
harupage_getcurrenttextpos
harupage_getdash
harupage_getfillingcolorspace
harupage_getflatness
harupage_getgmode
harupage_getgrayfill
harupage_getgraystroke
harupage_getheight
harupage_gethorizontalscaling
harupage_getlinecap
harupage_getlinejoin
harupage_getlinewidth
harupage_getmiterlimit
harupage_getrgbfill
harupage_getrgbstroke
harupage_getstrokingcolorspace
harupage_gettextleading
harupage_gettextmatrix
harupage_gettextrenderingmode
harupage_gettextrise
harupage_gettextwidth
harupage_gettransmatrix
harupage_getwidth
harupage_getwordspace
harupage_lineto
harupage_measuretext
harupage_movetextpos
harupage_moveto
harupage_movetonextline
harupage_rectangle
harupage_setcharspace
harupage_setcmykfill
harupage_setcmykstroke
harupage_setdash
harupage_setflatness
harupage_setfontandsize
harupage_setgrayfill
harupage_setgraystroke
harupage_setheight
harupage_sethorizontalscaling
harupage_setlinecap
harupage_setlinejoin
harupage_setlinewidth
harupage_setmiterlimit
harupage_setrgbfill
harupage_setrgbstroke
harupage_setrotate
harupage_setsize
harupage_setslideshow
harupage_settextleading
harupage_settextmatrix
harupage_settextrenderingmode
harupage_settextrise
harupage_setwidth
harupage_setwordspace
harupage_showtext
harupage_showtextnextline
harupage_stroke
harupage_textout
harupage_textrect
hash
hash_algos
hash_copy
hash_file
hash_final
hash_hmac
hash_hmac_file
hash_init
hash_update
hash_update_file
hash_update_stream
header
headers_list
headers_sent
hebrev
hebrevc
hexdec
highlight_file
highlight_string
html_entity_decode
htmlentities
htmlspecialchars
htmlspecialchars_decode
http_build_cookie
http_build_query
http_build_str
http_build_url
http_cache_etag
http_cache_last_modified
http_chunked_decode
http_date
http_deflate
http_get
http_get_request_body
http_get_request_body_stream
http_get_request_headers
http_head
http_inflate
http_match_etag
http_match_modified
http_match_request_header
http_negotiate_charset
http_negotiate_content_type
http_negotiate_language
http_parse_cookie
http_parse_headers
http_parse_message
http_parse_params
http_persistent_handles_clean
http_persistent_handles_count
http_persistent_handles_ident
http_post_data
http_post_fields
http_put_data
http_put_file
http_put_stream
http_redirect
http_request
http_request_body_encode
http_request_method_exists
http_request_method_name
http_request_method_register
http_request_method_unregister
http_send_content_disposition
http_send_content_type
http_send_data
http_send_file
http_send_last_modified
http_send_status
http_send_stream
http_support
http_throttle
httpdeflatestream_construct
httpdeflatestream_factory
httpdeflatestream_finish
httpdeflatestream_flush
httpdeflatestream_update
httpinflatestream_construct
httpinflatestream_factory
httpinflatestream_finish
httpinflatestream_flush
httpinflatestream_update
httpmessage_addheaders
httpmessage_construct
httpmessage_detach
httpmessage_factory
httpmessage_fromenv
httpmessage_fromstring
httpmessage_getbody
httpmessage_getheader
httpmessage_getheaders
httpmessage_gethttpversion
httpmessage_getparentmessage
httpmessage_getrequestmethod
httpmessage_getrequesturl
httpmessage_getresponsecode
httpmessage_getresponsestatus
httpmessage_gettype
httpmessage_guesscontenttype
httpmessage_prepend
httpmessage_reverse
httpmessage_send
httpmessage_setbody
httpmessage_setheaders
httpmessage_sethttpversion
httpmessage_setrequestmethod
httpmessage_setrequesturl
httpmessage_setresponsecode
httpmessage_setresponsestatus
httpmessage_settype
httpmessage_tomessagetypeobject
httpmessage_tostring
httpquerystring_construct
httpquerystring_get
httpquerystring_mod
httpquerystring_set
httpquerystring_singleton
httpquerystring_toarray
httpquerystring_tostring
httpquerystring_xlate
httprequest_addcookies
httprequest_addheaders
httprequest_addpostfields
httprequest_addpostfile
httprequest_addputdata
httprequest_addquerydata
httprequest_addrawpostdata
httprequest_addssloptions
httprequest_clearhistory
httprequest_construct
httprequest_enablecookies
httprequest_getcontenttype
httprequest_getcookies
httprequest_getheaders
httprequest_gethistory
httprequest_getmethod
httprequest_getoptions
httprequest_getpostfields
httprequest_getpostfiles
httprequest_getputdata
httprequest_getputfile
httprequest_getquerydata
httprequest_getrawpostdata
httprequest_getrawrequestmessage
httprequest_getrawresponsemessage
httprequest_getrequestmessage
httprequest_getresponsebody
httprequest_getresponsecode
httprequest_getresponsecookies
httprequest_getresponsedata
httprequest_getresponseheader
httprequest_getresponseinfo
httprequest_getresponsemessage
httprequest_getresponsestatus
httprequest_getssloptions
httprequest_geturl
httprequest_resetcookies
httprequest_send
httprequest_setcontenttype
httprequest_setcookies
httprequest_setheaders
httprequest_setmethod
httprequest_setoptions
httprequest_setpostfields
httprequest_setpostfiles
httprequest_setputdata
httprequest_setputfile
httprequest_setquerydata
httprequest_setrawpostdata
httprequest_setssloptions
httprequest_seturl
httprequestpool_attach
httprequestpool_construct
httprequestpool_destruct
httprequestpool_detach
httprequestpool_getattachedrequests
httprequestpool_getfinishedrequests
httprequestpool_reset
httprequestpool_send
httprequestpool_socketperform
httprequestpool_socketselect
httpresponse_capture
httpresponse_getbuffersize
httpresponse_getcache
httpresponse_getcachecontrol
httpresponse_getcontentdisposition
httpresponse_getcontenttype
httpresponse_getdata
httpresponse_getetag
httpresponse_getfile
httpresponse_getgzip
httpresponse_getheader
httpresponse_getlastmodified
httpresponse_getrequestbody
httpresponse_getrequestbodystream
httpresponse_getrequestheaders
httpresponse_getstream
httpresponse_getthrottledelay
httpresponse_guesscontenttype
httpresponse_redirect
httpresponse_send
httpresponse_setbuffersize
httpresponse_setcache
httpresponse_setcachecontrol
httpresponse_setcontentdisposition
httpresponse_setcontenttype
httpresponse_setdata
httpresponse_setetag
httpresponse_setfile
httpresponse_setgzip
httpresponse_setheader
httpresponse_setlastmodified
httpresponse_setstream
httpresponse_setthrottledelay
httpresponse_status
hw_array2objrec
hw_changeobject
hw_children
hw_childrenobj
hw_close
hw_connect
hw_connection_info
hw_cp
hw_deleteobject
hw_docbyanchor
hw_docbyanchorobj
hw_document_attributes
hw_document_bodytag
hw_document_content
hw_document_setcontent
hw_document_size
hw_dummy
hw_edittext
hw_error
hw_errormsg
hw_free_document
hw_getanchors
hw_getanchorsobj
hw_getandlock
hw_getchildcoll
hw_getchildcollobj
hw_getchilddoccoll
hw_getchilddoccollobj
hw_getobject
hw_getobjectbyquery
hw_getobjectbyquerycoll
hw_getobjectbyquerycollobj
hw_getobjectbyqueryobj
hw_getparents
hw_getparentsobj
hw_getrellink
hw_getremote
hw_getremotechildren
hw_getsrcbydestobj
hw_gettext
hw_getusername
hw_identify
hw_incollections
hw_info
hw_inscoll
hw_insdoc
hw_insertanchors
hw_insertdocument
hw_insertobject
hw_mapid
hw_modifyobject
hw_mv
hw_new_document
hw_objrec2array
hw_output_document
hw_pconnect
hw_pipedocument
hw_root
hw_setlinkroot
hw_stat
hw_unlock
hw_who
hwapi_attribute
hwapi_attribute_key
hwapi_attribute_langdepvalue
hwapi_attribute_value
hwapi_attribute_values
hwapi_checkin
hwapi_checkout
hwapi_children
hwapi_content
hwapi_content_mimetype
hwapi_content_read
hwapi_copy
hwapi_dbstat
hwapi_dcstat
hwapi_dstanchors
hwapi_dstofsrcanchor
hwapi_error_count
hwapi_error_reason
hwapi_find
hwapi_ftstat
hwapi_hgcsp
hwapi_hwstat
hwapi_identify
hwapi_info
hwapi_insert
hwapi_insertanchor
hwapi_insertcollection
hwapi_insertdocument
hwapi_link
hwapi_lock
hwapi_move
hwapi_new_content
hwapi_object
hwapi_object_assign
hwapi_object_attreditable
hwapi_object_count
hwapi_object_insert
hwapi_object_new
hwapi_object_remove
hwapi_object_title
hwapi_object_value
hwapi_objectbyanchor
hwapi_parents
hwapi_reason_description
hwapi_reason_type
hwapi_remove
hwapi_replace
hwapi_setcommittedversion
hwapi_srcanchors
hwapi_srcsofdst
hwapi_unlock
hwapi_user
hwapi_userlist
hypot
ibase_add_user
ibase_affected_rows
ibase_backup
ibase_blob_add
ibase_blob_cancel
ibase_blob_close
ibase_blob_create
ibase_blob_echo
ibase_blob_get
ibase_blob_import
ibase_blob_info
ibase_blob_open
ibase_close
ibase_commit
ibase_commit_ret
ibase_connect
ibase_db_info
ibase_delete_user
ibase_drop_db
ibase_errcode
ibase_errmsg
ibase_execute
ibase_fetch_assoc
ibase_fetch_object
ibase_fetch_row
ibase_field_info
ibase_free_event_handler
ibase_free_query
ibase_free_result
ibase_gen_id
ibase_maintain_db
ibase_modify_user
ibase_name_result
ibase_num_fields
ibase_num_params
ibase_param_info
ibase_pconnect
ibase_prepare
ibase_query
ibase_restore
ibase_rollback
ibase_rollback_ret
ibase_server_info
ibase_service_attach
ibase_service_detach
ibase_set_event_handler
ibase_timefmt
ibase_trans
ibase_wait_event
iconv
iconv_get_encoding
iconv_mime_decode
iconv_mime_decode_headers
iconv_mime_encode
iconv_set_encoding
iconv_strlen
iconv_strpos
iconv_strrpos
iconv_substr
id3_get_frame_long_name
id3_get_frame_short_name
id3_get_genre_id
id3_get_genre_list
id3_get_genre_name
id3_get_tag
id3_get_version
id3_remove_tag
id3_set_tag
idate
idn_strerror
idn_to_ascii
idn_to_utf8
ifx_affected_rows
ifx_blobinfile_mode
ifx_byteasvarchar
ifx_close
ifx_connect
ifx_copy_blob
ifx_create_blob
ifx_create_char
ifx_do
ifx_error
ifx_errormsg
ifx_fetch_row
ifx_fieldproperties
ifx_fieldtypes
ifx_free_blob
ifx_free_char
ifx_free_result
ifx_get_blob
ifx_get_char
ifx_getsqlca
ifx_htmltbl_result
ifx_nullformat
ifx_num_fields
ifx_num_rows
ifx_pconnect
ifx_prepare
ifx_query
ifx_textasvarchar
ifx_update_blob
ifx_update_char
ifxus_close_slob
ifxus_create_slob
ifxus_free_slob
ifxus_open_slob
ifxus_read_slob
ifxus_seek_slob
ifxus_tell_slob
ifxus_write_slob
ignore_user_abort
iis_add_server
iis_get_dir_security
iis_get_script_map
iis_get_server_by_comment
iis_get_server_by_path
iis_get_server_rights
iis_get_service_state
iis_remove_server
iis_set_app_settings
iis_set_dir_security
iis_set_script_map
iis_set_server_rights
iis_start_server
iis_start_service
iis_stop_server
iis_stop_service
image_type_to_extension
image_type_to_mime_type
image2wbmp
imagealphablending
imageantialias
imagearc
imagechar
imagecharup
imagecolorallocate
imagecolorallocatealpha
imagecolorat
imagecolorclosest
imagecolorclosestalpha
imagecolorclosesthwb
imagecolordeallocate
imagecolorexact
imagecolorexactalpha
imagecolormatch
imagecolorresolve
imagecolorresolvealpha
imagecolorset
imagecolorsforindex
imagecolorstotal
imagecolortransparent
imageconvolution
imagecopy
imagecopymerge
imagecopymergegray
imagecopyresampled
imagecopyresized
imagecreate
imagecreatefromgd
imagecreatefromgd2
imagecreatefromgd2part
imagecreatefromgif
imagecreatefromjpeg
imagecreatefrompng
imagecreatefromstring
imagecreatefromwbmp
imagecreatefromxbm
imagecreatefromxpm
imagecreatetruecolor
imagedashedline
imagedestroy
imageellipse
imagefill
imagefilledarc
imagefilledellipse
imagefilledpolygon
imagefilledrectangle
imagefilltoborder
imagefilter
imagefontheight
imagefontwidth
imageftbbox
imagefttext
imagegammacorrect
imagegd
imagegd2
imagegif
imagegrabscreen
imagegrabwindow
imageinterlace
imageistruecolor
imagejpeg
imagelayereffect
imageline
imageloadfont
imagepalettecopy
imagepng
imagepolygon
imagepsbbox
imagepsencodefont
imagepsextendfont
imagepsfreefont
imagepsloadfont
imagepsslantfont
imagepstext
imagerectangle
imagerotate
imagesavealpha
imagesetbrush
imagesetpixel
imagesetstyle
imagesetthickness
imagesettile
imagestring
imagestringup
imagesx
imagesy
imagetruecolortopalette
imagettfbbox
imagettftext
imagetypes
imagewbmp
imagexbm
imagick_adaptiveblurimage
imagick_adaptiveresizeimage
imagick_adaptivesharpenimage
imagick_adaptivethresholdimage
imagick_addimage
imagick_addnoiseimage
imagick_affinetransformimage
imagick_annotateimage
imagick_appendimages
imagick_averageimages
imagick_blackthresholdimage
imagick_blurimage
imagick_borderimage
imagick_charcoalimage
imagick_chopimage
imagick_clear
imagick_clipimage
imagick_clippathimage
imagick_clone
imagick_clutimage
imagick_coalesceimages
imagick_colorfloodfillimage
imagick_colorizeimage
imagick_combineimages
imagick_commentimage
imagick_compareimagechannels
imagick_compareimagelayers
imagick_compareimages
imagick_compositeimage
imagick_construct
imagick_contrastimage
imagick_contraststretchimage
imagick_convolveimage
imagick_cropimage
imagick_cropthumbnailimage
imagick_current
imagick_cyclecolormapimage
imagick_deconstructimages
imagick_despeckleimage
imagick_destroy
imagick_displayimage
imagick_displayimages
imagick_distortimage
imagick_drawimage
imagick_edgeimage
imagick_embossimage
imagick_enhanceimage
imagick_equalizeimage
imagick_evaluateimage
imagick_flattenimages
imagick_flipimage
imagick_flopimage
imagick_frameimage
imagick_fximage
imagick_gammaimage
imagick_gaussianblurimage
imagick_getcompression
imagick_getcompressionquality
imagick_getcopyright
imagick_getfilename
imagick_getformat
imagick_gethomeurl
imagick_getimage
imagick_getimagebackgroundcolor
imagick_getimageblob
imagick_getimageblueprimary
imagick_getimagebordercolor
imagick_getimagechanneldepth
imagick_getimagechanneldistortion
imagick_getimagechannelextrema
imagick_getimagechannelmean
imagick_getimagechannelstatistics
imagick_getimagecolormapcolor
imagick_getimagecolors
imagick_getimagecolorspace
imagick_getimagecompose
imagick_getimagedelay
imagick_getimagedepth
imagick_getimagedispose
imagick_getimagedistortion
imagick_getimageextrema
imagick_getimagefilename
imagick_getimageformat
imagick_getimagegamma
imagick_getimagegeometry
imagick_getimagegreenprimary
imagick_getimageheight
imagick_getimagehistogram
imagick_getimageindex
imagick_getimageinterlacescheme
imagick_getimageinterpolatemethod
imagick_getimageiterations
imagick_getimagelength
imagick_getimagemagicklicense
imagick_getimagematte
imagick_getimagemattecolor
imagick_getimageorientation
imagick_getimagepage
imagick_getimagepixelcolor
imagick_getimageprofile
imagick_getimageprofiles
imagick_getimageproperties
imagick_getimageproperty
imagick_getimageredprimary
imagick_getimageregion
imagick_getimagerenderingintent
imagick_getimageresolution
imagick_getimagesblob
imagick_getimagescene
imagick_getimagesignature
imagick_getimagesize
imagick_getimagetickspersecond
imagick_getimagetotalinkdensity
imagick_getimagetype
imagick_getimageunits
imagick_getimagevirtualpixelmethod
imagick_getimagewhitepoint
imagick_getimagewidth
imagick_getinterlacescheme
imagick_getiteratorindex
imagick_getnumberimages
imagick_getoption
imagick_getpackagename
imagick_getpage
imagick_getpixeliterator
imagick_getpixelregioniterator
imagick_getquantumdepth
imagick_getquantumrange
imagick_getreleasedate
imagick_getresource
imagick_getresourcelimit
imagick_getsamplingfactors
imagick_getsize
imagick_getsizeoffset
imagick_getversion
imagick_hasnextimage
imagick_haspreviousimage
imagick_identifyimage
imagick_implodeimage
imagick_labelimage
imagick_levelimage
imagick_linearstretchimage
imagick_magnifyimage
imagick_mapimage
imagick_mattefloodfillimage
imagick_medianfilterimage
imagick_minifyimage
imagick_modulateimage
imagick_montageimage
imagick_morphimages
imagick_mosaicimages
imagick_motionblurimage
imagick_negateimage
imagick_newimage
imagick_newpseudoimage
imagick_nextimage
imagick_normalizeimage
imagick_oilpaintimage
imagick_optimizeimagelayers
imagick_orderedposterizeimage
imagick_paintfloodfillimage
imagick_paintopaqueimage
imagick_painttransparentimage
imagick_pingimage
imagick_pingimageblob
imagick_pingimagefile
imagick_polaroidimage
imagick_posterizeimage
imagick_previewimages
imagick_previousimage
imagick_profileimage
imagick_quantizeimage
imagick_quantizeimages
imagick_queryfontmetrics
imagick_queryfonts
imagick_queryformats
imagick_radialblurimage
imagick_raiseimage
imagick_randomthresholdimage
imagick_readimage
imagick_readimageblob
imagick_readimagefile
imagick_reducenoiseimage
imagick_removeimage
imagick_removeimageprofile
imagick_render
imagick_resampleimage
imagick_resizeimage
imagick_rollimage
imagick_rotateimage
imagick_roundcorners
imagick_sampleimage
imagick_scaleimage
imagick_separateimagechannel
imagick_sepiatoneimage
imagick_setbackgroundcolor
imagick_setcompression
imagick_setcompressionquality
imagick_setfilename
imagick_setfirstiterator
imagick_setfont
imagick_setformat
imagick_setimage
imagick_setimagebackgroundcolor
imagick_setimagebias
imagick_setimageblueprimary
imagick_setimagebordercolor
imagick_setimagechanneldepth
imagick_setimagecolormapcolor
imagick_setimagecolorspace
imagick_setimagecompose
imagick_setimagecompression
imagick_setimagedelay
imagick_setimagedepth
imagick_setimagedispose
imagick_setimageextent
imagick_setimagefilename
imagick_setimageformat
imagick_setimagegamma
imagick_setimagegreenprimary
imagick_setimageindex
imagick_setimageinterlacescheme
imagick_setimageinterpolatemethod
imagick_setimageiterations
imagick_setimagematte
imagick_setimagemattecolor
imagick_setimageopacity
imagick_setimageorientation
imagick_setimagepage
imagick_setimageprofile
imagick_setimageproperty
imagick_setimageredprimary
imagick_setimagerenderingintent
imagick_setimageresolution
imagick_setimagescene
imagick_setimagetickspersecond
imagick_setimagetype
imagick_setimageunits
imagick_setimagevirtualpixelmethod
imagick_setimagewhitepoint
imagick_setinterlacescheme
imagick_setiteratorindex
imagick_setlastiterator
imagick_setoption
imagick_setpage
imagick_setresolution
imagick_setresourcelimit
imagick_setsamplingfactors
imagick_setsize
imagick_setsizeoffset
imagick_settype
imagick_shadeimage
imagick_shadowimage
imagick_sharpenimage
imagick_shaveimage
imagick_shearimage
imagick_sigmoidalcontrastimage
imagick_sketchimage
imagick_solarizeimage
imagick_spliceimage
imagick_spreadimage
imagick_steganoimage
imagick_stereoimage
imagick_stripimage
imagick_swirlimage
imagick_textureimage
imagick_thresholdimage
imagick_thumbnailimage
imagick_tintimage
imagick_transformimage
imagick_transposeimage
imagick_transverseimage
imagick_trimimage
imagick_uniqueimagecolors
imagick_unsharpmaskimage
imagick_valid
imagick_vignetteimage
imagick_waveimage
imagick_whitethresholdimage
imagick_writeimage
imagick_writeimages
imagickdraw_affine
imagickdraw_annotation
imagickdraw_arc
imagickdraw_bezier
imagickdraw_circle
imagickdraw_clear
imagickdraw_clone
imagickdraw_color
imagickdraw_comment
imagickdraw_composite
imagickdraw_construct
imagickdraw_destroy
imagickdraw_ellipse
imagickdraw_getclippath
imagickdraw_getcliprule
imagickdraw_getclipunits
imagickdraw_getfillcolor
imagickdraw_getfillopacity
imagickdraw_getfillrule
imagickdraw_getfont
imagickdraw_getfontfamily
imagickdraw_getfontsize
imagickdraw_getfontstyle
imagickdraw_getfontweight
imagickdraw_getgravity
imagickdraw_getstrokeantialias
imagickdraw_getstrokecolor
imagickdraw_getstrokedasharray
imagickdraw_getstrokedashoffset
imagickdraw_getstrokelinecap
imagickdraw_getstrokelinejoin
imagickdraw_getstrokemiterlimit
imagickdraw_getstrokeopacity
imagickdraw_getstrokewidth
imagickdraw_gettextalignment
imagickdraw_gettextantialias
imagickdraw_gettextdecoration
imagickdraw_gettextencoding
imagickdraw_gettextundercolor
imagickdraw_getvectorgraphics
imagickdraw_line
imagickdraw_matte
imagickdraw_pathclose
imagickdraw_pathcurvetoabsolute
imagickdraw_pathcurvetoquadraticbezierabsolute
imagickdraw_pathcurvetoquadraticbezierrelative
imagickdraw_pathcurvetoquadraticbeziersmoothabsolute
imagickdraw_pathcurvetoquadraticbeziersmoothrelative
imagickdraw_pathcurvetorelative
imagickdraw_pathcurvetosmoothabsolute
imagickdraw_pathcurvetosmoothrelative
imagickdraw_pathellipticarcabsolute
imagickdraw_pathellipticarcrelative
imagickdraw_pathfinish
imagickdraw_pathlinetoabsolute
imagickdraw_pathlinetohorizontalabsolute
imagickdraw_pathlinetohorizontalrelative
imagickdraw_pathlinetorelative
imagickdraw_pathlinetoverticalabsolute
imagickdraw_pathlinetoverticalrelative
imagickdraw_pathmovetoabsolute
imagickdraw_pathmovetorelative
imagickdraw_pathstart
imagickdraw_point
imagickdraw_polygon
imagickdraw_polyline
imagickdraw_pop
imagickdraw_popclippath
imagickdraw_popdefs
imagickdraw_poppattern
imagickdraw_push
imagickdraw_pushclippath
imagickdraw_pushdefs
imagickdraw_pushpattern
imagickdraw_rectangle
imagickdraw_render
imagickdraw_rotate
imagickdraw_roundrectangle
imagickdraw_scale
imagickdraw_setclippath
imagickdraw_setcliprule
imagickdraw_setclipunits
imagickdraw_setfillalpha
imagickdraw_setfillcolor
imagickdraw_setfillopacity
imagickdraw_setfillpatternurl
imagickdraw_setfillrule
imagickdraw_setfont
imagickdraw_setfontfamily
imagickdraw_setfontsize
imagickdraw_setfontstretch
imagickdraw_setfontstyle
imagickdraw_setfontweight
imagickdraw_setgravity
imagickdraw_setstrokealpha
imagickdraw_setstrokeantialias
imagickdraw_setstrokecolor
imagickdraw_setstrokedasharray
imagickdraw_setstrokedashoffset
imagickdraw_setstrokelinecap
imagickdraw_setstrokelinejoin
imagickdraw_setstrokemiterlimit
imagickdraw_setstrokeopacity
imagickdraw_setstrokepatternurl
imagickdraw_setstrokewidth
imagickdraw_settextalignment
imagickdraw_settextantialias
imagickdraw_settextdecoration
imagickdraw_settextencoding
imagickdraw_settextundercolor
imagickdraw_setvectorgraphics
imagickdraw_setviewbox
imagickdraw_skewx
imagickdraw_skewy
imagickdraw_translate
imagickpixel_clear
imagickpixel_construct
imagickpixel_destroy
imagickpixel_getcolor
imagickpixel_getcolorasstring
imagickpixel_getcolorcount
imagickpixel_getcolorvalue
imagickpixel_gethsl
imagickpixel_issimilar
imagickpixel_setcolor
imagickpixel_setcolorvalue
imagickpixel_sethsl
imagickpixeliterator_clear
imagickpixeliterator_construct
imagickpixeliterator_destroy
imagickpixeliterator_getcurrentiteratorrow
imagickpixeliterator_getiteratorrow
imagickpixeliterator_getnextiteratorrow
imagickpixeliterator_getpreviousiteratorrow
imagickpixeliterator_newpixeliterator
imagickpixeliterator_newpixelregioniterator
imagickpixeliterator_resetiterator
imagickpixeliterator_setiteratorfirstrow
imagickpixeliterator_setiteratorlastrow
imagickpixeliterator_setiteratorrow
imagickpixeliterator_synciterator
imap_8bit
imap_alerts
imap_append
imap_base64
imap_binary
imap_body
imap_bodystruct
imap_check
imap_clearflag_full
imap_close
imap_createmailbox
imap_delete
imap_deletemailbox
imap_errors
imap_expunge
imap_fetch_overview
imap_fetchbody
imap_fetchheader
imap_fetchstructure
imap_get_quota
imap_get_quotaroot
imap_getacl
imap_getmailboxes
imap_getsubscribed
imap_header
imap_headerinfo
imap_headers
imap_last_error
imap_list
imap_listmailbox
imap_listscan
imap_listsubscribed
imap_lsub
imap_mail
imap_mail_compose
imap_mail_copy
imap_mail_move
imap_mailboxmsginfo
imap_mime_header_decode
imap_msgno
imap_num_msg
imap_num_recent
imap_open
imap_ping
imap_qprint
imap_renamemailbox
imap_reopen
imap_rfc822_parse_adrlist
imap_rfc822_parse_headers
imap_rfc822_write_address
imap_savebody
imap_scanmailbox
imap_search
imap_set_quota
imap_setacl
imap_setflag_full
imap_sort
imap_status
imap_subscribe
imap_thread
imap_timeout
imap_uid
imap_undelete
imap_unsubscribe
imap_utf7_decode
imap_utf7_encode
imap_utf8
implode
import_request_variables
in_array
include
include_once
inclued_get_data
inet_ntop
inet_pton
ingres_autocommit
ingres_autocommit_state
ingres_charset
ingres_close
ingres_commit
ingres_connect
ingres_cursor
ingres_errno
ingres_error
ingres_errsqlstate
ingres_escape_string
ingres_execute
ingres_fetch_array
ingres_fetch_object
ingres_fetch_proc_return
ingres_fetch_row
ingres_field_length
ingres_field_name
ingres_field_nullable
ingres_field_precision
ingres_field_scale
ingres_field_type
ingres_free_result
ingres_next_error
ingres_num_fields
ingres_num_rows
ingres_pconnect
ingres_prepare
ingres_query
ingres_result_seek
ingres_rollback
ingres_set_environment
ingres_unbuffered_query
ini_alter
ini_get
ini_get_all
ini_restore
ini_set
inotify_add_watch
inotify_init
inotify_queue_len
inotify_read
inotify_rm_watch
interface_exists
intl_error_name
intl_get_error_code
intl_get_error_message
intl_is_failure
intval
ip2long
iptcembed
iptcparse
is_a
is_array
is_binary
is_bool
is_buffer
is_callable
is_dir
is_double
is_executable
is_file
is_finite
is_float
is_infinite
is_int
is_integer
is_link
is_long
is_nan
is_null
is_numeric
is_object
is_readable
is_real
is_resource
is_scalar
is_soap_fault
is_string
is_subclass_of
is_unicode
is_uploaded_file
is_writable
is_writeable
isset
iterator_apply
iterator_count
iterator_to_array
java_last_exception_clear
java_last_exception_get
jddayofweek
jdmonthname
jdtofrench
jdtogregorian
jdtojewish
jdtojulian
jdtounix
jewishtojd
join
jpeg2wbmp
json_decode
json_encode
json_last_error
juliantojd
kadm5_chpass_principal
kadm5_create_principal
kadm5_delete_principal
kadm5_destroy
kadm5_flush
kadm5_get_policies
kadm5_get_principal
kadm5_get_principals
kadm5_init_with_password
kadm5_modify_principal
key
krsort
ksort
lcfirst
lcg_value
lchgrp
lchown
ldap_8859_to_t61
ldap_add
ldap_bind
ldap_close
ldap_compare
ldap_connect
ldap_count_entries
ldap_delete
ldap_dn2ufn
ldap_err2str
ldap_errno
ldap_error
ldap_explode_dn
ldap_first_attribute
ldap_first_entry
ldap_first_reference
ldap_free_result
ldap_get_attributes
ldap_get_dn
ldap_get_entries
ldap_get_option
ldap_get_values
ldap_get_values_len
ldap_list
ldap_mod_add
ldap_mod_del
ldap_mod_replace
ldap_modify
ldap_next_attribute
ldap_next_entry
ldap_next_reference
ldap_parse_reference
ldap_parse_result
ldap_read
ldap_rename
ldap_sasl_bind
ldap_search
ldap_set_option
ldap_set_rebind_proc
ldap_sort
ldap_start_tls
ldap_t61_to_8859
ldap_unbind
levenshtein
libxml_clear_errors
libxml_get_errors
libxml_get_last_error
libxml_set_streams_context
libxml_use_internal_errors
link
linkinfo
list
locale_get_default
locale_set_default
localeconv
localtime
log
log10
log1p
long2ip
lstat
ltrim
lzf_compress
lzf_decompress
lzf_optimized_for
m_checkstatus
m_completeauthorizations
m_connect
m_connectionerror
m_deletetrans
m_destroyconn
m_destroyengine
m_getcell
m_getcellbynum
m_getcommadelimited
m_getheader
m_initconn
m_initengine
m_iscommadelimited
m_maxconntimeout
m_monitor
m_numcolumns
m_numrows
m_parsecommadelimited
m_responsekeys
m_responseparam
m_returnstatus
m_setblocking
m_setdropfile
m_setip
m_setssl
m_setssl_cafile
m_setssl_files
m_settimeout
m_sslcert_gen_hash
m_transactionssent
m_transinqueue
m_transkeyval
m_transnew
m_transsend
m_uwait
m_validateidentifier
m_verifyconnection
m_verifysslcert
mail
mailparse_determine_best_xfer_encoding
mailparse_msg_create
mailparse_msg_extract_part
mailparse_msg_extract_part_file
mailparse_msg_extract_whole_part_file
mailparse_msg_free
mailparse_msg_get_part
mailparse_msg_get_part_data
mailparse_msg_get_structure
mailparse_msg_parse
mailparse_msg_parse_file
mailparse_rfc822_parse_addresses
mailparse_stream_encode
mailparse_uudecode_all
main
max
maxdb_affected_rows
maxdb_autocommit
maxdb_bind_param
maxdb_bind_result
maxdb_change_user
maxdb_character_set_name
maxdb_client_encoding
maxdb_close
maxdb_close_long_data
maxdb_commit
maxdb_connect
maxdb_connect_errno
maxdb_connect_error
maxdb_data_seek
maxdb_debug
maxdb_disable_reads_from_master
maxdb_disable_rpl_parse
maxdb_dump_debug_info
maxdb_embedded_connect
maxdb_enable_reads_from_master
maxdb_enable_rpl_parse
maxdb_errno
maxdb_error
maxdb_escape_string
maxdb_execute
maxdb_fetch
maxdb_fetch_array
maxdb_fetch_assoc
maxdb_fetch_field
maxdb_fetch_field_direct
maxdb_fetch_fields
maxdb_fetch_lengths
maxdb_fetch_object
maxdb_fetch_row
maxdb_field_count
maxdb_field_seek
maxdb_field_tell
maxdb_free_result
maxdb_get_client_info
maxdb_get_client_version
maxdb_get_host_info
maxdb_get_metadata
maxdb_get_proto_info
maxdb_get_server_info
maxdb_get_server_version
maxdb_info
maxdb_init
maxdb_insert_id
maxdb_kill
maxdb_master_query
maxdb_more_results
maxdb_multi_query
maxdb_next_result
maxdb_num_fields
maxdb_num_rows
maxdb_options
maxdb_param_count
maxdb_ping
maxdb_prepare
maxdb_query
maxdb_real_connect
maxdb_real_escape_string
maxdb_real_query
maxdb_report
maxdb_rollback
maxdb_rpl_parse_enabled
maxdb_rpl_probe
maxdb_rpl_query_type
maxdb_select_db
maxdb_send_long_data
maxdb_send_query
maxdb_server_end
maxdb_server_init
maxdb_set_opt
maxdb_sqlstate
maxdb_ssl_set
maxdb_stat
maxdb_stmt_affected_rows
maxdb_stmt_bind_param
maxdb_stmt_bind_result
maxdb_stmt_close
maxdb_stmt_close_long_data
maxdb_stmt_data_seek
maxdb_stmt_errno
maxdb_stmt_error
maxdb_stmt_execute
maxdb_stmt_fetch
maxdb_stmt_free_result
maxdb_stmt_init
maxdb_stmt_num_rows
maxdb_stmt_param_count
maxdb_stmt_prepare
maxdb_stmt_reset
maxdb_stmt_result_metadata
maxdb_stmt_send_long_data
maxdb_stmt_sqlstate
maxdb_stmt_store_result
maxdb_store_result
maxdb_thread_id
maxdb_thread_safe
maxdb_use_result
maxdb_warning_count
mb_check_encoding
mb_convert_case
mb_convert_encoding
mb_convert_kana
mb_convert_variables
mb_decode_mimeheader
mb_decode_numericentity
mb_detect_encoding
mb_detect_order
mb_encode_mimeheader
mb_encode_numericentity
mb_ereg
mb_ereg_match
mb_ereg_replace
mb_ereg_search
mb_ereg_search_getpos
mb_ereg_search_getregs
mb_ereg_search_init
mb_ereg_search_pos
mb_ereg_search_regs
mb_ereg_search_setpos
mb_eregi
mb_eregi_replace
mb_get_info
mb_http_input
mb_http_output
mb_internal_encoding
mb_language
mb_list_encodings
mb_output_handler
mb_parse_str
mb_preferred_mime_name
mb_regex_encoding
mb_regex_set_options
mb_send_mail
mb_split
mb_strcut
mb_strimwidth
mb_stripos
mb_stristr
mb_strlen
mb_strpos
mb_strrchr
mb_strrichr
mb_strripos
mb_strrpos
mb_strstr
mb_strtolower
mb_strtoupper
mb_strwidth
mb_substitute_character
mb_substr
mb_substr_count
mcrypt_cbc
mcrypt_cfb
mcrypt_create_iv
mcrypt_decrypt
mcrypt_ecb
mcrypt_enc_get_algorithms_name
mcrypt_enc_get_block_size
mcrypt_enc_get_iv_size
mcrypt_enc_get_key_size
mcrypt_enc_get_modes_name
mcrypt_enc_get_supported_key_sizes
mcrypt_enc_is_block_algorithm
mcrypt_enc_is_block_algorithm_mode
mcrypt_enc_is_block_mode
mcrypt_enc_self_test
mcrypt_encrypt
mcrypt_generic
mcrypt_generic_deinit
mcrypt_generic_end
mcrypt_generic_init
mcrypt_get_block_size
mcrypt_get_cipher_name
mcrypt_get_iv_size
mcrypt_get_key_size
mcrypt_list_algorithms
mcrypt_list_modes
mcrypt_module_close
mcrypt_module_get_algo_block_size
mcrypt_module_get_algo_key_size
mcrypt_module_get_supported_key_sizes
mcrypt_module_is_block_algorithm
mcrypt_module_is_block_algorithm_mode
mcrypt_module_is_block_mode
mcrypt_module_open
mcrypt_module_self_test
mcrypt_ofb
md5
md5_file
mdecrypt_generic
memcache_add
memcache_addserver
memcache_close
memcache_connect
memcache_debug
memcache_decrement
memcache_delete
memcache_flush
memcache_get
memcache_getextendedstats
memcache_getserverstatus
memcache_getstats
memcache_getversion
memcache_increment
memcache_pconnect
memcache_replace
memcache_set
memcache_setcompressthreshold
memcache_setserverparams
memory_get_peak_usage
memory_get_usage
metaphone
method_exists
mhash
mhash_count
mhash_get_block_size
mhash_get_hash_name
mhash_keygen_s2k
microtime
mime_content_type
min
ming_keypress
ming_setcubicthreshold
ming_setscale
ming_setswfcompression
ming_useconstants
ming_useswfversion
mkdir
mktime
money_format
mongo_close
mongo_connect
mongo_find_one
mongo_gridchunk_data
mongo_gridchunk_get
mongo_gridchunk_size
mongo_gridfile_chunk_num
mongo_gridfile_chunk_size
mongo_gridfile_exists
mongo_gridfile_filename
mongo_gridfile_size
mongo_gridfile_write
mongo_gridfs_find
mongo_gridfs_init
mongo_gridfs_list
mongo_gridfs_store
mongo_has_next
mongo_insert
mongo_next
mongo_query
mongo_remove
mongo_update
move_uploaded_file
mqseries_back
mqseries_begin
mqseries_close
mqseries_cmit
mqseries_conn
mqseries_connx
mqseries_disc
mqseries_get
mqseries_inq
mqseries_open
mqseries_put
mqseries_put1
mqseries_set
mqseries_strerror
msession_connect
msession_count
msession_create
msession_destroy
msession_disconnect
msession_find
msession_get
msession_get_array
msession_get_data
msession_inc
msession_list
msession_listvar
msession_lock
msession_plugin
msession_randstr
msession_set
msession_set_array
msession_set_data
msession_timeout
msession_uniq
msession_unlock
msg_get_queue
msg_queue_exists
msg_receive
msg_remove_queue
msg_send
msg_set_queue
msg_stat_queue
msql
msql_affected_rows
msql_close
msql_connect
msql_create_db
msql_createdb
msql_data_seek
msql_db_query
msql_dbname
msql_drop_db
msql_error
msql_fetch_array
msql_fetch_field
msql_fetch_object
msql_fetch_row
msql_field_flags
msql_field_len
msql_field_name
msql_field_seek
msql_field_table
msql_field_type
msql_fieldflags
msql_fieldlen
msql_fieldname
msql_fieldtable
msql_fieldtype
msql_free_result
msql_list_dbs
msql_list_fields
msql_list_tables
msql_num_fields
msql_num_rows
msql_numfields
msql_numrows
msql_pconnect
msql_query
msql_regcase
msql_result
msql_select_db
msql_tablename
mssql_bind
mssql_close
mssql_connect
mssql_data_seek
mssql_execute
mssql_fetch_array
mssql_fetch_assoc
mssql_fetch_batch
mssql_fetch_field
mssql_fetch_object
mssql_fetch_row
mssql_field_length
mssql_field_name
mssql_field_seek
mssql_field_type
mssql_free_result
mssql_free_statement
mssql_get_last_message
mssql_guid_string
mssql_init
mssql_min_error_severity
mssql_min_message_severity
mssql_next_result
mssql_num_fields
mssql_num_rows
mssql_pconnect
mssql_query
mssql_result
mssql_rows_affected
mssql_select_db
mt_getrandmax
mt_rand
mt_srand
mysql_affected_rows
mysql_change_user
mysql_client_encoding
mysql_close
mysql_connect
mysql_create_db
mysql_data_seek
mysql_db_name
mysql_db_query
mysql_drop_db
mysql_errno
mysql_error
mysql_escape_string
mysql_fetch_array
mysql_fetch_assoc
mysql_fetch_field
mysql_fetch_lengths
mysql_fetch_object
mysql_fetch_row
mysql_field_flags
mysql_field_len
mysql_field_name
mysql_field_seek
mysql_field_table
mysql_field_type
mysql_free_result
mysql_get_client_info
mysql_get_host_info
mysql_get_proto_info
mysql_get_server_info
mysql_info
mysql_insert_id
mysql_list_dbs
mysql_list_fields
mysql_list_processes
mysql_list_tables
mysql_num_fields
mysql_num_rows
mysql_pconnect
mysql_ping
mysql_query
mysql_real_escape_string
mysql_result
mysql_select_db
mysql_set_charset
mysql_stat
mysql_tablename
mysql_thread_id
mysql_unbuffered_query
mysqli_bind_param
mysqli_bind_result
mysqli_client_encoding
mysqli_disable_reads_from_master
mysqli_disable_rpl_parse
mysqli_enable_reads_from_master
mysqli_enable_rpl_parse
mysqli_escape_string
mysqli_execute
mysqli_fetch
mysqli_get_metadata
mysqli_master_query
mysqli_param_count
mysqli_report
mysqli_rpl_parse_enabled
mysqli_rpl_probe
mysqli_rpl_query_type
mysqli_send_long_data
mysqli_send_query
mysqli_set_opt
mysqli_slave_query
natcasesort
natsort
ncurses_addch
ncurses_addchnstr
ncurses_addchstr
ncurses_addnstr
ncurses_addstr
ncurses_assume_default_colors
ncurses_attroff
ncurses_attron
ncurses_attrset
ncurses_baudrate
ncurses_beep
ncurses_bkgd
ncurses_bkgdset
ncurses_border
ncurses_bottom_panel
ncurses_can_change_color
ncurses_cbreak
ncurses_clear
ncurses_clrtobot
ncurses_clrtoeol
ncurses_color_content
ncurses_color_set
ncurses_curs_set
ncurses_def_prog_mode
ncurses_def_shell_mode
ncurses_define_key
ncurses_del_panel
ncurses_delay_output
ncurses_delch
ncurses_deleteln
ncurses_delwin
ncurses_doupdate
ncurses_echo
ncurses_echochar
ncurses_end
ncurses_erase
ncurses_erasechar
ncurses_filter
ncurses_flash
ncurses_flushinp
ncurses_getch
ncurses_getmaxyx
ncurses_getmouse
ncurses_getyx
ncurses_halfdelay
ncurses_has_colors
ncurses_has_ic
ncurses_has_il
ncurses_has_key
ncurses_hide_panel
ncurses_hline
ncurses_inch
ncurses_init
ncurses_init_color
ncurses_init_pair
ncurses_insch
ncurses_insdelln
ncurses_insertln
ncurses_insstr
ncurses_instr
ncurses_isendwin
ncurses_keyok
ncurses_keypad
ncurses_killchar
ncurses_longname
ncurses_meta
ncurses_mouse_trafo
ncurses_mouseinterval
ncurses_mousemask
ncurses_move
ncurses_move_panel
ncurses_mvaddch
ncurses_mvaddchnstr
ncurses_mvaddchstr
ncurses_mvaddnstr
ncurses_mvaddstr
ncurses_mvcur
ncurses_mvdelch
ncurses_mvgetch
ncurses_mvhline
ncurses_mvinch
ncurses_mvvline
ncurses_mvwaddstr
ncurses_napms
ncurses_new_panel
ncurses_newpad
ncurses_newwin
ncurses_nl
ncurses_nocbreak
ncurses_noecho
ncurses_nonl
ncurses_noqiflush
ncurses_noraw
ncurses_pair_content
ncurses_panel_above
ncurses_panel_below
ncurses_panel_window
ncurses_pnoutrefresh
ncurses_prefresh
ncurses_putp
ncurses_qiflush
ncurses_raw
ncurses_refresh
ncurses_replace_panel
ncurses_reset_prog_mode
ncurses_reset_shell_mode
ncurses_resetty
ncurses_savetty
ncurses_scr_dump
ncurses_scr_init
ncurses_scr_restore
ncurses_scr_set
ncurses_scrl
ncurses_show_panel
ncurses_slk_attr
ncurses_slk_attroff
ncurses_slk_attron
ncurses_slk_attrset
ncurses_slk_clear
ncurses_slk_color
ncurses_slk_init
ncurses_slk_noutrefresh
ncurses_slk_refresh
ncurses_slk_restore
ncurses_slk_set
ncurses_slk_touch
ncurses_standend
ncurses_standout
ncurses_start_color
ncurses_termattrs
ncurses_termname
ncurses_timeout
ncurses_top_panel
ncurses_typeahead
ncurses_ungetch
ncurses_ungetmouse
ncurses_update_panels
ncurses_use_default_colors
ncurses_use_env
ncurses_use_extended_names
ncurses_vidattr
ncurses_vline
ncurses_waddch
ncurses_waddstr
ncurses_wattroff
ncurses_wattron
ncurses_wattrset
ncurses_wborder
ncurses_wclear
ncurses_wcolor_set
ncurses_werase
ncurses_wgetch
ncurses_whline
ncurses_wmouse_trafo
ncurses_wmove
ncurses_wnoutrefresh
ncurses_wrefresh
ncurses_wstandend
ncurses_wstandout
ncurses_wvline
newt_bell
newt_button
newt_button_bar
newt_centered_window
newt_checkbox
newt_checkbox_get_value
newt_checkbox_set_flags
newt_checkbox_set_value
newt_checkbox_tree
newt_checkbox_tree_add_item
newt_checkbox_tree_find_item
newt_checkbox_tree_get_current
newt_checkbox_tree_get_entry_value
newt_checkbox_tree_get_multi_selection
newt_checkbox_tree_get_selection
newt_checkbox_tree_multi
newt_checkbox_tree_set_current
newt_checkbox_tree_set_entry
newt_checkbox_tree_set_entry_value
newt_checkbox_tree_set_width
newt_clear_key_buffer
newt_cls
newt_compact_button
newt_component_add_callback
newt_component_takes_focus
newt_create_grid
newt_cursor_off
newt_cursor_on
newt_delay
newt_draw_form
newt_draw_root_text
newt_entry
newt_entry_get_value
newt_entry_set
newt_entry_set_filter
newt_entry_set_flags
newt_finished
newt_form
newt_form_add_component
newt_form_add_components
newt_form_add_hot_key
newt_form_destroy
newt_form_get_current
newt_form_run
newt_form_set_background
newt_form_set_height
newt_form_set_size
newt_form_set_timer
newt_form_set_width
newt_form_watch_fd
newt_get_screen_size
newt_grid_add_components_to_form
newt_grid_basic_window
newt_grid_free
newt_grid_get_size
newt_grid_h_close_stacked
newt_grid_h_stacked
newt_grid_place
newt_grid_set_field
newt_grid_simple_window
newt_grid_v_close_stacked
newt_grid_v_stacked
newt_grid_wrapped_window
newt_grid_wrapped_window_at
newt_init
newt_label
newt_label_set_text
newt_listbox
newt_listbox_append_entry
newt_listbox_clear
newt_listbox_clear_selection
newt_listbox_delete_entry
newt_listbox_get_current
newt_listbox_get_selection
newt_listbox_insert_entry
newt_listbox_item_count
newt_listbox_select_item
newt_listbox_set_current
newt_listbox_set_current_by_key
newt_listbox_set_data
newt_listbox_set_entry
newt_listbox_set_width
newt_listitem
newt_listitem_get_data
newt_listitem_set
newt_open_window
newt_pop_help_line
newt_pop_window
newt_push_help_line
newt_radio_get_current
newt_radiobutton
newt_redraw_help_line
newt_reflow_text
newt_refresh
newt_resize_screen
newt_resume
newt_run_form
newt_scale
newt_scale_set
newt_scrollbar_set
newt_set_help_callback
newt_set_suspend_callback
newt_suspend
newt_textbox
newt_textbox_get_num_lines
newt_textbox_reflowed
newt_textbox_set_height
newt_textbox_set_text
newt_vertical_scrollbar
newt_wait_for_key
newt_win_choice
newt_win_entries
newt_win_menu
newt_win_message
newt_win_messagev
newt_win_ternary
next
ngettext
nl_langinfo
nl2br
notes_body
notes_copy_db
notes_create_db
notes_create_note
notes_drop_db
notes_find_note
notes_header_info
notes_list_msgs
notes_mark_read
notes_mark_unread
notes_nav_create
notes_search
notes_unread
notes_version
nsapi_request_headers
nsapi_response_headers
nsapi_virtual
nthmac
number_format
oauth_urlencode
ob_clean
ob_deflatehandler
ob_end_clean
ob_end_flush
ob_etaghandler
ob_flush
ob_get_clean
ob_get_contents
ob_get_flush
ob_get_length
ob_get_level
ob_get_status
ob_gzhandler
ob_iconv_handler
ob_implicit_flush
ob_inflatehandler
ob_list_handlers
ob_start
ob_tidyhandler
oci_bind_array_by_name
oci_bind_by_name
oci_cancel
oci_close
oci_collection_append
oci_collection_assign
oci_collection_element_assign
oci_collection_element_get
oci_collection_free
oci_collection_max
oci_collection_size
oci_collection_trim
oci_commit
oci_connect
oci_define_by_name
oci_error
oci_execute
oci_fetch
oci_fetch_all
oci_fetch_array
oci_fetch_assoc
oci_fetch_object
oci_fetch_row
oci_field_is_null
oci_field_name
oci_field_precision
oci_field_scale
oci_field_size
oci_field_type
oci_field_type_raw
oci_free_statement
oci_internal_debug
oci_lob_append
oci_lob_close
oci_lob_copy
oci_lob_eof
oci_lob_erase
oci_lob_export
oci_lob_flush
oci_lob_free
oci_lob_getbuffering
oci_lob_import
oci_lob_is_equal
oci_lob_load
oci_lob_read
oci_lob_rewind
oci_lob_save
oci_lob_savefile
oci_lob_seek
oci_lob_setbuffering
oci_lob_size
oci_lob_tell
oci_lob_truncate
oci_lob_write
oci_lob_writetemporary
oci_lob_writetofile
oci_new_collection
oci_new_connect
oci_new_cursor
oci_new_descriptor
oci_num_fields
oci_num_rows
oci_parse
oci_password_change
oci_pconnect
oci_result
oci_rollback
oci_server_version
oci_set_prefetch
oci_statement_type
ocibindbyname
ocicancel
ocicloselob
ocicollappend
ocicollassign
ocicollassignelem
ocicollgetelem
ocicollmax
ocicollsize
ocicolltrim
ocicolumnisnull
ocicolumnname
ocicolumnprecision
ocicolumnscale
ocicolumnsize
ocicolumntype
ocicolumntyperaw
ocicommit
ocidefinebyname
ocierror
ociexecute
ocifetch
ocifetchinto
ocifetchstatement
ocifreecollection
ocifreecursor
ocifreedesc
ocifreestatement
ociinternaldebug
ociloadlob
ocilogoff
ocilogon
ocinewcollection
ocinewcursor
ocinewdescriptor
ocinlogon
ocinumcols
ociparse
ociplogon
ociresult
ocirollback
ocirowcount
ocisavelob
ocisavelobfile
ociserverversion
ocisetprefetch
ocistatementtype
ociwritelobtofile
ociwritetemporarylob
octdec
odbc_autocommit
odbc_binmode
odbc_close
odbc_close_all
odbc_columnprivileges
odbc_columns
odbc_commit
odbc_connect
odbc_cursor
odbc_data_source
odbc_do
odbc_error
odbc_errormsg
odbc_exec
odbc_execute
odbc_fetch_array
odbc_fetch_into
odbc_fetch_object
odbc_fetch_row
odbc_field_len
odbc_field_name
odbc_field_num
odbc_field_precision
odbc_field_scale
odbc_field_type
odbc_foreignkeys
odbc_free_result
odbc_gettypeinfo
odbc_longreadlen
odbc_next_result
odbc_num_fields
odbc_num_rows
odbc_pconnect
odbc_prepare
odbc_primarykeys
odbc_procedurecolumns
odbc_procedures
odbc_result
odbc_result_all
odbc_rollback
odbc_setoption
odbc_specialcolumns
odbc_statistics
odbc_tableprivileges
odbc_tables
openal_buffer_create
openal_buffer_data
openal_buffer_destroy
openal_buffer_get
openal_buffer_loadwav
openal_context_create
openal_context_current
openal_context_destroy
openal_context_process
openal_context_suspend
openal_device_close
openal_device_open
openal_listener_get
openal_listener_set
openal_source_create
openal_source_destroy
openal_source_get
openal_source_pause
openal_source_play
openal_source_rewind
openal_source_set
openal_source_stop
openal_stream
opendir
openlog
openssl_csr_export
openssl_csr_export_to_file
openssl_csr_get_public_key
openssl_csr_get_subject
openssl_csr_new
openssl_csr_sign
openssl_error_string
openssl_free_key
openssl_get_privatekey
openssl_get_publickey
openssl_open
openssl_pkcs12_export
openssl_pkcs12_export_to_file
openssl_pkcs12_read
openssl_pkcs7_decrypt
openssl_pkcs7_encrypt
openssl_pkcs7_sign
openssl_pkcs7_verify
openssl_pkey_export
openssl_pkey_export_to_file
openssl_pkey_free
openssl_pkey_get_details
openssl_pkey_get_private
openssl_pkey_get_public
openssl_pkey_new
openssl_private_decrypt
openssl_private_encrypt
openssl_public_decrypt
openssl_public_encrypt
openssl_seal
openssl_sign
openssl_verify
openssl_x509_check_private_key
openssl_x509_checkpurpose
openssl_x509_export
openssl_x509_export_to_file
openssl_x509_free
openssl_x509_parse
openssl_x509_read
ord
output_add_rewrite_var
output_reset_rewrite_vars
overload
override_function
ovrimos_close
ovrimos_commit
ovrimos_connect
ovrimos_cursor
ovrimos_exec
ovrimos_execute
ovrimos_fetch_into
ovrimos_fetch_row
ovrimos_field_len
ovrimos_field_name
ovrimos_field_num
ovrimos_field_type
ovrimos_free_result
ovrimos_longreadlen
ovrimos_num_fields
ovrimos_num_rows
ovrimos_prepare
ovrimos_result
ovrimos_result_all
ovrimos_rollback
pack
parse_ini_file
parse_ini_string
parse_str
parse_url
parsekit_compile_file
parsekit_compile_string
parsekit_func_arginfo
passthru
pathinfo
pclose
pcntl_alarm
pcntl_exec
pcntl_fork
pcntl_getpriority
pcntl_setpriority
pcntl_signal
pcntl_signal_dispatch
pcntl_sigprocmask
pcntl_sigtimedwait
pcntl_sigwaitinfo
pcntl_wait
pcntl_waitpid
pcntl_wexitstatus
pcntl_wifexited
pcntl_wifsignaled
pcntl_wifstopped
pcntl_wstopsig
pcntl_wtermsig
pdf_activate_item
pdf_add_annotation
pdf_add_bookmark
pdf_add_launchlink
pdf_add_locallink
pdf_add_nameddest
pdf_add_note
pdf_add_outline
pdf_add_pdflink
pdf_add_table_cell
pdf_add_textflow
pdf_add_thumbnail
pdf_add_weblink
pdf_arc
pdf_arcn
pdf_attach_file
pdf_begin_document
pdf_begin_font
pdf_begin_glyph
pdf_begin_item
pdf_begin_layer
pdf_begin_page
pdf_begin_page_ext
pdf_begin_pattern
pdf_begin_template
pdf_begin_template_ext
pdf_circle
pdf_clip
pdf_close
pdf_close_image
pdf_close_pdi
pdf_close_pdi_page
pdf_closepath
pdf_closepath_fill_stroke
pdf_closepath_stroke
pdf_concat
pdf_continue_text
pdf_create_3dview
pdf_create_action
pdf_create_annotation
pdf_create_bookmark
pdf_create_field
pdf_create_fieldgroup
pdf_create_gstate
pdf_create_pvf
pdf_create_textflow
pdf_curveto
pdf_define_layer
pdf_delete
pdf_delete_pvf
pdf_delete_table
pdf_delete_textflow
pdf_encoding_set_char
pdf_end_document
pdf_end_font
pdf_end_glyph
pdf_end_item
pdf_end_layer
pdf_end_page
pdf_end_page_ext
pdf_end_pattern
pdf_end_template
pdf_endpath
pdf_fill
pdf_fill_imageblock
pdf_fill_pdfblock
pdf_fill_stroke
pdf_fill_textblock
pdf_findfont
pdf_fit_image
pdf_fit_pdi_page
pdf_fit_table
pdf_fit_textflow
pdf_fit_textline
pdf_get_apiname
pdf_get_buffer
pdf_get_errmsg
pdf_get_errnum
pdf_get_font
pdf_get_fontname
pdf_get_fontsize
pdf_get_image_height
pdf_get_image_width
pdf_get_majorversion
pdf_get_minorversion
pdf_get_parameter
pdf_get_pdi_parameter
pdf_get_pdi_value
pdf_get_value
pdf_info_font
pdf_info_matchbox
pdf_info_table
pdf_info_textflow
pdf_info_textline
pdf_initgraphics
pdf_lineto
pdf_load_3ddata
pdf_load_font
pdf_load_iccprofile
pdf_load_image
pdf_makespotcolor
pdf_moveto
pdf_new
pdf_open_ccitt
pdf_open_file
pdf_open_gif
pdf_open_image
pdf_open_image_file
pdf_open_jpeg
pdf_open_memory_image
pdf_open_pdi
pdf_open_pdi_page
pdf_open_tiff
pdf_pcos_get_number
pdf_pcos_get_stream
pdf_pcos_get_string
pdf_place_image
pdf_place_pdi_page
pdf_process_pdi
pdf_rect
pdf_restore
pdf_resume_page
pdf_rotate
pdf_save
pdf_scale
pdf_set_border_color
pdf_set_border_dash
pdf_set_border_style
pdf_set_char_spacing
pdf_set_duration
pdf_set_gstate
pdf_set_horiz_scaling
pdf_set_info
pdf_set_info_author
pdf_set_info_creator
pdf_set_info_keywords
pdf_set_info_subject
pdf_set_info_title
pdf_set_layer_dependency
pdf_set_leading
pdf_set_parameter
pdf_set_text_matrix
pdf_set_text_pos
pdf_set_text_rendering
pdf_set_text_rise
pdf_set_value
pdf_set_word_spacing
pdf_setcolor
pdf_setdash
pdf_setdashpattern
pdf_setflat
pdf_setfont
pdf_setgray
pdf_setgray_fill
pdf_setgray_stroke
pdf_setlinecap
pdf_setlinejoin
pdf_setlinewidth
pdf_setmatrix
pdf_setmiterlimit
pdf_setpolydash
pdf_setrgbcolor
pdf_setrgbcolor_fill
pdf_setrgbcolor_stroke
pdf_shading
pdf_shading_pattern
pdf_shfill
pdf_show
pdf_show_boxed
pdf_show_xy
pdf_skew
pdf_stringwidth
pdf_stroke
pdf_suspend_page
pdf_translate
pdf_utf16_to_utf8
pdf_utf32_to_utf16
pdf_utf8_to_utf16
pdo_pgsqllobcreate
pdo_pgsqllobopen
pdo_pgsqllobunlink
pdo_sqlitecreateaggregate
pdo_sqlitecreatefunction
pfsockopen
pg_affected_rows
pg_cancel_query
pg_client_encoding
pg_close
pg_connect
pg_connection_busy
pg_connection_reset
pg_connection_status
pg_convert
pg_copy_from
pg_copy_to
pg_dbname
pg_delete
pg_end_copy
pg_escape_bytea
pg_escape_string
pg_execute
pg_fetch_all
pg_fetch_all_columns
pg_fetch_array
pg_fetch_assoc
pg_fetch_object
pg_fetch_result
pg_fetch_row
pg_field_is_null
pg_field_name
pg_field_num
pg_field_prtlen
pg_field_size
pg_field_table
pg_field_type
pg_field_type_oid
pg_free_result
pg_get_notify
pg_get_pid
pg_get_result
pg_host
pg_insert
pg_last_error
pg_last_notice
pg_last_oid
pg_lo_close
pg_lo_create
pg_lo_export
pg_lo_import
pg_lo_open
pg_lo_read
pg_lo_read_all
pg_lo_seek
pg_lo_tell
pg_lo_unlink
pg_lo_write
pg_meta_data
pg_num_fields
pg_num_rows
pg_options
pg_parameter_status
pg_pconnect
pg_ping
pg_port
pg_prepare
pg_put_line
pg_query
pg_query_params
pg_result_error
pg_result_error_field
pg_result_seek
pg_result_status
pg_select
pg_send_execute
pg_send_prepare
pg_send_query
pg_send_query_params
pg_set_client_encoding
pg_set_error_verbosity
pg_trace
pg_transaction_status
pg_tty
pg_unescape_bytea
pg_untrace
pg_update
pg_version
php_check_syntax
php_ini_loaded_file
php_ini_scanned_files
php_logo_guid
php_sapi_name
php_strip_whitespace
php_uname
phpcredits
phpinfo
phpversion
pi
png2wbmp
popen
pos
posix_access
posix_ctermid
posix_get_last_error
posix_getcwd
posix_getegid
posix_geteuid
posix_getgid
posix_getgrgid
posix_getgrnam
posix_getgroups
posix_getlogin
posix_getpgid
posix_getpgrp
posix_getpid
posix_getppid
posix_getpwnam
posix_getpwuid
posix_getrlimit
posix_getsid
posix_getuid
posix_initgroups
posix_isatty
posix_kill
posix_mkfifo
posix_mknod
posix_setegid
posix_seteuid
posix_setgid
posix_setpgid
posix_setsid
posix_setuid
posix_strerror
posix_times
posix_ttyname
posix_uname
pow
preg_filter
preg_grep
preg_last_error
preg_match
preg_match_all
preg_quote
preg_replace
preg_replace_callback
preg_split
prev
print
print_r
printer_abort
printer_close
printer_create_brush
printer_create_dc
printer_create_font
printer_create_pen
printer_delete_brush
printer_delete_dc
printer_delete_font
printer_delete_pen
printer_draw_bmp
printer_draw_chord
printer_draw_elipse
printer_draw_line
printer_draw_pie
printer_draw_rectangle
printer_draw_roundrect
printer_draw_text
printer_end_doc
printer_end_page
printer_get_option
printer_list
printer_logical_fontheight
printer_open
printer_select_brush
printer_select_font
printer_select_pen
printer_set_option
printer_start_doc
printer_start_page
printer_write
printf
proc_close
proc_get_status
proc_nice
proc_open
proc_terminate
property_exists
ps_add_bookmark
ps_add_launchlink
ps_add_locallink
ps_add_note
ps_add_pdflink
ps_add_weblink
ps_arc
ps_arcn
ps_begin_page
ps_begin_pattern
ps_begin_template
ps_circle
ps_clip
ps_close
ps_close_image
ps_closepath
ps_closepath_stroke
ps_continue_text
ps_curveto
ps_delete
ps_end_page
ps_end_pattern
ps_end_template
ps_fill
ps_fill_stroke
ps_findfont
ps_get_buffer
ps_get_parameter
ps_get_value
ps_hyphenate
ps_include_file
ps_lineto
ps_makespotcolor
ps_moveto
ps_new
ps_open_file
ps_open_image
ps_open_image_file
ps_open_memory_image
ps_place_image
ps_rect
ps_restore
ps_rotate
ps_save
ps_scale
ps_set_border_color
ps_set_border_dash
ps_set_border_style
ps_set_info
ps_set_parameter
ps_set_text_pos
ps_set_value
ps_setcolor
ps_setdash
ps_setflat
ps_setfont
ps_setgray
ps_setlinecap
ps_setlinejoin
ps_setlinewidth
ps_setmiterlimit
ps_setoverprintmode
ps_setpolydash
ps_shading
ps_shading_pattern
ps_shfill
ps_show
ps_show_boxed
ps_show_xy
ps_show_xy2
ps_show2
ps_string_geometry
ps_stringwidth
ps_stroke
ps_symbol
ps_symbol_name
ps_symbol_width
ps_translate
pspell_add_to_personal
pspell_add_to_session
pspell_check
pspell_clear_session
pspell_config_create
pspell_config_data_dir
pspell_config_dict_dir
pspell_config_ignore
pspell_config_mode
pspell_config_personal
pspell_config_repl
pspell_config_runtogether
pspell_config_save_repl
pspell_new
pspell_new_config
pspell_new_personal
pspell_save_wordlist
pspell_store_replacement
pspell_suggest
putenv
px_close
px_create_fp
px_date2string
px_delete
px_delete_record
px_get_field
px_get_info
px_get_parameter
px_get_record
px_get_schema
px_get_value
px_insert_record
px_new
px_numfields
px_numrecords
px_open_fp
px_put_record
px_retrieve_record
px_set_blob_file
px_set_parameter
px_set_tablename
px_set_targetencoding
px_set_value
px_timestamp2string
px_update_record
qdom_error
qdom_tree
quoted_printable_decode
quoted_printable_encode
quotemeta
rad2deg
radius_acct_open
radius_add_server
radius_auth_open
radius_close
radius_config
radius_create_request
radius_cvt_addr
radius_cvt_int
radius_cvt_string
radius_demangle
radius_demangle_mppe_key
radius_get_attr
radius_get_vendor_attr
radius_put_addr
radius_put_attr
radius_put_int
radius_put_string
radius_put_vendor_addr
radius_put_vendor_attr
radius_put_vendor_int
radius_put_vendor_string
radius_request_authenticator
radius_send_request
radius_server_secret
radius_strerror
rand
range
rar_close
rar_entry_get
rar_extract
rar_getattr
rar_getcrc
rar_getfiletime
rar_gethostos
rar_getmethod
rar_getname
rar_getpackedsize
rar_getunpackedsize
rar_getversion
rar_list
rar_open
rawurldecode
rawurlencode
read_exif_data
readdir
readfile
readgzfile
readline
readline_add_history
readline_callback_handler_install
readline_callback_handler_remove
readline_callback_read_char
readline_clear_history
readline_completion_function
readline_info
readline_list_history
readline_on_new_line
readline_read_history
readline_redisplay
readline_write_history
readlink
realpath
recode
recode_file
recode_string
register_shutdown_function
register_tick_function
rename
rename_function
require
require_once
reset
restore_error_handler
restore_exception_handler
restore_include_path
return
rewind
rewinddir
rmdir
round
rpm_close
rpm_get_tag
rpm_is_valid
rpm_open
rpm_version
rsort
rtrim
runkit_class_adopt
runkit_class_emancipate
runkit_constant_add
runkit_constant_redefine
runkit_constant_remove
runkit_function_add
runkit_function_copy
runkit_function_redefine
runkit_function_remove
runkit_function_rename
runkit_import
runkit_lint
runkit_lint_file
runkit_method_add
runkit_method_copy
runkit_method_redefine
runkit_method_remove
runkit_method_rename
runkit_return_value_used
runkit_sandbox_output_handler
runkit_superglobals
samconnection_commit
samconnection_connect
samconnection_constructor
samconnection_disconnect
samconnection_errno
samconnection_error
samconnection_isconnected
samconnection_peek
samconnection_peekall
samconnection_receive
samconnection_remove
samconnection_rollback
samconnection_send
samconnection_setDebug
samconnection_subscribe
samconnection_unsubscribe
sammessage_body
sammessage_constructor
sammessage_header
sca_createdataobject
sca_getservice
sca_localproxy_createdataobject
sca_soapproxy_createdataobject
scandir
sdo_das_changesummary_beginlogging
sdo_das_changesummary_endlogging
sdo_das_changesummary_getchangeddataobjects
sdo_das_changesummary_getchangetype
sdo_das_changesummary_getoldcontainer
sdo_das_changesummary_getoldvalues
sdo_das_changesummary_islogging
sdo_das_datafactory_addpropertytotype
sdo_das_datafactory_addtype
sdo_das_datafactory_getdatafactory
sdo_das_dataobject_getchangesummary
sdo_das_relational_applychanges
sdo_das_relational_construct
sdo_das_relational_createrootdataobject
sdo_das_relational_executepreparedquery
sdo_das_relational_executequery
sdo_das_setting_getlistindex
sdo_das_setting_getpropertyindex
sdo_das_setting_getpropertyname
sdo_das_setting_getvalue
sdo_das_setting_isset
sdo_das_xml_addtypes
sdo_das_xml_create
sdo_das_xml_createdataobject
sdo_das_xml_createdocument
sdo_das_xml_document_getrootdataobject
sdo_das_xml_document_getrootelementname
sdo_das_xml_document_getrootelementuri
sdo_das_xml_document_setencoding
sdo_das_xml_document_setxmldeclaration
sdo_das_xml_document_setxmlversion
sdo_das_xml_loadfile
sdo_das_xml_loadstring
sdo_das_xml_savefile
sdo_das_xml_savestring
sdo_datafactory_create
sdo_dataobject_clear
sdo_dataobject_createdataobject
sdo_dataobject_getcontainer
sdo_dataobject_getsequence
sdo_dataobject_gettypename
sdo_dataobject_gettypenamespaceuri
sdo_exception_getcause
sdo_list_insert
sdo_model_property_getcontainingtype
sdo_model_property_getdefault
sdo_model_property_getname
sdo_model_property_gettype
sdo_model_property_iscontainment
sdo_model_property_ismany
sdo_model_reflectiondataobject_construct
sdo_model_reflectiondataobject_export
sdo_model_reflectiondataobject_getcontainmentproperty
sdo_model_reflectiondataobject_getinstanceproperties
sdo_model_reflectiondataobject_gettype
sdo_model_type_getbasetype
sdo_model_type_getname
sdo_model_type_getnamespaceuri
sdo_model_type_getproperties
sdo_model_type_getproperty
sdo_model_type_isabstracttype
sdo_model_type_isdatatype
sdo_model_type_isinstance
sdo_model_type_isopentype
sdo_model_type_issequencedtype
sdo_sequence_getproperty
sdo_sequence_insert
sdo_sequence_move
sem_acquire
sem_get
sem_release
sem_remove
serialize
session_cache_expire
session_cache_limiter
session_commit
session_decode
session_destroy
session_encode
session_get_cookie_params
session_id
session_is_registered
session_module_name
session_name
session_pgsql_add_error
session_pgsql_get_error
session_pgsql_get_field
session_pgsql_reset
session_pgsql_set_field
session_pgsql_status
session_regenerate_id
session_register
session_save_path
session_set_cookie_params
session_set_save_handler
session_start
session_unregister
session_unset
session_write_close
set_error_handler
set_exception_handler
set_file_buffer
set_include_path
set_magic_quotes_runtime
set_time_limit
setcookie
setlocale
setrawcookie
settype
sha1
sha1_file
shell_exec
shm_attach
shm_detach
shm_get_var
shm_put_var
shm_remove
shm_remove_var
shmop_close
shmop_delete
shmop_open
shmop_read
shmop_size
shmop_write
show_source
shuffle
signeurlpaiement
similar_text
simplexml_element_addAttribute
simplexml_element_addChild
simplexml_element_asXML
simplexml_element_attributes
simplexml_element_children
simplexml_element_construct
simplexml_element_getDocNamespaces
simplexml_element_getName
simplexml_element_getNamespaces
simplexml_element_registerXPathNamespace
simplexml_element_xpath
simplexml_import_dom
simplexml_load_file
simplexml_load_string
sin
sinh
sizeof
sleep
snmp_get_quick_print
snmp_get_valueretrieval
snmp_read_mib
snmp_set_enum_print
snmp_set_oid_numeric_print
snmp_set_oid_output_format
snmp_set_quick_print
snmp_set_valueretrieval
snmpget
snmpgetnext
snmprealwalk
snmpset
snmpwalk
snmpwalkoid
socket_accept
socket_bind
socket_clear_error
socket_close
socket_connect
socket_create
socket_create_listen
socket_create_pair
socket_get_option
socket_get_status
socket_getpeername
socket_getsockname
socket_last_error
socket_listen
socket_read
socket_recv
socket_recvfrom
socket_select
socket_send
socket_sendto
socket_set_block
socket_set_blocking
socket_set_nonblock
socket_set_option
socket_set_timeout
socket_shutdown
socket_strerror
socket_write
sort
soundex
spl_autoload
spl_autoload_call
spl_autoload_extensions
spl_autoload_functions
spl_autoload_register
spl_autoload_unregister
spl_classes
spl_object_hash
split
spliti
sprintf
sql_regcase
sqlite_array_query
sqlite_busy_timeout
sqlite_changes
sqlite_close
sqlite_column
sqlite_create_aggregate
sqlite_create_function
sqlite_current
sqlite_error_string
sqlite_escape_string
sqlite_exec
sqlite_factory
sqlite_fetch_all
sqlite_fetch_array
sqlite_fetch_column_types
sqlite_fetch_object
sqlite_fetch_single
sqlite_fetch_string
sqlite_field_name
sqlite_has_more
sqlite_has_prev
sqlite_key
sqlite_last_error
sqlite_last_insert_rowid
sqlite_libencoding
sqlite_libversion
sqlite_next
sqlite_num_fields
sqlite_num_rows
sqlite_open
sqlite_popen
sqlite_prev
sqlite_query
sqlite_rewind
sqlite_seek
sqlite_single_query
sqlite_udf_decode_binary
sqlite_udf_encode_binary
sqlite_unbuffered_query
sqlite_valid
sqrt
srand
sscanf
ssh2_auth_hostbased_file
ssh2_auth_none
ssh2_auth_password
ssh2_auth_pubkey_file
ssh2_connect
ssh2_exec
ssh2_fetch_stream
ssh2_fingerprint
ssh2_methods_negotiated
ssh2_publickey_add
ssh2_publickey_init
ssh2_publickey_list
ssh2_publickey_remove
ssh2_scp_recv
ssh2_scp_send
ssh2_sftp
ssh2_sftp_lstat
ssh2_sftp_mkdir
ssh2_sftp_readlink
ssh2_sftp_realpath
ssh2_sftp_rename
ssh2_sftp_rmdir
ssh2_sftp_stat
ssh2_sftp_symlink
ssh2_sftp_unlink
ssh2_shell
ssh2_tunnel
stat
stats_absolute_deviation
stats_cdf_beta
stats_cdf_binomial
stats_cdf_cauchy
stats_cdf_chisquare
stats_cdf_exponential
stats_cdf_f
stats_cdf_gamma
stats_cdf_laplace
stats_cdf_logistic
stats_cdf_negative_binomial
stats_cdf_noncentral_chisquare
stats_cdf_noncentral_f
stats_cdf_poisson
stats_cdf_t
stats_cdf_uniform
stats_cdf_weibull
stats_covariance
stats_den_uniform
stats_dens_beta
stats_dens_cauchy
stats_dens_chisquare
stats_dens_exponential
stats_dens_f
stats_dens_gamma
stats_dens_laplace
stats_dens_logistic
stats_dens_negative_binomial
stats_dens_normal
stats_dens_pmf_binomial
stats_dens_pmf_hypergeometric
stats_dens_pmf_poisson
stats_dens_t
stats_dens_weibull
stats_harmonic_mean
stats_kurtosis
stats_rand_gen_beta
stats_rand_gen_chisquare
stats_rand_gen_exponential
stats_rand_gen_f
stats_rand_gen_funiform
stats_rand_gen_gamma
stats_rand_gen_ibinomial
stats_rand_gen_ibinomial_negative
stats_rand_gen_int
stats_rand_gen_ipoisson
stats_rand_gen_iuniform
stats_rand_gen_noncenral_chisquare
stats_rand_gen_noncentral_f
stats_rand_gen_noncentral_t
stats_rand_gen_normal
stats_rand_gen_t
stats_rand_get_seeds
stats_rand_phrase_to_seeds
stats_rand_ranf
stats_rand_setall
stats_skew
stats_standard_deviation
stats_stat_binomial_coef
stats_stat_correlation
stats_stat_gennch
stats_stat_independent_t
stats_stat_innerproduct
stats_stat_noncentral_t
stats_stat_paired_t
stats_stat_percentile
stats_stat_powersum
stats_variance
str_getcsv
str_ireplace
str_pad
str_repeat
str_replace
str_rot13
str_shuffle
str_split
str_word_count
strcasecmp
strchr
strcmp
strcoll
strcspn
stream_bucket_append
stream_bucket_make_writeable
stream_bucket_new
stream_bucket_prepend
stream_context_create
stream_context_get_default
stream_context_get_options
stream_context_get_params
stream_context_set_default
stream_context_set_option
stream_context_set_params
stream_copy_to_stream
stream_encoding
stream_filter_append
stream_filter_prepend
stream_filter_register
stream_filter_remove
stream_get_contents
stream_get_filters
stream_get_line
stream_get_meta_data
stream_get_transports
stream_get_wrappers
stream_is_local
stream_notification_callback
stream_register_wrapper
stream_resolve_include_path
stream_select
stream_set_blocking
stream_set_timeout
stream_set_write_buffer
stream_socket_accept
stream_socket_client
stream_socket_enable_crypto
stream_socket_get_name
stream_socket_pair
stream_socket_recvfrom
stream_socket_sendto
stream_socket_server
stream_socket_shutdown
stream_supports_lock
stream_wrapper_register
stream_wrapper_restore
stream_wrapper_unregister
strftime
strip_tags
stripcslashes
stripos
stripslashes
stristr
strlen
strnatcasecmp
strnatcmp
strncasecmp
strncmp
strpbrk
strpos
strptime
strrchr
strrev
strripos
strrpos
strspn
strstr
strtok
strtolower
strtotime
strtoupper
strtr
strval
substr
substr_compare
substr_count
substr_replace
svn_add
svn_auth_get_parameter
svn_auth_set_parameter
svn_blame
svn_cat
svn_checkout
svn_cleanup
svn_client_version
svn_commit
svn_diff
svn_export
svn_fs_abort_txn
svn_fs_apply_text
svn_fs_begin_txn2
svn_fs_change_node_prop
svn_fs_check_path
svn_fs_contents_changed
svn_fs_copy
svn_fs_delete
svn_fs_dir_entries
svn_fs_file_contents
svn_fs_file_length
svn_fs_is_dir
svn_fs_is_file
svn_fs_make_dir
svn_fs_make_file
svn_fs_node_created_rev
svn_fs_node_prop
svn_fs_props_changed
svn_fs_revision_prop
svn_fs_revision_root
svn_fs_txn_root
svn_fs_youngest_rev
svn_import
svn_log
svn_ls
svn_mkdir
svn_repos_create
svn_repos_fs
svn_repos_fs_begin_txn_for_commit
svn_repos_fs_commit_txn
svn_repos_hotcopy
svn_repos_open
svn_repos_recover
svn_revert
svn_status
svn_update
swf_actiongeturl
swf_actiongotoframe
swf_actiongotolabel
swf_actionnextframe
swf_actionplay
swf_actionprevframe
swf_actionsettarget
swf_actionstop
swf_actiontogglequality
swf_actionwaitforframe
swf_addbuttonrecord
swf_addcolor
swf_closefile
swf_definebitmap
swf_definefont
swf_defineline
swf_definepoly
swf_definerect
swf_definetext
swf_endbutton
swf_enddoaction
swf_endshape
swf_endsymbol
swf_fontsize
swf_fontslant
swf_fonttracking
swf_getbitmapinfo
swf_getfontinfo
swf_getframe
swf_labelframe
swf_lookat
swf_modifyobject
swf_mulcolor
swf_nextid
swf_oncondition
swf_openfile
swf_ortho
swf_ortho2
swf_perspective
swf_placeobject
swf_polarview
swf_popmatrix
swf_posround
swf_pushmatrix
swf_removeobject
swf_rotate
swf_scale
swf_setfont
swf_setframe
swf_shapearc
swf_shapecurveto
swf_shapecurveto3
swf_shapefillbitmapclip
swf_shapefillbitmaptile
swf_shapefilloff
swf_shapefillsolid
swf_shapelinesolid
swf_shapelineto
swf_shapemoveto
swf_showframe
swf_startbutton
swf_startdoaction
swf_startshape
swf_startsymbol
swf_textwidth
swf_translate
swf_viewport
swish_construct
swish_getmetalist
swish_getpropertylist
swish_prepare
swish_query
swishresult_getmetalist
swishresult_stem
swishresults_getparsedwords
swishresults_getremovedstopwords
swishresults_nextresult
swishresults_seekresult
swishsearch_execute
swishsearch_resetlimit
swishsearch_setlimit
swishsearch_setphrasedelimiter
swishsearch_setsort
swishsearch_setstructure
sybase_affected_rows
sybase_close
sybase_connect
sybase_data_seek
sybase_deadlock_retry_count
sybase_fetch_array
sybase_fetch_assoc
sybase_fetch_field
sybase_fetch_object
sybase_fetch_row
sybase_field_seek
sybase_free_result
sybase_get_last_message
sybase_min_client_severity
sybase_min_error_severity
sybase_min_message_severity
sybase_min_server_severity
sybase_num_fields
sybase_num_rows
sybase_pconnect
sybase_query
sybase_result
sybase_select_db
sybase_set_message_handler
sybase_unbuffered_query
symlink
sys_get_temp_dir
sys_getloadavg
syslog
system
tan
tanh
tcpwrap_check
tempnam
textdomain
tidy_access_count
tidy_clean_repair
tidy_config_count
tidy_construct
tidy_diagnose
tidy_error_count
tidy_get_body
tidy_get_config
tidy_get_error_buffer
tidy_get_head
tidy_get_html
tidy_get_html_ver
tidy_get_opt_doc
tidy_get_output
tidy_get_release
tidy_get_root
tidy_get_status
tidy_getopt
tidy_is_xhtml
tidy_is_xml
tidy_load_config
tidy_node_get_attr
tidy_node_get_nodes
tidy_node_next
tidy_node_prev
tidy_parse_file
tidy_parse_string
tidy_repair_file
tidy_repair_string
tidy_reset_config
tidy_save_config
tidy_set_encoding
tidy_setopt
tidy_warning_count
tidynode_getparent
tidynode_haschildren
tidynode_hassiblings
tidynode_isasp
tidynode_iscomment
tidynode_ishtml
tidynode_isjste
tidynode_isphp
tidynode_istext
time
time_nanosleep
time_sleep_until
timezone_abbreviations_list
timezone_identifiers_list
timezone_location_get
timezone_name_from_abbr
timezone_name_get
timezone_offset_get
timezone_open
timezone_transitions_get
tmpfile
token_get_all
token_name
touch
trigger_error
trim
uasort
ucfirst
ucwords
udm_add_search_limit
udm_alloc_agent
udm_alloc_agent_array
udm_api_version
udm_cat_list
udm_cat_path
udm_check_charset
udm_check_stored
udm_clear_search_limits
udm_close_stored
udm_crc32
udm_errno
udm_error
udm_find
udm_free_agent
udm_free_ispell_data
udm_free_res
udm_get_doc_count
udm_get_res_field
udm_get_res_param
udm_hash32
udm_load_ispell_data
udm_open_stored
udm_set_agent_param
uksort
umask
unicode_decode
unicode_encode
unicode_get_error_mode
unicode_get_subst_char
unicode_set_error_mode
unicode_set_subst_char
uniqid
unixtojd
unlink
unpack
unregister_tick_function
unserialize
unset
urldecode
urlencode
use_soap_error_handler
user_error
usleep
usort
utf8_decode
utf8_encode
var_dump
var_export
variant_abs
variant_add
variant_and
variant_cast
variant_cat
variant_cmp
variant_date_from_timestamp
variant_date_to_timestamp
variant_div
variant_eqv
variant_fix
variant_get_type
variant_idiv
variant_imp
variant_int
variant_mod
variant_mul
variant_neg
variant_not
variant_or
variant_pow
variant_round
variant_set
variant_set_type
variant_sub
variant_xor
version_compare
vfprintf
virtual
vpopmail_add_alias_domain
vpopmail_add_alias_domain_ex
vpopmail_add_domain
vpopmail_add_domain_ex
vpopmail_add_user
vpopmail_alias_add
vpopmail_alias_del
vpopmail_alias_del_domain
vpopmail_alias_get
vpopmail_alias_get_all
vpopmail_auth_user
vpopmail_del_domain
vpopmail_del_domain_ex
vpopmail_del_user
vpopmail_error
vpopmail_passwd
vpopmail_set_user_quota
vprintf
vsprintf
w32api_deftype
w32api_init_dtype
w32api_invoke_function
w32api_register_function
w32api_set_call_method
wddx_add_vars
wddx_deserialize
wddx_packet_end
wddx_packet_start
wddx_serialize_value
wddx_serialize_vars
wddx_unserialize
win32_create_service
win32_delete_service
win32_get_last_control_message
win32_ps_list_procs
win32_ps_stat_mem
win32_ps_stat_proc
win32_query_service_status
win32_set_service_status
win32_start_service
win32_start_service_ctrl_dispatcher
win32_stop_service
wordwrap
xattr_get
xattr_list
xattr_remove
xattr_set
xattr_supported
xdiff_file_bdiff
xdiff_file_bdiff_size
xdiff_file_bpatch
xdiff_file_diff
xdiff_file_diff_binary
xdiff_file_merge3
xdiff_file_patch
xdiff_file_patch_binary
xdiff_file_rabdiff
xdiff_string_bdiff
xdiff_string_bdiff_size
xdiff_string_bpatch
xdiff_string_diff
xdiff_string_diff_binary
xdiff_string_merge3
xdiff_string_patch
xdiff_string_patch_binary
xdiff_string_rabdiff
xml_error_string
xml_get_current_byte_index
xml_get_current_column_number
xml_get_current_line_number
xml_get_error_code
xml_parse
xml_parse_into_struct
xml_parser_create
xml_parser_create_ns
xml_parser_free
xml_parser_get_option
xml_parser_set_option
xml_set_character_data_handler
xml_set_default_handler
xml_set_element_handler
xml_set_end_namespace_decl_handler
xml_set_external_entity_ref_handler
xml_set_notation_decl_handler
xml_set_object
xml_set_processing_instruction_handler
xml_set_start_namespace_decl_handler
xml_set_unparsed_entity_decl_handler
xmlrpc_decode
xmlrpc_decode_request
xmlrpc_encode
xmlrpc_encode_request
xmlrpc_get_type
xmlrpc_is_fault
xmlrpc_parse_method_descriptions
xmlrpc_server_add_introspection_data
xmlrpc_server_call_method
xmlrpc_server_create
xmlrpc_server_destroy
xmlrpc_server_register_introspection_callback
xmlrpc_server_register_method
xmlrpc_set_type
xmlwriter_end_attribute
xmlwriter_end_cdata
xmlwriter_end_comment
xmlwriter_end_document
xmlwriter_end_dtd
xmlwriter_end_dtd_attlist
xmlwriter_end_dtd_element
xmlwriter_end_dtd_entity
xmlwriter_end_element
xmlwriter_end_pi
xmlwriter_flush
xmlwriter_full_end_element
xmlwriter_open_memory
xmlwriter_open_uri
xmlwriter_output_memory
xmlwriter_set_indent
xmlwriter_set_indent_string
xmlwriter_start_attribute
xmlwriter_start_attribute_ns
xmlwriter_start_cdata
xmlwriter_start_comment
xmlwriter_start_document
xmlwriter_start_dtd
xmlwriter_start_dtd_attlist
xmlwriter_start_dtd_element
xmlwriter_start_dtd_entity
xmlwriter_start_element
xmlwriter_start_element_ns
xmlwriter_start_pi
xmlwriter_text
xmlwriter_write_attribute
xmlwriter_write_attribute_ns
xmlwriter_write_cdata
xmlwriter_write_comment
xmlwriter_write_dtd
xmlwriter_write_dtd_attlist
xmlwriter_write_dtd_element
xmlwriter_write_dtd_entity
xmlwriter_write_element
xmlwriter_write_element_ns
xmlwriter_write_pi
xmlwriter_write_raw
xpath_eval
xpath_eval_expression
xpath_new_context
xpath_register_ns
xpath_register_ns_auto
xptr_eval
xptr_new_context
xslt_backend_info
xslt_backend_name
xslt_backend_version
xslt_create
xslt_errno
xslt_error
xslt_free
xslt_getopt
xslt_process
xslt_set_base
xslt_set_encoding
xslt_set_error_handler
xslt_set_log
xslt_set_object
xslt_set_sax_handler
xslt_set_sax_handlers
xslt_set_scheme_handler
xslt_set_scheme_handlers
xslt_setopt
yaz_addinfo
yaz_ccl_conf
yaz_ccl_parse
yaz_close
yaz_connect
yaz_database
yaz_element
yaz_errno
yaz_error
yaz_es
yaz_es_result
yaz_get_option
yaz_hits
yaz_itemorder
yaz_present
yaz_range
yaz_record
yaz_scan
yaz_scan_result
yaz_schema
yaz_search
yaz_set_option
yaz_sort
yaz_syntax
yaz_wait
yp_all
yp_cat
yp_err_string
yp_errno
yp_first
yp_get_default_domain
yp_master
yp_match
yp_next
yp_order
zend_logo_guid
zend_thread_id
zend_version
zip_close
zip_entry_close
zip_entry_compressedsize
zip_entry_compressionmethod
zip_entry_filesize
zip_entry_name
zip_entry_open
zip_entry_read
zip_open
zip_read
ziparchive_addemptydir
ziparchive_addfile
ziparchive_addfromstring
ziparchive_close
ziparchive_deleteindex
ziparchive_deletename
ziparchive_extractto
ziparchive_getarchivecomment
ziparchive_getcommentindex
ziparchive_getcommentname
ziparchive_getfromindex
ziparchive_getfromname
ziparchive_getnameindex
ziparchive_getstream
ziparchive_locatename
ziparchive_open
ziparchive_renameindex
ziparchive_renamename
ziparchive_setCommentName
ziparchive_setarchivecomment
ziparchive_setcommentindex
ziparchive_statindex
ziparchive_statname
ziparchive_unchangeall
ziparchive_unchangearchive
ziparchive_unchangeindex
ziparchive_unchangename
zlib_get_coding_type