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
|
# format=tagmanager - Automatically generated file - do not edit (created on Wed, 14 Jan 2009 16:59:30 +0100)
abs128(int number)int
acosh128(float number)float
acos128(float number)float
addFile128(string filepath[, string entryname[, int start [, int length]]])bool
addFromString128(string name, string content)bool
addcslashes128(binary str, binary charlist)binary
addslashes128(string str)string
apache_child_terminate128()bool
apache_child_terminate128()bool
apache_get_modules128()array
apache_get_modules128()array
apache_get_modules128()array
apache_get_modules128()array
apache_get_version128()string
apache_get_version128()string
apache_get_version128()string
apache_get_version128()string
apache_getenv128(string variable [, bool walk_to_top])bool
apache_getenv128(string variable [, bool walk_to_top])bool
apache_lookup_uri128(string URI)object
apache_lookup_uri128(string URI)object
apache_note128(string note_name [, string note_value])string
apache_note128(string note_name [, string note_value])string
apache_note128(string note_name [, string note_value])string
apache_note128(string note_name [, string note_value])string
apache_request_auth_name128()string
apache_request_auth_type128()string
apache_request_discard_request_body128()long
apache_request_err_headers_out128([{string name|array list} [, string value [, bool replace = false]]])array
apache_request_headers_in128()array
apache_request_headers_out128([{string name|array list} [, string value [, bool replace = false]]])array
apache_request_headers128()array
apache_request_headers128()array
apache_request_is_initial_req128()bool
apache_request_log_error128(string message, [long facility])boolean
apache_request_meets_conditions128()long
apache_request_remote_host128([int type])int
apache_request_run128()long
apache_request_satisfies128()long
apache_request_server_port128()int
apache_request_set_etag128()void
apache_request_set_last_modified128()void
apache_request_some_auth_required128()bool
apache_request_sub_req_lookup_file128(string file)object
apache_request_sub_req_lookup_uri128(string uri)object
apache_request_sub_req_method_uri128(string method, string uri)object
apache_request_update_mtime128([int dependency_mtime])long
apache_reset_timeout128()bool
apache_response_headers128()array
apache_response_headers128()array
apache_response_headers128()array
apache_response_headers128()array
apache_setenv128(string variable, string value [, bool walk_to_top])bool
apache_setenv128(string variable, string value [, bool walk_to_top])bool
apache_setenv128(string variable, string value [, bool walk_to_top])bool
apache_setenv128(string variable, string value [, bool walk_to_top])bool
array_change_key_case128(array input [, int case=CASE_LOWER])array
array_chunk128(array input, int size [, bool preserve_keys])array
array_combine128(array keys, array values)array
array_count_values128(array input)array
array_diff_assoc128(array arr1, array arr2 [, array ...])array
array_diff_key128(array arr1, array arr2 [, array ...])array
array_diff_uassoc128(array arr1, array arr2 [, array ...], callback key_comp_func)array
array_diff_ukey128(array arr1, array arr2 [, array ...], callback key_comp_func)array
array_diff128(array arr1, array arr2 [, array ...])array
array_fill_keys128(array keys, mixed val)array
array_fill128(int start_key, int num, mixed val)array
array_filter128(array input [, mixed callback])array
array_flip128(array input)array
array_intersect_assoc128(array arr1, array arr2 [, array ...])array
array_intersect_key128(array arr1, array arr2 [, array ...])array
array_intersect_uassoc128(array arr1, array arr2 [, array ...], callback key_compare_func)array
array_intersect_ukey128(array arr1, array arr2 [, array ...], callback key_compare_func)array
array_intersect128(array arr1, array arr2 [, array ...])array
array_key_exists128(mixed key, array search)bool
array_keys128(array input [, mixed search_value[, bool strict]])array
array_map128(mixed callback, array input1 [, array input2 ,...])array
array_merge_recursive128(array arr1, array arr2 [, array ...])array
array_merge128(array arr1, array arr2 [, array ...])array
array_multisort128(array ar1 [, SORT_ASC|SORT_DESC [, SORT_REGULAR|SORT_NUMERIC|SORT_STRING]] [, array ar2 [, SORT_ASC|SORT_DESC [, SORT_REGULAR|SORT_NUMERIC|SORT_STRING]], ...])bool
array_pad128(array input, int pad_size, mixed pad_value)array
array_pop128(array stack)mixed
array_product128(array input)mixed
array_push128(array stack, mixed var [, mixed ...])int
array_rand128(array input [, int num_req])mixed
array_reduce128(array input, mixed callback [, int initial])mixed
array_reverse128(array input [, bool preserve keys])array
array_search128(mixed needle, array haystack [, bool strict])mixed
array_shift128(array stack)mixed
array_slice128(array input, int offset [, int length [, bool preserve_keys]])array
array_splice128(array input, int offset [, int length [, array replacement]])array
array_sum128(array input)mixed
array_udiff_assoc128(array arr1, array arr2 [, array ...], callback data_comp_func)array
array_udiff_uassoc128(array arr1, array arr2 [, array ...], callback data_comp_func, callback key_comp_func)array
array_udiff128(array arr1, array arr2 [, array ...], callback data_comp_func)array
array_uintersect_assoc128(array arr1, array arr2 [, array ...], callback data_compare_func)array
array_uintersect_uassoc128(array arr1, array arr2 [, array ...], callback data_compare_func, callback key_compare_func)array
array_uintersect128(array arr1, array arr2 [, array ...], callback data_compare_func)array
array_unique128(array input)array
array_unshift128(array stack, mixed var [, mixed ...])int
array_values128(array input)array
array_walk_recursive128(array input, mixed callback [, mixed userdata])bool
array_walk128(array input, mixed callback [, mixed userdata])bool
arsort128(array &array_arg [, int sort_flags])bool
asinh128(float number)float
asin128(float number)float
asort128(array &array_arg [, int sort_flags])bool
assert_options128(int what [, mixed value])mixed
assert128(string|bool assertion)int
atan2128(float y, float x)float
atanh128(float number)float
atan128(float number)float
base64_decode128(binary str[, bool strict])binary
base64_encode128(binary str)binary
base_convert128(string number, int frombase, int tobase)string
basename128(string path [, string suffix])string
bcadd128(string left_operand, string right_operand [, int scale])string
bccomp128(string left_operand, string right_operand [, int scale])int
bcdiv128(string left_operand, string right_operand [, int scale])string
bcmod128(string left_operand, string right_operand)string
bcmul128(string left_operand, string right_operand [, int scale])string
bcpowmod128(string x, string y, string mod [, int scale])string
bcpow128(string x, string y [, int scale])string
bcscale128(int scale)bool
bcsqrt128(string operand [, int scale])string
bcsub128(string left_operand, string right_operand [, int scale])string
bin2hex128(string data)string
bindec128(string binary_number)int
bindtextdomain128(string domain_name, string dir)string
birdstep_autocommit128(int index)bool
birdstep_close128(int id)bool
birdstep_commit128(int index)bool
birdstep_connect128(string server, string user, string pass)int
birdstep_exec128(int index, string exec_str)int
birdstep_fetch128(int index)bool
birdstep_fieldname128(int index, int col)string
birdstep_fieldnum128(int index)int
birdstep_freeresult128(int index)bool
birdstep_off_autocommit128(int index)bool
birdstep_result128(int index, int col)mixed
birdstep_rollback128(int index)bool
bzcompress128(string source [, int blocksize100k [, int workfactor]])string
bzdecompress128(string source [, int small])string
bzerrno128(resource bz)int
bzerror128(resource bz)array
bzerrstr128(resource bz)string
bzopen128(string|int file|fp, string mode)resource
bzread128(resource bz[, int length])string
cal_days_in_month128(int calendar, int month, int year)int
cal_from_jd128(int jd, int calendar)array
cal_info128([int calendar])array
cal_to_jd128(int calendar, int month, int day, int year)int
call_user_func_array128(string function_name, array parameters)mixed
call_user_func128(mixed function_name [, mixed parmeter] [, mixed ...])mixed
call_user_method_array128(string method_name, mixed object, array params)mixed
call_user_method128(string method_name, mixed object [, mixed parameter] [, mixed ...])mixed
ceil128(float number)float
char_enum_names128(callback Callback, int start, int limit[, int extended = false])bool
char_enum_types128(callback Callback)bool
char_from_digit128(int digit[, int radix = 10])char
char_from_name128(string charname[, bool extended = false])char
char_get_age128(char c)string
char_get_combining_class128(char text)int
char_get_digit_value128(char text[, int radix])int
char_get_direction128(char c)int
char_get_mirrored128(char c)char
char_get_name128(char c[, bool extended = false])string
char_get_numeric_value128(char text)float
char_get_property_from_name128(string property_name)int
char_get_property_max_value128(int property)int
char_get_property_min_value128(int property)int
char_get_property_name128(int property)string
char_get_property_value_from_name128(int property, string value_name)int
char_get_property_value_name128(int property, int value[, int name_choice])string
char_get_property_value128(char c, int property)int
char_get_type128(char c)int
char_has_binary_property128(string text, int property)bool
char_is_alnum128(string text)bool
char_is_alphabetic128(string text)bool
char_is_alpha128(string text)bool
char_is_base128(string text)bool
char_is_blank128(string text)bool
char_is_cntrl128(string text)bool
char_is_defined128(string text)bool
char_is_digit128(string text)bool
char_is_graph128(string text)bool
char_is_id_ignorable128(string text)bool
char_is_id_part128(string text)bool
char_is_id_start128(string text)bool
char_is_iso_control128(string text)bool
char_is_lower128(string text)bool
char_is_mirrored128(string text)bool
char_is_print128(string text)bool
char_is_punct128(string text)bool
char_is_space128(string text)bool
char_is_titlecase128(string text)bool
char_is_uppercase128(string text)bool
char_is_upper128(string text)bool
char_is_valid128(char c)bool
char_is_whitespace128(string text)bool
char_is_xdigit128(string text)bool
chdir128(string directory)bool
checkdate128(int month, int day, int year)bool
chgrp128(string filename, mixed group)bool
chmod128(string filename, int mode)bool
chroot128(string directory)bool
chr128(int codepoint)string
chunk_split128(string str [, int chunklen [, string ending]])string
class_exists128(string classname [, bool autoload])bool
class_implements128(mixed what [, bool autoload ])array
class_parents128(object instance)array
clearstatcache128()void
closedir128([resource dir_handle])void
closelog128()bool
close128()bool
collator_compare128(Collator coll, string str1, string str2)int
collator_create128(string locale)Collator
collator_get_attribute128(Collator coll, int attribute)int
collator_get_default128()Collator
collator_get_strength128(Collator coll)int
collator_set_attribute128(Collator coll, int attribute, int value)bool
collator_set_default128(Collator coll)void
collator_set_strength128(Collator coll, int strength)void
collator_sort128(Collator coll, array input)array
com_create_guid128()string
com_event_sink128(object comobject, object sinkobject [, mixed sinkinterface])bool
com_get_active_object128(string progid [, int code_page ])object
com_load_typelib128(string typelib_name [, int case_insensitive])bool
com_message_pump128([int timeoutms])bool
com_print_typeinfo128(object comobject | string typelib, string dispinterface, bool wantsink)bool
compact128(mixed var_names [, mixed ...])array
confirm_extname_compiled128(string arg)string
connection_aborted128()int
connection_status128()int
constant128(string const_name)mixed
convert_cyr_string128(string str, string from, string to)string
convert_uudecode128(string data)string
convert_uuencode128(string data)string
copy128(string source_file, string destination_file[, resource context])bool
cosh128(float number)float
cos128(float number)float
count_chars128(string input [, int mode])mixed
count128(mixed var [, int mode])int
crash128()void
crc32128(string str)string
createEmptyDir128(string dirname)bool
create_function128(string args, string code)string
crypt128(string str [, string salt])string
ctype_alnum128(mixed c)bool
ctype_alpha128(mixed c)bool
ctype_cntrl128(mixed c)bool
ctype_digit128(mixed c)bool
ctype_graph128(mixed c)bool
ctype_lower128(mixed c)bool
ctype_print128(mixed c)bool
ctype_punct128(mixed c)bool
ctype_space128(mixed c)bool
ctype_upper128(mixed c)bool
ctype_xdigit128(mixed c)bool
curl_close128(resource ch)void
curl_copy_handle128(resource ch)resource
curl_errno128(resource ch)int
curl_error128(resource ch)string
curl_exec128(resource ch)bool
curl_getinfo128(resource ch [, int option])mixed
curl_init128([string url])resource
curl_multi_add_handle128(resource mh, resource ch)int
curl_multi_close128(resource mh)void
curl_multi_exec128(resource mh, int &still_running)int
curl_multi_getcontent128(resource ch)string
curl_multi_info_read128(resource mh [, long msgs_in_queue])array
curl_multi_init128()resource
curl_multi_remove_handle128(resource mh, resource ch)int
curl_multi_select128(resource mh[, double timeout])int
curl_setopt_array128(resource ch, array options)bool
curl_setopt128(resource ch, int option, mixed value)bool
curl_version128([int version])array
current128(array array_arg)mixed
date_create128([string time[, DateTimeZone object]])DateTime
date_date_set128(DateTime object, long year, long month, long day)void
date_default_timezone_get128()string
date_default_timezone_set128(string timezone_identifier)bool
date_format_locale128(DateTime object, string format)string
date_format128(DateTime object, string format)string
date_isodate_set128(DateTime object, long year, long week[, long day])void
date_modify128(DateTime object, string modify)void
date_offset_get128(DateTime object)long
date_parse128(string date)array
date_sun_info128(long time, float latitude, float longitude)array
date_sunrise128(mixed time [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]])mixed
date_sunset128(mixed time [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]])mixed
date_time_set128(DateTime object, long hour, long minute[, long second])void
date_timezone_get128(DateTime object)DateTimeZone
date_timezone_set128(DateTime object, DateTimeZone object)void
date128(string format [, long timestamp])string
dba_close128(resource handle)void
dba_delete128(string key, resource handle)bool
dba_exists128(string key, resource handle)bool
dba_fetch128(string key, [int skip ,] resource handle)string
dba_firstkey128(resource handle)string
dba_handlers128([bool full_info])array
dba_insert128(string key, string value, resource handle)bool
dba_list128()array
dba_nextkey128(resource handle)string
dba_open128(string path, string mode [, string handlername, string ...])resource
dba_optimize128(resource handle)bool
dba_popen128(string path, string mode [, string handlername, string ...])resource
dba_replace128(string key, string value, resource handle)bool
dba_sync128(resource handle)bool
dbase_add_record128(int identifier, array data)bool
dbase_close128(int identifier)bool
dbase_create128(string filename, array fields)bool
dbase_delete_record128(int identifier, int record)bool
dbase_get_header_info128(int database_handle)array
dbase_get_record_with_names128(int identifier, int record)array
dbase_get_record128(int identifier, int record)array
dbase_numfields128(int identifier)int
dbase_numrecords128(int identifier)int
dbase_open128(string name, int mode)int
dbase_pack128(int identifier)bool
dbase_replace_record128(int identifier, array data, int recnum)bool
dcgettext128(string domain_name, string msgid, int category)binary
debug_backtrace128()array
debug_print_backtrace128()void
debug_zval_dump128(mixed var)void
decbin128(int decimal_number)string
dechex128(int decimal_number)string
decoct128(int decimal_number)string
define_syslog_variables128()void
defined128(string constant_name)bool
define128(string constant_name, mixed value, boolean case_sensitive=true)bool
deg2rad128(float number)float
deleteIndex128(int index)bool
deleteName128(string name)bool
dgettext128(string domain_name, string msgid)binary
dirname128(string path)string
dir128(string directory[, resource context])object
disk_free_space128(string path)float
disk_total_space128(string path)float
display_disabled_function128()void
dl128(string extension_filename)int
dns_check_record128(string host [, string type])int
dns_get_mx128(string hostname, array mxhosts [, array weight])bool
dom_attr_is_id128()boolean
dom_characterdata_append_data128(string arg)void
dom_characterdata_delete_data128(int offset, int count)void
dom_characterdata_insert_data128(int offset, string arg)void
dom_characterdata_replace_data128(int offset, int count, string arg)void
dom_characterdata_substring_data128(int offset, int count)string
dom_document_adopt_node128(DOMNode source)DOMNode
dom_document_create_attribute_ns128(string namespaceURI, string qualifiedName)DOMAttr
dom_document_create_attribute128(string name)DOMAttr
dom_document_create_cdatasection128(string data)DOMCdataSection
dom_document_create_comment128(string data)DOMComment
dom_document_create_document_fragment128()DOMDocumentFragment
dom_document_create_element_ns128(string namespaceURI, string qualifiedName [,string value])DOMElement
dom_document_create_element128(string tagName [, string value])DOMElement
dom_document_create_entity_reference128(string name)DOMEntityReference
dom_document_create_processing_instruction128(string target, string data)DOMProcessingInstruction
dom_document_create_text_node128(string data)DOMText
dom_document_get_element_by_id128(string elementId)DOMElement
dom_document_get_elements_by_tag_name_ns128(string namespaceURI, string localName)DOMNodeList
dom_document_get_elements_by_tag_name128(string tagname)DOMNodeList
dom_document_import_node128(DOMNode importedNode, boolean deep)DOMNode
dom_document_load_html_file128(string source)DOMNode
dom_document_load_html128(string source)DOMNode
dom_document_loadxml128(string source [, int options])DOMNode
dom_document_load128(string source [, int options])DOMNode
dom_document_normalize_document128()void
dom_document_relaxNG_validate_file128(string filename)boolean
dom_document_relaxNG_validate_xml128(string source)boolean
dom_document_rename_node128(node n, string namespaceURI, string qualifiedName)DOMNode
dom_document_save_html_file128(string file)int
dom_document_save_html128()string
dom_document_savexml128([node n])string
dom_document_save128(string file)int
dom_document_schema_validate_file128(string filename)boolean
dom_document_schema_validate128(string source)boolean
dom_document_validate128()boolean
dom_document_xinclude128([int options])int
dom_domconfiguration_can_set_parameter128(string name, domuserdata value)boolean
dom_domconfiguration_get_parameter128(string name)domdomuserdata
dom_domconfiguration_set_parameter128(string name, domuserdata value)dom_void
dom_domerrorhandler_handle_error128(domerror error)dom_boolean
dom_domimplementation_create_document_type128(string qualifiedName, string publicId, string systemId)DOMDocumentType
dom_domimplementation_create_document128(string namespaceURI, string qualifiedName, DOMDocumentType doctype)DOMDocument
dom_domimplementation_get_feature128(string feature, string version)DOMNode
dom_domimplementation_has_feature128(string feature, string version)boolean
dom_domimplementationlist_item128(int index)domdomimplementation
dom_domimplementationsource_get_domimplementations128(string features)domimplementationlist
dom_domimplementationsource_get_domimplementation128(string features)domdomimplementation
dom_domstringlist_item128(int index)domstring
dom_element_get_attribute_node_ns128(string namespaceURI, string localName)DOMAttr
dom_element_get_attribute_node128(string name)DOMAttr
dom_element_get_attribute_ns128(string namespaceURI, string localName)string
dom_element_get_attribute128(string name)string
dom_element_get_elements_by_tag_name_ns128(string namespaceURI, string localName)DOMNodeList
dom_element_get_elements_by_tag_name128(string name)DOMNodeList
dom_element_has_attribute_ns128(string namespaceURI, string localName)boolean
dom_element_has_attribute128(string name)boolean
dom_element_remove_attribute_node128(DOMAttr oldAttr)DOMAttr
dom_element_remove_attribute_ns128(string namespaceURI, string localName)void
dom_element_remove_attribute128(string name)void
dom_element_set_attribute_node_ns128(DOMAttr newAttr)DOMAttr
dom_element_set_attribute_node128(DOMAttr newAttr)DOMAttr
dom_element_set_attribute_ns128(string namespaceURI, string qualifiedName, string value)void
dom_element_set_attribute128(string name, string value)void
dom_element_set_id_attribute_node128(attr idAttr, boolean isId)void
dom_element_set_id_attribute_ns128(string namespaceURI, string localName, boolean isId)void
dom_element_set_id_attribute128(string name, boolean isId)void
dom_import_simplexml128(sxeobject node)somNode
dom_namednodemap_get_named_item_ns128(string namespaceURI, string localName)DOMNode
dom_namednodemap_get_named_item128(string name)DOMNode
dom_namednodemap_item128(int index)DOMNode
dom_namednodemap_remove_named_item_ns128(string namespaceURI, string localName)DOMNode
dom_namednodemap_remove_named_item128(string name)DOMNode
dom_namednodemap_set_named_item_ns128(DOMNode arg)DOMNode
dom_namednodemap_set_named_item128(DOMNode arg)DOMNode
dom_namelist_get_namespace_uri128(int index)string
dom_namelist_get_name128(int index)string
dom_node_append_child128(DomNode newChild)DomNode
dom_node_clone_node128(boolean deep)DomNode
dom_node_compare_document_position128(DomNode other)short
dom_node_get_feature128(string feature, string version)DomNode
dom_node_get_user_data128(string key)DomUserData
dom_node_has_attributes128()boolean
dom_node_has_child_nodes128()boolean
dom_node_insert_before128(DomNode newChild, DomNode refChild)domnode
dom_node_is_default_namespace128(string namespaceURI)boolean
dom_node_is_equal_node128(DomNode arg)boolean
dom_node_is_same_node128(DomNode other)boolean
dom_node_is_supported128(string feature, string version)boolean
dom_node_lookup_namespace_uri128(string prefix)string
dom_node_lookup_prefix128(string namespaceURI)string
dom_node_normalize128()void
dom_node_remove_child128(DomNode oldChild)DomNode
dom_node_replace_child128(DomNode newChild, DomNode oldChild)DomNode
dom_node_set_user_data128(string key, DomUserData data, userdatahandler handler)DomUserData
dom_nodelist_item128(int index)DOMNode
dom_string_extend_find_offset16128(int offset32)int
dom_string_extend_find_offset32128(int offset16)int
dom_text_is_whitespace_in_element_content128()boolean
dom_text_replace_whole_text128(string content)DOMText
dom_text_split_text128(int offset)DOMText
dom_userdatahandler_handle128(short operation, string key, domobject data, node src, node dst)dom_void
dom_xpath_evaluate128(string expr [,DOMNode context])mixed
dom_xpath_query128(string expr [,DOMNode context])DOMNodeList
dom_xpath_register_ns128(string prefix, string uri)boolean
dom_xpath_register_php_functions128()void
each128(array arr)array
easter_date128([int year])int
easter_days128([int year, [int method]])int
end128(array array_arg)mixed
ereg_replace128(string pattern, string replacement, string string)string
eregi_replace128(string pattern, string replacement, string string)string
eregi128(string pattern, string string [, array registers])int
ereg128(string pattern, string string [, array registers])int
error_get_last128()array
error_log128(string message [, int message_type [, string destination [, string extra_headers]]])bool
error_reporting128(int new_error_level=null)int
escapeshellarg128(string arg)string
escapeshellcmd128(string command)string
exec128(string command [, array &output [, int &return_value]])string
exif_imagetype128(string imagefile)int
exif_read_data128(string filename [, sections_needed [, sub_arrays[, read_thumbnail]]])array
exif_tagname128(index)string
exif_thumbnail128(string filename [, &width, &height [, &imagetype]])string
explode128(string separator, string str [, int limit])array
expm1128(float number)float
exp128(float number)float
extension_loaded128(string extension_name)bool
extract128(array var_array [, int extract_type [, string prefix]])int
ezmlm_hash128(string addr)int
fbsql_affected_rows128([resource link_identifier])int
fbsql_autocommit128(resource link_identifier [, bool OnOff])bool
fbsql_blob_size128(string blob_handle [, resource link_identifier])int
fbsql_change_user128(string user, string password [, string database [, resource link_identifier]])int
fbsql_clob_size128(string clob_handle [, resource link_identifier])int
fbsql_close128([resource link_identifier])bool
fbsql_commit128([resource link_identifier])bool
fbsql_connect128([string hostname [, string username [, string password]]])resource
fbsql_create_blob128(string blob_data [, resource link_identifier])string
fbsql_create_clob128(string clob_data [, resource link_identifier])string
fbsql_create_db128(string database_name [, resource link_identifier [, string database_options]])bool
fbsql_data_seek128(int result, int row_number)bool
fbsql_database_password128(resource link_identifier [, string database_password])string
fbsql_database128(resource link_identifier [, string database])string
fbsql_db_query128(string database_name, string query [, resource link_identifier])resource
fbsql_db_status128(string database_name [, resource link_identifier])int
fbsql_drop_db128(string database_name [, resource link_identifier])int
fbsql_errno128([resource link_identifier])int
fbsql_error128([resource link_identifier])string
fbsql_fetch_array128(resource result [, int result_type])array
fbsql_fetch_assoc128(resource result)object
fbsql_fetch_field128(int result [, int field_index])object
fbsql_fetch_lengths128(int result)array
fbsql_fetch_object128(resource result [, int result_type])object
fbsql_fetch_row128(resource result)array
fbsql_field_flags128(int result [, int field_index])string
fbsql_field_len128(int result [, int field_index])mixed
fbsql_field_name128(int result [, int field_index])string
fbsql_field_seek128(int result [, int field_index])bool
fbsql_field_table128(int result [, int field_index])string
fbsql_field_type128(int result [, int field_index])string
fbsql_free_result128(resource result)bool
fbsql_get_autostart_info128([resource link_identifier])array
fbsql_hostname128(resource link_identifier [, string host_name])string
fbsql_insert_id128([resource link_identifier])int
fbsql_list_dbs128([resource link_identifier])resource
fbsql_list_fields128(string database_name, string table_name [, resource link_identifier])resource
fbsql_list_tables128(string database [, int link_identifier])resource
fbsql_next_result128(int result)bool
fbsql_num_fields128(int result)int
fbsql_num_rows128(int result)int
fbsql_password128(resource link_identifier [, string password])string
fbsql_pconnect128([string hostname [, string username [, string password]]])resource
fbsql_query128(string query [, resource link_identifier [, long batch_size]])resource
fbsql_read_blob128(string blob_handle [, resource link_identifier])string
fbsql_read_clob128(string clob_handle [, resource link_identifier])string
fbsql_result128(int result [, int row [, mixed field]])mixed
fbsql_rollback128([resource link_identifier])bool
fbsql_rows_fetched128(resource result)int
fbsql_select_db128([string database_name [, resource link_identifier]])bool
fbsql_set_characterset128(resource link_identifier, long charcterset [, long in_out_both]])void
fbsql_set_lob_mode128(resource result, int lob_mode)bool
fbsql_set_password128(resource link_identifier, string user, string password, string old_password)bool
fbsql_set_transaction128(resource link_identifier, int locking, int isolation)void
fbsql_start_db128(string database_name [, resource link_identifier [, string database_options]])bool
fbsql_stop_db128(string database_name [, resource link_identifier])bool
fbsql_table_name128(resource result, int index)string
fbsql_username128(resource link_identifier [, string username])string
fbsql_warnings128([int flag])bool
fclose128(resource fp)bool
fdf_add_doc_javascript128(resource fdfdoc, string scriptname, string script)bool
fdf_add_template128(resource fdfdoc, int newpage, string filename, string template, int rename)bool
fdf_close128(resource fdfdoc)void
fdf_create128()resource
fdf_enum_values128(resource fdfdoc, callback function [, mixed userdata])bool
fdf_errno128()int
fdf_error128([int errno])string
fdf_get_ap128(resource fdfdoc, string fieldname, int face, string filename)bool
fdf_get_attachment128(resource fdfdoc, string fieldname, string savepath)array
fdf_get_encoding128(resource fdf)string
fdf_get_file128(resource fdfdoc)string
fdf_get_flags128(resorce fdfdoc, string fieldname, int whichflags)int
fdf_get_opt128(resource fdfdof, string fieldname [, int element])mixed
fdf_get_status128(resource fdfdoc)string
fdf_get_value128(resource fdfdoc, string fieldname [, int which])string
fdf_get_version128([resource fdfdoc])string
fdf_header128()void
fdf_next_field_name128(resource fdfdoc [, string fieldname])string
fdf_open_string128(string fdf_data)resource
fdf_open128(string filename)resource
fdf_remove_item128(resource fdfdoc, string fieldname, int item)bool
fdf_save_string128(resource fdfdoc)string
fdf_save128(resource fdfdoc [, string filename])bool
fdf_set_ap128(resource fdfdoc, string fieldname, int face, string filename, int pagenr)bool
fdf_set_encoding128(resource fdf_document, string encoding)bool
fdf_set_file128(resource fdfdoc, string filename [, string target_frame])bool
fdf_set_flags128(resource fdfdoc, string fieldname, int whichflags, int newflags)bool
fdf_set_javascript_action128(resource fdfdoc, string fieldname, int whichtrigger, string script)bool
fdf_set_on_import_javascript128(resource fdfdoc, string script, bool before_data_import)bool
fdf_set_opt128(resource fdfdoc, string fieldname, int element, string value, string name)bool
fdf_set_status128(resource fdfdoc, string status)bool
fdf_set_submit_form_action128(resource fdfdoc, string fieldname, int whichtrigger, string url, int flags)bool
fdf_set_target_frame128(resource fdfdoc, string target)bool
fdf_set_value128(resource fdfdoc, string fieldname, mixed value [, int isname])bool
fdf_set_version128(resourece fdfdoc, string version)bool
feof128(resource fp)bool
fflush128(resource fp)bool
fgetcsv128(resource fp [,int length [, string delimiter [, string enclosure[, string escape]]]])array
fgetc128(resource fp)string
fgetss128(resource fp [, int lengthish, string allowable_tags])string
fgets128(resource fp[, int lengthish])string
file_exists128(string filename)bool
file_get_contents128(string filename [, long flags [, resource context [, long offset [, long maxlen]]]])string
file_put_contents128(string file, mixed data [, int flags [, resource context]])int
fileatime128(string filename)int
filectime128(string filename)int
filegroup128(string filename)int
fileinode128(string filename)int
filemtime128(string filename)int
fileowner128(string filename)int
fileperms128(string filename)int
filesize128(string filename)int
filetype128(string filename)string
file128(string filename [, int flags[, resource context]])array
filter_has_var128(constant type, string variable_name)mixed
filter_input_array128(constant type, [, mixed options]])mixed
filter_input128(constant type, string variable_name [, long filter [, mixed options]])mixed
filter_var_array128(array data, [, mixed options]])mixed
filter_var128(mixed variable [, long filter [, mixed options]])mixed
floatval128(mixed var)float
flock128(resource fp, int operation [, int &wouldblock])bool
floor128(float number)float
flush128()void
fmod128(float x, float y)float
fnmatch128(string pattern, string filename [, int flags])bool
fopen128(string filename, string mode [, bool use_include_path [, resource context]])resource
fpassthru128(resource fp)int
fprintf128(resource stream, string format [, mixed arg1 [, mixed ...]])int
fputcsv128(resource fp, array fields [, string delimiter [, string enclosure]])int
fread128(resource fp, int length)string
frenchtojd128(int month, int day, int year)int
fscanf128(resource stream, string format [, string ...])mixed
fseek128(resource fp, int offset [, int whence])int
fsockopen128(string hostname, int port [, int errno [, string errstr [, float timeout]]])resource
fstat128(resource fp)array
ftell128(resource fp)int
ftok128(string pathname, string proj)int
ftp_alloc128(resource stream, int size[, &response])bool
ftp_cdup128(resource stream)bool
ftp_chdir128(resource stream, string directory)bool
ftp_chmod128(resource stream, int mode, string filename)int
ftp_close128(resource stream)bool
ftp_connect128(string host [, int port [, int timeout]])resource
ftp_delete128(resource stream, string file)bool
ftp_exec128(resource stream, string command)bool
ftp_fget128(resource stream, resource fp, string remote_file, int mode[, int resumepos])bool
ftp_fput128(resource stream, string remote_file, resource fp, int mode[, int startpos])bool
ftp_get_option128(resource stream, int option)mixed
ftp_get128(resource stream, string local_file, string remote_file, int mode[, int resume_pos])bool
ftp_login128(resource stream, string username, string password)bool
ftp_mdtm128(resource stream, string filename)int
ftp_mkdir128(resource stream, string directory)string
ftp_nb_continue128(resource stream)int
ftp_nb_fget128(resource stream, resource fp, string remote_file, int mode[, int resumepos])int
ftp_nb_fput128(resource stream, string remote_file, resource fp, int mode[, int startpos])int
ftp_nb_get128(resource stream, string local_file, string remote_file, int mode[, int resume_pos])int
ftp_nb_put128(resource stream, string remote_file, string local_file, int mode[, int startpos])int
ftp_nlist128(resource stream, string directory)array
ftp_pasv128(resource stream, bool pasv)bool
ftp_put128(resource stream, string remote_file, string local_file, int mode[, int startpos])bool
ftp_pwd128(resource stream)string
ftp_rawlist128(resource stream, string directory [, bool recursive])array
ftp_raw128(resource stream, string command)array
ftp_rename128(resource stream, string src, string dest)bool
ftp_rmdir128(resource stream, string directory)bool
ftp_set_option128(resource stream, int option, mixed value)bool
ftp_site128(resource stream, string cmd)bool
ftp_size128(resource stream, string filename)int
ftp_ssl_connect128(string host [, int port [, int timeout]])resource
ftp_systype128(resource stream)string
ftruncate128(resource fp, int size)bool
func_get_args128()array
func_get_arg128(int arg_num)mixed
func_num_args128()int
function_exists128(string function_name)bool
fwrite128(resource fp, string str [, int length])int
gd_info128()array
getArchiveComment128()string
getCommentIndex128(int index)string
getCommentName128(string name)string
getFromIndex128(string entryname[, int len [, int flags]])string
getFromName128(string entryname[, int len [, int flags]])string
getNameIndex128(int index [, int flags])string
getStream128(string entryname)resource
get_browser128([string browser_name [, bool return_array]])mixed
get_cfg_var128(string option_name)string
get_class_methods128(mixed class)array
get_class_vars128(string class_name)array
get_class128([object object])string
get_current_user128()string
get_declared_classes128()array
get_declared_interfaces128()array
get_defined_constants128([bool categorize])array
get_defined_functions128()array
get_defined_vars128()array
get_extension_funcs128(string extension_name)array
get_headers128(string url[, int format])array
get_html_translation_table128([int table [, int quote_style]])array
get_include_path128()string
get_included_files128()array
get_loaded_extensions128([bool zend_extensions])array
get_meta_tags128(string filename [, bool use_include_path])array
get_object_vars128(object obj)array
get_parent_class128([mixed object])string
get_resource_type128(resource res)string
getallheaders128()array
getallheaders128()array
getallheaders128()array
getallheaders128()array
getcwd128()mixed
getdate128([int timestamp])array
getenv128(string varname)string
gethostbyaddr128(string ip_address)string
gethostbynamel128(string hostname)array
gethostbyname128(string hostname)string
getimagesize128(string imagefile [, array info])array
getlastmod128()int
getmygid128()int
getmyinode128()int
getmypid128()int
getmyuid128()int
getopt128(string options [, array longopts])array
getprotobyname128(string name)int
getprotobynumber128(int proto)string
getrandmax128()int
getrusage128([int who])array
getservbyname128(string service, string protocol)int
getservbyport128(int port, string protocol)string
gettext128(string msgid)binary
gettimeofday128([bool get_as_float])array
gettype128(mixed var)string
glob128(string pattern [, int flags])array
gmdate128(string format [, long timestamp])string
gmmktime128([int hour [, int min [, int sec [, int mon [, int day [, int year]]]]]])int
gmp_abs128(resource a)resource
gmp_add128(resource a, resource b)resource
gmp_and128(resource a, resource b)resource
gmp_clrbit128(resource &a, int index)void
gmp_cmp128(resource a, resource b)int
gmp_com128(resource a)resource
gmp_div_qr128(resource a, resource b [, int round])array
gmp_div_q128(resource a, resource b [, int round])resource
gmp_div_r128(resource a, resource b [, int round])resource
gmp_divexact128(resource a, resource b)resource
gmp_fact128(int a)resource
gmp_gcdext128(resource a, resource b)array
gmp_gcd128(resource a, resource b)resource
gmp_hamdist128(resource a, resource b)int
gmp_init128(mixed number [, int base])resource
gmp_intval128(resource gmpnumber)int
gmp_invert128(resource a, resource b)resource
gmp_jacobi128(resource a, resource b)int
gmp_legendre128(resource a, resource b)int
gmp_mod128(resource a, resource b)resource
gmp_mul128(resource a, resource b)resource
gmp_neg128(resource a)resource
gmp_nextprime128(resource a)resource
gmp_or128(resource a, resource b)resource
gmp_perfect_square128(resource a)bool
gmp_popcount128(resource a)int
gmp_powm128(resource base, resource exp, resource mod)resource
gmp_pow128(resource base, int exp)resource
gmp_prob_prime128(resource a[, int reps])int
gmp_random128([int limiter])resource
gmp_scan0128(resource a, int start)int
gmp_scan1128(resource a, int start)int
gmp_setbit128(resource &a, int index[, bool set_clear])void
gmp_sign128(resource a)int
gmp_sqrtrem128(resource a)array
gmp_sqrt128(resource a)resource
gmp_strval128(resource gmpnumber [, int base])string
gmp_sub128(resource a, resource b)resource
gmp_testbit128(resource a, int index)bool
gmp_xor128(resource a, resource b)resource
gmstrftime128(string format [, int timestamp])string
gregoriantojd128(int month, int day, int year)int
gzcompress128(binary data[, int level = -1[, int encoding = ZLIB_ENCODING_DEFLATE])binary
gzdecode128(binary data[, int max_decoded_len])binary
gzdeflate128(binary data[, int level = -1[, int encoding = ZLIB_ENCODING_RAW])binary
gzencode128(binary data[, int level = -1[, int encoding = ZLIB_ENCODING_GZIP])binary
gzfile128(string filename [, int use_include_path])array
gzinflate128(binary data[, int max_decoded_len])binary
gzopen128(string filename, string mode [, int use_include_path])resource
gzuncompress128(binary data[, int max_decoded_len])binary
hash_algos128()array
hash_file128(string algo, string filename[, bool raw_output = false])string
hash_final128(resource context[, bool raw_output=false])string
hash_hmac_file128(string algo, string filename, string key[, bool raw_output = false])string
hash_hmac128(string algo, string data, string key[, bool raw_output = false])string
hash_init128(string algo[, int options, string key])resource
hash_update_file128(resource context, string filename[, resource context])bool
hash_update_stream128(resource context, resource handle[, integer length])int
hash_update128(resource context, string data)bool
hash128(string algo, string data[, bool raw_output = false])string
headers_list128()array
headers_sent128([string &$file [, int &$line]])bool
header128(string header [, bool replace, [int http_response_code]])void
hebrevc128(string str [, int max_chars_per_line])string
hebrev128(string str [, int max_chars_per_line])string
hexdec128(string hexadecimal_number)int
highlight_file128(string file_name [, bool return] )bool
highlight_string128(string string [, bool return] )bool
html_entity_decode128(string string [, int quote_style][, string charset])string
htmlentities128(string string [, int quote_style[, string charset[, bool double_encode]]])string
htmlspecialchars_decode128(string string [, int quote_style])string
htmlspecialchars128(string string [, int quote_style[, string charset[, bool double_encode]]])string
http_build_query128(mixed formdata [, string prefix [, string arg_separator]])string
hypot128(float num1, float num2)float
ibase_add_user128(resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]])bool
ibase_affected_rows128( [ resource link_identifier ] )int
ibase_backup128(resource service_handle, string source_db, string dest_file [, int options [, bool verbose]])mixed
ibase_blob_add128(resource blob_handle, string data)bool
ibase_blob_cancel128(resource blob_handle)bool
ibase_blob_close128(resource blob_handle)string
ibase_blob_create128([resource link_identifier])resource
ibase_blob_echo128([ resource link_identifier, ] string blob_id)bool
ibase_blob_get128(resource blob_handle, int len)string
ibase_blob_import128([ resource link_identifier, ] resource file)string
ibase_blob_info128([ resource link_identifier, ] string blob_id)array
ibase_blob_open128([ resource link_identifier, ] string blob_id)resource
ibase_close128([resource link_identifier])bool
ibase_commit_ret128( resource link_identifier )bool
ibase_commit128( resource link_identifier )bool
ibase_connect128(string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role]]]]]])resource
ibase_db_info128(resource service_handle, string db, int action [, int argument])string
ibase_delete_user128(resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]])bool
ibase_drop_db128([resource link_identifier])bool
ibase_errcode128()int
ibase_errmsg128()string
ibase_execute128(resource query [, mixed bind_arg [, mixed bind_arg [, ...]]])mixed
ibase_fetch_assoc128(resource result [, int fetch_flags])array
ibase_fetch_object128(resource result [, int fetch_flags])object
ibase_fetch_row128(resource result [, int fetch_flags])array
ibase_field_info128(resource query_result, int field_number)array
ibase_free_event_handler128(resource event)bool
ibase_free_query128(resource query)bool
ibase_free_result128(resource result)bool
ibase_gen_id128(string generator [, int increment [, resource link_identifier ]])int
ibase_maintain_db128(resource service_handle, string db, int action [, int argument])bool
ibase_modify_user128(resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]])bool
ibase_name_result128(resource result, string name)bool
ibase_num_fields128(resource query_result)int
ibase_num_params128(resource query)int
ibase_num_rows128( resource result_identifier )int
ibase_param_info128(resource query, int field_number)array
ibase_pconnect128(string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role]]]]]])resource
ibase_prepare128([resource link_identifier, ] string query)resource
ibase_query128([resource link_identifier, [ resource link_identifier, ]] string query [, mixed bind_arg [, mixed bind_arg [, ...]]])mixed
ibase_restore128(resource service_handle, string source_file, string dest_db [, int options [, bool verbose]])mixed
ibase_rollback_ret128( resource link_identifier )bool
ibase_rollback128( resource link_identifier )bool
ibase_server_info128(resource service_handle, int action)string
ibase_service_attach128(string host, string dba_username, string dba_password)resource
ibase_service_detach128(resource service_handle)bool
ibase_set_event_handler128([resource link_identifier,] callback handler, string event [, string event [, ...]])resource
ibase_trans128([int trans_args [, resource link_identifier [, ... ], int trans_args [, resource link_identifier [, ... ]] [, ...]]])resource
ibase_wait_event128([resource link_identifier,] string event [, string event [, ...]])string
iconv_get_encoding128([string type])mixed
iconv_mime_decode_headers128(string headers [, int mode, string charset])array
iconv_mime_decode128(string encoded_string [, int mode, string charset])string
iconv_mime_encode128(string field_name, string field_value [, array preference])string
iconv_set_encoding128(string type, string charset)bool
iconv_strlen128(string str [, string charset])int
iconv_strpos128(string haystack, string needle [, int offset [, string charset]])int
iconv_strrpos128(string haystack, string needle [, string charset])int
iconv_substr128(string str, int offset, [int length, string charset])string
iconv128(string in_charset, string out_charset, string str)string
idate128(string format [, int timestamp])int
ignore_user_abort128([string value])int
image2wbmp128(resource im [, string filename [, int threshold]])bool
image_type_to_extension128(int imagetype [, bool include_dot])string
image_type_to_mime_type128(int imagetype)string
imagealphablending128(resource im, bool on)bool
imageantialias128(resource im, bool on)bool
imagearc128(resource im, int cx, int cy, int w, int h, int s, int e, int col)bool
imagecharup128(resource im, int font, int x, int y, string c, int col)bool
imagechar128(resource im, int font, int x, int y, string c, int col)bool
imagecolorallocatealpha128(resource im, int red, int green, int blue, int alpha)int
imagecolorallocate128(resource im, int red, int green, int blue)int
imagecolorat128(resource im, int x, int y)int
imagecolorclosestalpha128(resource im, int red, int green, int blue, int alpha)int
imagecolorclosesthwb128(resource im, int red, int green, int blue)int
imagecolorclosest128(resource im, int red, int green, int blue)int
imagecolordeallocate128(resource im, int index)bool
imagecolorexactalpha128(resource im, int red, int green, int blue, int alpha)int
imagecolorexact128(resource im, int red, int green, int blue)int
imagecolormatch128(resource im1, resource im2)bool
imagecolorresolvealpha128(resource im, int red, int green, int blue, int alpha)int
imagecolorresolve128(resource im, int red, int green, int blue)int
imagecolorset128(resource im, int col, int red, int green, int blue)void
imagecolorsforindex128(resource im, int col)array
imagecolorstotal128(resource im)int
imagecolortransparent128(resource im [, int col])int
imageconvolution128(resource src_im, array matrix3x3, double div, double offset)resource
imagecopymergegray128(resource src_im, resource dst_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct)bool
imagecopymerge128(resource src_im, resource dst_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct)bool
imagecopyresampled128(resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h)bool
imagecopyresized128(resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h)bool
imagecopy128(resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h)bool
imagecreatefromgd2part128(string filename, int srcX, int srcY, int width, int height)resource
imagecreatefromgd2128(string filename)resource
imagecreatefromgd128(string filename)resource
imagecreatefromgif128(string filename)resource
imagecreatefromjpeg128(string filename)resource
imagecreatefrompng128(string filename)resource
imagecreatefromstring128(string image)resource
imagecreatefromwbmp128(string filename)resource
imagecreatefromxbm128(string filename)resource
imagecreatefromxpm128(string filename)resource
imagecreatetruecolor128(int x_size, int y_size)resource
imagecreate128(int x_size, int y_size)resource
imagedashedline128(resource im, int x1, int y1, int x2, int y2, int col)bool
imagedestroy128(resource im)bool
imageellipse128(resource im, int cx, int cy, int w, int h, int color)bool
imagefilledarc128(resource im, int cx, int cy, int w, int h, int s, int e, int col, int style)bool
imagefilledellipse128(resource im, int cx, int cy, int w, int h, int color)bool
imagefilledpolygon128(resource im, array point, int num_points, int col)bool
imagefilledrectangle128(resource im, int x1, int y1, int x2, int y2, int col)bool
imagefilltoborder128(resource im, int x, int y, int border, int col)bool
imagefill128(resource im, int x, int y, int col)bool
imagefilter128(resource src_im, int filtertype, [args] )bool
imagefontheight128(int font)int
imagefontwidth128(int font)int
imageftbbox128(float size, float angle, string font_file, string text [, array extrainfo])array
imagefttext128(resource im, float size, float angle, int x, int y, int col, string font_file, string text [, array extrainfo])array
imagegammacorrect128(resource im, float inputgamma, float outputgamma)bool
imagegd2128(resource im [, string filename [, int chunk_size [, int type]]])bool
imagegd128(resource im [, string filename])bool
imagegif128(resource im [, string filename])bool
imagegrabscreen128()resource
imagegrabwindow128(int window_handle [, int client_area])resource
imageinterlace128(resource im [, int interlace])int
imageistruecolor128(resource im)bool
imagejpeg128(resource im [, string filename [, int quality]])bool
imagelayereffect128(resource im, int effect)bool
imageline128(resource im, int x1, int y1, int x2, int y2, int col)bool
imageloadfont128(string filename)int
imagepalettecopy128(resource dst, resource src)void
imagepng128(resource im [, string filename [, int quality]])bool
imagepolygon128(resource im, array point, int num_points, int col)bool
imagepsbbox128(string text, resource font, int size [, int space, int tightness, int angle])array
imagepscopyfont128(int font_index)int
imagepsencodefont128(resource font_index, string filename)bool
imagepsextendfont128(resource font_index, float extend)bool
imagepsfreefont128(resource font_index)bool
imagepsloadfont128(string pathname)resource
imagepsslantfont128(resource font_index, float slant)bool
imagepstext128(resource image, string text, resource font, int size, int foreground, int background, int xcoord, int ycoord [, int space, int tightness, float angle, int antialias])array
imagerectangle128(resource im, int x1, int y1, int x2, int y2, int col)bool
imagerotate128(resource src_im, float angle, int bgdcolor [, int ignoretransparent])resource
imagesavealpha128(resource im, bool on)bool
imagesetbrush128(resource image, resource brush)bool
imagesetpixel128(resource im, int x, int y, int col)bool
imagesetstyle128(resource im, array styles)bool
imagesetthickness128(resource im, int thickness)bool
imagesettile128(resource image, resource tile)bool
imagestringup128(resource im, int font, int x, int y, string str, int col)bool
imagestring128(resource im, int font, int x, int y, string str, int col)bool
imagesx128(resource im)int
imagesy128(resource im)int
imagetruecolortopalette128(resource im, bool ditherFlag, int colorsWanted)void
imagettfbbox128(float size, float angle, string font_file, string text)array
imagettftext128(resource im, float size, float angle, int x, int y, int col, string font_file, string text)array
imagetypes128()int
imagewbmp128(resource im [, string filename, [, int foreground]])bool
imagexbm128(int im, string filename [, int foreground])int
imap_8bit128(string text)string
imap_alerts128()array
imap_append128(resource stream_id, string folder, string message [, string options])bool
imap_base64128(string text)string
imap_binary128(string text)string
imap_bodystruct128(resource stream_id, int msg_no, string section)object
imap_body128(resource stream_id, int msg_no [, int options])string
imap_check128(resource stream_id)object
imap_clearflag_full128(resource stream_id, string sequence, string flag [, int options])bool
imap_close128(resource stream_id [, int options])bool
imap_createmailbox128(resource stream_id, string mailbox)bool
imap_deletemailbox128(resource stream_id, string mailbox)bool
imap_delete128(resource stream_id, int msg_no [, int options])bool
imap_errors128()array
imap_expunge128(resource stream_id)bool
imap_fetch_overview128(resource stream_id, int msg_no [, int options])array
imap_fetchbody128(resource stream_id, int msg_no, string section [, int options])string
imap_fetchheader128(resource stream_id, int msg_no [, int options])string
imap_fetchstructure128(resource stream_id, int msg_no [, int options])object
imap_get_quotaroot128(resource stream_id, string mbox)array
imap_get_quota128(resource stream_id, string qroot)array
imap_getacl128(resource stream_id, string mailbox)array
imap_getmailboxes128(resource stream_id, string ref, string pattern)array
imap_getsubscribed128(resource stream_id, string ref, string pattern)array
imap_headerinfo128(resource stream_id, int msg_no [, int from_length [, int subject_length [, string default_host]]])object
imap_headers128(resource stream_id)array
imap_last_error128()string
imap_list128(resource stream_id, string ref, string pattern)array
imap_lsub128(resource stream_id, string ref, string pattern)array
imap_mail_compose128(array envelope, array body)string
imap_mail_copy128(resource stream_id, int msg_no, string mailbox [, int options])bool
imap_mail_move128(resource stream_id, int msg_no, string mailbox [, int options])bool
imap_mailboxmsginfo128(resource stream_id)object
imap_mail128(string to, string subject, string message [, string additional_headers [, string cc [, string bcc [, string rpath]]]])bool
imap_mime_header_decode128(string str)array
imap_msgno128(resource stream_id, int unique_msg_id)int
imap_num_msg128(resource stream_id)int
imap_num_recent128(resource stream_id)int
imap_open128(string mailbox, string user, string password [, int options [, int n_retries]])resource
imap_ping128(resource stream_id)bool
imap_qprint128(string text)string
imap_renamemailbox128(resource stream_id, string old_name, string new_name)bool
imap_reopen128(resource stream_id, string mailbox [, int options [, int n_retries]])bool
imap_rfc822_parse_adrlist128(string address_string, string default_host)array
imap_rfc822_parse_headers128(string headers [, string default_host])object
imap_rfc822_write_address128(string mailbox, string host, string personal)string
imap_savebody128(resource stream_id, string|resource file, int msg_no[, string section = ""[, int options = 0]])bool
imap_scan128(resource stream_id, string ref, string pattern, string content)array
imap_search128(resource stream_id, string criteria [, int options [, string charset]])array
imap_set_quota128(resource stream_id, string qroot, int mailbox_size)bool
imap_setacl128(resource stream_id, string mailbox, string id, string rights)bool
imap_setflag_full128(resource stream_id, string sequence, string flag [, int options])bool
imap_sort128(resource stream_id, int criteria, int reverse [, int options [, string search_criteria [, string charset]]])array
imap_status128(resource stream_id, string mailbox, int options)object
imap_subscribe128(resource stream_id, string mailbox)bool
imap_thread128(resource stream_id [, int options])array
imap_timeout128(int timeout_type [, int timeout])mixed
imap_uid128(resource stream_id, int msg_no)int
imap_undelete128(resource stream_id, int msg_no)bool
imap_unsubscribe128(resource stream_id, string mailbox)bool
imap_utf7_decode128(string buf)string
imap_utf7_encode128(string buf)string
imap_utf8128(string mime_encoded_text)string
implode128([string glue,] array pieces)string
import_request_variables128(string types [, string prefix])bool
in_array128(mixed needle, array haystack [, bool strict])bool
inet_ntop128(string in_addr)string
inet_pton128(string ip_address)string
ini_get_all128([string extension])array
ini_get128(string varname)string
ini_restore128(string varname)void
ini_set128(string varname, string newvalue)string
interface_exists128(string classname [, bool autoload])bool
intval128(mixed var [, int base])int
ip2long128(string ip_address)int
iptcembed128(string iptcdata, string jpeg_file_name [, int spool])array
iptcparse128(string iptcdata)array
is_array128(mixed var)bool
is_a128(object object, string class_name)bool
is_binary128(mixed var)bool
is_bool128(mixed var)bool
is_buffer128(mixed var)bool
is_callable128(mixed var [, bool syntax_only [, string callable_name]])bool
is_dir128(string filename)bool
is_executable128(string filename)bool
is_file128(string filename)bool
is_finite128(float val)bool
is_float128(mixed var)bool
is_infinite128(float val)bool
is_link128(string filename)bool
is_long128(mixed var)bool
is_nan128(float val)bool
is_null128(mixed var)bool
is_numeric128(mixed value)bool
is_object128(mixed var)bool
is_readable128(string filename)bool
is_resource128(mixed var)bool
is_scalar128(mixed value)bool
is_string128(mixed var)bool
is_subclass_of128(object object, string class_name)bool
is_unicode128(mixed var)bool
is_uploaded_file128(string path)bool
is_writable128(string filename)bool
iterator_apply128(Traversable it, mixed function [, mixed params])int
iterator_count128(Traversable it)int
iterator_to_array128(Traversable it [, bool use_keys = true])array
jddayofweek128(int juliandaycount [, int mode])mixed
jdmonthname128(int juliandaycount, int mode)string
jdtofrench128(int juliandaycount)string
jdtogregorian128(int juliandaycount)string
jdtojewish128(int juliandaycount [, bool hebrew [, int fl]])string
jdtojulian128(int juliandaycount)string
jdtounix128(int jday)int
jewishtojd128(int month, int day, int year)int
join128([string glue,] array pieces)string
json_decode128(string json [, bool assoc])mixed
json_encode128(mixed data)string
juliantojd128(int month, int day, int year)int
key128(array array_arg)mixed
krsort128(array &array_arg [, int sort_flags])bool
ksort128(array &array_arg [, int sort_flags])bool
lcg_value128()float
lchgrp128(string filename, mixed group)bool
ldap_8859_to_t61128(string value)string
ldap_add128(resource link, string dn, array entry)bool
ldap_bind128(resource link [, string dn, string password])bool
ldap_compare128(resource link, string dn, string attr, string value)bool
ldap_connect128([string host [, int port]])resource
ldap_count_entries128(resource link, resource result)int
ldap_delete128(resource link, string dn)bool
ldap_dn2ufn128(string dn)string
ldap_err2str128(int errno)string
ldap_errno128(resource link)int
ldap_error128(resource link)string
ldap_explode_dn128(string dn, int with_attrib)array
ldap_first_attribute128(resource link, resource result_entry, int ber)string
ldap_first_entry128(resource link, resource result)resource
ldap_first_reference128(resource link, resource result)resource
ldap_free_result128(resource result)bool
ldap_get_attributes128(resource link, resource result_entry)array
ldap_get_dn128(resource link, resource result_entry)string
ldap_get_entries128(resource link, resource result)array
ldap_get_option128(resource link, int option, mixed retval)bool
ldap_get_values_len128(resource link, resource result_entry, string attribute)array
ldap_list128(resource link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]])resource
ldap_mod_add128(resource link, string dn, array entry)bool
ldap_mod_del128(resource link, string dn, array entry)bool
ldap_mod_replace128(resource link, string dn, array entry)bool
ldap_next_attribute128(resource link, resource result_entry, resource ber)string
ldap_next_entry128(resource link, resource result_entry)resource
ldap_next_reference128(resource link, resource reference_entry)resource
ldap_parse_reference128(resource link, resource reference_entry, array referrals)bool
ldap_parse_result128(resource link, resource result, int errcode, string matcheddn, string errmsg, array referrals)bool
ldap_read128(resource link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]])resource
ldap_rename128(resource link, string dn, string newrdn, string newparent, bool deleteoldrdn)bool
ldap_sasl_bind128(resource link [, string binddn, string password, string sasl_mech, string sasl_realm, string sasl_authz_id, string props])bool
ldap_search128(resource link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]])resource
ldap_set_option128(resource link, int option, mixed newval)bool
ldap_set_rebind_proc128(resource link, string callback)bool
ldap_sort128(resource link, resource result, string sortfilter)bool
ldap_start_tls128(resource link)bool
ldap_t61_to_8859128(string value)string
ldap_unbind128(resource link)bool
leak128(int num_bytes=3)void
levenshtein128(string str1, string str2[, int cost_ins, int cost_rep, int cost_del])int
libxml_clear_errors128()void
libxml_get_errors128()object
libxml_get_last_error128()object
libxml_set_streams_context128(resource streams_context)void
libxml_use_internal_errors128([boolean use_errors])void
linkinfo128(string filename)int
link128(string target, string link)int
locale_get_default128()string
locale_set_default128(string locale)bool
localeconv128()array
localtime128([int timestamp [, bool associative_array]])array
locateName128(string filename[, int flags])int
log10128(float number)float
log1p128(float number)float
log128(float number, [float base])float
long2ip128(int proper_address)string
lstat128(string filename)array
ltrim128(string str [, string character_mask])string
mail128(string to, string subject, string message [, string additional_headers [, string additional_parameters]])int
max128(mixed arg1 [, mixed arg2 [, mixed ...]])mixed
mb_check_encoding128([string var[, string encoding]])bool
mb_convert_case128(string sourcestring, int mode [, string encoding])string
mb_convert_encoding128(string str, string to-encoding [, mixed from-encoding])string
mb_convert_kana128(string str [, string option] [, string encoding])string
mb_convert_variables128(string to-encoding, mixed from-encoding [, mixed ...])string
mb_decode_mimeheader128(string string)string
mb_decode_numericentity128(string string, array convmap [, string encoding])string
mb_detect_encoding128(string str [, mixed encoding_list [, bool strict]])string
mb_encode_mimeheader128(string str [, string charset [, string transfer-encoding [, string linefeed [, int indent]]]])string
mb_encode_numericentity128(string string, array convmap [, string encoding])string
mb_ereg_match128(string pattern, string string [,string option])bool
mb_ereg_replace128(string pattern, string replacement, string string [, string option])string
mb_ereg_search_getpos128()int
mb_ereg_search_getregs128()array
mb_ereg_search_init128(string string [, string pattern[, string option]])bool
mb_ereg_search_pos128([string pattern[, string option]])array
mb_ereg_search_regs128([string pattern[, string option]])array
mb_ereg_search_setpos128(int position)bool
mb_ereg_search128([string pattern[, string option]])bool
mb_eregi_replace128(string pattern, string replacement, string string)string
mb_eregi128(string pattern, string string [, array registers])int
mb_ereg128(string pattern, string string [, array registers])int
mb_get_info128([string type])mixed
mb_http_input128([string type])mixed
mb_http_output128([string encoding])string
mb_internal_encoding128([string encoding])string
mb_language128([string language])string
mb_list_encodings_alias_names128([string encoding])array
mb_list_encodings128([string alias_encoding])mixed
mb_list_mime_names128([string encoding])mixed
mb_output_handler128(string contents, int status)string
mb_parse_str128(string encoded_string [, array result])bool
mb_preferred_mime_name128(string encoding)string
mb_regex_encoding128([string encoding])string
mb_regex_set_options128([string options])string
mb_send_mail128(string to, string subject, string message [, string additional_headers [, string additional_parameters]])int
mb_split128(string pattern, string string [, int limit])array
mb_strcut128(string str, int start [, int length [, string encoding]])string
mb_strimwidth128(string str, int start, int width [, string trimmarker [, string encoding]])string
mb_stripos128(string haystack, string needle [, int offset [, string encoding]])int
mb_stristr128(string haystack, string needle[, bool part[, string encoding]])string
mb_strlen128(string str [, string encoding])int
mb_strpos128(string haystack, string needle [, int offset [, string encoding]])int
mb_strrchr128(string haystack, string needle[, bool part[, string encoding]])string
mb_strrichr128(string haystack, string needle[, bool part[, string encoding]])string
mb_strripos128(string haystack, string needle [, int offset [, string encoding]])int
mb_strrpos128(string haystack, string needle [, int offset [, string encoding]])int
mb_strstr128(string haystack, string needle[, bool part[, string encoding]])string
mb_strtolower128(string sourcestring [, string encoding])string
mb_strtoupper128(string sourcestring [, string encoding])string
mb_strwidth128(string str [, string encoding])int
mb_substitute_character128([mixed substchar])mixed
mb_substr_count128(string haystack, string needle [, string encoding])int
mb_substr128(string str, int start [, int length [, string encoding]])string
mcrypt_cbc128(int cipher, string key, string data, int mode, string iv)string
mcrypt_cfb128(int cipher, string key, string data, int mode, string iv)string
mcrypt_create_iv128(int size, int source)binary
mcrypt_decrypt128(string cipher, string key, string data, string mode, string iv)string
mcrypt_ecb128(int cipher, string key, string data, int mode, string iv)string
mcrypt_enc_get_algorithms_name128(resource td)string
mcrypt_enc_get_block_size128(resource td)int
mcrypt_enc_get_iv_size128(resource td)int
mcrypt_enc_get_key_size128(resource td)int
mcrypt_enc_get_modes_name128(resource td)string
mcrypt_enc_get_supported_key_sizes128(resource td)array
mcrypt_enc_is_block_algorithm_mode128(resource td)bool
mcrypt_enc_is_block_algorithm128(resource td)bool
mcrypt_enc_is_block_mode128(resource td)bool
mcrypt_enc_self_test128(resource td)int
mcrypt_encrypt128(string cipher, string key, string data, string mode, string iv)string
mcrypt_generic_deinit128(resource td)bool
mcrypt_generic_init128(resource td, binary key, binary iv)int
mcrypt_generic128(resource td, binary data)binary
mcrypt_get_block_size128(string cipher, string module)int
mcrypt_get_cipher_name128(string cipher)string
mcrypt_get_iv_size128(string cipher, string module)int
mcrypt_get_key_size128(string cipher, string module)int
mcrypt_list_algorithms128([string lib_dir])array
mcrypt_list_modes128([string lib_dir])array
mcrypt_module_close128(resource td)bool
mcrypt_module_get_algo_block_size128(string algorithm [, string lib_dir])int
mcrypt_module_get_algo_key_size128(string algorithm [, string lib_dir])int
mcrypt_module_get_supported_key_sizes128(string algorithm [, string lib_dir])array
mcrypt_module_is_block_algorithm_mode128(string mode [, string lib_dir])bool
mcrypt_module_is_block_algorithm128(string algorithm [, string lib_dir])bool
mcrypt_module_is_block_mode128(string mode [, string lib_dir])bool
mcrypt_module_open128(string cipher, string cipher_directory, string mode, string mode_directory)resource
mcrypt_module_self_test128(string algorithm [, string lib_dir])bool
mcrypt_ofb128(int cipher, string key, string data, int mode, string iv)string
md5_file128(string filename [, bool raw_output])string
md5128(string str, [ bool raw_output])string
mdecrypt_generic128(resource td, binary data)binary
memory_get_peak_usage128([real_usage])int
memory_get_usage128([real_usage])int
metaphone128(string text[, int phones])string
method_exists128(object object, string method)bool
mhash_count128()int
mhash_get_block_size128(int hash)int
mhash_get_hash_name128(int hash)string
mhash_get_keygen_name128(int keygen)string
mhash_get_keygen_salt_size128(int keygen)bool
mhash_keygen_count128()int
mhash_keygen_s2k128(int hash, binary input_password, binary salt, int bytes)binary
mhash_keygen_uses_count128(int keygen)bool
mhash_keygen_uses_hash128(int keygen)bool
mhash_keygen_uses_salt128(int keygen)bool
mhash_keygen128(int type, int hash1, int hash2, binary password[, binary salt[, int max_key_size = 128[, int bytes_count = 0]])binary
mhash128(int hash, binary data [, binary key])binary
microtime128([bool get_as_float])mixed
mime_content_type128(string filename|resource stream)string
ming_keypress128(string str)int
ming_setscale128(int scale)void
ming_useconstants128(int use)void
ming_useswfversion128(int version)void
min128(mixed arg1 [, mixed arg2 [, mixed ...]])mixed
mkdir128(string pathname [, int mode [, bool recursive [, resource context]]])bool
mktime128([int hour [, int min [, int sec [, int mon [, int day [, int year]]]]]])int
money_format128(string format , float value)string
move_uploaded_file128(string path, string new_path)bool
msg_get_queue128(int key [, int perms])resource
msg_receive128(resource queue, int desiredmsgtype, int &msgtype, int maxsize, mixed message [, bool unserialize=true [, int flags=0 [, int errorcode]]])mixed
msg_remove_queue128(resource queue)bool
msg_send128(resource queue, int msgtype, mixed message [, bool serialize=true [, bool blocking=true [, int errorcode]]])bool
msg_set_queue128(resource queue, array data)bool
msg_stat_queue128(resource queue)array
msql_affected_rows128(resource query)int
msql_close128([resource link_identifier])bool
msql_connect128([string hostname[:port]] [, string username] [, string password])int
msql_create_db128(string database_name [, resource link_identifier])bool
msql_data_seek128(resource query, int row_number)bool
msql_db_query128(string database_name, string query [, resource link_identifier])resource
msql_drop_db128(string database_name [, resource link_identifier])bool
msql_error128()string
msql_fetch_array128(resource query [, int result_type])array
msql_fetch_field128(resource query [, int field_offset])object
msql_fetch_object128(resource query [, resource result_type])object
msql_fetch_row128(resource query)array
msql_field_flags128(resource query, int field_offset)string
msql_field_len128(int query, int field_offet)int
msql_field_name128(resource query, int field_index)string
msql_field_seek128(resource query, int field_offset)bool
msql_field_table128(resource query, int field_offset)string
msql_field_type128(resource query, int field_offset)string
msql_free_result128(resource query)bool
msql_list_dbs128([resource link_identifier])resource
msql_list_fields128(string database_name, string table_name [, resource link_identifier])resource
msql_list_tables128(string database_name [, resource link_identifier])resource
msql_num_fields128(resource query)int
msql_num_rows128(resource query)int
msql_pconnect128([string hostname[:port]] [, string username] [, string password])int
msql_query128(string query [, resource link_identifier])resource
msql_result128(int query, int row [, mixed field])string
msql_select_db128(string database_name [, resource link_identifier])bool
mssql_bind128(resource stmt, string param_name, mixed var, int type [, int is_output [, int is_null [, int maxlen]]])bool
mssql_close128([resource conn_id])bool
mssql_connect128([string servername [, string username [, string password [, bool new_link]]]])int
mssql_data_seek128(resource result_id, int offset)bool
mssql_execute128(resource stmt [, bool skip_results = false])mixed
mssql_fetch_array128(resource result_id [, int result_type])array
mssql_fetch_assoc128(resource result_id)array
mssql_fetch_batch128(resource result_index)int
mssql_fetch_field128(resource result_id [, int offset])object
mssql_fetch_object128(resource result_id [, int result_type])object
mssql_fetch_row128(resource result_id)array
mssql_field_length128(resource result_id [, int offset])int
mssql_field_name128(resource result_id [, int offset])string
mssql_field_seek128(int result_id, int offset)bool
mssql_field_type128(resource result_id [, int offset])string
mssql_free_result128(resource result_index)bool
mssql_free_statement128(resource result_index)bool
mssql_get_last_message128()string
mssql_guid_string128(string binary [,int short_format])string
mssql_init128(string sp_name [, resource conn_id])int
mssql_min_error_severity128(int severity)void
mssql_min_message_severity128(int severity)void
mssql_next_result128(resource result_id)bool
mssql_num_fields128(resource mssql_result_index)int
mssql_num_rows128(resource mssql_result_index)int
mssql_pconnect128([string servername [, string username [, string password [, bool new_link]]]])int
mssql_query128(string query [, resource conn_id [, int batch_size]])resource
mssql_result128(resource result_id, int row, mixed field)string
mssql_rows_affected128(resource conn_id)int
mssql_select_db128(string database_name [, resource conn_id])bool
mt_getrandmax128()int
mt_rand128([int min, int max])int
mt_srand128([int seed])void
mysql_affected_rows128([int link_identifier])int
mysql_client_encoding128([int link_identifier])string
mysql_close128([int link_identifier])bool
mysql_connect128([string hostname[:port][:/path/to/socket] [, string username [, string password [, bool new [, int flags]]]]])resource
mysql_create_db128(string database_name [, int link_identifier])bool
mysql_data_seek128(resource result, int row_number)bool
mysql_db_query128(string database_name, string query [, int link_identifier])resource
mysql_drop_db128(string database_name [, int link_identifier])bool
mysql_errno128([int link_identifier])int
mysql_error128([int link_identifier])string
mysql_escape_string128(string to_be_escaped)string
mysql_fetch_array128(resource result [, int result_type])array
mysql_fetch_assoc128(resource result)array
mysql_fetch_field128(resource result [, int field_offset])object
mysql_fetch_lengths128(resource result)array
mysql_fetch_object128(resource result [, string class_name [, NULL|array ctor_params]])object
mysql_fetch_row128(resource result)array
mysql_field_flags128(resource result, int field_offset)string
mysql_field_len128(resource result, int field_offset)int
mysql_field_name128(resource result, int field_index)string
mysql_field_seek128(resource result, int field_offset)bool
mysql_field_table128(resource result, int field_offset)string
mysql_field_type128(resource result, int field_offset)string
mysql_free_result128(resource result)bool
mysql_get_client_info128()string
mysql_get_host_info128([int link_identifier])string
mysql_get_proto_info128([int link_identifier])int
mysql_get_server_info128([int link_identifier])string
mysql_info128([int link_identifier])string
mysql_insert_id128([int link_identifier])int
mysql_list_dbs128([int link_identifier])resource
mysql_list_fields128(string database_name, string table_name [, int link_identifier])resource
mysql_list_processes128([int link_identifier])resource
mysql_list_tables128(string database_name [, int link_identifier])resource
mysql_num_fields128(resource result)int
mysql_num_rows128(resource result)int
mysql_pconnect128([string hostname[:port][:/path/to/socket] [, string username [, string password [, int flags]]]])resource
mysql_ping128([int link_identifier])bool
mysql_query128(string query [, int link_identifier])resource
mysql_real_escape_string128(string to_be_escaped [, int link_identifier])string
mysql_result128(resource result, int row [, mixed field])mixed
mysql_select_db128(string database_name [, int link_identifier])bool
mysql_set_charset128(string csname [, int link_identifier])bool
mysql_stat128([int link_identifier])string
mysql_thread_id128([int link_identifier])int
mysql_unbuffered_query128(string query [, int link_identifier])resource
mysqli_affected_rows128(object link)mixed
mysqli_autocommit128(object link, bool mode)bool
mysqli_change_user128(object link, string user, string password, string database)bool
mysqli_character_set_name128(object link)string
mysqli_close128(object link)bool
mysqli_commit128(object link)bool
mysqli_connect_errno128()int
mysqli_connect_error128()string
mysqli_connect128([string hostname [,string username [,string passwd [,string dbname [,int port [,string socket]]]]]])object
mysqli_data_seek128(object result, int offset)bool
mysqli_debug128(string debug)void
mysqli_disable_reads_from_master128(object link)void
mysqli_disable_rpl_parse128(object link)void
mysqli_dump_debug_info128(object link)bool
mysqli_embedded_server_end128()void
mysqli_embedded_server_start128(bool start, array arguments, array groups)bool
mysqli_enable_reads_from_master128(object link)void
mysqli_enable_rpl_parse128(object link)void
mysqli_errno128(object link)int
mysqli_error128(object link)string
mysqli_field_count128(object link)int
mysqli_field_seek128(object result, int fieldnr)int
mysqli_field_tell128(object result)int
mysqli_free_result128(object result)void
mysqli_get_charset128(object link)object
mysqli_get_client_info128()string
mysqli_get_client_version128()int
mysqli_get_proto_info128(object link)int
mysqli_get_server_info128(object link)string
mysqli_get_server_version128(object link)int
mysqli_get_warnings128(object link)object
mysqli_info128(object link)string
mysqli_init128()resource
mysqli_insert_id128(object link)mixed
mysqli_kill128(object link, int processid)bool
mysqli_master_query128(object link, string query)bool
mysqli_more_results128(object link)bool
mysqli_multi_query128(object link, string query)bool
mysqli_next_result128(object link)bool
mysqli_num_fields128(object result)int
mysqli_num_rows128(object result)mixed
mysqli_options128(object link, int flags, mixed values)bool
mysqli_ping128(object link)bool
mysqli_prepare128(object link, string query)mixed
mysqli_query128(object link, string query [,int resultmode])mixed
mysqli_real_connect128(object link [,string hostname [,string username [,string passwd [,string dbname [,int port [,string socket [,int flags]]]]]]])bool
mysqli_real_escape_string128(object link, string escapestr)string
mysqli_real_query128(object link, string query)bool
mysqli_report128(int flags)bool
mysqli_rollback128(object link)bool
mysqli_rpl_parse_enabled128(object link)int
mysqli_rpl_probe128(object link)bool
mysqli_rpl_query_type128(string query)int
mysqli_select_db128(object link, string dbname)bool
mysqli_send_query128(object link, string query)bool
mysqli_set_charset128(object link, string csname)bool
mysqli_set_local_infile_default128(object link)void
mysqli_set_local_infile_handler128(object link, callback read_func)bool
mysqli_slave_query128(object link, string query)bool
mysqli_sqlstate128(object link)string
mysqli_ssl_set128(object link ,string key ,string cert ,string ca ,string capath ,string cipher])bool
mysqli_stat128(object link)mixed
mysqli_stmt_affected_rows128(object stmt)mixed
mysqli_stmt_attr_get128(object stmt, long attr)int
mysqli_stmt_attr_set128(object stmt, long attr, long mode)int
mysqli_stmt_bind_param128(object stmt, string types, mixed variable [,mixed,....])bool
mysqli_stmt_bind_result128(object stmt, mixed var, [,mixed, ...])bool
mysqli_stmt_close128(object stmt)bool
mysqli_stmt_data_seek128(object stmt, int offset)void
mysqli_stmt_errno128(object stmt)int
mysqli_stmt_error128(object stmt)string
mysqli_stmt_execute128(object stmt)bool
mysqli_stmt_fetch128(object stmt)mixed
mysqli_stmt_field_count128(object stmt)int
mysqli_stmt_free_result128(object stmt)void
mysqli_stmt_get_warnings128(object link)object
mysqli_stmt_init128(object link)mixed
mysqli_stmt_insert_id128(object stmt)mixed
mysqli_stmt_num_rows128(object stmt)mixed
mysqli_stmt_param_count128(object stmt)int
mysqli_stmt_prepare128(object stmt, string query)bool
mysqli_stmt_reset128(object stmt)bool
mysqli_stmt_result_metadata128(object stmt)mixed
mysqli_stmt_send_long_data128(object stmt, int param_nr, string data)bool
mysqli_stmt_sqlstate128(object stmt)string
mysqli_stmt_store_result128(stmt)bool
mysqli_store_result128(object link)object
mysqli_thread_id128(object link)int
mysqli_thread_safe128()bool
mysqli_use_result128(object link)mixed
natcasesort128(array &array_arg)void
natsort128(array &array_arg)void
next128(array array_arg)mixed
ngettext128(string msgid1, string msgid2, int count)binary
nl2br128(string str)string
nl_langinfo128(int item)string
nsapi_request_headers128()array
nsapi_response_headers128()array
nsapi_virtual128(string uri)bool
number_format128(float number [, int num_decimal_places [, string dec_seperator, string thousands_seperator]])string
ob_clean128()bool
ob_end_clean128()bool
ob_end_flush128()bool
ob_flush128()bool
ob_get_clean128()bool
ob_get_contents128()string
ob_get_flush128()bool
ob_get_length128()int
ob_get_level128()int
ob_implicit_flush128([int flag])void
ob_start128([string|array user_function [, int chunk_size [, int flags]]])bool
oci_bind_array_by_name128(resource stmt, string name, array &var, int max_table_length [, int max_item_length [, int type ]])bool
oci_bind_by_name128(resource stmt, string name, mixed &var, [, int maxlength [, int type]])bool
oci_cancel128(resource stmt)bool
oci_close128(resource connection)bool
oci_collection_append128(string value)bool
oci_collection_assign128(object from)bool
oci_collection_element_assign128(int index, string val)bool
oci_collection_element_get128(int ndx)string
oci_collection_max128()int
oci_collection_size128()int
oci_collection_trim128(int num)bool
oci_commit128(resource connection)bool
oci_connect128(string user, string pass [, string db [, string charset [, int session_mode ]])resource
oci_define_by_name128(resource stmt, string name, mixed &var [, int type])bool
oci_error128([resource stmt|connection|global])array
oci_execute128(resource stmt [, int mode])bool
oci_fetch_all128(resource stmt, array &output[, int skip[, int maxrows[, int flags]]])int
oci_fetch_array128( resource stmt [, int mode ])array
oci_fetch_assoc128( resource stmt )array
oci_fetch_object128( resource stmt )object
oci_fetch_row128( resource stmt )array
oci_fetch128(resource stmt)bool
oci_field_is_null128(resource stmt, int col)bool
oci_field_name128(resource stmt, int col)string
oci_field_precision128(resource stmt, int col)int
oci_field_scale128(resource stmt, int col)int
oci_field_size128(resource stmt, int col)int
oci_field_type_raw128(resource stmt, int col)int
oci_field_type128(resource stmt, int col)mixed
oci_free_collection128()bool
oci_free_descriptor128()bool
oci_free_statement128(resource stmt)bool
oci_internal_debug128(int onoff)void
oci_lob_append128( object lob )bool
oci_lob_close128()bool
oci_lob_copy128( object lob_to, object lob_from [, int length ] )bool
oci_lob_eof128()bool
oci_lob_erase128( [ int offset [, int length ] ] )int
oci_lob_export128([string filename [, int start [, int length]]])bool
oci_lob_flush128( [ int flag ] )bool
oci_lob_import128( string filename )bool
oci_lob_is_equal128( object lob1, object lob2 )bool
oci_lob_load128()string
oci_lob_read128( int length )string
oci_lob_rewind128()bool
oci_lob_save128( string data [, int offset ])bool
oci_lob_seek128( int offset [, int whence ])bool
oci_lob_size128()int
oci_lob_tell128()int
oci_lob_truncate128( [ int length ])bool
oci_lob_write_temporary128(string var [, int lob_type])bool
oci_lob_write128( string string [, int length ])int
oci_new_collection128(resource connection, string tdo [, string schema])object
oci_new_connect128(string user, string pass [, string db])resource
oci_new_cursor128(resource connection)resource
oci_new_descriptor128(resource connection [, int type])object
oci_num_fields128(resource stmt)int
oci_num_rows128(resource stmt)int
oci_parse128(resource connection, string query)resource
oci_password_change128(resource connection, string username, string old_password, string new_password)bool
oci_pconnect128(string user, string pass [, string db [, string charset ]])resource
oci_result128(resource stmt, mixed column)string
oci_rollback128(resource connection)bool
oci_server_version128(resource connection)string
oci_set_prefetch128(resource stmt, int prefetch_rows)bool
oci_statement_type128(resource stmt)string
ocifetchinto128(resource stmt, array &output [, int mode])int
ocigetbufferinglob128()bool
ocisetbufferinglob128( boolean flag )bool
octdec128(string octal_number)int
odbc_autocommit128(resource connection_id [, int OnOff])mixed
odbc_binmode128(int result_id, int mode)bool
odbc_close_all128()void
odbc_close128(resource connection_id)void
odbc_columnprivileges128(resource connection_id, string catalog, string schema, string table, string column)resource
odbc_columns128(resource connection_id [, string qualifier [, string owner [, string table_name [, string column_name]]]])resource
odbc_commit128(resource connection_id)bool
odbc_connect128(string DSN, string user, string password [, int cursor_option])resource
odbc_cursor128(resource result_id)string
odbc_data_source128(resource connection_id, int fetch_type)array
odbc_errormsg128([resource connection_id])string
odbc_error128([resource connection_id])string
odbc_execute128(resource result_id [, array parameters_array])bool
odbc_exec128(resource connection_id, string query [, int flags])resource
odbc_fetch_array128(int result [, int rownumber])array
odbc_fetch_into128(resource result_id, array result_array, [, int rownumber])int
odbc_fetch_object128(int result [, int rownumber])object
odbc_fetch_row128(resource result_id [, int row_number])bool
odbc_field_len128(resource result_id, int field_number)int
odbc_field_name128(resource result_id, int field_number)string
odbc_field_num128(resource result_id, string field_name)int
odbc_field_scale128(resource result_id, int field_number)int
odbc_field_type128(resource result_id, int field_number)string
odbc_foreignkeys128(resource connection_id, string pk_qualifier, string pk_owner, string pk_table, string fk_qualifier, string fk_owner, string fk_table)resource
odbc_free_result128(resource result_id)bool
odbc_gettypeinfo128(resource connection_id [, int data_type])resource
odbc_longreadlen128(int result_id, int length)bool
odbc_next_result128(resource result_id)bool
odbc_num_fields128(resource result_id)int
odbc_num_rows128(resource result_id)int
odbc_pconnect128(string DSN, string user, string password [, int cursor_option])resource
odbc_prepare128(resource connection_id, string query)resource
odbc_primarykeys128(resource connection_id, string qualifier, string owner, string table)resource
odbc_procedurecolumns128(resource connection_id [, string qualifier, string owner, string proc, string column])resource
odbc_procedures128(resource connection_id [, string qualifier, string owner, string name])resource
odbc_result_all128(resource result_id [, string format])int
odbc_result128(resource result_id, mixed field)mixed
odbc_rollback128(resource connection_id)bool
odbc_setoption128(resource conn_id|result_id, int which, int option, int value)bool
odbc_specialcolumns128(resource connection_id, int type, string qualifier, string owner, string table, int scope, int nullable)resource
odbc_statistics128(resource connection_id, string qualifier, string owner, string name, int unique, int accuracy)resource
odbc_tableprivileges128(resource connection_id, string qualifier, string owner, string name)resource
odbc_tables128(resource connection_id [, string qualifier [, string owner [, string name [, string table_types]]]])resource
opendir128(string path[, resource context])mixed
openlog128(string ident, int option, int facility)bool
openssl_csr_export_to_file128(resource csr, string outfilename [, bool notext=true])bool
openssl_csr_export128(resource csr, string &out [, bool notext=true])bool
openssl_csr_get_public_key128(mixed csr)mixed
openssl_csr_get_subject128(mixed csr)mixed
openssl_csr_new128(array dn, resource &privkey [, array configargs, array extraattribs])bool
openssl_csr_sign128(mixed csr, mixed x509, mixed priv_key, long days [, array config_args [, long serial]])resource
openssl_error_string128()mixed
openssl_open128(string data, &string opendata, string ekey, mixed privkey)bool
openssl_pkcs12_export_to_file128(mixed x509, string filename, mixed priv_key, string pass[, array args])bool
openssl_pkcs12_export128(mixed x509, string &out, mixed priv_key, string pass[, array args])bool
openssl_pkcs12_read128(string PKCS12, array &certs, string pass)bool
openssl_pkcs7_decrypt128(string infilename, string outfilename, mixed recipcert [, mixed recipkey])bool
openssl_pkcs7_encrypt128(string infile, string outfile, mixed recipcerts, array headers [, long flags [, long cipher]])bool
openssl_pkcs7_sign128(string infile, string outfile, mixed signcert, mixed signkey, array headers [, long flags [, string extracertsfilename]])bool
openssl_pkcs7_verify128(string filename, long flags [, string signerscerts [, array cainfo [, string extracerts [, string content]]]])bool
openssl_pkey_export_to_file128(mixed key, string outfilename [, string passphrase, array config_args)bool
openssl_pkey_export128(mixed key, &mixed out [, string passphrase [, array config_args]])bool
openssl_pkey_free128(int key)void
openssl_pkey_get_details128(resource key)resource
openssl_pkey_get_private128(string key [, string passphrase])int
openssl_pkey_get_public128(mixed cert)int
openssl_pkey_new128([array configargs])resource
openssl_private_decrypt128(string data, string decrypted, mixed key [, int padding])bool
openssl_private_encrypt128(string data, string crypted, mixed key [, int padding])bool
openssl_public_decrypt128(string data, string crypted, resource key [, int padding])bool
openssl_public_encrypt128(string data, string crypted, mixed key [, int padding])bool
openssl_seal128(string data, &string sealdata, &array ekeys, array pubkeys)int
openssl_sign128(string data, &string signature, mixed key[, int signature_alg])bool
openssl_verify128(string data, string signature, mixed key [, int signature_algo])int
openssl_x509_check_private_key128(mixed cert, mixed key)bool
openssl_x509_checkpurpose128(mixed x509cert, int purpose, array cainfo [, string untrustedfile])int
openssl_x509_export_to_file128(mixed x509, string outfilename [, bool notext = true])bool
openssl_x509_export128(mixed x509, string &out [, bool notext = true])bool
openssl_x509_free128(resource x509)void
openssl_x509_parse128(mixed x509 [, bool shortnames=true])array
openssl_x509_read128(mixed cert)resource
open128(string source [, int flags])mixed
ord128(string character)int
output_add_rewrite_var128(string name, string value)bool
output_reset_rewrite_vars128()bool
pack128(string format, mixed arg1 [, mixed arg2 [, mixed ...]])string
parse_ini_file128(string filename [, bool process_sections])array
parse_str128(string encoded_string [, array result])void
parse_url128(string url, [int url_component])mixed
passthru128(string command [, int &return_value])void
pathinfo128(string path[, int options])array
pclose128(resource fp)int
pcntl_alarm128(int seconds)int
pcntl_exec128(string path [, array args [, array envs]])bool
pcntl_fork128()int
pcntl_getpriority128([int pid [, int process_identifier]])int
pcntl_setpriority128(int priority [, int pid [, int process_identifier]])bool
pcntl_signal128(int signo, callback handle [, bool restart_syscalls])bool
pcntl_waitpid128(int pid, int &status, int options)int
pcntl_wait128(int &status)int
pcntl_wexitstatus128(int status)int
pcntl_wifexited128(int status)bool
pcntl_wifsignaled128(int status)bool
pcntl_wifstopped128(int status)bool
pcntl_wstopsig128(int status)int
pcntl_wtermsig128(int status)int
pdo_drivers128()array
pdo_drivers128()array
pfsockopen128(string hostname, int port [, int errno [, string errstr [, float timeout]]])resource
pg_affected_rows128(resource result)int
pg_cancel_query128(resource connection)bool
pg_client_encoding128([resource connection])string
pg_close128([resource connection])bool
pg_connection_busy128(resource connection)bool
pg_connection_reset128(resource connection)bool
pg_connection_status128(resource connnection)int
pg_connect128(string connection_string[, int connect_type] | [string host, string port [, string options [, string tty,]]] string database)resource
pg_convert128(resource db, string table, array values[, int options])array
pg_copy_from128(resource connection, string table_name , array rows [, string delimiter [, string null_as]])bool
pg_copy_to128(resource connection, string table_name [, string delimiter [, string null_as]])array
pg_dbname128([resource connection])string
pg_delete128(resource db, string table, array ids[, int options])mixed
pg_end_copy128([resource connection])bool
pg_escape_bytea128([resource connection,] string data)string
pg_escape_string128([resource connection,] string data)string
pg_execute128([resource connection,] string stmtname, array params)resource
pg_fetch_all_columns128(resource result [, int column_number])array
pg_fetch_all128(resource result)array
pg_fetch_array128(resource result [, int row [, int result_type]])array
pg_fetch_assoc128(resource result [, int row])array
pg_fetch_object128(resource result [, int row [, string class_name [, NULL|array ctor_params]]])object
pg_fetch_result128(resource result, [int row_number,] mixed field_name)mixed
pg_fetch_row128(resource result [, int row [, int result_type]])array
pg_field_is_null128(resource result, [int row,] mixed field_name_or_number)int
pg_field_name128(resource result, int field_number)string
pg_field_num128(resource result, string field_name)int
pg_field_prtlen128(resource result, [int row,] mixed field_name_or_number)int
pg_field_size128(resource result, int field_number)int
pg_field_table128(resource result, int field_number[, bool oid_only])mixed
pg_field_type_oid128(resource result, int field_number)string
pg_field_type128(resource result, int field_number)string
pg_free_result128(resource result)bool
pg_get_notify128([resource connection[, result_type]])array
pg_get_pid128([resource connection)int
pg_get_result128(resource connection)resource
pg_host128([resource connection])string
pg_insert128(resource db, string table, array values[, int options])mixed
pg_last_error128([resource connection])string
pg_last_notice128(resource connection)string
pg_last_oid128(resource result)string
pg_lo_close128(resource large_object)bool
pg_lo_create128([resource connection])int
pg_lo_export128([resource connection, ] int objoid, string filename)bool
pg_lo_import128([resource connection, ] string filename)int
pg_lo_open128([resource connection,] int large_object_oid, string mode)resource
pg_lo_read_all128(resource large_object)int
pg_lo_read128(resource large_object [, int len])string
pg_lo_seek128(resource large_object, int offset [, int whence])bool
pg_lo_tell128(resource large_object)int
pg_lo_unlink128([resource connection,] string large_object_oid)bool
pg_lo_write128(resource large_object, string buf [, int len])int
pg_meta_data128(resource db, string table)array
pg_num_fields128(resource result)int
pg_num_rows128(resource result)int
pg_options128([resource connection])string
pg_pconnect128(string connection_string | [string host, string port [, string options [, string tty,]]] string database)resource
pg_ping128([resource connection])bool
pg_port128([resource connection])int
pg_prepare128([resource connection,] string stmtname, string query)resource
pg_put_line128([resource connection,] string query)bool
pg_query_params128([resource connection,] string query, array params)resource
pg_query128([resource connection,] string query)resource
pg_result_error_field128(resource result, int fieldcode)string
pg_result_error128(resource result)string
pg_result_seek128(resource result, int offset)bool
pg_result_status128(resource result[, long result_type])mixed
pg_select128(resource db, string table, array ids[, int options])mixed
pg_send_execute128(resource connection, string stmtname, array params)bool
pg_send_prepare128(resource connection, string stmtname, string query)bool
pg_send_query_params128(resource connection, string query)bool
pg_send_query128(resource connection, string query)bool
pg_set_client_encoding128([resource connection,] string encoding)int
pg_set_error_verbosity128([resource connection,] int verbosity)int
pg_trace128(string filename [, string mode [, resource connection]])bool
pg_transaction_status128(resource connnection)int
pg_tty128([resource connection])string
pg_unescape_bytea128(string data)string
pg_untrace128([resource connection])bool
pg_update128(resource db, string table, array fields, array ids[, int options])mixed
pg_version128([resource connection])array
php_egg_logo_guid128()string
php_ini_loaded_file128()string
php_ini_scanned_files128()string
php_logo_guid128()string
php_real_logo_guid128()string
php_sapi_name128()string
php_snmpv3128(INTERNAL_FUNCTION_PARAMETERS, int st)void
php_strip_whitespace128(string file_name)string
php_uname128()string
phpcredits128([int flag])void
phpinfo128([int what])void
phpversion128([string extension])string
pi128()float
popen128(string command, string mode)resource
posix_access128(string file [, int mode])bool
posix_ctermid128()string
posix_get_last_error128()int
posix_getcwd128()string
posix_getegid128()int
posix_geteuid128()int
posix_getgid128()int
posix_getgrgid128(long gid)array
posix_getgrnam128(string groupname)array
posix_getgroups128()array
posix_getlogin128()string
posix_getpgid128()int
posix_getpgrp128()int
posix_getpid128()int
posix_getppid128()int
posix_getpwnam128(string groupname)array
posix_getpwuid128(long uid)array
posix_getrlimit128()array
posix_getsid128()int
posix_getuid128()int
posix_initgroups128(string name, int base_group_id)bool
posix_isatty128(int fd)bool
posix_kill128(int pid, int sig)bool
posix_mkfifo128(string pathname, int mode)bool
posix_mknod128(string pathname, int mode [, int major [, int minor]])bool
posix_setegid128(int uid)bool
posix_seteuid128(int uid)bool
posix_setgid128(int uid)bool
posix_setpgid128(int pid, int pgid)bool
posix_setsid128()int
posix_setuid128(int uid)bool
posix_strerror128(int errno)string
posix_times128()array
posix_ttyname128(int fd)string
posix_uname128()array
pow128(number base, number exponent)number
preg_grep128(string regex, array input [, int flags])array
preg_last_error128()int
preg_match_all128(string pattern, string subject, array subpatterns [, int flags [, int offset]])int
preg_match128(string pattern, string subject [, array subpatterns [, int flags [, int offset]]])int
preg_quote128(string str [, string delim_char])string
preg_replace_callback128(mixed regex, mixed callback, mixed subject [, int limit [, count]])string
preg_replace128(mixed regex, mixed replace, mixed subject [, int limit [, count]])string
preg_split128(string pattern, string subject [, int limit [, int flags]])array
prev128(array array_arg)mixed
print_r128(mixed var [, bool return])mixed
printf128(string format [, mixed arg1 [, mixed ...]])int
proc_close128(resource process)int
proc_get_status128(resource process)array
proc_nice128(int priority)bool
proc_open128(string command, array descriptorspec, array &pipes [, string cwd [, array env [, array other_options]]])resource
proc_terminate128(resource process [, long signal])bool
property_exists128(mixed object_or_class, string property_name)bool
pspell_add_to_personal128(int pspell, string word)bool
pspell_add_to_session128(int pspell, string word)bool
pspell_check128(int pspell, string word)bool
pspell_clear_session128(int pspell)bool
pspell_config_create128(string language [, string spelling [, string jargon [, string encoding]]])int
pspell_config_data_dir128(int conf, string directory)bool
pspell_config_dict_dir128(int conf, string directory)bool
pspell_config_ignore128(int conf, int ignore)bool
pspell_config_mode128(int conf, long mode)bool
pspell_config_personal128(int conf, string personal)bool
pspell_config_repl128(int conf, string repl)bool
pspell_config_runtogether128(int conf, bool runtogether)bool
pspell_config_save_repl128(int conf, bool save)bool
pspell_new_config128(int config)int
pspell_new_personal128(string personal, string language [, string spelling [, string jargon [, string encoding [, int mode]]]])int
pspell_new128(string language [, string spelling [, string jargon [, string encoding [, int mode]]]])int
pspell_save_wordlist128(int pspell)bool
pspell_store_replacement128(int pspell, string misspell, string correct)bool
pspell_suggest128(int pspell, string word)array
putenv128(string setting)bool
quoted_printable_decode128(string str)binary
quotemeta128(string str)string
rad2deg128(float number)float
rand128([int min, int max])int
range128(mixed low, mixed high[, int step])array
rawurldecode128(binary str)binary
rawurlencode128(binary str)binary
readdir128([resource dir_handle])string
readfile128(string filename [, int flags[, resource context]])int
readgzfile128(string filename [, int use_include_path])int
readline_add_history128([string prompt])bool
readline_callback_handler_install128(string prompt, mixed callback)void
readline_callback_handler_remove128()bool
readline_callback_read_char128()void
readline_clear_history128()bool
readline_completion_function128(string funcname)bool
readline_info128([string varname] [, string newvalue])mixed
readline_list_history128()array
readline_on_new_line128()void
readline_read_history128([string filename] [, int from] [,int to])bool
readline_redisplay128()void
readline_write_history128([string filename])bool
readline128([string prompt])string
readlink128(string filename)string
realpath128(string path)string
recode_file128(string request, resource input, resource output)bool
recode_string128(string request, string str)string
register_shutdown_function128(string function_name)void
register_tick_function128(string function_name [, mixed arg [, mixed ... ]])bool
renameIndex128(int index, string new_name)bool
renameName128(string name, string new_name)bool
rename128(string old_name, string new_name[, resource context])bool
reset128(array array_arg)mixed
restore_error_handler128()void
restore_exception_handler128()void
restore_include_path128()void
rewinddir128([resource dir_handle])void
rewind128(resource fp)bool
rmdir128(string dirname[, resource context])bool
round128(float number [, int precision])float
rsort128(array &array_arg [, int sort_flags])bool
rtrim128(string str [, string character_mask])string
scandir128(string dir [, int sorting_order [, resource context]])array
sem_acquire128(resource id)bool
sem_get128(int key [, int max_acquire [, int perm [, int auto_release]])resource
sem_release128(resource id)bool
sem_remove128(resource id)bool
serialize128(mixed variable)string
session_cache_expire128([int new_cache_expire])int
session_cache_limiter128([string new_cache_limiter])string
session_decode128(string data)bool
session_destroy128()bool
session_encode128()string
session_get_cookie_params128()array
session_id128([string newid])string
session_module_name128([string newname])string
session_name128([string newname])string
session_regenerate_id128([bool delete_old_session])bool
session_save_path128([string newname])string
session_set_cookie_params128(int lifetime [, string path [, string domain [, bool secure[, bool httponly]]]])void
session_set_save_handler128(string open, string close, string read, string write, string destroy, string gc)void
session_start128()bool
session_unset128()void
session_write_close128()void
setArchiveComment128(string name, string comment)bool
setCommentIndex128(int index, string comment)bool
setCommentName128(string name, string comment)bool
set_error_handler128(string error_handler [, int error_types])string
set_exception_handler128(callable exception_handler)string
set_include_path128(string new_include_path)string
set_time_limit128(int seconds)bool
setcookie128(string name [, string value [, int expires [, string path [, string domain [, bool secure[, bool httponly]]]]]])bool
setlocale128(mixed category, string locale [, string ...])string
setrawcookie128(string name [, string value [, int expires [, string path [, string domain [, bool secure[, bool httponly]]]]]])bool
settype128(mixed var, string type)bool
sha1_file128(string filename [, bool raw_output])string
sha1128(string str [, bool raw_output])string
shell_exec128(string cmd)string
shm_attach128(int key [, int memsize [, int perm]])resource
shm_detach128(resource shm_identifier)bool
shm_get_var128(resource id, int variable_key)mixed
shm_has_var128(resource id, int variable_key)bool
shm_put_var128(resource shm_identifier, int variable_key, mixed variable)bool
shm_remove_var128(resource id, int variable_key)bool
shm_remove128(resource shm_identifier)bool
shuffle128(array array_arg)bool
similar_text128(string str1, string str2 [, float percent])int
simplexml_import_dom128(domNode node [, string class_name])simplemxml_element
simplexml_load_file128(string filename [, string class_name [, int options [, string ns [, bool is_prefix]]]])simplemxml_element
simplexml_load_string128(string data [, string class_name [, int options [, string ns [, bool is_prefix]]]])simplemxml_element
sinh128(float number)float
sin128(float number)float
sleep128(int seconds)void
smfi_addheader128(string headerf, string headerv)bool
smfi_addrcpt128(string rcpt)bool
smfi_chgheader128(string headerf, string headerv)bool
smfi_delrcpt128(string rcpt)bool
smfi_getsymval128(string macro)string
smfi_replacebody128(string body)bool
smfi_setflags128(long flags)void
smfi_setreply128(string rcode, string xcode, string message)bool
smfi_settimeout128(long timeout)void
snmp2_getnext128(string host, string community, string object_id [, int timeout [, int retries]])string
snmp2_get128(string host, string community, string object_id [, int timeout [, int retries]])string
snmp2_real_walk128(string host, string community, string object_id [, int timeout [, int retries]])array
snmp2_set128(string host, string community, string object_id, string type, mixed value [, int timeout [, int retries]])int
snmp2_walk128(string host, string community, string object_id [, int timeout [, int retries]])array
snmp3_getnext128(string host, string sec_name, string sec_level, string auth_protocol, string auth_passphrase, string priv_protocol, string priv_passphrase, string object_id [, int timeout [, int retries]])int
snmp3_get128(string host, string sec_name, string sec_level, string auth_protocol, string auth_passphrase, string priv_protocol, string priv_passphrase, string object_id [, int timeout [, int retries]])int
snmp3_real_walk128(string host, string sec_name, string sec_level, string auth_protocol, string auth_passphrase, string priv_protocol, string priv_passphrase, string object_id [, int timeout [, int retries]])int
snmp3_set128(string host, string sec_name, string sec_level, string auth_protocol, string auth_passphrase, string priv_protocol, string priv_passphrase, string object_id, string type, mixed value [, int timeout [, int retries]])int
snmp3_walk128(string host, string sec_name, string sec_level, string auth_protocol, string auth_passphrase, string priv_protocol, string priv_passphrase, string object_id [, int timeout [, int retries]])int
snmp_get_quick_print128()bool
snmp_get_valueretrieval128()int
snmp_read_mib128(string filename)int
snmp_set_enum_print128(int enum_print)void
snmp_set_oid_output_format128(int oid_format)void
snmp_set_quick_print128(int quick_print)void
snmp_set_valueretrieval128(int method)int
snmpgetnext128(string host, string community, string object_id [, int timeout [, int retries]])string
snmpget128(string host, string community, string object_id [, int timeout [, int retries]])string
snmprealwalk128(string host, string community, string object_id [, int timeout [, int retries]])array
snmpset128(string host, string community, string object_id, string type, mixed value [, int timeout [, int retries]])int
snmpwalk128(string host, string community, string object_id [, int timeout [, int retries]])array
socket_accept128(resource socket)resource
socket_bind128(resource socket, string addr [, int port])bool
socket_clear_error128([resource socket])void
socket_close128(resource socket)void
socket_connect128(resource socket, string addr [, int port])bool
socket_create_listen128(int port[, int backlog])resource
socket_create_pair128(int domain, int type, int protocol, array &fd)bool
socket_create128(int domain, int type, int protocol)resource
socket_get_option128(resource socket, int level, int optname)mixed
socket_getpeername128(resource socket, string &addr[, int &port])bool
socket_getsockname128(resource socket, string &addr[, int &port])bool
socket_last_error128([resource socket])int
socket_listen128(resource socket[, int backlog])bool
socket_read128(resource socket, int length [, int type])string
socket_recvfrom128(resource socket, string &buf, int len, int flags, string &name [, int &port])int
socket_recv128(resource socket, string &buf, int len, int flags)int
socket_select128(array &read_fds, array &write_fds, &array except_fds, int tv_sec[, int tv_usec])int
socket_sendto128(resource socket, string buf, int len, int flags, string addr [, int port])int
socket_send128(resource socket, string buf, int len, int flags)int
socket_set_block128(resource socket)bool
socket_set_nonblock128(resource socket)bool
socket_set_option128(resource socket, int level, int optname, int|array optval)bool
socket_shutdown128(resource socket[, int how])bool
socket_strerror128(int errno)string
socket_write128(resource socket, string buf[, int length])int
solid_fetch_prev128(resource result_id)bool
sort128(array &array_arg [, int sort_flags])bool
soundex128(string str)string
spl_autoload_call128(string class_name)void
spl_autoload_extensions128([string file_extensions])string
spl_autoload_register128([mixed autoload_function = "spl_autoload" [, throw = true]])bool
spl_autoload_unregister128(mixed autoload_function)bool
spl_autoload128(string class_name [, string file_extensions])void
spl_classes128()array
spl_object_hash128(object obj)string
spliti128(string pattern, string string [, int limit])array
split128(string pattern, string string [, int limit])array
sprintf128(string format [, mixed arg1 [, mixed ...]])string
sql_regcase128(string string)string
sqlite_array_query128(resource db, string query [ , int result_type [, bool decode_binary]])array
sqlite_busy_timeout128(resource db, int ms)void
sqlite_changes128(resource db)int
sqlite_close128(resource db)void
sqlite_column128(resource result, mixed index_or_name [, bool decode_binary])mixed
sqlite_create_aggregate128(resource db, string funcname, mixed step_func, mixed finalize_func[, long num_args])bool
sqlite_create_function128(resource db, string funcname, mixed callback[, long num_args])bool
sqlite_current128(resource result [, int result_type [, bool decode_binary]])array
sqlite_error_string128(int error_code)string
sqlite_escape_string128(string item)string
sqlite_exec128(string query, resource db[, string &error_message])boolean
sqlite_factory128(string filename [, int mode [, string &error_message]])object
sqlite_fetch_all128(resource result [, int result_type [, bool decode_binary]])array
sqlite_fetch_array128(resource result [, int result_type [, bool decode_binary]])array
sqlite_fetch_column_types128(string table_name, resource db [, int result_type])resource
sqlite_fetch_object128(resource result [, string class_name [, NULL|array ctor_params [, bool decode_binary]]])object
sqlite_fetch_single128(resource result [, bool decode_binary])string
sqlite_field_name128(resource result, int field_index)string
sqlite_has_prev128(resource result)bool
sqlite_key128(resource result)int
sqlite_last_error128(resource db)int
sqlite_last_insert_rowid128(resource db)int
sqlite_libencoding128()string
sqlite_libversion128()string
sqlite_next128(resource result)bool
sqlite_num_fields128(resource result)int
sqlite_num_rows128(resource result)int
sqlite_open128(string filename [, int mode [, string &error_message]])resource
sqlite_popen128(string filename [, int mode [, string &error_message]])resource
sqlite_prev128(resource result)bool
sqlite_query128(string query, resource db [, int result_type [, string &error_message]])resource
sqlite_rewind128(resource result)bool
sqlite_seek128(resource result, int row)bool
sqlite_single_query128(resource db, string query [, bool first_row_only [, bool decode_binary]])array
sqlite_udf_decode_binary128(string data)string
sqlite_udf_encode_binary128(string data)string
sqlite_unbuffered_query128(string query, resource db [ , int result_type [, string &error_message]])resource
sqlite_valid128(resource result)bool
sqrt128(float number)float
srand128([int seed])void
sscanf128(string str, string format [, string ...])mixed
statIndex128(int index[, int flags])resource
statName128(string filename[, int flags])array
stat128(string filename)array
str_getcsv128(string input[, string delimiter[, string enclosure[, string escape]]])array
str_ireplace128(mixed search, mixed replace, mixed subject [, int &replace_count])mixed
str_pad128(string input, int pad_length [, string pad_string [, int pad_type]])string
str_repeat128(string input, int mult)string
str_replace128(mixed search, mixed replace, mixed subject [, int &replace_count])mixed
str_rot13128(string str)string
str_shuffle128(string str)void
str_split128(string str [, int split_length])array
str_transliterate128(string str, string from_script, string to_script[, string variant])string
str_word_count128(string str, [int format [, string charlist]])mixed
strcasecmp128(string str1, string str2)int
strchr128(string haystack, string needle[, bool part])string
strcmp128(string str1, string str2)int
strcoll128(string str1, string str2)int
strcspn128(string str, string mask [, start [, len]])int
stream_bucket_append128(resource brigade, resource bucket)void
stream_bucket_make_writeable128(resource brigade)object
stream_bucket_new128(resource stream, string buffer)object
stream_bucket_prepend128(resource brigade, resource bucket)void
stream_context_create128([array options[, array params]])resource
stream_context_get_default128([array options])resource
stream_context_get_options128(resource context|resource stream)array
stream_context_set_option128(resource context|resource stream, string wrappername, string optionname, mixed value)bool
stream_context_set_params128(resource context|resource stream, array options)bool
stream_copy_to_stream128(resource source, resource dest [, long maxlen [, long pos]])long
stream_default_encoding128(string encoding)bool
stream_encoding128(resource stream[, string encoding])void
stream_filter_append128(resource stream, string filtername[, int read_write[, mixed filterparams]])resource
stream_filter_prepend128(resource stream, string filtername[, int read_write[, mixed filterparams]])resource
stream_filter_register128(string filtername, string classname)bool
stream_filter_remove128(resource stream_filter)bool
stream_get_contents128(resource source [, long maxlen [, long offset]])string
stream_get_filters128()array
stream_get_line128(resource stream, int maxlen [, string ending])string
stream_get_meta_data128(resource fp)array
stream_get_transports128()array
stream_get_wrappers128()array
stream_is_local128(resource stream|string url)bool
stream_resolve_include_path128(string filename[, resource context])string
stream_select128(array &read_streams, array &write_streams, array &except_streams, int tv_sec[, int tv_usec])int
stream_set_blocking128(resource socket, int mode)bool
stream_set_timeout128(resource stream, int seconds, int microseconds)bool
stream_set_write_buffer128(resource fp, int buffer)int
stream_socket_accept128(resource serverstream, [ double timeout, string &peername ])resource
stream_socket_client128(string remoteaddress [, long &errcode, string &errstring, double timeout, long flags, resource context])resource
stream_socket_enable_crypto128(resource stream, bool enable [, int cryptokind, resource sessionstream])int
stream_socket_get_name128(resource stream, bool want_peer)string
stream_socket_pair128(int domain, int type, int protocol)array
stream_socket_recvfrom128(resource stream, long amount [, long flags [, string &remote_addr]])string
stream_socket_sendto128(resouce stream, string data [, long flags [, string target_addr]])long
stream_socket_server128(string localaddress [, long &errcode, string &errstring, long flags, resource context])resource
stream_socket_shutdown128(resource stream, int how)int
stream_wrapper_register128(string protocol, string classname)bool
stream_wrapper_restore128(string protocol)bool
stream_wrapper_unregister128(string protocol)bool
strftime128(string format [, int timestamp])string
strip_tags128(string str [, string allowable_tags])string
stripcslashes128(binary str)binary
stripos128(string haystack, string needle [, int offset])int
stripslashes128(string str)string
stristr128(string haystack, string needle[, bool part])string
strlen128(string str)int
strnatcasecmp128(string s1, string s2)int
strnatcmp128(string s1, string s2)int
strncasecmp128(string str1, string str2, int len)int
strncmp128(string str1, string str2, int len)int
strpbrk128(string haystack, string char_list)array
strpos128(string haystack, mixed needle [, int offset])int
strptime128(string timestamp, string format)string
strrchr128(string haystack, string needle)string
strrev128(string str)string
strripos128(string haystack, string needle [, int offset])int
strrpos128(string haystack, string needle [, int offset])int
strspn128(string str, string mask [, start [, len]])int
strstr128(string haystack, string needle[, bool part])string
strtok128([string str,] string token)string
strtolower128(string str)string
strtotime128(string time [, int now ])int
strtotitle128(string str)string
strtoupper128(string str)string
strtr128(string str, string from[, string to])string
strval128(mixed var)string
substr_compare128(string main_str, string str, int offset [, int length [, bool case_sensitivity]])int
substr_count128(string haystack, string needle [, int offset [, int length]])int
substr_replace128(mixed str, mixed repl, mixed start [, mixed length])mixed
substr128(string str, int start [, int length])string
swfprebuiltclip_init128([file])void
swfvideostream_init128([file])void
sybase_affected_rows128([int link_id])int
sybase_affected_rows128([int link_id])int
sybase_close128([int link_id])bool
sybase_close128([int link_id])bool
sybase_connect128([string host [, string user [, string password [, string charset [, string appname]]]]])int
sybase_connect128([string host [, string user [, string password [, string charset [, string appname]]]]])int
sybase_data_seek128(int result, int offset)bool
sybase_data_seek128(int result, int offset)bool
sybase_deadlock_retry_count128(int retry_count)void
sybase_fetch_array128(int result)array
sybase_fetch_array128(int result)array
sybase_fetch_assoc128(int result)array
sybase_fetch_field128(int result [, int offset])object
sybase_fetch_field128(int result [, int offset])object
sybase_fetch_object128(int result [, mixed object])object
sybase_fetch_object128(int result)object
sybase_fetch_row128(int result)array
sybase_fetch_row128(int result)array
sybase_field_seek128(int result, int offset)bool
sybase_field_seek128(int result, int offset)bool
sybase_free_result128(int result)bool
sybase_free_result128(int result)bool
sybase_get_last_message128()string
sybase_get_last_message128()string
sybase_min_client_severity128(int severity)void
sybase_min_error_severity128(int severity)void
sybase_min_message_severity128(int severity)void
sybase_min_server_severity128(int severity)void
sybase_num_fields128(int result)int
sybase_num_fields128(int result)int
sybase_num_rows128(int result)int
sybase_num_rows128(int result)int
sybase_pconnect128([string host [, string user [, string password [, string charset [, string appname]]]]])int
sybase_pconnect128([string host [, string user [, string password [, string charset [, string appname]]]]])int
sybase_query128(string query [, int link_id])int
sybase_query128(string query [, int link_id])int
sybase_result128(int result, int row, mixed field)string
sybase_result128(int result, int row, mixed field)string
sybase_select_db128(string database [, int link_id])bool
sybase_select_db128(string database [, int link_id])bool
sybase_set_message_handler128(mixed error_func [, resource connection])bool
sybase_unbuffered_query128(string query [, int link_id])int
symlink128(string target, string link)int
sys_get_temp_dir128()string
sys_getloadavg128()array
syslog128(int priority, string message)bool
system128(string command [, int &return_value])int
tanh128(float number)float
tan128(float number)float
tempnam128(string dir, string prefix)string
textdomain128(string domain)string
tidy_access_count128()int
tidy_clean_repair128()boolean
tidy_config_count128()int
tidy_diagnose128()boolean
tidy_error_count128()int
tidy_get_body128(resource tidy)TidyNode
tidy_get_config128()array
tidy_get_error_buffer128()string
tidy_get_head128()TidyNode
tidy_get_html_ver128()int
tidy_get_html128()TidyNode
tidy_get_opt_doc128(tidy resource, string optname)string
tidy_get_output128()string
tidy_get_release128()string
tidy_get_root128()TidyNode
tidy_get_status128()int
tidy_getopt128(string option)mixed
tidy_is_xhtml128()bool
tidy_is_xml128()bool
tidy_parse_file128(string file [, mixed config_options [, string encoding [, bool use_include_path]]])boolean
tidy_parse_string128(string input [, mixed config_options [, string encoding]])bool
tidy_repair_file128(string filename [, mixed config_file [, string encoding [, bool use_include_path]]])boolean
tidy_repair_string128(string data [, mixed config_file [, string encoding]])boolean
tidy_warning_count128()int
time_nanosleep128(long seconds, long nanoseconds)mixed
time_sleep_until128(float timestamp)mixed
timezone_abbreviations_list128()array
timezone_identifiers_list128()array
timezone_name_from_abbr128(string abbr[, long gmtOffset[, long isdst]])string
timezone_name_get128(DateTimeZone object)string
timezone_offset_get128(DateTimeZone object, DateTime object)long
timezone_open128(string timezone)DateTimeZone
timezone_transitions_get128(DateTimeZone object)array
time128()int
tmpfile128()resource
token_get_all128(string source)array
token_name128(int type)string
touch128(string filename [, int time [, int atime]])bool
trigger_error128(string messsage [, int error_type])void
trim128(string str [, string character_mask])string
uasort128(array array_arg, mixed comparator)bool
ucfirst128(string str)string
ucwords128(string str)string
uksort128(array array_arg, mixed comparator)bool
umask128([int mask])int
unchangeAll128()bool
unchangeAll128()bool
unchangeIndex128(int index)bool
unchangeName128(string name)bool
unicode_decode128(binary input, string encoding [, int flags])unicode
unicode_encode128(unicode input, string encoding [, int flags])binary
unicode_get_error_mode128(int direction)int
unicode_get_subst_char128()string
unicode_restore_error_handler128()bool
unicode_semantics128()bool
unicode_set_error_handler128(callback new_callback)callback
unicode_set_error_mode128(int direction, int mode)bool
unicode_set_subst_char128(string character)bool
uniqid128([string prefix , bool more_entropy])string
unixtojd128([int timestamp])int
unlink128(string filename[, context context])bool
unpack128(string format, string input)array
unregister_tick_function128(string function_name)void
unserialize128(string variable_representation)mixed
urldecode128(binary str)binary
urlencode128(binary str)string
user_filter_nop128()void
usleep128(int micro_seconds)void
usort128(array array_arg, mixed comparator)bool
utf8_decode128(string data)string
utf8_encode128(string data)string
var_dump128(mixed var)void
var_export128(mixed var [, bool return])mixed
var_inspect128(mixed var)void
variant_abs128(mixed left)mixed
variant_add128(mixed left, mixed right)mixed
variant_and128(mixed left, mixed right)mixed
variant_cast128(object variant, int type)object
variant_cat128(mixed left, mixed right)mixed
variant_cmp128(mixed left, mixed right [, int lcid [, int flags]])int
variant_date_from_timestamp128(int timestamp)object
variant_date_to_timestamp128(object variant)int
variant_div128(mixed left, mixed right)mixed
variant_eqv128(mixed left, mixed right)mixed
variant_fix128(mixed left)mixed
variant_get_type128(object variant)int
variant_idiv128(mixed left, mixed right)mixed
variant_imp128(mixed left, mixed right)mixed
variant_int128(mixed left)mixed
variant_mod128(mixed left, mixed right)mixed
variant_mul128(mixed left, mixed right)mixed
variant_neg128(mixed left)mixed
variant_not128(mixed left)mixed
variant_or128(mixed left, mixed right)mixed
variant_pow128(mixed left, mixed right)mixed
variant_round128(mixed left, int decimals)mixed
variant_set_type128(object variant, int type)void
variant_set128(object variant, mixed value)void
variant_sub128(mixed left, mixed right)mixed
variant_xor128(mixed left, mixed right)mixed
version_compare128(string ver1, string ver2 [, string oper])int
vfprintf128(resource stream, string format, array args)int
virtual128(string filename)bool
virtual128(string filename)bool
virtual128(string uri)bool
virtual128(string uri)bool
vprintf128(string format, array args)int
vsprintf128(string format, array args)string
wddx_add_vars128(int packet_id, mixed var_names [, mixed ...])int
wddx_packet_end128(int packet_id)string
wddx_packet_start128([string comment])int
wddx_serialize_value128(mixed var [, string comment])string
wddx_serialize_vars128(mixed var_name [, mixed ...])string
wddx_unserialize128(mixed packet)mixed
wordwrap128(string str [, int width [, string break [, boolean cut]]])string
xml_error_string128(int code)string
xml_get_current_byte_index128(resource parser)int
xml_get_current_column_number128(resource parser)int
xml_get_current_line_number128(resource parser)int
xml_get_error_code128(resource parser)int
xml_parse_into_struct128(resource parser, string data, array &struct, array &index)int
xml_parser_create_ns128([string encoding [, string sep]])resource
xml_parser_create128([string encoding])resource
xml_parser_free128(resource parser)int
xml_parser_get_option128(resource parser, int option)int
xml_parser_set_option128(resource parser, int option, mixed value)int
xml_parse128(resource parser, string data [, int isFinal])int
xml_set_character_data_handler128(resource parser, string hdl)int
xml_set_default_handler128(resource parser, string hdl)int
xml_set_element_handler128(resource parser, string shdl, string ehdl)int
xml_set_end_namespace_decl_handler128(resource parser, string hdl)int
xml_set_external_entity_ref_handler128(resource parser, string hdl)int
xml_set_notation_decl_handler128(resource parser, string hdl)int
xml_set_object128(resource parser, object &obj)int
xml_set_processing_instruction_handler128(resource parser, string hdl)int
xml_set_start_namespace_decl_handler128(resource parser, string hdl)int
xml_set_unparsed_entity_decl_handler128(resource parser, string hdl)int
xmlrpc_decode_request128(string xml, string& method [, string encoding])array
xmlrpc_decode128(string xml [, string encoding])array
xmlrpc_encode_request128(string method, mixed params)string
xmlrpc_encode128(mixed value)string
xmlrpc_get_type128(mixed value)string
xmlrpc_is_fault128(array)bool
xmlrpc_parse_method_descriptions128(string xml)array
xmlrpc_server_add_introspection_data128(resource server, array desc)int
xmlrpc_server_call_method128(resource server, string xml, mixed user_data [, array output_options])mixed
xmlrpc_server_create128()resource
xmlrpc_server_destroy128(resource server)int
xmlrpc_server_register_introspection_callback128(resource server, string function)bool
xmlrpc_server_register_method128(resource server, string method_name, string function)bool
xmlrpc_set_type128(string value, string type)bool
xmlwriter_end_attribute128(resource xmlwriter)bool
xmlwriter_end_cdata128(resource xmlwriter)bool
xmlwriter_end_comment128(resource xmlwriter)bool
xmlwriter_end_document128(resource xmlwriter)bool
xmlwriter_end_dtd_attlist128(resource xmlwriter)bool
xmlwriter_end_dtd_element128(resource xmlwriter)bool
xmlwriter_end_dtd_entity128(resource xmlwriter)bool
xmlwriter_end_dtd128(resource xmlwriter)bool
xmlwriter_end_element128(resource xmlwriter)bool
xmlwriter_end_pi128(resource xmlwriter)bool
xmlwriter_flush128(resource xmlwriter [,bool empty])mixed
xmlwriter_full_end_element128(resource xmlwriter)bool
xmlwriter_open_memory128()resource
xmlwriter_open_uri128(string source)resource
xmlwriter_output_memory128(resource xmlwriter [,bool flush])string
xmlwriter_set_indent_string128(resource xmlwriter, string indentString)bool
xmlwriter_set_indent128(resource xmlwriter, bool indent)bool
xmlwriter_start_attribute_ns128(resource xmlwriter, string prefix, string name, string uri)bool
xmlwriter_start_attribute128(resource xmlwriter, string name)bool
xmlwriter_start_cdata128(resource xmlwriter)bool
xmlwriter_start_comment128(resource xmlwriter)bool
xmlwriter_start_document128(resource xmlwriter, string version, string encoding, string standalone)bool
xmlwriter_start_dtd_attlist128(resource xmlwriter, string name)bool
xmlwriter_start_dtd_element128(resource xmlwriter, string name)bool
xmlwriter_start_dtd_entity128(resource xmlwriter, string name, bool isparam)bool
xmlwriter_start_dtd128(resource xmlwriter, string name, string pubid, string sysid)bool
xmlwriter_start_element_ns128(resource xmlwriter, string prefix, string name, string uri)bool
xmlwriter_start_element128(resource xmlwriter, string name)bool
xmlwriter_start_pi128(resource xmlwriter, string target)bool
xmlwriter_text128(resource xmlwriter, string content)bool
xmlwriter_write_attribute_ns128(resource xmlwriter, string prefix, string name, string uri, string content)bool
xmlwriter_write_attribute128(resource xmlwriter, string name, string content)bool
xmlwriter_write_cdata128(resource xmlwriter, string content)bool
xmlwriter_write_comment128(resource xmlwriter, string content)bool
xmlwriter_write_dtd_attlist128(resource xmlwriter, string name, string content)bool
xmlwriter_write_dtd_element128(resource xmlwriter, string name, string content)bool
xmlwriter_write_dtd_entity128(resource xmlwriter, string name, string content [, int pe [, string pubid [, string sysid [, string ndataid]]]])bool
xmlwriter_write_dtd128(resource xmlwriter, string name, string pubid, string sysid, string subset)bool
xmlwriter_write_element_ns128(resource xmlwriter, string prefix, string name, string uri[, string content])bool
xmlwriter_write_element128(resource xmlwriter, string name[, string content])bool
xmlwriter_write_pi128(resource xmlwriter, string target, string content)bool
xmlwriter_write_raw128(resource xmlwriter, string content)bool
xsl_xsltprocessor_get_parameter128(string namespace, string name)string
xsl_xsltprocessor_has_exslt_support128()bool
xsl_xsltprocessor_import_stylesheet128(domdocument doc)void
xsl_xsltprocessor_register_php_functions128()void
xsl_xsltprocessor_remove_parameter128(string namespace, string name)bool
xsl_xsltprocessor_set_parameter128(string namespace, mixed name [, string value])bool
xsl_xsltprocessor_transform_to_doc128(domnode doc)domdocument
xsl_xsltprocessor_transform_to_uri128(domdocument doc, string uri)int
xsl_xsltprocessor_transform_to_xml128(domdocument doc)string
zend_logo_guid128()string
zend_test_func128(mixed arg1, mixed arg2)void
zend_thread_id128()int
zend_version128()string
zip_close128(resource zip)void
zip_entry_close128(resource zip_ent)void
zip_entry_compressedsize128(resource zip_entry)int
zip_entry_compressionmethod128(resource zip_entry)string
zip_entry_filesize128(resource zip_entry)int
zip_entry_name128(resource zip_entry)string
zip_entry_open128(resource zip_dp, resource zip_entry [, string mode])bool
zip_entry_read128(resource zip_entry [, int len])mixed
zip_open128(string filename)resource
zip_read128(resource zip)resource
zlib_decode128(binary data[, int max_decoded_len])binary
zlib_encode128(binary data, int encoding[, int level = -1])binary
zlib_get_coding_type128()string
|