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 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558
|
# php-src/Zend/zend_API.c
# static zend_function_entry disabled_function[] = {
display_disabled_function
# static zend_function_entry disabled_class_new[] = {
# php-src/Zend/zend_builtin_functions.c
# static zend_function_entry builtin_functions[] = {
class_exists
crash
create_function
debug_backtrace
debug_print_backtrace
define
defined
each
error_reporting
extension_loaded
func_get_arg
func_get_args
func_num_args
function_exists
get_class
get_class_methods
get_class_vars
get_declared_classes
get_declared_interfaces
get_defined_constants
get_defined_functions
get_defined_vars
get_extension_funcs
get_included_files
get_loaded_extensions
get_object_vars
get_parent_class
get_required_files
get_resource_type
interface_exists
is_a
is_subclass_of
leak
method_exists
restore_error_handler
restore_exception_handler
set_error_handler
set_exception_handler
strcasecmp
strcmp
strlen
strncasecmp
strncmp
trigger_error
user_error
zend_test_func
zend_thread_id
zend_version
# php-src/Zend/zend_exceptions.c
# static zend_function_entry default_exception_functions[] = {
# static zend_function_entry error_exception_functions[] = {
# php-src/Zend/zend_interfaces.c
# zend_function_entry zend_funcs_aggregate[] = {
# zend_function_entry zend_funcs_iterator[] = {
# zend_function_entry zend_funcs_arrayaccess[] = {
# php-src/Zend/zend_reflection_api.c
# static zend_function_entry reflection_exception_functions[] = {
# static zend_function_entry reflection_functions[] = {
# static zend_function_entry reflector_functions[] = {
# static zend_function_entry reflection_function_functions[] = {
# static zend_function_entry reflection_method_functions[] = {
# static zend_function_entry reflection_object_functions[] = {
# static zend_function_entry reflection_property_functions[] = {
# static zend_function_entry reflection_parameter_functions[] = {
# static zend_function_entry reflection_extension_functions[] = {
# php-src/ext/bcmath/bcmath.c
# function_entry bcmath_functions[] = {
bcadd
bccomp
bcdiv
bcmod
bcmul
bcpow
bcpowmod
bcscale
bcsqrt
bcsub
# php-src/ext/bz2/bz2.c
# function_entry bz2_functions[] = {
bzclose
bzcompress
bzdecompress
bzerrno
bzerror
bzerrstr
bzflush
bzopen
bzread
bzwrite
# php-src/ext/calendar/calendar.c
# function_entry calendar_functions[] = {
cal_days_in_month
cal_from_jd
cal_info
cal_to_jd
easter_date
easter_days
frenchtojd
gregoriantojd
jddayofweek
jdmonthname
jdtofrench
jdtogregorian
jdtojewish
jdtojulian
jdtounix
jewishtojd
juliantojd
unixtojd
# php-src/ext/com_dotnet/com_extension.c
# function_entry com_dotnet_functions[] = {
com_create_guid
com_event_sink
com_get_active_object
com_load_typelib
com_message_pump
com_print_typeinfo
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
# php-src/ext/com_dotnet/com_persist.c
# static zend_function_entry com_persist_helper_methods[] = {
# php-src/ext/ctype/ctype.c
# function_entry ctype_functions[] = {
ctype_alnum
ctype_alpha
ctype_cntrl
ctype_digit
ctype_graph
ctype_lower
ctype_print
ctype_punct
ctype_space
ctype_upper
ctype_xdigit
# php-src/ext/curl/interface.c
# function_entry curl_functions[] = {
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_version
# php-src/ext/dba/dba.c
# function_entry dba_functions[] = {
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
# php-src/ext/dbase/dbase.c
# function_entry dbase_functions[] = {
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
# php-src/ext/dbx/dbx.c
# function_entry dbx_functions[] = {
dbx_close
dbx_compare
dbx_connect
dbx_error
dbx_escape_string
dbx_fetch_row
dbx_query
dbx_sort
# php-src/ext/dom/php_dom.c
# static zend_function_entry dom_functions[] = {
dom_import_simplexml
# php-src/ext/exif/exif.c
# function_entry exif_functions[] = {
exif_imagetype
exif_read_data
exif_tagname
exif_thumbnail
read_exif_data
# php-src/ext/fam/fam.c
# function_entry fam_functions[] = {
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
# php-src/ext/fbsql/php_fbsql.c
# function_entry fbsql_functions[] = {
fbsql
fbsql_affected_rows
fbsql_autocommit
fbsql_blob_size
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
# php-src/ext/fdf/fdf.c
# function_entry fdf_functions[] = {
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
# php-src/ext/filepro/filepro.c
# function_entry filepro_functions[] = {
filepro
filepro_fieldcount
filepro_fieldname
filepro_fieldtype
filepro_fieldwidth
filepro_retrieve
filepro_rowcount
# php-src/ext/ftp/php_ftp.c
# function_entry php_ftp_functions[] = {
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
# php-src/ext/gd/gd.c
# function_entry gd_functions[] = {
gd_info
image2wbmp
imagealphablending
imageantialias
imagearc
imagechar
imagecharup
imagecolorallocate
imagecolorallocatealpha
imagecolorat
imagecolorclosest
imagecolorclosestalpha
imagecolorclosesthwb
imagecolordeallocate
imagecolorexact
imagecolorexactalpha
imagecolormatch
imagecolorresolve
imagecolorresolvealpha
imagecolorset
imagecolorsforindex
imagecolorstotal
imagecolortransparent
imagecopy
imagecopymerge
imagecopymergegray
imagecopyresampled
imagecopyresized
imagecreate
imagecreatefromgd
imagecreatefromgd2
imagecreatefromgd2part
imagecreatefromgif
imagecreatefromjpeg
imagecreatefrompng
imagecreatefromstring
imagecreatefromwbmp
imagecreatefromxbm
imagecreatefromxpm
imagecreatetruecolor
imagedashedline
imagedestroy
imageellipse
imagefill
imagefilledarc
imagefilledellipse
imagefilledpolygon
imagefilledrectangle
imagefilltoborder
imagefilter
imagefontheight
imagefontwidth
imageftbbox
imagefttext
imagegammacorrect
imagegd
imagegd2
imagegif
imageinterlace
imageistruecolor
imagejpeg
imagelayereffect
imageline
imageloadfont
imagepalettecopy
imagepng
imagepolygon
imagepsbbox
imagepscopyfont
imagepsencodefont
imagepsextendfont
imagepsfreefont
imagepsloadfont
imagepsslantfont
imagepstext
imagerectangle
imagerotate
imagesavealpha
imagesetbrush
imagesetpixel
imagesetstyle
imagesetthickness
imagesettile
imagestring
imagestringup
imagesx
imagesy
imagetruecolortopalette
imagettfbbox
imagettftext
imagetypes
imagewbmp
imagexbm
jpeg2wbmp
png2wbmp
# php-src/ext/gettext/gettext.c
# function_entry php_gettext_functions[] = {
_
bind_textdomain_codeset
bindtextdomain
dcgettext
dcngettext
dgettext
dngettext
gettext
ngettext
textdomain
# php-src/ext/gmp/gmp.c
# function_entry gmp_functions[] = {
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_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_xor
# php-src/ext/hwapi/hwapi.cpp
# function_entry hwapi_functions[] = {
hwapi_attribute_key
hwapi_attribute_langdepvalue
hwapi_attribute_new
hwapi_attribute_value
hwapi_attribute_values
hwapi_children
hwapi_content
hwapi_content_new
hwapi_copy
hwapi_dummy
hwapi_find
hwapi_hgcsp
hwapi_identify
hwapi_init
hwapi_link
hwapi_lock
hwapi_move
hwapi_object
hwapi_object_assign
hwapi_object_attreditable
hwapi_object_attribute
hwapi_object_count
hwapi_object_insert
hwapi_object_new
hwapi_object_remove
hwapi_object_title
hwapi_object_value
hwapi_parents
hwapi_remove
hwapi_replace
hwapi_unlock
# php-src/ext/iconv/iconv.c
# function_entry iconv_functions[] = {
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
ob_iconv_handler
# php-src/ext/imap/php_imap.c
# function_entry imap_functions[] = {
imap_8bit
imap_alerts
imap_append
imap_base64
imap_binary
imap_body
imap_bodystruct
imap_check
imap_clearflag_full
imap_close
imap_create
imap_createmailbox
imap_delete
imap_deletemailbox
imap_errors
imap_expunge
imap_fetch_overview
imap_fetchbody
imap_fetchheader
imap_fetchstructure
imap_fetchtext
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_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_rename
imap_renamemailbox
imap_reopen
imap_rfc822_parse_adrlist
imap_rfc822_parse_headers
imap_rfc822_write_address
imap_scan
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
# php-src/ext/informix/ifx.ec
# function_entry ifx_functions[] = {
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
# php-src/ext/ingres_ii/ii.c
# function_entry ii_functions[] = {
ingres_autocommit
ingres_close
ingres_commit
ingres_connect
ingres_fetch_array
ingres_fetch_object
ingres_fetch_row
ingres_field_length
ingres_field_name
ingres_field_nullable
ingres_field_precision
ingres_field_scale
ingres_field_type
ingres_num_fields
ingres_num_rows
ingres_pconnect
ingres_query
ingres_rollback
# php-src/ext/interbase/interbase.c
# function_entry ibase_functions[] = {
fbird_add_user
fbird_affected_rows
fbird_backup
fbird_blob_add
fbird_blob_cancel
fbird_blob_close
fbird_blob_create
fbird_blob_echo
fbird_blob_get
fbird_blob_import
fbird_blob_info
fbird_blob_open
fbird_close
fbird_commit
fbird_commit_ret
fbird_connect
fbird_db_info
fbird_delete_user
fbird_drop_db
fbird_errcode
fbird_errmsg
fbird_execute
fbird_fetch_assoc
fbird_fetch_object
fbird_fetch_row
fbird_field_info
fbird_free_event_handler
fbird_free_query
fbird_free_result
fbird_gen_id
fbird_maintain_db
fbird_modify_user
fbird_name_result
fbird_num_fields
fbird_num_params
fbird_num_rows
fbird_param_info
fbird_pconnect
fbird_prepare
fbird_query
fbird_restore
fbird_rollback
fbird_rollback_ret
fbird_server_info
fbird_service_attach
fbird_service_detach
fbird_set_event_handler
fbird_trans
fbird_wait_event
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_num_rows
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_trans
ibase_wait_event
# php-src/ext/ircg/ircg.c
# function_entry ircg_functions[] = {
ircg_channel_mode
ircg_disconnect
ircg_eval_ecmascript_params
ircg_fetch_error_msg
ircg_get_username
ircg_html_encode
ircg_ignore_add
ircg_ignore_del
ircg_invite
ircg_is_conn_alive
ircg_join
ircg_kick
ircg_list
ircg_lookup_format_messages
ircg_lusers
ircg_msg
ircg_names
ircg_nick
ircg_nickname_escape
ircg_nickname_unescape
ircg_notice
ircg_oper
ircg_part
ircg_pconnect
ircg_register_format_messages
ircg_set_current
ircg_set_file
ircg_set_on_die
ircg_set_on_read_data
ircg_topic
ircg_who
ircg_whois
# php-src/ext/ldap/ldap.c
# function_entry ldap_functions[] = {
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
# php-src/ext/libxml/libxml.c
# function_entry libxml_functions[] = {
libxml_clear_errors
libxml_get_errors
libxml_get_last_error
libxml_set_streams_context
libxml_use_internal_errors
# php-src/ext/mbstring/mbstring.c
# function_entry mbstring_functions[] = {
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_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_send_mail
mb_strcut
mb_strimwidth
mb_strlen
mb_strpos
mb_strrpos
mb_strtolower
mb_strtoupper
mb_strwidth
mb_substitute_character
mb_substr
mb_substr_count
# php-src/ext/mcrypt/mcrypt.c
# function_entry mcrypt_functions[] = {
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
mdecrypt_generic
# php-src/ext/mcve/mcve.c
# function_entry mcve_functions[] = {
m_adduser
m_adduserarg
m_bt
m_checkstatus
m_chkpwd
m_chngpwd
m_completeauthorizations
m_connect
m_connectionerror
m_deleteresponse
m_deletetrans
m_deleteusersetup
m_deluser
m_destroyconn
m_destroyengine
m_disableuser
m_edituser
m_enableuser
m_force
m_getcell
m_getcellbynum
m_getcommadelimited
m_getheader
m_getuserarg
m_getuserparam
m_gft
m_gl
m_gut
m_initconn
m_initengine
m_initusersetup
m_iscommadelimited
m_liststats
m_listusers
m_maxconntimeout
m_monitor
m_numcolumns
m_numrows
m_override
m_parsecommadelimited
m_ping
m_preauth
m_preauthcompletion
m_qc
m_responseparam
m_return
m_returncode
m_returnstatus
m_sale
m_setblocking
m_setdropfile
m_setip
m_setssl
m_setssl_files
m_settimeout
m_settle
m_text_avs
m_text_code
m_text_cv
m_transactionauth
m_transactionavs
m_transactionbatch
m_transactioncv
m_transactionid
m_transactionitem
m_transactionssent
m_transactiontext
m_transinqueue
m_transnew
m_transparam
m_transsend
m_ub
m_uwait
m_verifyconnection
m_verifysslcert
m_void
mcve_adduser
mcve_adduserarg
mcve_bt
mcve_checkstatus
mcve_chkpwd
mcve_chngpwd
mcve_completeauthorizations
mcve_connect
mcve_connectionerror
mcve_deleteresponse
mcve_deletetrans
mcve_deleteusersetup
mcve_deluser
mcve_destroyconn
mcve_destroyengine
mcve_disableuser
mcve_edituser
mcve_enableuser
mcve_force
mcve_getcell
mcve_getcellbynum
mcve_getcommadelimited
mcve_getheader
mcve_getuserarg
mcve_getuserparam
mcve_gft
mcve_gl
mcve_gut
mcve_initconn
mcve_initengine
mcve_initusersetup
mcve_iscommadelimited
mcve_liststats
mcve_listusers
mcve_maxconntimeout
mcve_monitor
mcve_numcolumns
mcve_numrows
mcve_override
mcve_parsecommadelimited
mcve_ping
mcve_preauth
mcve_preauthcompletion
mcve_qc
mcve_responseparam
mcve_return
mcve_returncode
mcve_returnstatus
mcve_sale
mcve_setblocking
mcve_setdropfile
mcve_setip
mcve_setssl
mcve_setssl_files
mcve_settimeout
mcve_settle
mcve_text_avs
mcve_text_code
mcve_text_cv
mcve_transactionauth
mcve_transactionavs
mcve_transactionbatch
mcve_transactioncv
mcve_transactionid
mcve_transactionitem
mcve_transactionssent
mcve_transactiontext
mcve_transinqueue
mcve_transnew
mcve_transparam
mcve_transsend
mcve_ub
mcve_uwait
mcve_verifyconnection
mcve_verifysslcert
mcve_void
# php-src/ext/mhash/mhash.c
# function_entry mhash_functions[] = {
mhash
mhash_count
mhash_get_block_size
mhash_get_hash_name
mhash_keygen_s2k
# php-src/ext/mime_magic/mime_magic.c
# function_entry mime_magic_functions[] = {
mime_content_type
# php-src/ext/ming/ming.c
# static zend_function_entry ming_functions[] = {
ming_keypress
ming_setcubicthreshold
ming_setscale
ming_useconstants
ming_useswfversion
# static zend_function_entry swfaction_functions[] = {
# static zend_function_entry swfbitmap_functions[] = {
# static zend_function_entry swfbutton_functions[] = {
# static zend_function_entry swfdisplayitem_functions[] = {
# static zend_function_entry swffill_functions[] = {
# static zend_function_entry swffontchar_functions[] = {
# static zend_function_entry swffont_functions[] = {
# static zend_function_entry swfgradient_functions[] = {
# static zend_function_entry swfmorph_functions[] = {
# static zend_function_entry swfsound_functions[] = {
# static zend_function_entry swfsoundinstance_functions[] = {
# static zend_function_entry swfvideostream_functions[] = {
# static zend_function_entry swfprebuiltclip_functions[] = {
# static zend_function_entry swfmovie_functions[] = {
# static zend_function_entry swfshape_functions[] = {
# static zend_function_entry swfsprite_functions[] = {
# static zend_function_entry swftext_functions[] = {
# static zend_function_entry swftextfield_functions[] = {
# php-src/ext/mnogosearch/php_mnogo.c
# function_entry mnogosearch_functions[] = {
udm_add_search_limit
udm_alloc_agent
udm_alloc_agent_array
udm_api_version
udm_cat_list
udm_cat_path
udm_check_charset
udm_clear_search_limits
udm_crc32
udm_errno
udm_error
udm_find
udm_free_agent
udm_free_ispell_data
udm_free_res
udm_get_agent_param_ex
udm_get_doc_count
udm_get_res_field
udm_get_res_field_ex
udm_get_res_param
udm_hash32
udm_load_ispell_data
udm_make_excerpt
udm_parse_query_string
udm_set_agent_param
udm_set_agent_param_ex
udm_store_doc_cgi
# php-src/ext/mono/php_mono.c
# zend_function_entry mono_functions[] = {
mono_method_call
mono_method_find
# php-src/ext/msession/msession.c
# function_entry msession_functions[] = {
msession_call
msession_connect
msession_count
msession_create
msession_ctl
msession_destroy
msession_disconnect
msession_exec
msession_find
msession_get
msession_get_array
msession_get_data
msession_inc
msession_list
msession_listvar
msession_lock
msession_ping
msession_plugin
msession_randstr
msession_set
msession_set_array
msession_set_data
msession_timeout
msession_uniq
msession_unlock
# php-src/ext/msql/php_msql.c
# function_entry msql_functions[] = {
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_dropdb
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_freeresult
msql_list_dbs
msql_list_fields
msql_list_tables
msql_listdbs
msql_listfields
msql_listtables
msql_num_fields
msql_num_rows
msql_numfields
msql_numrows
msql_pconnect
msql_query
msql_regcase
msql_result
msql_select_db
msql_selectdb
msql_tablename
# php-src/ext/mssql/php_mssql.c
# function_entry mssql_functions[] = {
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
# php-src/ext/mysql/php_mysql.c
# function_entry mysql_functions[] = {
mysql
mysql_affected_rows
mysql_client_encoding
mysql_close
mysql_connect
mysql_create_db
mysql_createdb
mysql_data_seek
mysql_db_name
mysql_db_query
mysql_dbname
mysql_drop_db
mysql_dropdb
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_fieldflags
mysql_fieldlen
mysql_fieldname
mysql_fieldtable
mysql_fieldtype
mysql_free_result
mysql_freeresult
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_listdbs
mysql_listfields
mysql_listtables
mysql_num_fields
mysql_num_rows
mysql_numfields
mysql_numrows
mysql_pconnect
mysql_ping
mysql_query
mysql_real_escape_string
mysql_result
mysql_select_db
mysql_selectdb
mysql_stat
mysql_table_name
mysql_tablename
mysql_thread_id
mysql_unbuffered_query
# php-src/ext/mysqli/mysqli_driver.c
# function_entry mysqli_driver_methods[] = {
embedded_server_end
embedded_server_start
# php-src/ext/mysqli/mysqli_exception.c
# function_entry mysqli_exception_methods[] = {
# php-src/ext/mysqli/mysqli_fe.c
# function_entry mysqli_functions[] = {
mysqli_affected_rows
mysqli_autocommit
mysqli_bind_param
mysqli_bind_result
mysqli_change_user
mysqli_character_set_name
mysqli_client_encoding
mysqli_close
mysqli_commit
mysqli_connect
mysqli_connect_errno
mysqli_connect_error
mysqli_data_seek
mysqli_debug
mysqli_disable_reads_from_master
mysqli_disable_rpl_parse
mysqli_dump_debug_info
mysqli_embedded_server_end
mysqli_embedded_server_start
mysqli_enable_reads_from_master
mysqli_enable_rpl_parse
mysqli_errno
mysqli_error
mysqli_escape_string
mysqli_execute
mysqli_fetch
mysqli_fetch_array
mysqli_fetch_assoc
mysqli_fetch_field
mysqli_fetch_field_direct
mysqli_fetch_fields
mysqli_fetch_lengths
mysqli_fetch_object
mysqli_fetch_row
mysqli_field_count
mysqli_field_seek
mysqli_field_tell
mysqli_free_result
mysqli_get_client_info
mysqli_get_client_version
mysqli_get_host_info
mysqli_get_metadata
mysqli_get_proto_info
mysqli_get_server_info
mysqli_get_server_version
mysqli_info
mysqli_init
mysqli_insert_id
mysqli_kill
mysqli_master_query
mysqli_more_results
mysqli_multi_query
mysqli_next_result
mysqli_num_fields
mysqli_num_rows
mysqli_options
mysqli_param_count
mysqli_ping
mysqli_prepare
mysqli_query
mysqli_real_connect
mysqli_real_escape_string
mysqli_real_query
mysqli_report
mysqli_rollback
mysqli_rpl_parse_enabled
mysqli_rpl_probe
mysqli_rpl_query_type
mysqli_select_db
mysqli_send_long_data
mysqli_send_query
mysqli_set_local_infile_default
mysqli_set_local_infile_handler
mysqli_set_opt
mysqli_slave_query
mysqli_sqlstate
mysqli_ssl_set
mysqli_stat
mysqli_stmt_affected_rows
mysqli_stmt_attr_get
mysqli_stmt_attr_set
mysqli_stmt_bind_param
mysqli_stmt_bind_result
mysqli_stmt_close
mysqli_stmt_data_seek
mysqli_stmt_errno
mysqli_stmt_error
mysqli_stmt_execute
mysqli_stmt_fetch
mysqli_stmt_field_count
mysqli_stmt_free_result
mysqli_stmt_init
mysqli_stmt_insert_id
mysqli_stmt_num_rows
mysqli_stmt_param_count
mysqli_stmt_prepare
mysqli_stmt_reset
mysqli_stmt_result_metadata
mysqli_stmt_send_long_data
mysqli_stmt_sqlstate
mysqli_stmt_store_result
mysqli_store_result
mysqli_thread_id
mysqli_thread_safe
mysqli_use_result
mysqli_warning_count
# function_entry mysqli_link_methods[] = {
autocommit
change_user
character_set_name
client_encoding
close
commit
connect
debug
disable_reads_from_master
disable_rpl_parse
dump_debug_info
enable_reads_from_master
enable_rpl_parse
escape_string
get_client_info
get_server_info
get_warnings
init
kill
master_query
more_results
multi_query
mysqli
next_result
options
ping
prepare
query
real_connect
real_escape_string
real_query
rollback
rpl_parse_enabled
rpl_probe
rpl_query_type
select_db
set_local_infile_default
set_local_infile_handler
set_opt
slave_query
ssl_set
stat
stmt_init
store_result
thread_safe
use_result
# function_entry mysqli_result_methods[] = {
close
data_seek
fetch_array
fetch_assoc
fetch_field
fetch_field_direct
fetch_fields
fetch_object
fetch_row
field_count
field_seek
free
free_result
# function_entry mysqli_stmt_methods[] = {
attr_get
attr_set
bind_param
bind_result
close
data_seek
execute
fetch
free_result
get_warnings
num_rows
prepare
reset
result_metadata
send_long_data
stmt
store_result
# php-src/ext/mysqli/mysqli_warning.c
# function_entry mysqli_warning_methods[] = {
__construct
next
# php-src/ext/ncurses/ncurses_fe.c
# function_entry ncurses_functions[] = {
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_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
# php-src/ext/oci8/oci8.c
# static zend_function_entry php_oci_functions[] = {
oci_bind_by_name
oci_cancel
oci_close
oci_collection_append
oci_collection_assign
oci_collection_element_assign
oci_collection_element_get
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_collection
oci_free_cursor
oci_free_descriptor
oci_free_statement
oci_internal_debug
oci_lob_append
oci_lob_copy
oci_lob_eof
oci_lob_erase
oci_lob_export
oci_lob_flush
oci_lob_import
oci_lob_is_equal
oci_lob_load
oci_lob_read
oci_lob_rewind
oci_lob_save
oci_lob_size
oci_lob_tell
oci_lob_truncate
oci_lob_write
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
ocicollappend
ocicollassignelem
ocicollgetelem
ocicollmax
ocicollsize
ocicolltrim
ocicolumnisnull
ocicolumnname
ocicolumnprecision
ocicolumnscale
ocicolumnsize
ocicolumntype
ocicolumntyperaw
ocicommit
ocidefinebyname
ocierror
ociexecute
ocifetch
ocifetchinto
ocifetchstatement
ocifreecollection
ocifreecursor
ocifreedesc
ocifreestatement
ocigetbufferinglob
ociinternaldebug
ociloadlob
ocilogoff
ocilogon
ocinewcollection
ocinewcursor
ocinewdescriptor
ocinlogon
ocinumcols
ociparse
ocipasswordchange
ociplogon
ociresult
ocirollback
ocirowcount
ocisavelob
ocisavelobfile
ociserverversion
ocisetbufferinglob
ocisetprefetch
ocistatementtype
ociwritelobtofile
# php-src/ext/odbc/birdstep.c
# function_entry birdstep_functions[] = {
birdstep_autocommit
birdstep_close
birdstep_commit
birdstep_connect
birdstep_exec
birdstep_fetch
birdstep_fieldname
birdstep_fieldnum
birdstep_freeresult
birdstep_off_autocommit
birdstep_result
birdstep_rollback
velocis_autocommit
velocis_close
velocis_commit
velocis_connect
velocis_exec
velocis_fetch
velocis_fieldname
velocis_fieldnum
velocis_freeresult
velocis_off_autocommit
velocis_result
velocis_rollback
# php-src/ext/odbc/php_odbc.c
# function_entry odbc_functions[] = {
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
# php-src/ext/openssl/openssl.c
# function_entry openssl_functions[] = {
openssl_csr_export
openssl_csr_export_to_file
openssl_csr_new
openssl_csr_sign
openssl_error_string
openssl_free_key
openssl_get_privatekey
openssl_get_publickey
openssl_open
openssl_pkcs7_decrypt
openssl_pkcs7_encrypt
openssl_pkcs7_sign
openssl_pkcs7_verify
openssl_pkey_export
openssl_pkey_export_to_file
openssl_pkey_free
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
# php-src/ext/oracle/oracle.c
# function_entry oracle_functions[] = {
ora_bind
ora_close
ora_columnname
ora_columnsize
ora_columntype
ora_commit
ora_commitoff
ora_commiton
ora_do
ora_error
ora_errorcode
ora_exec
ora_fetch
ora_fetch_into
ora_getcolumn
ora_logoff
ora_logon
ora_numcols
ora_numrows
ora_open
ora_parse
ora_plogon
ora_rollback
# php-src/ext/ovrimos/ovrimos.c
# function_entry ovrimos_functions[] = {
ovrimos_close
ovrimos_commit
ovrimos_connect
ovrimos_cursor
ovrimos_do
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
# php-src/ext/pcntl/pcntl.c
# function_entry pcntl_functions[] = {
pcntl_alarm
pcntl_exec
pcntl_fork
pcntl_getpriority
pcntl_setpriority
pcntl_signal
pcntl_wait
pcntl_waitpid
pcntl_wexitstatus
pcntl_wifexited
pcntl_wifsignaled
pcntl_wifstopped
pcntl_wstopsig
pcntl_wtermsig
# php-src/ext/pcre/php_pcre.c
# function_entry pcre_functions[] = {
preg_grep
preg_match
preg_match_all
preg_quote
preg_replace
preg_replace_callback
preg_split
# php-src/ext/pdo/pdo.c
# function_entry pdo_functions[] = {
# php-src/ext/pdo/pdo_dbh.c
# function_entry pdo_dbh_functions[] = {
# php-src/ext/pdo/pdo_stmt.c
# function_entry pdo_dbstmt_functions[] = {
# function_entry pdo_row_functions[] = {
# php-src/ext/pdo_dblib/pdo_dblib.c
# function_entry pdo_dblib_functions[] = {
# php-src/ext/pdo_firebird/pdo_firebird.c
# function_entry pdo_firebird_functions[] = { /* {{{ */
# php-src/ext/pdo_mysql/pdo_mysql.c
# function_entry pdo_mysql_functions[] = {
# php-src/ext/pdo_oci/pdo_oci.c
# function_entry pdo_oci_functions[] = {
# php-src/ext/pdo_odbc/pdo_odbc.c
# function_entry pdo_odbc_functions[] = {
# php-src/ext/pdo_pgsql/pdo_pgsql.c
# function_entry pdo_pgsql_functions[] = {
# php-src/ext/pdo_sqlite/pdo_sqlite.c
# function_entry pdo_sqlite_functions[] = {
# php-src/ext/pdo_sqlite/sqlite_driver.c
# static function_entry dbh_methods[] = {
sqlite_create_function
# php-src/ext/pfpro/pfpro.c
# function_entry pfpro_functions[] = {
pfpro_cleanup
pfpro_init
pfpro_process
pfpro_process_raw
pfpro_version
# php-src/ext/pgsql/pgsql.c
# function_entry pgsql_functions[] = {
pg_affected_rows
pg_cancel_query
pg_client_encoding
pg_clientencoding
pg_close
pg_cmdtuples
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_errormessage
pg_escape_bytea
pg_escape_string
pg_exec
pg_fetch_all
pg_fetch_array
pg_fetch_assoc
pg_fetch_object
pg_fetch_result
pg_fetch_row
pg_field_is_null
pg_field_name
pg_field_num
pg_field_prtlen
pg_field_size
pg_field_type
pg_field_type_oid
pg_fieldisnull
pg_fieldname
pg_fieldnum
pg_fieldprtlen
pg_fieldsize
pg_fieldtype
pg_free_result
pg_freeresult
pg_get_notify
pg_get_pid
pg_get_result
pg_getlastoid
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_loclose
pg_locreate
pg_loexport
pg_loimport
pg_loopen
pg_loread
pg_loreadall
pg_lounlink
pg_lowrite
pg_meta_data
pg_num_fields
pg_num_rows
pg_numfields
pg_numrows
pg_options
pg_parameter_status
pg_pconnect
pg_ping
pg_port
pg_put_line
pg_query
pg_result
pg_result_error
pg_result_seek
pg_result_status
pg_select
pg_send_query
pg_set_client_encoding
pg_setclientencoding
pg_trace
pg_tty
pg_unescape_bytea
pg_untrace
pg_update
pg_version
# php-src/ext/posix/posix.c
# function_entry posix_functions[] = {
posix_access
posix_ctermid
posix_errno
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_isatty
posix_kill
posix_mkfifo
posix_setegid
posix_seteuid
posix_setgid
posix_setpgid
posix_setsid
posix_setuid
posix_strerror
posix_times
posix_ttyname
posix_uname
# php-src/ext/pspell/pspell.c
# function_entry pspell_functions[] = {
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
# php-src/ext/readline/readline.c
# static zend_function_entry php_readline_functions[] = {
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
# php-src/ext/recode/recode.c
# static zend_function_entry php_recode_functions[] = {
recode
recode_file
recode_string
# php-src/ext/session/session.c
# function_entry session_functions[] = {
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_regenerate_id
session_register
session_save_path
session_set_cookie_params
session_set_save_handler
session_start
session_unregister
session_unset
session_write_close
# php-src/ext/shmop/shmop.c
# function_entry shmop_functions[] = {
shmop_close
shmop_delete
shmop_open
shmop_read
shmop_size
shmop_write
# php-src/ext/simplexml/simplexml.c
# function_entry simplexml_functions[] = {
simplexml_import_dom
simplexml_load_file
simplexml_load_string
# static zend_function_entry sxe_functions[] = {
# php-src/ext/skeleton/skeleton.c
# function_entry extname_functions[] = {
confirm_extname_compiled
# php-src/ext/snmp/snmp.c
# function_entry snmp_functions[] = {
snmp3_get
snmp3_getnext
snmp3_real_walk
snmp3_set
snmp3_walk
snmp_get_quick_print
snmp_get_valueretrieval
snmp_read_mib
snmp_set_enum_print
snmp_set_oid_numeric_print
snmp_set_quick_print
snmp_set_valueretrieval
snmpget
snmpgetnext
snmprealwalk
snmpset
snmpwalk
snmpwalkoid
# php-src/ext/snmp/winsnmp.c
# function_entry snmp_functions[] = {
snmpget
snmpwalk
# php-src/ext/soap/soap.c
# static zend_function_entry soap_functions[] = {
is_soap_fault
soap_encode_to_xml
soap_encode_to_zval
use_soap_error_handler
# static zend_function_entry soap_fault_functions[] = {
# static zend_function_entry soap_server_functions[] = {
# static zend_function_entry soap_client_functions[] = {
__soapCall
# static zend_function_entry soap_var_functions[] = {
# static zend_function_entry soap_param_functions[] = {
# static zend_function_entry soap_header_functions[] = {
# php-src/ext/sockets/sockets.c
# function_entry sockets_functions[] = {
socket_accept
socket_bind
socket_clear_error
socket_close
socket_connect
socket_create
socket_create_listen
socket_create_pair
socket_get_option
socket_getopt
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_nonblock
socket_set_option
socket_setopt
socket_shutdown
socket_strerror
socket_write
# php-src/ext/spl/php_spl.c
# function_entry spl_functions_none[] = {
# function_entry spl_functions[] = {
class_implements
class_parents
iterator_count
iterator_to_array
spl_autoload
spl_autoload_call
spl_autoload_extensions
spl_autoload_functions
spl_autoload_register
spl_autoload_unregister
spl_classes
# php-src/ext/spl/spl_array.c
# static zend_function_entry spl_funcs_ArrayObject[] = {
# static zend_function_entry spl_funcs_ArrayIterator[] = {
# static zend_function_entry spl_funcs_Countable[] = {
# php-src/ext/spl/spl_iterators.c
# function_entry spl_funcs_RecursiveIterator[] = {
# static zend_function_entry spl_funcs_RecursiveIteratorIterator[] = {
# static zend_function_entry spl_funcs_FilterIterator[] = {
# static zend_function_entry spl_funcs_ParentIterator[] = {
# static zend_function_entry spl_funcs_SeekableIterator[] = {
# static zend_function_entry spl_funcs_LimitIterator[] = {
# static zend_function_entry spl_funcs_CachingIterator[] = {
# static zend_function_entry spl_funcs_CachingRecursiveIterator[] = {
# static zend_function_entry spl_funcs_IteratorIterator[] = {
# static zend_function_entry spl_funcs_NoRewindIterator[] = {
# static zend_function_entry spl_funcs_InfiniteIterator[] = {
# static zend_function_entry spl_funcs_EmptyIterator[] = {
# static zend_function_entry spl_funcs_AppendIterator[] = {
# static zend_function_entry spl_funcs_OuterIterator[] = {
# php-src/ext/spl/spl_observer.c
# static zend_function_entry spl_funcs_Observer[] = {
# static zend_function_entry spl_funcs_Subject[] = {
# php-src/ext/spl/spl_sxe.c
# static zend_function_entry spl_funcs_SimpleXMLIterator[] = {
# php-src/ext/sqlite/sqlite.c
# function_entry sqlite_functions[] = {
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_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
# function_entry sqlite_funcs_db[] = {
# function_entry sqlite_funcs_query[] = {
# function_entry sqlite_funcs_ub_query[] = {
# function_entry sqlite_funcs_exception[] = {
# php-src/ext/standard/basic_functions.c
# function_entry basic_functions[] = {
abs
acos
acosh
addcslashes
addslashes
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_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_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
asin
asinh
asort
assert
assert_options
atan
atan2
atanh
base64_decode
base64_encode
base_convert
basename
bin2hex
bindec
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
clearstatcache
closedir
closelog
compact
connection_aborted
connection_status
constant
convert_cyr_string
convert_uudecode
convert_uuencode
copy
cos
cosh
count
count_chars
crc32
crypt
current
date
date_sunrise
date_sunset
debug_zval_dump
decbin
dechex
decoct
define_syslog_variables
deg2rad
dir
dirname
disk_free_space
disk_total_space
diskfreespace
dl
dns_check_record
dns_get_mx
dns_get_record
doubleval
end
ereg
ereg_replace
eregi
eregi_replace
error_log
escapeshellarg
escapeshellcmd
exec
exp
explode
expm1
extract
ezmlm_hash
fclose
feof
fflush
fgetc
fgetcsv
fgets
fgetss
file
file_exists
file_get_contents
file_put_contents
fileatime
filectime
filegroup
fileinode
filemtime
fileowner
fileperms
filesize
filetype
floatval
flock
floor
flush
fmod
fnmatch
fopen
fpassthru
fprintf
fputcsv
fputs
fread
fscanf
fseek
fsockopen
fstat
ftell
ftok
ftruncate
fwrite
get_browser
get_cfg_var
get_current_user
get_headers
get_html_translation_table
get_include_path
get_magic_quotes_gpc
get_magic_quotes_runtime
get_meta_tags
getcwd
getdate
getenv
gethostbyaddr
gethostbyname
gethostbynamel
getimagesize
getlastmod
getmxrr
getmygid
getmyinode
getmypid
getmyuid
getopt
getprotobyname
getprotobynumber
getrandmax
getrusage
getservbyname
getservbyport
gettimeofday
gettype
glob
gmdate
gmmktime
gmstrftime
header
headers_list
headers_sent
hebrev
hebrevc
hexdec
highlight_file
highlight_string
html_entity_decode
htmlentities
htmlspecialchars
http_build_query
hypot
idate
ignore_user_abort
image_type_to_mime_type
implode
import_request_variables
in_array
inet_ntop
inet_pton
ini_alter
ini_get
ini_get_all
ini_restore
ini_set
intval
ip2long
iptcembed
iptcparse
is_array
is_bool
is_callable
is_dir
is_double
is_executable
is_file
is_finite
is_float
is_infinite
is_int
is_integer
is_link
is_long
is_nan
is_null
is_numeric
is_object
is_readable
is_real
is_resource
is_scalar
is_string
is_uploaded_file
is_writable
is_writeable
join
key
key_exists
krsort
ksort
lcg_value
levenshtein
link
linkinfo
localeconv
localtime
log
log10
log1p
long2ip
lstat
ltrim
magic_quotes_runtime
mail
max
md5
md5_file
memory_get_usage
metaphone
microtime
min
mkdir
mktime
money_format
move_uploaded_file
mt_getrandmax
mt_rand
mt_srand
natcasesort
natsort
next
nl2br
nl_langinfo
number_format
ob_clean
ob_end_clean
ob_end_flush
ob_flush
ob_get_clean
ob_get_contents
ob_get_flush
ob_get_length
ob_get_level
ob_get_status
ob_implicit_flush
ob_list_handlers
ob_start
octdec
opendir
openlog
ord
output_add_rewrite_var
output_reset_rewrite_vars
pack
parse_ini_file
parse_str
parse_url
passthru
pathinfo
pclose
pfsockopen
php_check_syntax
php_egg_logo_guid
php_ini_scanned_files
php_logo_guid
php_real_logo_guid
php_sapi_name
php_strip_whitespace
php_uname
phpcredits
phpinfo
phpversion
pi
popen
pos
pow
prev
print_r
printf
proc_close
proc_get_status
proc_nice
proc_open
proc_terminate
putenv
quoted_printable_decode
quotemeta
rad2deg
rand
range
rawurldecode
rawurlencode
readdir
readfile
readlink
realpath
register_shutdown_function
register_tick_function
rename
reset
restore_include_path
rewind
rewinddir
rmdir
round
rsort
rtrim
scandir
serialize
set_file_buffer
set_include_path
set_magic_quotes_runtime
set_socket_blocking
set_time_limit
setcookie
setlocale
setrawcookie
settype
sha1
sha1_file
shell_exec
show_source
shuffle
similar_text
sin
sinh
sizeof
sleep
socket_get_status
socket_set_blocking
socket_set_timeout
sort
soundex
split
spliti
sprintf
sql_regcase
sqrt
srand
sscanf
stat
str_ireplace
str_pad
str_repeat
str_replace
str_rot13
str_shuffle
str_split
str_word_count
strchr
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_set_option
stream_context_set_params
stream_copy_to_stream
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_register_wrapper
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_wrapper_register
stream_wrapper_restore
stream_wrapper_unregister
strftime
strip_tags
stripcslashes
stripos
stripslashes
stristr
strnatcasecmp
strnatcmp
strpbrk
strpos
strptime
strrchr
strrev
strripos
strrpos
strspn
strstr
strtok
strtolower
strtotime
strtoupper
strtr
strval
substr
substr_compare
substr_count
substr_replace
symlink
syslog
system
tan
tanh
tempnam
time
time_nanosleep
tmpfile
touch
trim
uasort
ucfirst
ucwords
uksort
umask
uniqid
unlink
unpack
unregister_tick_function
unserialize
urldecode
urlencode
usleep
usort
var_dump
var_export
version_compare
vfprintf
vprintf
vsprintf
wordwrap
zend_logo_guid
# php-src/ext/standard/user_filters.c
# static zend_function_entry user_filter_class_funcs[] = {
filter
onClose
onCreate
# php-src/ext/sybase/php_sybase_db.c
# function_entry sybase_functions[] = {
mssql_affected_rows
mssql_close
mssql_connect
mssql_data_seek
mssql_fetch_array
mssql_fetch_field
mssql_fetch_object
mssql_fetch_row
mssql_field_seek
mssql_free_result
mssql_get_last_message
mssql_min_error_severity
mssql_min_message_severity
mssql_num_fields
mssql_num_rows
mssql_pconnect
mssql_query
mssql_result
mssql_select_db
sybase_affected_rows
sybase_close
sybase_connect
sybase_data_seek
sybase_fetch_array
sybase_fetch_field
sybase_fetch_object
sybase_fetch_row
sybase_field_seek
sybase_free_result
sybase_get_last_message
sybase_min_error_severity
sybase_min_message_severity
sybase_num_fields
sybase_num_rows
sybase_pconnect
sybase_query
sybase_result
sybase_select_db
# php-src/ext/sybase_ct/php_sybase_ct.c
# function_entry sybase_functions[] = {
mssql_affected_rows
mssql_close
mssql_connect
mssql_data_seek
mssql_deadlock_retry_count
mssql_fetch_array
mssql_fetch_assoc
mssql_fetch_field
mssql_fetch_object
mssql_fetch_row
mssql_field_seek
mssql_free_result
mssql_get_last_message
mssql_min_client_severity
mssql_min_server_severity
mssql_num_fields
mssql_num_rows
mssql_pconnect
mssql_query
mssql_result
mssql_select_db
mssql_set_message_handler
mssql_unbuffered_query
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_server_severity
sybase_num_fields
sybase_num_rows
sybase_pconnect
sybase_query
sybase_result
sybase_select_db
sybase_set_message_handler
sybase_unbuffered_query
# php-src/ext/sysvmsg/sysvmsg.c
# function_entry sysvmsg_functions[] = {
msg_get_queue
msg_receive
msg_remove_queue
msg_send
msg_set_queue
msg_stat_queue
# php-src/ext/sysvsem/sysvsem.c
# function_entry sysvsem_functions[] = {
sem_acquire
sem_get
sem_release
sem_remove
# php-src/ext/sysvshm/sysvshm.c
# function_entry sysvshm_functions[] = {
shm_attach
shm_detach
shm_get_var
shm_put_var
shm_remove
shm_remove_var
# php-src/ext/tidy/tidy.c
# function_entry tidy_functions[] = {
ob_tidyhandler
tidy_access_count
tidy_clean_repair
tidy_config_count
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_output
tidy_get_release
tidy_get_root
tidy_get_status
tidy_getopt
tidy_is_xhtml
tidy_is_xml
tidy_parse_file
tidy_parse_string
tidy_repair_file
tidy_repair_string
tidy_warning_count
# function_entry tidy_funcs_doc[] = {
# function_entry tidy_funcs_node[] = {
# function_entry tidy_funcs_exception[] = {
# php-src/ext/tokenizer/tokenizer.c
# function_entry tokenizer_functions[] = {
token_get_all
token_name
# php-src/ext/wddx/wddx.c
# function_entry wddx_functions[] = {
wddx_add_vars
wddx_deserialize
wddx_packet_end
wddx_packet_start
wddx_serialize_value
wddx_serialize_vars
# php-src/ext/xml/xml.c
# function_entry xml_functions[] = {
utf8_decode
utf8_encode
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
# php-src/ext/xmlreader/php_xmlreader.c
# static zend_function_entry xmlreader_functions[] = {
# php-src/ext/xmlrpc/xmlrpc-epi-php.c
# function_entry xmlrpc_functions[] = {
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
# php-src/ext/xsl/php_xsl.c
# function_entry xsl_functions[] = {
# php-src/ext/zlib/zlib.c
# function_entry php_zlib_functions[] = {
gzclose
gzcompress
gzdeflate
gzencode
gzeof
gzfile
gzgetc
gzgets
gzgetss
gzinflate
gzopen
gzpassthru
gzputs
gzread
gzrewind
gzseek
gztell
gzuncompress
gzwrite
ob_gzhandler
readgzfile
zlib_get_coding_type
# php-src/sapi/aolserver/aolserver.c
# static function_entry aolserver_functions[] = {
getallheaders
# php-src/sapi/apache/php_apache.c
# function_entry apache_functions[] = {
apache_child_terminate
apache_get_modules
apache_get_version
apache_lookup_uri
apache_note
apache_request_headers
apache_response_headers
apache_setenv
getallheaders
virtual
# php-src/sapi/apache2filter/php_functions.c
# static function_entry apache_functions[] = {
apache_get_modules
apache_get_version
apache_getenv
apache_lookup_uri
apache_note
apache_request_headers
apache_response_headers
apache_setenv
getallheaders
virtual
# php-src/sapi/apache2handler/php_functions.c
# static function_entry apache_functions[] = {
apache_get_modules
apache_get_version
apache_getenv
apache_lookup_uri
apache_note
apache_request_headers
apache_response_headers
apache_setenv
getallheaders
virtual
# php-src/sapi/apache_hooks/php_apache.c
# function_entry apache_functions[] = {
apache_child_terminate
apache_get_modules
apache_get_version
apache_lookup_uri
apache_note
apache_request_headers
apache_response_headers
apache_setenv
getallheaders
virtual
# php-src/sapi/continuity/capi.c
# function_entry continuity_functions[] = {
# php-src/sapi/milter/php_milter.c
# static function_entry milter_functions[] = {
smfi_addheader
smfi_addrcpt
smfi_chgheader
smfi_delrcpt
smfi_getsymval
smfi_replacebody
smfi_setflags
smfi_setreply
smfi_settimeout
# php-src/sapi/nsapi/nsapi.c
# function_entry nsapi_functions[] = {
apache_request_headers
apache_response_headers
getallheaders
nsapi_request_headers
nsapi_response_headers
nsapi_virtual
virtual
# --------- PECL Stuff ---------
# pecl/Net_Gopher/gopher_fopen_wrapper.c
# function_entry gopher_functions[] = {
gopher_parsedir
# pecl/adt/php_adt.c
# function_entry adt_functions[] = {
adt_graph_adjacency_list
adt_graph_adjacency_lists
adt_graph_clone
adt_graph_edge_count
adt_graph_free
adt_graph_insert_edge
adt_graph_insert_vertex
adt_graph_is_adjacent
adt_graph_new
adt_graph_remove_edge
adt_graph_remove_vertex
adt_graph_vertex_count
adt_heap_clone
adt_heap_count
adt_heap_extract
adt_heap_free
adt_heap_insert
adt_heap_new
adt_queue_clone
adt_queue_count
adt_queue_extract
adt_queue_free
adt_queue_insert
adt_queue_new
adt_queue_peek
adt_set_clone
adt_set_count
adt_set_difference
adt_set_free
adt_set_insert
adt_set_intersect
adt_set_is_equal
adt_set_is_member
adt_set_is_subset
adt_set_new
adt_set_remove
adt_set_union
adt_stack_clone
adt_stack_count
adt_stack_free
adt_stack_new
adt_stack_pop
adt_stack_push
adt_tree_clone
adt_tree_count
adt_tree_data
adt_tree_free
adt_tree_insert
adt_tree_insert_left
adt_tree_insert_right
adt_tree_insert_root
adt_tree_is_branch_end
adt_tree_is_leaf
adt_tree_left
adt_tree_new
adt_tree_remove
adt_tree_remove_left
adt_tree_remove_right
adt_tree_right
adt_tree_root
adt_tree_search
adt_tree_traverse
# pecl/apc/php_apc.c
# function_entry apc_functions[] = {
apc_cache_info
apc_clear_cache
apc_define_constants
apc_delete
apc_fetch
apc_load_constants
apc_sma_info
apc_store
# pecl/apd/php_apd.c
# function_entry apd_functions[] = {
apd_breakpoint
apd_continue
apd_echo
apd_set_browser_trace
apd_set_pprof_trace
apd_set_session_trace_socket
override_function
rename_function
# pecl/archive/archive.c
# function_entry archive_functions[] = {
# pecl/archive/archive_entry.c
# function_entry funcs_ArchiveEntry[] = {
# pecl/archive/archive_reader.c
# function_entry funcs_ArchiveReaderInterface[] = {
# function_entry funcs_ArchiveReader[] = {
# pecl/archive/archive_writer.c
# function_entry funcs_ArchiveWriterInterface[] = {
# function_entry funcs_ArchiveWriter[] = {
# pecl/bcompiler/bcompiler.c
# function_entry bcompiler_functions[] = {
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
# pecl/blenc/blenc.c
# function_entry blenc_functions[] = {
blenc_encrypt
# pecl/bz2/bz2.c
# function_entry bz2_functions[] = {
bzclose
bzcompress
bzdecompress
bzerrno
bzerror
bzerrstr
bzflush
bzopen
bzread
bzwrite
# pecl/chasen/php_chasen.c
# function_entry chasen_functions[] = {
chasen
chasen_split
# pecl/classkit/classkit.c
# function_entry classkit_functions[] = {
classkit_aggregate_methods
classkit_doc_comments
classkit_import
classkit_method_add
classkit_method_copy
classkit_method_redefine
classkit_method_remove
classkit_method_rename
# pecl/colorer/colorer.cpp
# zend_function_entry colorer_functions[] = { /* {{{ */
colorer_direct_markup
colorer_highlight_file
colorer_highlight_file_cb
colorer_highlight_string
colorer_highlight_string_cb
colorer_hrd_name
colorer_list_types
colorer_open
colorer_type
colorer_version
# pecl/cpdf/cpdf.c
# function_entry cpdf_functions[] = {
cpdf_add_annotation
cpdf_add_outline
cpdf_arc
cpdf_begin_text
cpdf_circle
cpdf_clip
cpdf_close
cpdf_closepath
cpdf_closepath_fill_stroke
cpdf_closepath_stroke
cpdf_continue_text
cpdf_curveto
cpdf_end_text
cpdf_fill
cpdf_fill_stroke
cpdf_finalize
cpdf_finalize_page
cpdf_global_set_document_limits
cpdf_import_jpeg
cpdf_lineto
cpdf_moveto
cpdf_newpath
cpdf_open
cpdf_output_buffer
cpdf_page_init
cpdf_place_inline_image
cpdf_rect
cpdf_restore
cpdf_rlineto
cpdf_rmoveto
cpdf_rotate
cpdf_rotate_text
cpdf_save
cpdf_save_to_file
cpdf_scale
cpdf_set_action_url
cpdf_set_char_spacing
cpdf_set_creator
cpdf_set_current_page
cpdf_set_font
cpdf_set_font_directories
cpdf_set_font_map_file
cpdf_set_horiz_scaling
cpdf_set_keywords
cpdf_set_leading
cpdf_set_page_animation
cpdf_set_subject
cpdf_set_text_matrix
cpdf_set_text_pos
cpdf_set_text_rendering
cpdf_set_text_rise
cpdf_set_title
cpdf_set_viewer_preferences
cpdf_set_word_spacing
cpdf_setdash
cpdf_setflat
cpdf_setgray
cpdf_setgray_fill
cpdf_setgray_stroke
cpdf_setlinecap
cpdf_setlinejoin
cpdf_setlinewidth
cpdf_setmiterlimit
cpdf_setrgbcolor
cpdf_setrgbcolor_fill
cpdf_setrgbcolor_stroke
cpdf_show
cpdf_show_xy
cpdf_stringwidth
cpdf_stroke
cpdf_text
cpdf_translate
# pecl/crack/crack.c
# function_entry crack_functions[] = {
crack_check
crack_closedict
crack_getlastmessage
crack_opendict
# pecl/cvsclient/cvsclient.c
# function_entry cvsclient_functions[] = {
cvsclient_connect
cvsclient_log
cvsclient_login
cvsclient_retrieve
# pecl/cybercash/cybercash.c
# function_entry cybercash_functions[] = {
cybercash_base64_decode
cybercash_base64_encode
cybercash_decr
cybercash_encr
# pecl/cybermut/cybermut.c
# function_entry cybermut_functions[] = {
cybermut_creerformulairecm
cybermut_creerreponsecm
cybermut_testmac
# pecl/cyrus/cyrus.c
# function_entry cyrus_functions[] = {
cyrus_authenticate
cyrus_bind
cyrus_close
cyrus_connect
cyrus_query
cyrus_unbind
# pecl/daffodildb/daffodildb.c
# function_entry daffodildb_functions[] = {
daffodildb_affected_row
daffodildb_autocommit
daffodildb_close
daffodildb_column_count
daffodildb_commit
daffodildb_connect
daffodildb_errormsg
daffodildb_execute
daffodildb_fetch_array
daffodildb_fetch_assoc
daffodildb_fetch_row
daffodildb_field_name
daffodildb_free_resultset
daffodildb_rollback
# pecl/date/date.c
# function_entry date_functions[] = {
date_add_days
date_add_months
date_add_weeks
date_add_years
date_clamp
date_compare
date_days_between
date_free
date_get_array
date_get_day
date_get_day_of_year
date_get_days_in_month
date_get_easter
date_get_first_dow
date_get_isoweek_of_year
date_get_julian
date_get_last_dow
date_get_month
date_get_to_last_month_day
date_get_to_next_weekday
date_get_to_prev_week_day
date_get_to_week
date_get_to_weekday
date_get_to_weekday_in_same_week
date_get_week_of_year
date_get_weekday
date_get_weeks_of_year
date_get_year
date_is_leap_year
date_new
date_new_dmy
date_new_julian
date_new_now
date_order
date_set_day
date_set_dmy
date_set_first_dow
date_set_julian
date_set_last_dow
date_set_month
date_set_to_last_month_day
date_set_to_next_weekday
date_set_to_prev_week_day
date_set_to_week
date_set_to_weekday
date_set_to_weekday_in_same_week
date_set_year
date_strftime
date_sub_days
date_sub_months
date_sub_weeks
date_sub_years
date_valid
date_valid_dmy
date_valid_julian
# pecl/dazuko/dazuko.c
# function_entry dazuko_functions[] = {
dazuko_exclude_path
dazuko_fetch_result
dazuko_fetch_thread
dazuko_flush_result
dazuko_get_access
dazuko_include_path
dazuko_module_loaded
dazuko_register
dazuko_remove_paths
dazuko_return_access
dazuko_set_accessmask
dazuko_thread_exclude_path
dazuko_thread_get_access
dazuko_thread_include_path
dazuko_thread_register
dazuko_thread_remove_paths
dazuko_thread_return_access
dazuko_thread_set_accessmask
dazuko_thread_unregister
dazuko_unregister
# pecl/db/db.c
# function_entry dbm_functions[] = {
db_id_list
dblist
dbmclose
dbmdelete
dbmexists
dbmfetch
dbmfirstkey
dbminsert
dbmnextkey
dbmopen
dbmreplace
# pecl/dbdo/dbdo.c
# function_entry dbdo_functions[] = {
# function_entry dbdo_funcs_exception[] = {
# pecl/dbplus/dbplus.c
# function_entry dbplus_functions[] = {
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_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
# pecl/dio/dio.c
# function_entry dio_functions[] = {
dio_close
dio_fcntl
dio_open
dio_read
dio_seek
dio_stat
dio_tcsetattr
dio_truncate
dio_write
# pecl/domxml/php_domxml.c
# static zend_function_entry domxml_functions[] = {
domxml_add_root
domxml_attributes
domxml_children
domxml_doc_add_root
domxml_doc_document_element
domxml_doc_get_element_by_id
domxml_doc_get_elements_by_tagname
domxml_doc_get_root
domxml_doc_set_root
domxml_doc_validate
domxml_doc_xinclude
domxml_dump_mem
domxml_dump_mem_file
domxml_dump_node
domxml_dumpmem
domxml_elem_get_attribute
domxml_elem_set_attribute
domxml_get_attribute
domxml_getattr
domxml_html_dump_mem
domxml_new_child
domxml_new_doc
domxml_new_xmldoc
domxml_node
domxml_node_add_namespace
domxml_node_attributes
domxml_node_children
domxml_node_get_content
domxml_node_has_attributes
domxml_node_new_child
domxml_node_set_content
domxml_node_set_namespace
domxml_node_unlink_node
domxml_open_file
domxml_open_mem
domxml_parser
domxml_parser_add_chunk
domxml_parser_cdata_section
domxml_parser_characters
domxml_parser_comment
domxml_parser_end
domxml_parser_end_document
domxml_parser_end_element
domxml_parser_entity_reference
domxml_parser_get_document
domxml_parser_namespace_decl
domxml_parser_processing_instruction
domxml_parser_start_document
domxml_parser_start_element
domxml_root
domxml_set_attribute
domxml_setattr
domxml_substitute_entities_default
domxml_unlink_node
domxml_version
domxml_xmltree
domxml_xslt_process
domxml_xslt_result_dump_file
domxml_xslt_result_dump_mem
domxml_xslt_stylesheet
domxml_xslt_stylesheet_doc
domxml_xslt_stylesheet_file
domxml_xslt_version
html_doc
html_doc_file
new_xmldoc
set_content
xmldoc
xmldocfile
xmltree
xpath_eval
xpath_eval_expression
xpath_new_context
xpath_register_ns
xpath_register_ns_auto
xptr_eval
xptr_new_context
# pecl/ecasound/ecasound.c
# function_entry ecasound_functions[] = {
eci_cleanup
eci_command
eci_command_float_arg
eci_error
eci_init
eci_last_error
eci_last_float
eci_last_integer
eci_last_long_integer
eci_last_string
eci_last_string_list_count
eci_last_string_list_item
# pecl/enchant/enchant.c
# function_entry enchant_functions[] = {
enchant_broker_describe
enchant_broker_dict_exists
enchant_broker_free
enchant_broker_free_dict
enchant_broker_get_error
enchant_broker_init
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
# pecl/esmtp/esmtp-php4.c
# function_entry esmtp_functions[] = {
esmtp_errno
esmtp_starttls_set_password_cb
esmtp_strerror
esmtp_version
# static zend_function_entry esmtp_session_functions[] = {
Esmtp_Session
add_message
auth_set_context
enumerate_messages
esmtp_session
etrn_add_node
etrn_enumerate_nodes
get_application_data
option_require_all_recipients
set_application_data
set_eventcb
set_hostname
set_monitorcb
set_server
set_timeout
start_session
starttls_enable
# static zend_function_entry esmtp_message_functions[] = {
8bitmime_set_body
add_recipient
deliverby_set_mode
dsn_set_envid
dsn_set_ret
enumerate_recipients
get_application_data
reset_status
reverse_path_status
set_application_data
set_header
set_header_option
set_message_fp
set_message_str
set_messagecb
set_resent_headers
set_reverse_path
size_set_estimate
transfer_status
# static zend_function_entry esmtp_recipient_functions[] = {
check_complete
dsn_set_notify
dsn_set_orcpt
get_application_data
reset_status
set_application_data
status
# static zend_function_entry esmtp_etrnnode_functions[] = {
get_application_data
set_application_data
status
# static zend_function_entry esmtp_auth_functions[] = {
Esmtp_Auth
client_enabled
esmtp_auth
get_ssf
mechanism_name
response
set_external_id
set_interact_cb
set_mechanism
set_mechanism_flags
set_mechanism_ssf
# pecl/esmtp/esmtp.c
# function_entry esmtp_functions[] = {
esmtp_errno
esmtp_starttls_set_password_cb
esmtp_strerror
esmtp_version
# pecl/event/event.c
# function_entry event_functions[] = {
event_deschedule
event_dispatch
event_free
event_handle_signal
event_have_events
event_init
event_new
event_pending
event_priority_set
event_schedule
event_set
event_timeout
# pecl/fam/fam.c
# function_entry fam_functions[] = {
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
# pecl/ffi/ffi_library.c
# function_entry php_ffi_context_funcs[] = {
__construct
# pecl/ffi/php_ffi.c
# function_entry ffi_functions[] = {
# pecl/fileinfo/fileinfo.c
# function_entry fileinfo_functions[] = {
finfo_buffer
finfo_close
finfo_file
finfo_open
finfo_set_flags
# pecl/filter/filter.c
# function_entry filter_functions[] = {
filter
# pecl/freeimage/freeimage.c
# function_entry freeimage_functions[] = {
freeimage_appendpage
freeimage_brightness
freeimage_clone
freeimage_closemultibitmap
freeimage_colorquantize
freeimage_composite
freeimage_contrast
freeimage_convertto16bits555
freeimage_convertto16bits565
freeimage_convertto24bits
freeimage_convertto32bits
freeimage_convertto8bits
freeimage_copy
freeimage_deletepage
freeimage_dither
freeimage_fifsupportsreading
freeimage_fifsupportswriting
freeimage_fliphorizontal
freeimage_flipvertical
freeimage_free
freeimage_gamma
freeimage_getbpp
freeimage_getcolorsused
freeimage_getcopyrightmessage
freeimage_getdibsize
freeimage_getfifcount
freeimage_getfifdescription
freeimage_getfifextensionlist
freeimage_getfiffromfilename
freeimage_getfiffromformat
freeimage_getfiffrommime
freeimage_getfifregexpr
freeimage_getfiletype
freeimage_getformatfromfif
freeimage_getheight
freeimage_getimagetype
freeimage_getlasterror
freeimage_getline
freeimage_getlockedpagenumbers
freeimage_getpagecount
freeimage_getpitch
freeimage_getversion
freeimage_getwidth
freeimage_insertpage
freeimage_invert
freeimage_ispluginenabled
freeimage_load
freeimage_lockpage
freeimage_movepage
freeimage_openmultibitmap
freeimage_paste
freeimage_rescale
freeimage_rotate
freeimage_rotateex
freeimage_save
freeimage_setpluginenabled
freeimage_threshold
freeimage_unlockpage
# pecl/fribidi/fribidi.c
# function_entry fribidi_functions[] = {
fribidi_charset_info
fribidi_get_charsets
fribidi_log2vis
# pecl/gdchart/gdchart.c
# function_entry gdchart_functions[] = {
# pecl/html_parse/html_parse.c
# function_entry html_parse_functions[] = {
html_parser_comment_handler
html_parser_create
html_parser_data_handler
html_parser_endtag_handler
html_parser_free
html_parser_parse
html_parser_starttag_handler
# pecl/http/http.c
# function_entry http_functions[] = {
http_absolute_uri
http_auth_basic
http_auth_basic_cb
http_build_query
http_cache_etag
http_cache_last_modified
http_chunked_decode
http_date
http_get
http_get_request_headers
http_head
http_match_etag
http_match_modified
http_negotiate_charset
http_negotiate_language
http_parse_headers
http_post_array
http_post_data
http_redirect
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_split_response
http_test
ob_httpetaghandler
# zend_function_entry http_util_class_methods[] = {
# zend_function_entry http_response_class_methods[] = {
# zend_function_entry http_request_class_methods[] = {
# pecl/hyperwave/hw.c
# function_entry hw_functions[] = {
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_getcgi
hw_getchildcoll
hw_getchildcollobj
hw_getchilddoccoll
hw_getchilddoccollobj
hw_getobject
hw_getobjectbyftquery
hw_getobjectbyftquerycoll
hw_getobjectbyftquerycollobj
hw_getobjectbyftqueryobj
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_new_document_from_file
hw_objrec2array
hw_output_document
hw_pconnect
hw_pipecgi
hw_pipedocument
hw_root
hw_setlinkroot
hw_stat
hw_unlock
hw_who
# pecl/id3/id3.c
# function_entry id3_functions[] = {
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
# pecl/idn/idn.c
# function_entry idn_functions[] = {
idn_to_ascii
idn_to_utf8
# pecl/iisfunc/setup.c
# function_entry iisfunc_functions[] = {
iis_add_server
iis_addserver
iis_continue_server
iis_continue_service
iis_delete_virtual_path
iis_enum_servers
iis_get_dir_security
iis_get_error
iis_get_script_map
iis_get_server_by_comment
iis_get_server_by_path
iis_get_server_rights
iis_get_server_status
iis_get_service_state
iis_get_virtual_path
iis_getdirsecurity
iis_getscriptmap
iis_getserverbycomment
iis_getserverbypath
iis_getserverright
iis_getservicestate
iis_pause_server
iis_remove_server
iis_removeserver
iis_set_app_settings
iis_set_dir_security
iis_set_script_map
iis_set_server_rights
iis_set_virtual_path
iis_setappsettings
iis_setdirsecurity
iis_setscriptmap
iis_setserverright
iis_start_server
iis_start_service
iis_startserver
iis_startservice
iis_stop_server
iis_stop_service
iis_stopserver
iis_stopservice
# pecl/imagick/imagick.c
# zend_function_entry imagick_functions[] =
imagick_add_resource
imagick_begindraw
imagick_blob2image
imagick_blur
imagick_border
imagick_charcoal
imagick_chop
imagick_clonehandle
imagick_composite
imagick_contrast
imagick_convert
imagick_copy_crop
imagick_copy_morph
imagick_copy_resize
imagick_copy_rotate
imagick_copy_sample
imagick_copy_shear
imagick_crop
imagick_despeckle
imagick_destroyhandle
imagick_drawannotation
imagick_drawarc
imagick_drawcircle
imagick_drawellipse
imagick_drawline
imagick_drawpoint
imagick_drawrectangle
imagick_dump
imagick_edge
imagick_emboss
imagick_enhance
imagick_equalize
imagick_error
imagick_faileddescription
imagick_failedreason
imagick_first
imagick_flatten
imagick_flip
imagick_flop
imagick_frame
imagick_free
imagick_gamma
imagick_gaussianblur
imagick_getcanvas
imagick_getcolorspace
imagick_getdpix
imagick_getdpiy
imagick_getheight
imagick_getimagedepth
imagick_getimagefromlist
imagick_getimagetype
imagick_getlistindex
imagick_getlistsize
imagick_getmagick
imagick_getmimetype
imagick_getnumbercolors
imagick_getwidth
imagick_goto
imagick_image2blob
imagick_implode
imagick_init
imagick_iserror
imagick_isgrayimage
imagick_isimagesequal
imagick_ismonochromeimage
imagick_isopaqueimage
imagick_ispaletteimage
imagick_level
imagick_list_magickinfo
imagick_magnify
imagick_medianfilter
imagick_minify
imagick_modulate
imagick_mosaic
imagick_motionblur
imagick_negate
imagick_new
imagick_newimagelist
imagick_next
imagick_normalize
imagick_oilpaint
imagick_ordereddither
imagick_poplist
imagick_prev
imagick_profile
imagick_pushlist
imagick_raise
imagick_read
imagick_readimage
imagick_reducenoise
imagick_resize
imagick_rgbtransform
imagick_roll
imagick_rotate
imagick_sample
imagick_scale
imagick_set_image_comment
imagick_set_image_quality
imagick_setcompressionquality
imagick_setcompressiontype
imagick_setdpi
imagick_setfillcolor
imagick_setfillopacity
imagick_setfontface
imagick_setfontsize
imagick_setfontstyle
imagick_shade
imagick_sharpen
imagick_shear
imagick_solarize
imagick_spread
imagick_swirl
imagick_threshold
imagick_transformrgb
imagick_transparent
imagick_unsharpmask
imagick_wave
imagick_write
imagick_writeimage
imagick_writeimages
imagick_zoom
# pecl/intercept/intercept.c
# function_entry intercept_functions[] = {
intercept_add
# pecl/ixsfunc/setup.c
# function_entry ixsfunc_functions[] =
ixs_catalog_exists
ixs_create_catalog
ixs_create_scope
ixs_remove_scope
ixscatalogexists
ixscreatecatalog
ixscreatescope
ixsremovescope
# pecl/kadm5/kadm5.c
# function_entry kadm5_functions[] = {
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
# pecl/kakasi/kakasi.c
# function_entry kakasi_functions[] = {
kakasi
kakasi_arsort
kakasi_arsorti
kakasi_asort
kakasi_asorti
kakasi_split
# pecl/libexif/libexif.c
# function_entry libexif_functions[] = {
exif_data_get_entry
exif_data_new_from_file
exif_entry_get_value
exif_format_get_name
exif_format_get_size
exif_tag_get_description
exif_tag_get_name
exif_tag_get_title
# pecl/lzf/lzf.c
# function_entry lzf_functions[] = {
lzf_compress
lzf_decompress
lzf_optimized_for
# pecl/mailparse/mailparse.c
# static function_entry mimemessage_methods[] = {
add_child
enum_uue
extract_body
extract_headers
extract_uue
get_child
get_child_count
get_parent
mimemessage
remove
# function_entry mailparse_functions[] = {
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_test
mailparse_uudecode_all
# pecl/maxdb/php_maxdb.c
# function_entry maxdb_link_methods[] = {
autocommit
change_user
character_set_name
client_encoding
close
commit
connect
debug
disable_reads_from_master
disable_rpl_parse
dump_debug_info
enable_reads_from_master
enable_rpl_parse
escape_string
field_count
get_client_info
get_server_info
init
kill
master_query
maxdb
more_results
multi_query
next_result
options
ping
prepare
query
real_connect
real_escape_string
real_query
rollback
rpl_parse_enabled
rpl_probe
rpl_query_type
select_db
set_opt
ssl_set
stat
stmt_init
store_result
use_result
# function_entry maxdb_result_methods[] = {
close
data_seek
fetch_array
fetch_assoc
fetch_field
fetch_field_direct
fetch_fields
fetch_object
fetch_row
field_count
field_seek
free
free_result
# function_entry maxdb_stmt_methods[] = {
attr_set
bind_param
bind_result
close
data_seek
execute
fetch
free_result
num_rows
prepare
reset
result_metadata
send_long_data
stmt
store_result
# function_entry maxdb_functions[] = {
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_use_result
maxdb_warning_count
# pecl/mcal/php_mcal.c
# function_entry mcal_functions[] = {
mcal_append_event
mcal_close
mcal_create_calendar
mcal_date_compare
mcal_date_valid
mcal_day_of_week
mcal_day_of_year
mcal_days_in_month
mcal_delete_calendar
mcal_delete_event
mcal_event_add_attribute
mcal_event_init
mcal_event_set_alarm
mcal_event_set_category
mcal_event_set_class
mcal_event_set_description
mcal_event_set_end
mcal_event_set_recur_daily
mcal_event_set_recur_monthly_mday
mcal_event_set_recur_monthly_wday
mcal_event_set_recur_none
mcal_event_set_recur_weekly
mcal_event_set_recur_yearly
mcal_event_set_start
mcal_event_set_title
mcal_fetch_current_stream_event
mcal_fetch_event
mcal_is_leap_year
mcal_list_alarms
mcal_list_events
mcal_next_recurrence
mcal_open
mcal_popen
mcal_rename_calendar
mcal_reopen
mcal_snooze
mcal_store_event
mcal_time_valid
mcal_week_of_year
# pecl/mdbtools/mdbtools.c
# function_entry mdbtools_functions[] = {
mdb_close
mdb_fetch_assoc
mdb_fetch_row
mdb_num_fields
mdb_num_rows
mdb_open
mdb_rewind
mdb_table_close
mdb_table_fields
mdb_table_indexes
mdb_table_open
mdb_tables
mdb_type_name
mdb_version
# pecl/memcache/memcache.c
# zend_function_entry memcache_functions[] = {
memcache_add
memcache_close
memcache_connect
memcache_debug
memcache_decrement
memcache_delete
memcache_flush
memcache_get
memcache_get_stats
memcache_get_version
memcache_increment
memcache_pconnect
memcache_replace
memcache_set
# pecl/mnogosearch/php_mnogo.c
# function_entry mnogosearch_functions[] = {
udm_add_search_limit
udm_alloc_agent
udm_alloc_agent_array
udm_api_version
udm_cat_list
udm_cat_path
udm_check_charset
udm_clear_search_limits
udm_crc32
udm_errno
udm_error
udm_find
udm_free_agent
udm_free_ispell_data
udm_free_res
udm_get_agent_param_ex
udm_get_doc_count
udm_get_res_field
udm_get_res_field_ex
udm_get_res_param
udm_hash32
udm_load_ispell_data
udm_make_excerpt
udm_parse_query_string
udm_set_agent_param
udm_set_agent_param_ex
udm_store_doc_cgi
# pecl/mono/php_mono.c
# zend_function_entry mono_functions[] = {
mono_method_call
mono_method_find
# pecl/mqseries/mqseries.c
# function_entry mqseries_functions[] = {
mqseries_back
mqseries_begin
mqseries_close
mqseries_cmit
mqseries_conn
mqseries_disc
mqseries_error
mqseries_get
mqseries_open
mqseries_put
mqseries_strerror
# pecl/muscat/muscat.c
# function_entry muscat_functions[] = {
muscat_close
muscat_get
muscat_give
muscat_setup
muscat_setup_net
# pecl/namazu/php_namazu.c
# function_entry namazu_functions[] = {
nmz_close
nmz_codeconv_query
nmz_fetch_date
nmz_fetch_field
nmz_fetch_score
nmz_free_result
nmz_get_idx_hitnumlist
nmz_get_idx_totalhitnum
nmz_get_idxname
nmz_get_idxnum
nmz_get_lang
nmz_get_lang_ctype
nmz_get_maxhit
nmz_get_maxmatch
nmz_get_querytoken
nmz_info
nmz_is_lang_ja
nmz_num_hits
nmz_open
nmz_result_date
nmz_result_field
nmz_result_score
nmz_search
nmz_set_debugmode
nmz_set_lang
nmz_set_loggingmode
nmz_set_maxhit
nmz_set_maxmatch
nmz_set_sortmethod
nmz_set_sortorder
# pecl/netools/netools.c
# function_entry netools_functions[] = {
netools_device_enum
netools_hostname_to_mac
netools_ip_to_mac
# pecl/newt/newt.c
# function_entry newt_functions[] = {
newt_bell
newt_button
newt_button_bar
newt_button_barv
newt_centered_window
newt_checkbox
newt_checkbox_get_value
newt_checkbox_set_flags
newt_checkbox_set_value
newt_checkbox_tree
newt_checkbox_tree_add_array
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_current
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_get_screen_size
newt_grid_add_components_to_form
newt_grid_basic_window
newt_grid_destroy
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_add_entry
newt_listbox_append_entry
newt_listbox_clear
newt_listbox_clear_selection
newt_listbox_delete_entry
newt_listbox_get_current
newt_listbox_get_entry
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_colors
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
# pecl/notes/php_notes.c
# function_entry notes_functions[] = {
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
# pecl/ntuser/php_ntuser.c
# function_entry ntuser_functions[] =
ntuser_getdomaincontroller
ntuser_getusergroups
ntuser_getuserinfo
ntuser_getuserlist
# pecl/oci8/oci8.c
# static zend_function_entry php_oci_functions[] = {
oci_bind_by_name
oci_cancel
oci_close
oci_collection_append
oci_collection_assign
oci_collection_element_assign
oci_collection_element_get
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_collection
oci_free_cursor
oci_free_descriptor
oci_free_statement
oci_internal_debug
oci_lob_append
oci_lob_copy
oci_lob_eof
oci_lob_erase
oci_lob_export
oci_lob_flush
oci_lob_import
oci_lob_is_equal
oci_lob_load
oci_lob_read
oci_lob_rewind
oci_lob_save
oci_lob_size
oci_lob_tell
oci_lob_truncate
oci_lob_write
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
ocicollappend
ocicollassignelem
ocicollgetelem
ocicollmax
ocicollsize
ocicolltrim
ocicolumnisnull
ocicolumnname
ocicolumnprecision
ocicolumnscale
ocicolumnsize
ocicolumntype
ocicolumntyperaw
ocicommit
ocidefinebyname
ocierror
ociexecute
ocifetch
ocifetchinto
ocifetchstatement
ocifreecollection
ocifreecursor
ocifreedesc
ocifreestatement
ocigetbufferinglob
ociinternaldebug
ociloadlob
ocilogoff
ocilogon
ocinewcollection
ocinewcursor
ocinewdescriptor
ocinlogon
ocinumcols
ociparse
ocipasswordchange
ociplogon
ociresult
ocirollback
ocirowcount
ocisavelob
ocisavelobfile
ociserverversion
ocisetbufferinglob
ocisetprefetch
ocistatementtype
ociwritelobtofile
# pecl/openal/php_openal.c
# function_entry openal_functions[] = {
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
# pecl/opendirectory/opendirectory.c
# zend_function_entry opendirectory_functions[] =
ds_add_attribute
ds_add_attribute_value
ds_add_child_pid_to_reference
ds_close_dir_node
ds_close_dir_service
ds_close_record
ds_continue_data
ds_create_record
ds_create_record_and_open
ds_data_buffer_alloc
ds_data_buffer_dealloc
ds_delete_record
ds_dir_errstr
ds_dir_status
ds_do_attribute_value_search
ds_do_dir_node_auth
ds_find_dir_nodes
ds_flush_record
ds_get_dir_node_count
ds_get_dir_node_info
ds_get_dir_node_list
ds_get_record_attr_value_by_id
ds_get_record_attr_value_by_index
ds_get_record_attribute_info
ds_get_record_list
ds_get_record_reference_info
ds_get_separator
ds_is_dir_service_running
ds_open_dir_node
ds_open_dir_service
ds_open_dir_service_proxy
ds_open_record
ds_release_continue_data
ds_remove_attribute
ds_remove_attribute_value
ds_set_record_name
ds_set_record_type
ds_set_separator
ds_verify_dir_ref_num
# pecl/optimizer/php_optimizer.c
# function_entry optimizer_functions[] = {
optimizer_debug_compile
# pecl/paradox/paradox.c
# function_entry paradox_functions[] = {
px_close
px_create_fp
px_delete
px_get_field
px_get_info
px_get_parameter
px_get_record
px_get_schema
px_get_value
px_new
px_numfields
px_numrecords
px_open_fp
px_put_record
px_set_blob_file
px_set_parameter
px_set_tablename
px_set_targetencoding
px_set_value
px_timestamp2string
# function_entry paradox_funcs_db[] = {
# pecl/parsekit/parsekit.c
# function_entry parsekit_functions[] = {
parsekit_compile_file
parsekit_compile_string
parsekit_func_arginfo
parsekit_opcode_flags
parsekit_opcode_name
# pecl/pdf/pdf.c
# function_entry pdf_functions[] = {
pdf_activate_item
pdf_add_bookmark
pdf_add_launchlink
pdf_add_locallink
pdf_add_nameddest
pdf_add_note
pdf_add_pdflink
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_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_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_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_textflow
pdf_fit_textline
pdf_get_apiname
pdf_get_buffer
pdf_get_errmsg
pdf_get_errnum
pdf_get_parameter
pdf_get_pdi_parameter
pdf_get_pdi_value
pdf_get_value
pdf_info_textflow
pdf_initgraphics
pdf_lineto
pdf_load_font
pdf_load_iccprofile
pdf_load_image
pdf_makespotcolor
pdf_moveto
pdf_new
pdf_open_ccitt
pdf_open_file
pdf_open_image
pdf_open_image_file
pdf_open_memory_image
pdf_open_pdi
pdf_open_pdi_page
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_gstate
pdf_set_info
pdf_set_layer_dependency
pdf_set_parameter
pdf_set_text_pos
pdf_set_value
pdf_setcolor
pdf_setdash
pdf_setdashpattern
pdf_setflat
pdf_setfont
pdf_setlinecap
pdf_setlinejoin
pdf_setlinewidth
pdf_setmatrix
pdf_setmiterlimit
pdf_setpolydash
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_utf8_to_utf16
# function_entry pdflib_funcs[] = {
# static zend_function_entry PDFlibException_functions[] = {
# pecl/pdf/pdf4.c
# function_entry pdf_functions[] = {
pdf_add_annotation
pdf_add_bookmark
pdf_add_launchlink
pdf_add_locallink
pdf_add_note
pdf_add_outline
pdf_add_pdflink
pdf_add_thumbnail
pdf_add_weblink
pdf_arc
pdf_arcn
pdf_attach_file
pdf_begin_page
pdf_begin_pattern
pdf_begin_template
pdf_circle
pdf_clip
pdf_close
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_curveto
pdf_delete
pdf_end_page
pdf_end_pattern
pdf_end_template
pdf_endpath
pdf_fill
pdf_fill_stroke
pdf_findfont
pdf_get_buffer
pdf_get_font
pdf_get_fontname
pdf_get_fontsize
pdf_get_image_height
pdf_get_image_width
pdf_get_majorversion
pdf_get_minorversion
pdf_get_parameter
pdf_get_pdi_parameter
pdf_get_pdi_value
pdf_get_value
pdf_initgraphics
pdf_lineto
pdf_makespotcolor
pdf_moveto
pdf_new
pdf_open
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_png
pdf_open_tiff
pdf_place_image
pdf_place_pdi_page
pdf_rect
pdf_restore
pdf_rotate
pdf_save
pdf_scale
pdf_set_border_color
pdf_set_border_dash
pdf_set_border_style
pdf_set_char_spacing
pdf_set_duration
pdf_set_font
pdf_set_horiz_scaling
pdf_set_info
pdf_set_info_author
pdf_set_info_creator
pdf_set_info_keywords
pdf_set_info_subject
pdf_set_info_title
pdf_set_leading
pdf_set_parameter
pdf_set_text_pos
pdf_set_text_rendering
pdf_set_text_rise
pdf_set_transition
pdf_set_value
pdf_set_word_spacing
pdf_setcolor
pdf_setdash
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_show
pdf_show_boxed
pdf_show_xy
pdf_skew
pdf_stringwidth
pdf_stroke
pdf_translate
# pecl/pdo/pdo.c
# function_entry pdo_functions[] = {
pdo_drivers
# pecl/pdo/pdo_dbh.c
# function_entry pdo_dbh_functions[] = {
# pecl/pdo/pdo_stmt.c
# function_entry pdo_dbstmt_functions[] = {
# function_entry pdo_row_functions[] = {
# pecl/pdo_dblib/pdo_dblib.c
# function_entry pdo_dblib_functions[] = {
# pecl/pdo_firebird/pdo_firebird.c
# function_entry pdo_firebird_functions[] = { /* {{{ */
# pecl/pdo_mysql/pdo_mysql.c
# function_entry pdo_mysql_functions[] = {
# pecl/pdo_oci/pdo_oci.c
# function_entry pdo_oci_functions[] = {
# pecl/pdo_odbc/pdo_odbc.c
# function_entry pdo_odbc_functions[] = {
# pecl/pdo_pgsql/pdo_pgsql.c
# function_entry pdo_pgsql_functions[] = {
# pecl/pdo_sqlite/pdo_sqlite.c
# function_entry pdo_sqlite_functions[] = {
# pecl/pdo_sqlite/sqlite_driver.c
# static function_entry dbh_methods[] = {
sqlite_create_function
# pecl/perl/php_perl.c
# static zend_function_entry perl_functions[] = {
# pecl/philter/philter.c
# function_entry philter_functions[] = {
philter_encode
# pecl/phpdoc/phpdoc.c
# function_entry phpdoc_functions[] = {
confirm_phpdoc_compiled
phpdoc_xml_from_string
# pecl/picosql/picosql_wrap.cpp
# function_entry picosql_functions[] = {
delete_taghkey
delete_timestamp_struct
new_taghkey
new_timestamp_struct
regclosekey
regopenkeyex
regqueryvalueex
sqlallocconnect
sqlallocenv
sqlallocstmt
sqlbindcol
sqlbindparameter
sqlbrowseconnect
sqlcancel
sqlcolattributes
sqlcolumnprivileges
sqlcolumns
sqlconnect
sqldatasources
sqldescribecol
sqldescribeparam
sqldisconnect
sqldriverconnect
sqldrivers
sqlerror
sqlexecdirect
sqlexecute
sqlextendedfetch
sqlfetch
sqlforeignkeys
sqlfreeconnect
sqlfreeenv
sqlfreestmt
sqlgetconnectoption
sqlgetcursorname
sqlgetdata
sqlgetfunctions
sqlgetinfo
sqlgetstmtoption
sqlgettypeinfo
sqlmoreresults
sqlnativesql
sqlnumparams
sqlnumresultcols
sqlparamdata
sqlparamoptions
sqlprepare
sqlprimarykeys
sqlprocedurecolumns
sqlprocedures
sqlputdata
sqlrowcount
sqlsetconnectoption
sqlsetcursorname
sqlsetparam
sqlsetpos
sqlsetscrolloptions
sqlsetstmtoption
sqlspecialcolumns
sqlstatistics
sqltableprivileges
sqltables
sqltransact
taghkey_fp_get
taghkey_fp_set
taghkey_sec_get
taghkey_sec_set
timestamp_struct_day_get
timestamp_struct_day_set
timestamp_struct_fraction_get
timestamp_struct_fraction_set
timestamp_struct_hour_get
timestamp_struct_hour_set
timestamp_struct_minute_get
timestamp_struct_minute_set
timestamp_struct_month_get
timestamp_struct_month_set
timestamp_struct_second_get
timestamp_struct_second_set
timestamp_struct_year_get
timestamp_struct_year_set
# pecl/pop3/pop3.c
# function_entry pop3_functions[] = {
pop3_close
pop3_delete_message
pop3_get_account_size
pop3_get_message
pop3_get_message_count
pop3_get_message_header
pop3_get_message_ids
pop3_get_message_size
pop3_get_message_sizes
pop3_open
pop3_undelete
# pecl/printer/printer.c
# function_entry printer_functions[] = {
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
# pecl/ps/ps.c
# function_entry ps_functions[] = {
ps_add_bookmark
ps_add_launchlink
ps_add_locallink
ps_add_note
ps_add_pdflink
ps_add_weblink
ps_arc
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_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_setlinecap
ps_setlinejoin
ps_setlinewidth
ps_setmiterlimit
ps_setoverprintmode
ps_setpolydash
ps_shading
ps_shading_pattern
ps_shfill
ps_show
ps_show2
ps_show_boxed
ps_show_xy
ps_show_xy2
ps_string_geometry
ps_stringwidth
ps_stroke
ps_symbol
ps_symbol_name
ps_symbol_width
ps_translate
# pecl/python/python.c
# function_entry python_functions[] = {
py_call
py_eval
py_import
py_path
py_path_append
py_path_prepend
# pecl/qtdom/qtdom.c
# function_entry qtdom_functions[] = {
qdom_error
qdom_tree
# pecl/radius/radius.c
# function_entry radius_functions[] = {
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
# pecl/rar/rar.cpp
# function_entry rar_functions[] = {
rar_close
rar_entry_get
rar_list
rar_open
# pecl/rpc/dotnet/dotnet.cpp
# function_entry DOTNET_functions[] = {
# pecl/rpc/java/java.c
# function_entry java_functions[] = {
java_last_exception_clear
java_last_exception_get
# pecl/rpc/rpc.c
# function_entry rpc_functions[] = {
# pecl/rpc/xmlrpc/xmlrpc-epi-php.c
# function_entry xmlrpc_functions[] = {
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
# pecl/sasl/sasl.c
# function_entry sasl_functions[] = {
sasl_checkpass
sasl_client_init
sasl_client_new
sasl_client_start
sasl_client_step
sasl_decode
sasl_encode
sasl_errdetail
sasl_errstring
sasl_listmech
sasl_server_init
sasl_server_new
sasl_server_start
sasl_server_step
sasl_version
# pecl/satellite/php_orbit.c
# static function_entry satellite_functions[] = {
orbit_caught_exception
orbit_exception_id
orbit_exception_value
orbit_get_repository_id
orbit_load_idl
satellite_caught_exception
satellite_exception_id
satellite_exception_value
satellite_get_repository_id
satellite_load_idl
satellite_object_to_string
# pecl/session_pgsql/session_pgsql.c
# function_entry session_pgsql_functions[] = {
session_pgsql_add_error
session_pgsql_get_error
session_pgsql_get_field
session_pgsql_info
session_pgsql_reset
session_pgsql_set_field
session_pgsql_status
# pecl/simple_cvs/simple_cvs.c
# function_entry simple_cvs_functions[] = {
scvs_checkout
scvs_commit
scvs_diff
scvs_get_auth_method
scvs_get_compression_level
scvs_get_cvsroot
scvs_get_host
scvs_get_module_name
scvs_get_username
scvs_get_working_dir
scvs_login
scvs_set_auth_method
scvs_set_compression_level
scvs_set_cvsroot
scvs_set_host
scvs_set_module_name
scvs_set_username
scvs_set_working_dir
scvs_status
scvs_update
# pecl/simplexml/simplexml.c
# function_entry simplexml_functions[] = {
simplexml_import_dom
simplexml_load_file
simplexml_load_string
# static zend_function_entry sxe_functions[] = {
# pecl/smbc/smbc.c
# function_entry php_smbc_functions[] = {
smbc_close
smbc_closedir
smbc_create
smbc_lseek
smbc_mkdir
smbc_open
smbc_opendir
smbc_read
smbc_readdir
smbc_rename
smbc_rewinddir
smbc_rmdir
smbc_set_auth
smbc_unlink
smbc_write
# pecl/smtp/smtp.c
# function_entry smtp_functions[] = {
smtp_close
smtp_cmd_data
smtp_cmd_mail
smtp_cmd_rcpt
smtp_connect
# pecl/sndfile/sndfile.c
# function_entry php_sndfile_functions[] =
sndfile_buffer_create
sndfile_buffer_free
sndfile_buffer_get_pcm_at
sndfile_buffer_set_pcm_at
sndfile_buffer_size
sndfile_buffer_type
sndfile_close
sndfile_command
sndfile_convert_array2buffer
sndfile_convert_buffer2array
sndfile_eof
sndfile_error_code
sndfile_error_str
sndfile_format_check
sndfile_get_info
sndfile_get_string
sndfile_open
sndfile_read_double
sndfile_read_int
sndfile_readf_double
sndfile_readf_int
sndfile_rewind
sndfile_seek
sndfile_set_string
sndfile_write_double
sndfile_write_int
sndfile_writef_double
sndfile_writef_int
# pecl/soap/soap.c
# static zend_function_entry soap_functions[] = {
is_soap_fault
soap_encode_to_xml
soap_encode_to_zval
use_soap_error_handler
# static zend_function_entry soap_fault_functions[] = {
# static zend_function_entry soap_server_functions[] = {
# static zend_function_entry soap_client_functions[] = {
__soapCall
# static zend_function_entry soap_var_functions[] = {
# static zend_function_entry soap_param_functions[] = {
# static zend_function_entry soap_header_functions[] = {
# pecl/spl/php_spl.c
# function_entry spl_functions_none[] = {
# function_entry spl_functions[] = {
class_implements
class_parents
iterator_count
iterator_to_array
spl_autoload
spl_autoload_call
spl_autoload_extensions
spl_autoload_functions
spl_autoload_register
spl_autoload_unregister
spl_classes
# pecl/spl/spl_array.c
# static zend_function_entry spl_funcs_ArrayObject[] = {
# static zend_function_entry spl_funcs_ArrayIterator[] = {
# static zend_function_entry spl_funcs_Countable[] = {
# pecl/spl/spl_iterators.c
# function_entry spl_funcs_RecursiveIterator[] = {
# static zend_function_entry spl_funcs_RecursiveIteratorIterator[] = {
# static zend_function_entry spl_funcs_FilterIterator[] = {
# static zend_function_entry spl_funcs_ParentIterator[] = {
# static zend_function_entry spl_funcs_SeekableIterator[] = {
# static zend_function_entry spl_funcs_LimitIterator[] = {
# static zend_function_entry spl_funcs_CachingIterator[] = {
# static zend_function_entry spl_funcs_CachingRecursiveIterator[] = {
# static zend_function_entry spl_funcs_IteratorIterator[] = {
# static zend_function_entry spl_funcs_NoRewindIterator[] = {
# static zend_function_entry spl_funcs_InfiniteIterator[] = {
# static zend_function_entry spl_funcs_EmptyIterator[] = {
# static zend_function_entry spl_funcs_AppendIterator[] = {
# static zend_function_entry spl_funcs_OuterIterator[] = {
# pecl/spl/spl_observer.c
# static zend_function_entry spl_funcs_Observer[] = {
# static zend_function_entry spl_funcs_Subject[] = {
# pecl/spl/spl_sxe.c
# static zend_function_entry spl_funcs_SimpleXMLIterator[] = {
# pecl/spplus/php_spplus.c
# function_entry spplus_functions[] = {
calcul_hmac
calculhmac
nthmac
signeurlpaiement
# pecl/spread/php_spread.c
# function_entry spread_functions[] = {
spread_close
spread_connect
spread_error
spread_join
spread_multicast
spread_receive
# pecl/sqlite/pdo_sqlite2.c
# static function_entry dbh_methods[] = {
sqlite2_create_function
# pecl/sqlite/sqlite.c
# function_entry sqlite_functions[] = {
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_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
# function_entry sqlite_funcs_db[] = {
# function_entry sqlite_funcs_query[] = {
# function_entry sqlite_funcs_ub_query[] = {
# function_entry sqlite_funcs_exception[] = {
# pecl/ssh2/ssh2.c
# function_entry ssh2_functions[] = {
ssh2_auth_hostbased_file
ssh2_auth_none
ssh2_auth_password
ssh2_auth_pubkey_file
ssh2_connect
ssh2_exec
ssh2_fetch_stream
ssh2_fingerprint
ssh2_forward_accept
ssh2_forward_listen
ssh2_methods_negotiated
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
# pecl/statgrab/statgrab.c
# function_entry statgrab_functions[] = {
sg_cpu_diff
sg_cpu_percent_usage
sg_cpu_totals
sg_diskio_stats
sg_diskio_stats_diff
sg_general_stats
sg_load_stats
sg_memory_stats
sg_network_iface_stats
sg_network_stats
sg_network_stats_diff
sg_page_stats
sg_page_stats_diff
sg_process_count
sg_process_stats
sg_swap_stats
sg_user_stats
# pecl/stats/statistics.c
# zend_function_entry statistics_functions[] = {
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_noncentral_t
stats_cdf_normal
stats_cdf_poisson
stats_cdf_t
stats_cdf_uniform
stats_cdf_weibull
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_normal
stats_dens_pmf_binomial
stats_dens_pmf_hypergeometric
stats_dens_pmf_negative_binomial
stats_dens_pmf_poisson
stats_dens_t
stats_dens_uniform
stats_dens_weibull
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_ipoisson
stats_rand_gen_iuniform
stats_rand_gen_noncenral_f
stats_rand_gen_noncentral_chisquare
stats_rand_gen_noncentral_t
stats_rand_gen_normal
stats_rand_gen_t
stats_rand_getsd
stats_rand_ibinomial
stats_rand_ibinomial_negative
stats_rand_ignlgi
stats_rand_phrase_to_seeds
stats_rand_ranf
stats_rand_setall
stats_stat_binomial_coef
stats_stat_correlation
stats_stat_factorial
stats_stat_independent_t
stats_stat_innerproduct
stats_stat_paired_t
stats_stat_percentile
stats_stat_powersum
# pecl/swf/swf.c
# function_entry swf_functions[] = {
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
# pecl/tclink/php_tclink.c
# function_entry php_tclink_functions[] = {
tclink_getversion
tclink_send
# pecl/tcpwrap/tcpwrap.c
# function_entry tcpwrap_functions[] = {
tcpwrap_check
# pecl/threads/threads.c
# function_entry threads_functions[] = {
thread_get
thread_include
thread_lock
thread_lock_try
thread_mutex_destroy
thread_mutex_init
thread_set
thread_start
thread_unlock
# pecl/tidy/tidy.c
# function_entry tidy_functions[] = {
ob_tidyhandler
tidy_access_count
tidy_clean_repair
tidy_config_count
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_output
tidy_get_release
tidy_get_root
tidy_get_status
tidy_getopt
tidy_is_xhtml
tidy_is_xml
tidy_parse_file
tidy_parse_string
tidy_repair_file
tidy_repair_string
tidy_warning_count
# function_entry tidy_funcs_doc[] = {
# function_entry tidy_funcs_node[] = {
# function_entry tidy_funcs_exception[] = {
# pecl/translit/translit.c
# function_entry translit_functions[] = {
transliterate
transliterate_filters_get
# pecl/uuid/uuid.c
# function_entry uuid_functions[] = {
uuid_compare
uuid_create
uuid_is_null
uuid_is_valid
uuid_mac
uuid_time
uuid_type
uuid_variant
# pecl/valkyrie/valkyrie.c
# function_entry valkyrie_functions[] = {
valkyrie_reload_config
valkyrie_validate
# pecl/vpopmail/php_vpopmail.c
# function_entry vpopmail_functions[] = {
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
# pecl/win32scheduler/win32scheduler.c
# static function_entry functions[] = {
win32_scheduler_delete_task
win32_scheduler_enum_tasks
win32_scheduler_get_task_info
win32_scheduler_run
win32_scheduler_set_task_info
# pecl/win32service/win32service.c
# static function_entry functions[] = {
win32_create_service
win32_delete_service
win32_get_last_control_message
win32_set_service_status
win32_start_service_ctrl_dispatcher
# pecl/win32std/win32std.c
# function_entry win32std_functions[] = {
reg_close_key
reg_create_key
reg_enum_key
reg_enum_value
reg_get_value
reg_open_key
reg_set_value
res_close
res_get
res_list
res_list_type
res_open
res_set
win_beep
win_browse_file
win_browse_folder
win_create_link
win_message_box
win_play_wav
win_shell_execute
# pecl/xattr/xattr.c
# function_entry xattr_functions[] = {
xattr_get
xattr_list
xattr_remove
xattr_set
xattr_supported
# pecl/xdiff/xdiff.c
# function_entry xdiff_functions[] = {
xdiff_file_diff
xdiff_file_diff_binary
xdiff_file_merge3
xdiff_file_patch
xdiff_file_patch_binary
xdiff_string_diff
xdiff_string_diff_binary
xdiff_string_merge3
xdiff_string_patch
xdiff_string_patch_binary
# pecl/xmgrace/xmgrace.c
# function_entry xmgrace_functions[] = {
xmgrace_close
xmgrace_command
xmgrace_flush
xmgrace_is_open
xmgrace_open
# pecl/xmlreader/php_xmlreader.c
# static zend_function_entry xmlreader_functions[] = {
# pecl/xmlrpci/xmlrpci.c
# function_entry xmlrpci_functions[] = {
# function_entry xmlrpci_funcs_rpc[] = {
# function_entry xmlrpci_funcs_val[] = {
# function_entry xmlrpci_funcs_server[] = {
# pecl/xmlwriter/php_xmlwriter.c
# static zend_function_entry xmlwriter_functions[] = {
xmlwriter_end_attribute
xmlwriter_end_cdata
xmlwriter_end_comment
xmlwriter_end_document
xmlwriter_end_dtd
xmlwriter_end_dtd_element
xmlwriter_end_element
xmlwriter_end_pi
xmlwriter_flush
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_element
xmlwriter_start_element
xmlwriter_start_element_ns
xmlwriter_start_pi
xmlwriter_text
xmlwriter_write_attribute
xmlwriter_write_cdata
xmlwriter_write_comment
xmlwriter_write_dtd
xmlwriter_write_element
xmlwriter_write_element_ns
xmlwriter_write_pi
# pecl/xmms/xmms.c
# function_entry xmms_functions[] = {
xmms_add
xmms_clear
xmms_current
xmms_delete
xmms_eq_win
xmms_is_repeat
xmms_is_running
xmms_is_shuffle
xmms_main_win
xmms_next
xmms_pause
xmms_pl_win
xmms_play
xmms_playlist
xmms_playlist_length
xmms_playlist_pos
xmms_prev
xmms_quit
xmms_repeat
xmms_shuffle
xmms_skin
xmms_start
xmms_status
xmms_stop
xmms_time
xmms_url
xmms_version
xmms_volume
# pecl/xslt/sablot.c
# function_entry xslt_functions[] = {
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_handlers
xslt_set_scheme_handlers
xslt_setopt
# pecl/yaz/php_yaz.c
# function_entry yaz_functions [] = {
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
# pecl/yp/yp.c
# function_entry yp_functions[] = {
yp_all
yp_cat
yp_err_string
yp_errno
yp_first
yp_get_default_domain
yp_master
yp_match
yp_next
yp_order
# pecl/zeroconf/zeroconf.c
# function_entry zeroconf_functions[] = {
zeroconf_browse_service
zeroconf_browse_session_create
zeroconf_browse_session_process
zeroconf_get_all_services
zeroconf_register_service
# pecl/zip/zip.c
# function_entry zip_functions[] = {
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
|