1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593
|
<?php
// Start of curl v.
class CURLFile {
public $name;
public $mime;
public $postname;
/**
* Create a CURLFile object
* @link http://www.php.net/manual/en/curlfile.construct.php
* @param filename string <p>
* Path to the file which will be uploaded.
* </p>
* @param mimetype string[optional] <p>
* Mimetype of the file.
* </p>
* @param postname string[optional] <p>
* Name of the file.
* </p>
* @return string a CURLFile object.
*/
public function __construct ($filename, $mimetype = null, $postname = null) {}
/**
* Get file name
* @link http://www.php.net/manual/en/curlfile.getfilename.php
* @return string file name.
*/
public function getFilename () {}
/**
* Get MIME type
* @link http://www.php.net/manual/en/curlfile.getmimetype.php
* @return string MIME type.
*/
public function getMimeType () {}
/**
* Set MIME type
* @link http://www.php.net/manual/en/curlfile.setmimetype.php
* @param mime string <p>
*
* </p>
* @return void
*/
public function setMimeType ($mime) {}
/**
* Get file name for POST
* @link http://www.php.net/manual/en/curlfile.getpostfilename.php
* @return string file name for POST.
*/
public function getPostFilename () {}
/**
* Set file name for POST
* @link http://www.php.net/manual/en/curlfile.setpostfilename.php
* @param postname string <p>
*
* </p>
* @return void
*/
public function setPostFilename ($postname) {}
/**
* Unserialization handler
* @link http://www.php.net/manual/en/curlfile.wakeup.php
* @return void
*/
public function __wakeup () {}
}
/**
* Initialize a cURL session
* @link http://www.php.net/manual/en/function.curl-init.php
* @param url string[optional] <p>
* If provided, the CURLOPT_URL option will be set
* to its value. You can manually set this using the
* curl_setopt function.
* </p>
*
* <p>
* The file protocol is disabled by cURL if
* open_basedir is set.
* </p>
* @return resource a cURL handle on success, false on errors.
*/
function curl_init ($url = null) {}
/**
* Copy a cURL handle along with all of its preferences
* @link http://www.php.net/manual/en/function.curl-copy-handle.php
* @param ch resource
* @return resource a new cURL handle.
*/
function curl_copy_handle ($ch) {}
/**
* Gets cURL version information
* @link http://www.php.net/manual/en/function.curl-version.php
* @param age int[optional] <p>
* </p>
* @return array an associative array with the following elements:
*
*
*
* <tr valign="top">
* <td>Indice</td>
* <td>Value description</td>
* </tr>
*
*
* <tr valign="top">
* <td>version_number</td>
* <td>cURL 24 bit version number</td>
* </tr>
* <tr valign="top">
* <td>version</td>
* <td>cURL version number, as a string</td>
* </tr>
* <tr valign="top">
* <td>ssl_version_number</td>
* <td>OpenSSL 24 bit version number</td>
* </tr>
* <tr valign="top">
* <td>ssl_version</td>
* <td>OpenSSL version number, as a string</td>
* </tr>
* <tr valign="top">
* <td>libz_version</td>
* <td>zlib version number, as a string</td>
* </tr>
* <tr valign="top">
* <td>host</td>
* <td>Information about the host where cURL was built</td>
* </tr>
* <tr valign="top">
* <td>age</td>
* <td></td>
* </tr>
* <tr valign="top">
* <td>features</td>
* <td>A bitmask of the CURL_VERSION_XXX constants</td>
* </tr>
* <tr valign="top">
* <td>protocols</td>
* <td>An array of protocols names supported by cURL</td>
* </tr>
*/
function curl_version ($age = null) {}
/**
* Set an option for a cURL transfer
* @link http://www.php.net/manual/en/function.curl-setopt.php
* @param ch resource
* @param option int <p>
* The CURLOPT_XXX option to set.
* </p>
* @param value mixed <p>
* The value to be set on option.
* </p>
* <p>
* value should be a bool for the
* following values of the option parameter:
*
*
*
* <tr valign="top">
* Option</td>
* Set value to</td>
* Notes</td>
* </tr>
*
*
* <tr valign="top">
* CURLOPT_AUTOREFERER</td>
*
* true to automatically set the Referer: field in
* requests where it follows a Location: redirect.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_BINARYTRANSFER</td>
*
* true to return the raw output when
* CURLOPT_RETURNTRANSFER is used.
* </td>
*
* From PHP 5.1.3, this option has no effect: the raw output will
* always be returned when
* CURLOPT_RETURNTRANSFER is used.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_COOKIESESSION</td>
*
* true to mark this as a new cookie "session". It will force libcurl
* to ignore all cookies it is about to load that are "session cookies"
* from the previous session. By default, libcurl always stores and
* loads all cookies, independent if they are session cookies or not.
* Session cookies are cookies without expiry date and they are meant
* to be alive and existing for this "session" only.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_CERTINFO</td>
*
* true to output SSL certification information to STDERR
* on secure transfers.
* </td>
*
* Added in cURL 7.19.1.
* Available since PHP 5.3.2.
* Requires CURLOPT_VERBOSE to be on to have an effect.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_CONNECT_ONLY</td>
*
* true tells the library to perform all the required proxy authentication
* and connection setup, but no data transfer. This option is implemented for
* HTTP, SMTP and POP3.
* </td>
*
* Added in 7.15.2.
* Available since PHP 5.5.0.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_CRLF</td>
*
* true to convert Unix newlines to CRLF newlines
* on transfers.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_DNS_USE_GLOBAL_CACHE</td>
*
* true to use a global DNS cache. This option is
* not thread-safe and is enabled by default.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_FAILONERROR</td>
*
* true to fail verbosely if the HTTP code returned
* is greater than or equal to 400. The default behavior is to return
* the page normally, ignoring the code.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_FILETIME</td>
*
* true to attempt to retrieve the modification
* date of the remote document. This value can be retrieved using
* the CURLINFO_FILETIME option with
* curl_getinfo.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_FOLLOWLOCATION</td>
*
* true to follow any
* "Location: " header that the server sends as
* part of the HTTP header (note this is recursive, PHP will follow as
* many "Location: " headers that it is sent,
* unless CURLOPT_MAXREDIRS is set).
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_FORBID_REUSE</td>
*
* true to force the connection to explicitly
* close when it has finished processing, and not be pooled for reuse.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_FRESH_CONNECT</td>
*
* true to force the use of a new connection
* instead of a cached one.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_FTP_USE_EPRT</td>
*
* true to use EPRT (and LPRT) when doing active
* FTP downloads. Use false to disable EPRT and LPRT and use PORT
* only.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_FTP_USE_EPSV</td>
*
* true to first try an EPSV command for FTP
* transfers before reverting back to PASV. Set to false
* to disable EPSV.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_FTP_CREATE_MISSING_DIRS</td>
*
* true to create missing directories when an FTP operation
* encounters a path that currently doesn't exist.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_FTPAPPEND</td>
*
* true to append to the remote file instead of
* overwriting it.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_TCP_NODELAY</td>
*
* Pass a long specifying whether the TCP_NODELAY option is to be set or
* cleared (1 = set, 0 = clear). The option is cleared by default.
* </td>
*
* Available since PHP 5.2.1 for versions compiled with libcurl 7.11.2 or
* greater.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_FTPASCII</td>
*
* An alias of
* CURLOPT_TRANSFERTEXT. Use that instead.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_FTPLISTONLY</td>
*
* true to only list the names of an FTP
* directory.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_HEADER</td>
*
* true to include the header in the output.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* <td>CURLINFO_HEADER_OUT</td>
*
* true to track the handle's request string.
* </td>
*
* Available since PHP 5.1.3. The CURLINFO_
* prefix is intentional.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_HTTPGET</td>
*
* true to reset the HTTP request method to GET.
* Since GET is the default, this is only necessary if the request
* method has been changed.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_HTTPPROXYTUNNEL</td>
*
* true to tunnel through a given HTTP proxy.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_MUTE</td>
*
* true to be completely silent with regards to
* the cURL functions.
* </td>
*
* Removed in cURL 7.15.5 (You can use CURLOPT_RETURNTRANSFER instead)
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_NETRC</td>
*
* true to scan the ~/.netrc
* file to find a username and password for the remote site that
* a connection is being established with.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_NOBODY</td>
*
* true to exclude the body from the output.
* Request method is then set to HEAD. Changing this to false does
* not change it to GET.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_NOPROGRESS</td>
* <p>
* true to disable the progress meter for cURL transfers.
*
* <p>
* PHP automatically sets this option to true, this should only be
* changed for debugging purposes.
* </p>
*
* </p></td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_NOSIGNAL</td>
*
* true to ignore any cURL function that causes a
* signal to be sent to the PHP process. This is turned on by default
* in multi-threaded SAPIs so timeout options can still be used.
* </td>
*
* Added in cURL 7.10.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_POST</td>
*
* true to do a regular HTTP POST. This POST is the
* normal application/x-www-form-urlencoded kind,
* most commonly used by HTML forms.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_PUT</td>
*
* true to HTTP PUT a file. The file to PUT must
* be set with CURLOPT_INFILE and
* CURLOPT_INFILESIZE.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_RETURNTRANSFER</td>
*
* true to return the transfer as a string of the
* return value of curl_exec instead of outputting
* it out directly.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_SAFE_UPLOAD</td>
*
* true to disable support for the @ prefix for
* uploading files in CURLOPT_POSTFIELDS, which
* means that values starting with @ can be safely
* passed as fields. CURLFile may be used for
* uploads instead.
* </td>
*
* Added in PHP 5.5.0 with false as the default value. PHP 5.6.0
* changes the default value to true.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_SSL_VERIFYPEER</td>
*
* false to stop cURL from verifying the peer's
* certificate. Alternate certificates to verify against can be
* specified with the CURLOPT_CAINFO option
* or a certificate directory can be specified with the
* CURLOPT_CAPATH option.
* </td>
*
* true by default as of cURL 7.10. Default bundle installed as of
* cURL 7.10.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_TRANSFERTEXT</td>
*
* true to use ASCII mode for FTP transfers.
* For LDAP, it retrieves data in plain text instead of HTML. On
* Windows systems, it will not set STDOUT to binary
* mode.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_UNRESTRICTED_AUTH</td>
*
* true to keep sending the username and password
* when following locations (using
* CURLOPT_FOLLOWLOCATION), even when the
* hostname has changed.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_UPLOAD</td>
*
* true to prepare for an upload.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_VERBOSE</td>
*
* true to output verbose information. Writes
* output to STDERR, or the file specified using
* CURLOPT_STDERR.
* </td>
*
* </td>
* </tr>
*
*
*
* </p>
* <p>
* value should be an integer for the
* following values of the option parameter:
*
*
*
* <tr valign="top">
* <td>Option</td>
* <td>Set value to</td>
* <td>Notes</td>
* </tr>
*
*
* <tr valign="top">
* CURLOPT_BUFFERSIZE</td>
*
* The size of the buffer to use for each read. There is no guarantee
* this request will be fulfilled, however.
* </td>
*
* Added in cURL 7.10.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_CLOSEPOLICY</td>
*
* One of the CURLCLOSEPOLICY_* values.
*
* <p>
* This option is deprecated, as it was never implemented in cURL and
* never had any effect.
* </p>
*
* </td>
*
* Removed in PHP 5.6.0.
* </td>
* </tr>
* <tr valign="top">
* <td>CURLOPT_CONNECTTIMEOUT</td>
*
* The number of seconds to wait while trying to connect. Use 0 to
* wait indefinitely.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_CONNECTTIMEOUT_MS</td>
*
* The number of milliseconds to wait while trying to connect. Use 0 to
* wait indefinitely.
*
* If libcurl is built to use the standard system name resolver, that
* portion of the connect will still use full-second resolution for
* timeouts with a minimum timeout allowed of one second.
* </td>
*
* Added in cURL 7.16.2. Available since PHP 5.2.3.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_DNS_CACHE_TIMEOUT</td>
*
* The number of seconds to keep DNS entries in memory. This
* option is set to 120 (2 minutes) by default.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_FTPSSLAUTH</td>
*
* The FTP authentication method (when is activated):
* CURLFTPAUTH_SSL (try SSL first),
* CURLFTPAUTH_TLS (try TLS first), or
* CURLFTPAUTH_DEFAULT (let cURL decide).
* </td>
*
* Added in cURL 7.12.2.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_HTTP_VERSION</td>
*
* CURL_HTTP_VERSION_NONE (default, lets CURL
* decide which version to use),
* CURL_HTTP_VERSION_1_0 (forces HTTP/1.0),
* or CURL_HTTP_VERSION_1_1 (forces HTTP/1.1).
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_HTTPAUTH</td>
*
* <p>
* The HTTP authentication method(s) to use. The options are:
* CURLAUTH_BASIC,
* CURLAUTH_DIGEST,
* CURLAUTH_GSSNEGOTIATE,
* CURLAUTH_NTLM,
* CURLAUTH_ANY, and
* CURLAUTH_ANYSAFE.
* </p>
* <p>
* The bitwise | (or) operator can be used to combine
* more than one method. If this is done, cURL will poll the server to see
* what methods it supports and pick the best one.
* </p>
* <p>
* CURLAUTH_ANY is an alias for
* CURLAUTH_BASIC | CURLAUTH_DIGEST | CURLAUTH_GSSNEGOTIATE | CURLAUTH_NTLM.
* </p>
* <p>
* CURLAUTH_ANYSAFE is an alias for
* CURLAUTH_DIGEST | CURLAUTH_GSSNEGOTIATE | CURLAUTH_NTLM.
* </p>
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_INFILESIZE</td>
*
* The expected size, in bytes, of the file when uploading a file to
* a remote site. Note that using this option will not stop libcurl
* from sending more data, as exactly what is sent depends on
* CURLOPT_READFUNCTION.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_LOW_SPEED_LIMIT</td>
*
* The transfer speed, in bytes per second, that the transfer should be
* below during the count of CURLOPT_LOW_SPEED_TIME
* seconds before PHP considers the transfer too slow and aborts.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_LOW_SPEED_TIME</td>
*
* The number of seconds the transfer speed should be below
* CURLOPT_LOW_SPEED_LIMIT before PHP considers
* the transfer too slow and aborts.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_MAXCONNECTS</td>
*
* The maximum amount of persistent connections that are allowed.
* When the limit is reached,
* CURLOPT_CLOSEPOLICY is used to determine
* which connection to close.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_MAXREDIRS</td>
*
* The maximum amount of HTTP redirections to follow. Use this option
* alongside CURLOPT_FOLLOWLOCATION.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_PORT</td>
*
* An alternative port number to connect to.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_PROTOCOLS</td>
*
* <p>
* Bitmask of CURLPROTO_* values. If used, this bitmask
* limits what protocols libcurl may use in the transfer. This allows you to have
* a libcurl built to support a wide range of protocols but still limit specific
* transfers to only be allowed to use a subset of them. By default libcurl will
* accept all protocols it supports.
* See also CURLOPT_REDIR_PROTOCOLS.
* </p>
* <p>
* Valid protocol options are:
* CURLPROTO_HTTP,
* CURLPROTO_HTTPS,
* CURLPROTO_FTP,
* CURLPROTO_FTPS,
* CURLPROTO_SCP,
* CURLPROTO_SFTP,
* CURLPROTO_TELNET,
* CURLPROTO_LDAP,
* CURLPROTO_LDAPS,
* CURLPROTO_DICT,
* CURLPROTO_FILE,
* CURLPROTO_TFTP,
* CURLPROTO_ALL
* </p>
* </td>
*
* Added in cURL 7.19.4.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_PROXYAUTH</td>
*
* The HTTP authentication method(s) to use for the proxy connection.
* Use the same bitmasks as described in
* CURLOPT_HTTPAUTH. For proxy authentication,
* only CURLAUTH_BASIC and
* CURLAUTH_NTLM are currently supported.
* </td>
*
* Added in cURL 7.10.7.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_PROXYPORT</td>
*
* The port number of the proxy to connect to. This port number can
* also be set in CURLOPT_PROXY.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_PROXYTYPE</td>
*
* Either CURLPROXY_HTTP (default) or
* CURLPROXY_SOCKS5.
* </td>
*
* Added in cURL 7.10.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_REDIR_PROTOCOLS</td>
*
* Bitmask of CURLPROTO_* values. If used, this bitmask
* limits what protocols libcurl may use in a transfer that it follows to in
* a redirect when CURLOPT_FOLLOWLOCATION is enabled.
* This allows you to limit specific transfers to only be allowed to use a subset
* of protocols in redirections. By default libcurl will allow all protocols
* except for FILE and SCP. This is a difference compared to pre-7.19.4 versions
* which unconditionally would follow to all protocols supported.
* See also CURLOPT_PROTOCOLS for protocol constant values.
* </td>
*
* Added in cURL 7.19.4.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_RESUME_FROM</td>
*
* The offset, in bytes, to resume a transfer from.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_SSL_VERIFYHOST</td>
*
* 1 to check the existence of a common name in the
* SSL peer certificate. 2 to check the existence of
* a common name and also verify that it matches the hostname
* provided. In production environments the value of this option
* should be kept at 2 (default value).
* </td>
*
* Support for value 1 removed in cURL 7.28.1
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_SSLVERSION</td>
*
* The SSL version (2 or 3) to use. By default PHP will try to determine
* this itself, although in some cases this must be set manually.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_TIMECONDITION</td>
*
* How CURLOPT_TIMEVALUE is treated.
* Use CURL_TIMECOND_IFMODSINCE to return the
* page only if it has been modified since the time specified in
* CURLOPT_TIMEVALUE. If it hasn't been modified,
* a "304 Not Modified" header will be returned
* assuming CURLOPT_HEADER is true.
* Use CURL_TIMECOND_IFUNMODSINCE for the reverse
* effect. CURL_TIMECOND_IFMODSINCE is the
* default.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_TIMEOUT</td>
*
* The maximum number of seconds to allow cURL functions to execute.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_TIMEOUT_MS</td>
*
* The maximum number of milliseconds to allow cURL functions to
* execute.
*
* If libcurl is built to use the standard system name resolver, that
* portion of the connect will still use full-second resolution for
* timeouts with a minimum timeout allowed of one second.
* </td>
*
* Added in cURL 7.16.2. Available since PHP 5.2.3.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_TIMEVALUE</td>
*
* The time in seconds since January 1st, 1970. The time will be used
* by CURLOPT_TIMECONDITION. By default,
* CURL_TIMECOND_IFMODSINCE is used.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_MAX_RECV_SPEED_LARGE</td>
*
* If a download exceeds this speed (counted in bytes per second) on
* cumulative average during the transfer, the transfer will pause to
* keep the average rate less than or equal to the parameter value.
* Defaults to unlimited speed.
* </td>
*
* Added in cURL 7.15.5. Available since PHP 5.4.0.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_MAX_SEND_SPEED_LARGE</td>
*
* If an upload exceeds this speed (counted in bytes per second) on
* cumulative average during the transfer, the transfer will pause to
* keep the average rate less than or equal to the parameter value.
* Defaults to unlimited speed.
* </td>
*
* Added in cURL 7.15.5. Available since PHP 5.4.0.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_SSH_AUTH_TYPES</td>
*
* A bitmask consisting of one or more of
* CURLSSH_AUTH_PUBLICKEY,
* CURLSSH_AUTH_PASSWORD,
* CURLSSH_AUTH_HOST,
* CURLSSH_AUTH_KEYBOARD. Set to
* CURLSSH_AUTH_ANY to let libcurl pick one.
* </td>
*
* Added in cURL 7.16.1.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_IPRESOLVE</td>
*
* Allows an application to select what kind of IP addresses to use when
* resolving host names. This is only interesting when using host names that
* resolve addresses using more than one version of IP, possible values are
* CURL_IPRESOLVE_WHATEVER,
* CURL_IPRESOLVE_V4,
* CURL_IPRESOLVE_V6, by default
* CURL_IPRESOLVE_WHATEVER.
* </td>
*
* Added in cURL 7.10.8.
* </td>
* </tr>
*
*
*
* </p>
* <p>
* value should be a string for the
* following values of the option parameter:
*
*
*
* <tr valign="top">
* <td>Option</td>
* <td>Set value to</td>
* <td>Notes</td>
* </tr>
*
*
* <tr valign="top">
* CURLOPT_CAINFO</td>
*
* The name of a file holding one or more certificates to verify the
* peer with. This only makes sense when used in combination with
* CURLOPT_SSL_VERIFYPEER.
* </td>
*
* Requires absolute path.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_CAPATH</td>
*
* A directory that holds multiple CA certificates. Use this option
* alongside CURLOPT_SSL_VERIFYPEER.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_COOKIE</td>
*
* The contents of the "Cookie: " header to be
* used in the HTTP request.
* Note that multiple cookies are separated with a semicolon followed
* by a space (e.g., "fruit=apple; colour=red")
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_COOKIEFILE</td>
*
* The name of the file containing the cookie data. The cookie file can
* be in Netscape format, or just plain HTTP-style headers dumped into
* a file.
* If the name is an empty string, no cookies are loaded, but cookie
* handling is still enabled.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_COOKIEJAR</td>
*
* The name of a file to save all internal cookies to when the handle is closed,
* e.g. after a call to curl_close.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_CUSTOMREQUEST</td>
* <p>
* A custom request method to use instead of
* "GET" or "HEAD" when doing
* a HTTP request. This is useful for doing
* "DELETE" or other, more obscure HTTP requests.
* Valid values are things like "GET",
* "POST", "CONNECT" and so on;
* i.e. Do not enter a whole HTTP request line here. For instance,
* entering "GET /index.html HTTP/1.0\r\n\r\n"
* would be incorrect.
*
* <p>
* Don't do this without making sure the server supports the custom
* request method first.
* </p>
*
* </p></td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_EGDSOCKET</td>
*
* Like CURLOPT_RANDOM_FILE, except a filename
* to an Entropy Gathering Daemon socket.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_ENCODING</td>
*
* The contents of the "Accept-Encoding: " header.
* This enables decoding of the response. Supported encodings are
* "identity", "deflate", and
* "gzip". If an empty string, "",
* is set, a header containing all supported encoding types is sent.
* </td>
*
* Added in cURL 7.10.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_FTPPORT</td>
*
* The value which will be used to get the IP address to use
* for the FTP "PORT" instruction. The "PORT" instruction tells
* the remote server to connect to our specified IP address. The
* string may be a plain IP address, a hostname, a network
* interface name (under Unix), or just a plain '-' to use the
* systems default IP address.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_INTERFACE</td>
*
* The name of the outgoing network interface to use. This can be an
* interface name, an IP address or a host name.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_KEYPASSWD</td>
*
* The password required to use the CURLOPT_SSLKEY
* or CURLOPT_SSH_PRIVATE_KEYFILE private key.
* </td>
*
* Added in cURL 7.16.1.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_KRB4LEVEL</td>
*
* The KRB4 (Kerberos 4) security level. Any of the following values
* (in order from least to most powerful) are valid:
* "clear",
* "safe",
* "confidential",
* "private"..
* If the string does not match one of these,
* "private" is used. Setting this option to &null;
* will disable KRB4 security. Currently KRB4 security only works
* with FTP transactions.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_POSTFIELDS</td>
*
*
* The full data to post in a HTTP "POST" operation.
* To post a file, prepend a filename with @ and
* use the full path. The filetype can be explicitly specified by
* following the filename with the type in the format
* ';type=mimetype'. This parameter can either be
* passed as a urlencoded string like 'para1=val1¶2=val2&...'
* or as an array with the field name as key and field data as value.
* If value is an array, the
* Content-Type header will be set to
* multipart/form-data.
*
*
* As of PHP 5.2.0, value must be an array if
* files are passed to this option with the @ prefix.
*
*
* As of PHP 5.5.0, the @ prefix is deprecated and
* files can be sent using CURLFile. The
* @ prefix can be disabled for safe passing of
* values beginning with @ by setting the
* CURLOPT_SAFE_UPLOAD option to true.
*
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_PROXY</td>
*
* The HTTP proxy to tunnel requests through.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_PROXYUSERPWD</td>
*
* A username and password formatted as
* "[username]:[password]" to use for the
* connection to the proxy.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_RANDOM_FILE</td>
*
* A filename to be used to seed the random number generator for SSL.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_RANGE</td>
*
* Range(s) of data to retrieve in the format
* "X-Y" where X or Y are optional. HTTP transfers
* also support several intervals, separated with commas in the format
* "X-Y,N-M".
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_REFERER</td>
*
* The contents of the "Referer: " header to be used
* in a HTTP request.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_SSH_HOST_PUBLIC_KEY_MD5</td>
*
* A string containing 32 hexadecimal digits. The string should be the
* MD5 checksum of the remote host's public key, and libcurl will reject
* the connection to the host unless the md5sums match.
* This option is only for SCP and SFTP transfers.
* </td>
*
* Added in cURL 7.17.1.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_SSH_PUBLIC_KEYFILE</td>
*
* The file name for your public key. If not used, libcurl defaults to
* $HOME/.ssh/id_dsa.pub if the HOME environment variable is set,
* and just "id_dsa.pub" in the current directory if HOME is not set.
* </td>
*
* Added in cURL 7.16.1.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_SSH_PRIVATE_KEYFILE</td>
*
* The file name for your private key. If not used, libcurl defaults to
* $HOME/.ssh/id_dsa if the HOME environment variable is set,
* and just "id_dsa" in the current directory if HOME is not set.
* If the file is password-protected, set the password with
* CURLOPT_KEYPASSWD.
* </td>
*
* Added in cURL 7.16.1.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_SSL_CIPHER_LIST</td>
*
* A list of ciphers to use for SSL. For example,
* RC4-SHA and TLSv1 are valid
* cipher lists.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_SSLCERT</td>
*
* The name of a file containing a PEM formatted certificate.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_SSLCERTPASSWD</td>
*
* The password required to use the
* CURLOPT_SSLCERT certificate.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_SSLCERTTYPE</td>
*
* The format of the certificate. Supported formats are
* "PEM" (default), "DER",
* and "ENG".
* </td>
*
* Added in cURL 7.9.3.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_SSLENGINE</td>
*
* The identifier for the crypto engine of the private SSL key
* specified in CURLOPT_SSLKEY.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_SSLENGINE_DEFAULT</td>
*
* The identifier for the crypto engine used for asymmetric crypto
* operations.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_SSLKEY</td>
*
* The name of a file containing a private SSL key.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_SSLKEYPASSWD</td>
* <p>
* The secret password needed to use the private SSL key specified in
* CURLOPT_SSLKEY.
*
* <p>
* Since this option contains a sensitive password, remember to keep
* the PHP script it is contained within safe.
* </p>
*
* </p></td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_SSLKEYTYPE</td>
*
* The key type of the private SSL key specified in
* CURLOPT_SSLKEY. Supported key types are
* "PEM" (default), "DER",
* and "ENG".
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_URL</td>
*
* The URL to fetch. This can also be set when initializing a
* session with curl_init.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_USERAGENT</td>
*
* The contents of the "User-Agent: " header to be
* used in a HTTP request.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_USERPWD</td>
*
* A username and password formatted as
* "[username]:[password]" to use for the
* connection.
* </td>
*
* </td>
* </tr>
*
*
*
* </p>
* <p>
* value should be an array for the
* following values of the option parameter:
*
*
*
* <tr valign="top">
* <td>Option</td>
* <td>Set value to</td>
* <td>Notes</td>
* </tr>
*
*
* <tr valign="top">
* CURLOPT_HTTP200ALIASES</td>
*
* An array of HTTP 200 responses that will be treated as valid
* responses and not as errors.
* </td>
*
* Added in cURL 7.10.3.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_HTTPHEADER</td>
*
* An array of HTTP header fields to set, in the format
*
* array('Content-type: text/plain', 'Content-length: 100')
*
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_POSTQUOTE</td>
*
* An array of FTP commands to execute on the server after the FTP
* request has been performed.
* </td>
*
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_QUOTE</td>
*
* An array of FTP commands to execute on the server prior to the FTP
* request.
* </td>
*
* </td>
* </tr>
*
*
*
* </p>
* <p>
* value should be a stream resource (using
* fopen, for example) for the following values of the
* option parameter:
*
*
*
* <tr valign="top">
* <td>Option</td>
* <td>Set value to</td>
* </tr>
*
*
* <tr valign="top">
* CURLOPT_FILE</td>
*
* The file that the transfer should be written to. The default
* is STDOUT (the browser window).
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_INFILE</td>
*
* The file that the transfer should be read from when uploading.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_STDERR</td>
*
* An alternative location to output errors to instead of
* STDERR.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_WRITEHEADER</td>
*
* The file that the header part of the transfer is written to.
* </td>
* </tr>
*
*
*
* </p>
* <p>
* value should be the name of a valid function or a Closure
* for the following values of the option parameter:
*
*
*
* <tr valign="top">
* <td>Option</td>
* <td>Set value to</td>
* </tr>
*
*
* <tr valign="top">
* CURLOPT_HEADERFUNCTION</td>
*
* A callback accepting two parameters.
* The first is the cURL resource, the second is a
* string with the header data to be written. The header data must
* be written when by this callback. Return the number of
* bytes written.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_PASSWDFUNCTION</td>
*
* A callback accepting three parameters.
* The first is the cURL resource, the second is a
* string containing a password prompt, and the third is the maximum
* password length. Return the string containing the password.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_PROGRESSFUNCTION</td>
*
* <p>
* A callback accepting five parameters.
* The first is the cURL resource, the second is the total number of
* bytes expected to be downloaded in this transfer, the third is
* the number of bytes downloaded so far, the fourth is the total
* number of bytes expected to be uploaded in this transfer, and the
* fifth is the number of bytes uploaded so far.
* </p>
*
* <p>
* The callback is only called when the CURLOPT_NOPROGRESS
* option is set to false.
* </p>
*
* <p>
* Return a non-zero value to abort the transfer. In which case, the
* transfer will set a CURLE_ABORTED_BY_CALLBACK
* error.
* </p>
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_READFUNCTION</td>
*
* A callback accepting three parameters.
* The first is the cURL resource, the second is a
* stream resource provided to cURL through the option
* CURLOPT_INFILE, and the third is the maximum
* amount of data to be read. The callback must return a string
* with a length equal or smaller than the amount of data requested,
* typically by reading it from the passed stream resource. It should
* return an empty string to signal EOF.
* </td>
* </tr>
* <tr valign="top">
* CURLOPT_WRITEFUNCTION</td>
*
* A callback accepting two parameters.
* The first is the cURL resource, and the second is a
* string with the data to be written. The data must be saved by
* this callback. It must return the exact number of bytes written
* or the transfer will be aborted with an error.
* </td>
* </tr>
*
*
*
* </p>
* <p>
* Other values:
*
*
*
* <tr valign="top">
* <td>Option</td>
* <td>Set value to</td>
* </tr>
*
*
* <tr valign="top">
* CURLOPT_SHARE</td>
*
* A result of curl_share_init. Makes the cURL
* handle to use the data from the shared handle.
* </td>
* </tr>
*
*
*
* </p>
* @return bool Returns true on success, false on failure.
*/
function curl_setopt ($ch, $option, $value) {}
/**
* Set multiple options for a cURL transfer
* @link http://www.php.net/manual/en/function.curl-setopt-array.php
* @param ch resource
* @param options array <p>
* An array specifying which options to set and their values.
* The keys should be valid curl_setopt constants or
* their integer equivalents.
* </p>
* @return bool true if all options were successfully set. If an option could
* not be successfully set, false is immediately returned, ignoring any
* future options in the options array.
*/
function curl_setopt_array ($ch, array $options) {}
/**
* Perform a cURL session
* @link http://www.php.net/manual/en/function.curl-exec.php
* @param ch resource
* @return mixed Returns true on success, false on failure. However, if the CURLOPT_RETURNTRANSFER
* option is set, it will return
* the result on success, false on failure.
*/
function curl_exec ($ch) {}
/**
* Get information regarding a specific transfer
* @link http://www.php.net/manual/en/function.curl-getinfo.php
* @param ch resource
* @param opt int[optional] <p>
* This may be one of the following constants:
*
*
*
* CURLINFO_EFFECTIVE_URL - Last effective URL
* @return mixed If opt is given, returns its value.
* Otherwise, returns an associative array with the following elements
* (which correspond to opt), or false on failure:
*
*
*
* "url"
*
*
*
*
* "content_type"
*
*
*
*
* "http_code"
*
*
*
*
* "header_size"
*
*
*
*
* "request_size"
*
*
*
*
* "filetime"
*
*
*
*
* "ssl_verify_result"
*
*
*
*
* "redirect_count"
*
*
*
*
* "total_time"
*
*
*
*
* "namelookup_time"
*
*
*
*
* "connect_time"
*
*
*
*
* "pretransfer_time"
*
*
*
*
* "size_upload"
*
*
*
*
* "size_download"
*
*
*
*
* "speed_download"
*
*
*
*
* "speed_upload"
*
*
*
*
* "download_content_length"
*
*
*
*
* "upload_content_length"
*
*
*
*
* "starttransfer_time"
*
*
*
*
* "redirect_time"
*
*
*
*
* "certinfo"
*
*
*
*
* "request_header" (This is only set if the CURLINFO_HEADER_OUT
* is set by a previous call to curl_setopt)
*/
function curl_getinfo ($ch, $opt = null) {}
/**
* Return a string containing the last error for the current session
* @link http://www.php.net/manual/en/function.curl-error.php
* @param ch resource
* @return string the error message or '' (the empty string) if no
* error occurred.
*/
function curl_error ($ch) {}
/**
* Return the last error number
* @link http://www.php.net/manual/en/function.curl-errno.php
* @param ch resource
* @return int the error number or 0 (zero) if no error
* occurred.
*/
function curl_errno ($ch) {}
/**
* Close a cURL session
* @link http://www.php.net/manual/en/function.curl-close.php
* @param ch resource
* @return void
*/
function curl_close ($ch) {}
/**
* Return string describing the given error code
* @link http://www.php.net/manual/en/function.curl-strerror.php
* @param errornum int <p>
* One of the cURL error codes constants.
* </p>
* @return string error description or &null; for invalid error code.
*/
function curl_strerror ($errornum) {}
/**
* Return string describing error code
* @link http://www.php.net/manual/en/function.curl-multi-strerror.php
* @param errornum int <p>
* One of the CURLM error codes constants.
* </p>
* @return string error string for valid error code, &null; otherwise.
*/
function curl_multi_strerror ($errornum) {}
/**
* Reset all options of a libcurl session handle
* @link http://www.php.net/manual/en/function.curl-reset.php
* @param ch resource
* @return void
*/
function curl_reset ($ch) {}
/**
* URL encodes the given string
* @link http://www.php.net/manual/en/function.curl-escape.php
* @param ch resource
* @param str string <p>
* The string to be encoded.
* </p>
* @return string escaped string&return.falseforfailure;.
*/
function curl_escape ($ch, $str) {}
/**
* Decodes the given URL encoded string
* @link http://www.php.net/manual/en/function.curl-unescape.php
* @param ch resource
* @param str string <p>
* The URL encoded string to be decoded.
* </p>
* @return string decoded string &return.falseforfailure;.
*/
function curl_unescape ($ch, $str) {}
/**
* Pause and unpause a connection
* @link http://www.php.net/manual/en/function.curl-pause.php
* @param ch resource
* @param bitmask int <p>
* One of CURLPAUSE_* constants.
* </p>
* @return int an error code (CURLE_OK for no error).
*/
function curl_pause ($ch, $bitmask) {}
/**
* Returns a new cURL multi handle
* @link http://www.php.net/manual/en/function.curl-multi-init.php
* @return resource a cURL multi handle resource on success, false on failure.
*/
function curl_multi_init () {}
/**
* Add a normal cURL handle to a cURL multi handle
* @link http://www.php.net/manual/en/function.curl-multi-add-handle.php
* @param mh resource
* @param ch resource
* @return int 0 on success, or one of the CURLM_XXX errors
* code.
*/
function curl_multi_add_handle ($mh, $ch) {}
/**
* Remove a multi handle from a set of cURL handles
* @link http://www.php.net/manual/en/function.curl-multi-remove-handle.php
* @param mh resource
* @param ch resource
* @return int 0 on success, or one of the CURLM_XXX error
* codes.
*/
function curl_multi_remove_handle ($mh, $ch) {}
/**
* Wait for activity on any curl_multi connection
* @link http://www.php.net/manual/en/function.curl-multi-select.php
* @param mh resource
* @param timeout float[optional] <p>
* Time, in seconds, to wait for a response.
* </p>
* @return int On success, returns the number of descriptors contained in
* the descriptor sets. On failure, this function will return -1 on a select failure or timeout (from the underlying select system call).
*/
function curl_multi_select ($mh, $timeout = null) {}
/**
* Run the sub-connections of the current cURL handle
* @link http://www.php.net/manual/en/function.curl-multi-exec.php
* @param mh resource
* @param still_running int <p>
* A reference to a flag to tell whether the operations are still running.
* </p>
* @return int A cURL code defined in the cURL Predefined Constants.
* </p>
*
* <p>
* This only returns errors regarding the whole multi stack. There might still have
* occurred problems on individual transfers even when this function returns
* CURLM_OK.
*/
function curl_multi_exec ($mh, &$still_running) {}
/**
* Return the content of a cURL handle if <constant>CURLOPT_RETURNTRANSFER</constant> is set
* @link http://www.php.net/manual/en/function.curl-multi-getcontent.php
* @param ch resource
* @return string Return the content of a cURL handle if CURLOPT_RETURNTRANSFER is set.
*/
function curl_multi_getcontent ($ch) {}
/**
* Get information about the current transfers
* @link http://www.php.net/manual/en/function.curl-multi-info-read.php
* @param mh resource
* @param msgs_in_queue int[optional] <p>
* Number of messages that are still in the queue
* </p>
* @return array On success, returns an associative array for the message, false on failure.
* </p>
* <p>
* <table>
* Contents of the returned array
*
*
* <tr valign="top">
* <td>Key:</td>
* <td>Value:</td>
* </tr>
*
*
* <tr valign="top">
* <td>msg</td>
* <td>The CURLMSG_DONE constant. Other return values
* are currently not available.</td>
* </tr>
* <tr valign="top">
* <td>result</td>
* <td>One of the CURLE_* constants. If everything is
* OK, the CURLE_OK will be the result.</td>
* </tr>
* <tr valign="top">
* <td>handle</td>
* <td>Resource of type curl indicates the handle which it concerns.</td>
* </tr>
*
*
* </table>
*/
function curl_multi_info_read ($mh, &$msgs_in_queue = null) {}
/**
* Close a set of cURL handles
* @link http://www.php.net/manual/en/function.curl-multi-close.php
* @param mh resource
* @return void
*/
function curl_multi_close ($mh) {}
/**
* Set an option for the cURL multi handle
* @link http://www.php.net/manual/en/function.curl-multi-setopt.php
* @param mh resource <p>
*
* </p>
* @param option int <p>
* One of the CURLMOPT_* constants.
* </p>
* @param value mixed <p>
* The value to be set on option.
* </p>
* <p>
* value should be an int for the
* following values of the option parameter:
*
*
*
* <tr valign="top">
* Option</td>
* Set value to</td>
* </tr>
*
*
* <tr valign="top">
* CURLMOPT_PIPELINING</td>
*
* Pass 1 to enable or 0 to disable. Enabling pipelining on a multi
* handle will make it attempt to perform HTTP Pipelining as far as
* possible for transfers using this handle. This means that if you add
* a second request that can use an already existing connection, the
* second request will be "piped" on the same connection rather than
* being executed in parallel.
* </td>
* </tr>
* <tr valign="top">
* CURLMOPT_MAXCONNECTS</td>
*
* Pass a number that will be used as the maximum amount of
* simultaneously open connections that libcurl may cache. Default is
* 10. When the cache is full, curl closes the oldest one in the cache
* to prevent the number of open connections from increasing.
* </td>
* </tr>
*
*
*
* </p>
* @return bool Returns true on success, false on failure.
*/
function curl_multi_setopt ($mh, $option, $value) {}
/**
* Initialize a cURL share handle
* @link http://www.php.net/manual/en/function.curl-share-init.php
* @return resource resource of type "cURL Share Handle".
*/
function curl_share_init () {}
/**
* Close a cURL share handle
* @link http://www.php.net/manual/en/function.curl-share-close.php
* @param sh resource <p>
* A cURL share handle returned by curl_share_init
* </p>
* @return void
*/
function curl_share_close ($sh) {}
/**
* Set an option for a cURL share handle.
* @link http://www.php.net/manual/en/function.curl-share-setopt.php
* @param sh resource <p>
* A cURL share handle returned by curl_share_init.
* </p>
* @param option int <p>
*
*
*
* <tr valign="top">
* Option</td>
* Description</td>
* </tr>
*
*
* <tr valign="top">
* CURLSHOPT_SHARE</td>
*
* Specifies a type of data that should be shared.
* </td>
* </tr>
* <tr valign="top">
* CURLSHOPT_UNSHARE</td>
*
* Specifies a type of data that will be no longer shared.
* </td>
* </tr>
*
*
*
* </p>
* @param value string <p>
*
*
*
* <tr valign="top">
* Value</td>
* Description</td>
* </tr>
*
*
* <tr valign="top">
* CURL_LOCK_DATA_COOKIE</td>
*
* Shares cookie data.
* </td>
* </tr>
* <tr valign="top">
* CURL_LOCK_DATA_DNS</td>
*
* Shares DNS cache. Note that when you use cURL multi handles,
* all handles added to the same multi handle will share DNS cache
* by default.
* </td>
* </tr>
* <tr valign="top">
* CURL_LOCK_DATA_SSL_SESSION</td>
*
* Shares SSL session IDs, reducing the time spent on the SSL
* handshake when reconnecting to the same server. Note that SSL
* session IDs are reused withing the same handle by default.
* </td>
* </tr>
*
*
*
* </p>
* @return bool Returns true on success, false on failure.
*/
function curl_share_setopt ($sh, $option, $value) {}
/**
* Create a CURLFile object
* @link http://www.php.net/manual/en/function.curl-file-create.php
* @param filename
* @param mimetype[optional]
* @param postname[optional]
*/
function curl_file_create ($filename, $mimetype, $postname) {}
/**
* Available since PHP 5.1.0
* @link http://www.php.net/manual/en/curl.constants.php
*/
define ('CURLOPT_AUTOREFERER', 58);
define ('CURLOPT_BINARYTRANSFER', 19914);
define ('CURLOPT_BUFFERSIZE', 98);
define ('CURLOPT_CAINFO', 10065);
define ('CURLOPT_CAPATH', 10097);
define ('CURLOPT_CONNECTTIMEOUT', 78);
define ('CURLOPT_COOKIE', 10022);
define ('CURLOPT_COOKIEFILE', 10031);
define ('CURLOPT_COOKIEJAR', 10082);
/**
* Available since PHP 5.1.0
* @link http://www.php.net/manual/en/curl.constants.php
*/
define ('CURLOPT_COOKIESESSION', 96);
define ('CURLOPT_CRLF', 27);
define ('CURLOPT_CUSTOMREQUEST', 10036);
define ('CURLOPT_DNS_CACHE_TIMEOUT', 92);
define ('CURLOPT_DNS_USE_GLOBAL_CACHE', 91);
define ('CURLOPT_EGDSOCKET', 10077);
define ('CURLOPT_ENCODING', 10102);
define ('CURLOPT_FAILONERROR', 45);
define ('CURLOPT_FILE', 10001);
define ('CURLOPT_FILETIME', 69);
/**
* This constant is not available when open_basedir
* or safe_mode are enabled.
* @link http://www.php.net/manual/en/curl.constants.php
*/
define ('CURLOPT_FOLLOWLOCATION', 52);
define ('CURLOPT_FORBID_REUSE', 75);
define ('CURLOPT_FRESH_CONNECT', 74);
define ('CURLOPT_FTPAPPEND', 50);
define ('CURLOPT_FTPLISTONLY', 48);
define ('CURLOPT_FTPPORT', 10017);
define ('CURLOPT_FTP_USE_EPRT', 106);
define ('CURLOPT_FTP_USE_EPSV', 85);
define ('CURLOPT_HEADER', 42);
define ('CURLOPT_HEADERFUNCTION', 20079);
define ('CURLOPT_HTTP200ALIASES', 10104);
define ('CURLOPT_HTTPGET', 80);
define ('CURLOPT_HTTPHEADER', 10023);
define ('CURLOPT_HTTPPROXYTUNNEL', 61);
define ('CURLOPT_HTTP_VERSION', 84);
define ('CURLOPT_INFILE', 10009);
define ('CURLOPT_INFILESIZE', 14);
define ('CURLOPT_INTERFACE', 10062);
define ('CURLOPT_KRB4LEVEL', 10063);
define ('CURLOPT_LOW_SPEED_LIMIT', 19);
define ('CURLOPT_LOW_SPEED_TIME', 20);
define ('CURLOPT_MAXCONNECTS', 71);
define ('CURLOPT_MAXREDIRS', 68);
define ('CURLOPT_NETRC', 51);
define ('CURLOPT_NOBODY', 44);
define ('CURLOPT_NOPROGRESS', 43);
define ('CURLOPT_NOSIGNAL', 99);
define ('CURLOPT_PORT', 3);
define ('CURLOPT_POST', 47);
define ('CURLOPT_POSTFIELDS', 10015);
define ('CURLOPT_POSTQUOTE', 10039);
define ('CURLOPT_PREQUOTE', 10093);
/**
* Available since PHP 5.2.4
* @link http://www.php.net/manual/en/curl.constants.php
*/
define ('CURLOPT_PRIVATE', 10103);
/**
* Available since PHP 5.3.0
* @link http://www.php.net/manual/en/curl.constants.php
*/
define ('CURLOPT_PROGRESSFUNCTION', 20056);
define ('CURLOPT_PROXY', 10004);
define ('CURLOPT_PROXYPORT', 59);
define ('CURLOPT_PROXYTYPE', 101);
define ('CURLOPT_PROXYUSERPWD', 10006);
define ('CURLOPT_PUT', 54);
define ('CURLOPT_QUOTE', 10028);
define ('CURLOPT_RANDOM_FILE', 10076);
define ('CURLOPT_RANGE', 10007);
define ('CURLOPT_READDATA', 10009);
define ('CURLOPT_READFUNCTION', 20012);
define ('CURLOPT_REFERER', 10016);
define ('CURLOPT_RESUME_FROM', 21);
define ('CURLOPT_RETURNTRANSFER', 19913);
define ('CURLOPT_SHARE', 10100);
define ('CURLOPT_SSLCERT', 10025);
define ('CURLOPT_SSLCERTPASSWD', 10026);
define ('CURLOPT_SSLCERTTYPE', 10086);
define ('CURLOPT_SSLENGINE', 10089);
define ('CURLOPT_SSLENGINE_DEFAULT', 90);
define ('CURLOPT_SSLKEY', 10087);
define ('CURLOPT_SSLKEYPASSWD', 10026);
define ('CURLOPT_SSLKEYTYPE', 10088);
define ('CURLOPT_SSLVERSION', 32);
define ('CURLOPT_SSL_CIPHER_LIST', 10083);
define ('CURLOPT_SSL_VERIFYHOST', 81);
define ('CURLOPT_SSL_VERIFYPEER', 64);
define ('CURLOPT_STDERR', 10037);
define ('CURLOPT_TELNETOPTIONS', 10070);
define ('CURLOPT_TIMECONDITION', 33);
define ('CURLOPT_TIMEOUT', 13);
define ('CURLOPT_TIMEVALUE', 34);
define ('CURLOPT_TRANSFERTEXT', 53);
define ('CURLOPT_UNRESTRICTED_AUTH', 105);
define ('CURLOPT_UPLOAD', 46);
define ('CURLOPT_URL', 10002);
define ('CURLOPT_USERAGENT', 10018);
define ('CURLOPT_USERPWD', 10005);
define ('CURLOPT_VERBOSE', 41);
define ('CURLOPT_WRITEFUNCTION', 20011);
define ('CURLOPT_WRITEHEADER', 10029);
define ('CURLE_ABORTED_BY_CALLBACK', 42);
define ('CURLE_BAD_CALLING_ORDER', 44);
define ('CURLE_BAD_CONTENT_ENCODING', 61);
define ('CURLE_BAD_DOWNLOAD_RESUME', 36);
define ('CURLE_BAD_FUNCTION_ARGUMENT', 43);
define ('CURLE_BAD_PASSWORD_ENTERED', 46);
define ('CURLE_COULDNT_CONNECT', 7);
define ('CURLE_COULDNT_RESOLVE_HOST', 6);
define ('CURLE_COULDNT_RESOLVE_PROXY', 5);
define ('CURLE_FAILED_INIT', 2);
define ('CURLE_FILE_COULDNT_READ_FILE', 37);
define ('CURLE_FTP_ACCESS_DENIED', 9);
define ('CURLE_FTP_BAD_DOWNLOAD_RESUME', 36);
define ('CURLE_FTP_CANT_GET_HOST', 15);
define ('CURLE_FTP_CANT_RECONNECT', 16);
define ('CURLE_FTP_COULDNT_GET_SIZE', 32);
define ('CURLE_FTP_COULDNT_RETR_FILE', 19);
define ('CURLE_FTP_COULDNT_SET_ASCII', 29);
define ('CURLE_FTP_COULDNT_SET_BINARY', 17);
define ('CURLE_FTP_COULDNT_STOR_FILE', 25);
define ('CURLE_FTP_COULDNT_USE_REST', 31);
define ('CURLE_FTP_PARTIAL_FILE', 18);
define ('CURLE_FTP_PORT_FAILED', 30);
define ('CURLE_FTP_QUOTE_ERROR', 21);
define ('CURLE_FTP_USER_PASSWORD_INCORRECT', 10);
define ('CURLE_FTP_WEIRD_227_FORMAT', 14);
define ('CURLE_FTP_WEIRD_PASS_REPLY', 11);
define ('CURLE_FTP_WEIRD_PASV_REPLY', 13);
define ('CURLE_FTP_WEIRD_SERVER_REPLY', 8);
define ('CURLE_FTP_WEIRD_USER_REPLY', 12);
define ('CURLE_FTP_WRITE_ERROR', 20);
define ('CURLE_FUNCTION_NOT_FOUND', 41);
define ('CURLE_GOT_NOTHING', 52);
define ('CURLE_HTTP_NOT_FOUND', 22);
define ('CURLE_HTTP_PORT_FAILED', 45);
define ('CURLE_HTTP_POST_ERROR', 34);
define ('CURLE_HTTP_RANGE_ERROR', 33);
define ('CURLE_HTTP_RETURNED_ERROR', 22);
define ('CURLE_LDAP_CANNOT_BIND', 38);
define ('CURLE_LDAP_SEARCH_FAILED', 39);
define ('CURLE_LIBRARY_NOT_FOUND', 40);
define ('CURLE_MALFORMAT_USER', 24);
define ('CURLE_OBSOLETE', 50);
define ('CURLE_OK', 0);
define ('CURLE_OPERATION_TIMEDOUT', 28);
define ('CURLE_OPERATION_TIMEOUTED', 28);
define ('CURLE_OUT_OF_MEMORY', 27);
define ('CURLE_PARTIAL_FILE', 18);
define ('CURLE_READ_ERROR', 26);
define ('CURLE_RECV_ERROR', 56);
define ('CURLE_SEND_ERROR', 55);
define ('CURLE_SHARE_IN_USE', 57);
define ('CURLE_SSL_CACERT', 60);
define ('CURLE_SSL_CERTPROBLEM', 58);
define ('CURLE_SSL_CIPHER', 59);
define ('CURLE_SSL_CONNECT_ERROR', 35);
define ('CURLE_SSL_ENGINE_NOTFOUND', 53);
define ('CURLE_SSL_ENGINE_SETFAILED', 54);
define ('CURLE_SSL_PEER_CERTIFICATE', 51);
define ('CURLE_TELNET_OPTION_SYNTAX', 49);
define ('CURLE_TOO_MANY_REDIRECTS', 47);
define ('CURLE_UNKNOWN_TELNET_OPTION', 48);
define ('CURLE_UNSUPPORTED_PROTOCOL', 1);
define ('CURLE_URL_MALFORMAT', 3);
define ('CURLE_URL_MALFORMAT_USER', 4);
define ('CURLE_WRITE_ERROR', 23);
define ('CURLINFO_CONNECT_TIME', 3145733);
define ('CURLINFO_CONTENT_LENGTH_DOWNLOAD', 3145743);
define ('CURLINFO_CONTENT_LENGTH_UPLOAD', 3145744);
define ('CURLINFO_CONTENT_TYPE', 1048594);
define ('CURLINFO_EFFECTIVE_URL', 1048577);
define ('CURLINFO_FILETIME', 2097166);
/**
* Available since PHP 5.1.3
* @link http://www.php.net/manual/en/curl.constants.php
*/
define ('CURLINFO_HEADER_OUT', 2);
define ('CURLINFO_HEADER_SIZE', 2097163);
define ('CURLINFO_HTTP_CODE', 2097154);
define ('CURLINFO_LASTONE', 42);
define ('CURLINFO_NAMELOOKUP_TIME', 3145732);
define ('CURLINFO_PRETRANSFER_TIME', 3145734);
/**
* Available since PHP 5.2.4
* @link http://www.php.net/manual/en/curl.constants.php
*/
define ('CURLINFO_PRIVATE', 1048597);
define ('CURLINFO_REDIRECT_COUNT', 2097172);
define ('CURLINFO_REDIRECT_TIME', 3145747);
define ('CURLINFO_REQUEST_SIZE', 2097164);
define ('CURLINFO_SIZE_DOWNLOAD', 3145736);
define ('CURLINFO_SIZE_UPLOAD', 3145735);
define ('CURLINFO_SPEED_DOWNLOAD', 3145737);
define ('CURLINFO_SPEED_UPLOAD', 3145738);
define ('CURLINFO_SSL_VERIFYRESULT', 2097165);
define ('CURLINFO_STARTTRANSFER_TIME', 3145745);
define ('CURLINFO_TOTAL_TIME', 3145731);
define ('CURLMSG_DONE', 1);
define ('CURLVERSION_NOW', 3);
define ('CURLM_BAD_EASY_HANDLE', 2);
define ('CURLM_BAD_HANDLE', 1);
define ('CURLM_CALL_MULTI_PERFORM', -1);
define ('CURLM_INTERNAL_ERROR', 4);
define ('CURLM_OK', 0);
define ('CURLM_OUT_OF_MEMORY', 3);
define ('CURLPROXY_HTTP', 0);
define ('CURLPROXY_SOCKS4', 4);
define ('CURLPROXY_SOCKS5', 5);
define ('CURLSHOPT_NONE', 0);
define ('CURLSHOPT_SHARE', 1);
define ('CURLSHOPT_UNSHARE', 2);
define ('CURL_HTTP_VERSION_1_0', 1);
define ('CURL_HTTP_VERSION_1_1', 2);
define ('CURL_HTTP_VERSION_NONE', 0);
define ('CURL_LOCK_DATA_COOKIE', 2);
define ('CURL_LOCK_DATA_DNS', 3);
define ('CURL_LOCK_DATA_SSL_SESSION', 4);
define ('CURL_NETRC_IGNORED', 0);
define ('CURL_NETRC_OPTIONAL', 1);
define ('CURL_NETRC_REQUIRED', 2);
define ('CURL_SSLVERSION_DEFAULT', 0);
define ('CURL_SSLVERSION_SSLv2', 2);
define ('CURL_SSLVERSION_SSLv3', 3);
define ('CURL_SSLVERSION_TLSv1', 1);
define ('CURL_TIMECOND_IFMODSINCE', 1);
define ('CURL_TIMECOND_IFUNMODSINCE', 2);
define ('CURL_TIMECOND_LASTMOD', 3);
define ('CURL_TIMECOND_NONE', 0);
define ('CURL_VERSION_IPV6', 1);
define ('CURL_VERSION_KERBEROS4', 2);
define ('CURL_VERSION_LIBZ', 8);
define ('CURL_VERSION_SSL', 4);
define ('CURLOPT_HTTPAUTH', 107);
define ('CURLAUTH_ANY', -17);
define ('CURLAUTH_ANYSAFE', -18);
define ('CURLAUTH_BASIC', 1);
define ('CURLAUTH_DIGEST', 2);
define ('CURLAUTH_GSSNEGOTIATE', 4);
define ('CURLAUTH_NONE', 0);
define ('CURLAUTH_NTLM', 8);
define ('CURLINFO_HTTP_CONNECTCODE', 2097174);
define ('CURLOPT_FTP_CREATE_MISSING_DIRS', 110);
define ('CURLOPT_PROXYAUTH', 111);
define ('CURLE_FILESIZE_EXCEEDED', 63);
define ('CURLE_LDAP_INVALID_URL', 62);
define ('CURLINFO_HTTPAUTH_AVAIL', 2097175);
define ('CURLINFO_RESPONSE_CODE', 2097154);
define ('CURLINFO_PROXYAUTH_AVAIL', 2097176);
define ('CURLOPT_FTP_RESPONSE_TIMEOUT', 112);
define ('CURLOPT_IPRESOLVE', 113);
define ('CURLOPT_MAXFILESIZE', 114);
define ('CURL_IPRESOLVE_V4', 1);
define ('CURL_IPRESOLVE_V6', 2);
define ('CURL_IPRESOLVE_WHATEVER', 0);
define ('CURLE_FTP_SSL_FAILED', 64);
/**
* Available since PHP 5.2.0
* @link http://www.php.net/manual/en/curl.constants.php
*/
define ('CURLFTPSSL_ALL', 3);
/**
* Available since PHP 5.2.0
* @link http://www.php.net/manual/en/curl.constants.php
*/
define ('CURLFTPSSL_CONTROL', 2);
/**
* Available since PHP 5.2.0
* @link http://www.php.net/manual/en/curl.constants.php
*/
define ('CURLFTPSSL_NONE', 0);
/**
* Available since PHP 5.2.0
* @link http://www.php.net/manual/en/curl.constants.php
*/
define ('CURLFTPSSL_TRY', 1);
/**
* Available since PHP 5.2.0
* @link http://www.php.net/manual/en/curl.constants.php
*/
define ('CURLOPT_FTP_SSL', 119);
define ('CURLOPT_NETRC_FILE', 10118);
/**
* Available since PHP 5.1.0
* @link http://www.php.net/manual/en/curl.constants.php
*/
define ('CURLFTPAUTH_DEFAULT', 0);
/**
* Available since PHP 5.1.0
* @link http://www.php.net/manual/en/curl.constants.php
*/
define ('CURLFTPAUTH_SSL', 1);
/**
* Available since PHP 5.1.0
* @link http://www.php.net/manual/en/curl.constants.php
*/
define ('CURLFTPAUTH_TLS', 2);
/**
* Available since PHP 5.1.0
* @link http://www.php.net/manual/en/curl.constants.php
*/
define ('CURLOPT_FTPSSLAUTH', 129);
define ('CURLOPT_FTP_ACCOUNT', 10134);
/**
* Available since PHP 5.2.1
* @link http://www.php.net/manual/en/curl.constants.php
*/
define ('CURLOPT_TCP_NODELAY', 121);
define ('CURLINFO_OS_ERRNO', 2097177);
define ('CURLINFO_NUM_CONNECTS', 2097178);
define ('CURLINFO_SSL_ENGINES', 4194331);
define ('CURLINFO_COOKIELIST', 4194332);
define ('CURLOPT_COOKIELIST', 10135);
define ('CURLOPT_IGNORE_CONTENT_LENGTH', 136);
define ('CURLOPT_FTP_SKIP_PASV_IP', 137);
define ('CURLOPT_FTP_FILEMETHOD', 138);
define ('CURLOPT_CONNECT_ONLY', 141);
define ('CURLOPT_LOCALPORT', 139);
define ('CURLOPT_LOCALPORTRANGE', 140);
define ('CURLFTPMETHOD_MULTICWD', 1);
define ('CURLFTPMETHOD_NOCWD', 2);
define ('CURLFTPMETHOD_SINGLECWD', 3);
define ('CURLINFO_FTP_ENTRY_PATH', 1048606);
define ('CURLOPT_FTP_ALTERNATIVE_TO_USER', 10147);
/**
* Available since PHP 5.4.0 and cURL 7.15.5
* @link http://www.php.net/manual/en/curl.constants.php
*/
define ('CURLOPT_MAX_RECV_SPEED_LARGE', 30146);
/**
* Available since PHP 5.4.0 and cURL 7.15.5
* @link http://www.php.net/manual/en/curl.constants.php
*/
define ('CURLOPT_MAX_SEND_SPEED_LARGE', 30145);
define ('CURLOPT_SSL_SESSIONID_CACHE', 150);
/**
* Available since PHP 5.5.0 and cURL 7.16.0.
* @link http://www.php.net/manual/en/curl.constants.php
*/
define ('CURLMOPT_PIPELINING', 3);
define ('CURLE_SSH', 79);
define ('CURLOPT_FTP_SSL_CCC', 154);
define ('CURLOPT_SSH_AUTH_TYPES', 151);
define ('CURLOPT_SSH_PRIVATE_KEYFILE', 10153);
define ('CURLOPT_SSH_PUBLIC_KEYFILE', 10152);
define ('CURLFTPSSL_CCC_ACTIVE', 2);
define ('CURLFTPSSL_CCC_NONE', 0);
define ('CURLFTPSSL_CCC_PASSIVE', 1);
define ('CURLOPT_CONNECTTIMEOUT_MS', 156);
define ('CURLOPT_HTTP_CONTENT_DECODING', 158);
define ('CURLOPT_HTTP_TRANSFER_DECODING', 157);
define ('CURLOPT_TIMEOUT_MS', 155);
/**
* Available since PHP 5.5.0 and cURL 7.16.3.
* @link http://www.php.net/manual/en/curl.constants.php
*/
define ('CURLMOPT_MAXCONNECTS', 6);
define ('CURLOPT_KRBLEVEL', 10063);
define ('CURLOPT_NEW_DIRECTORY_PERMS', 160);
define ('CURLOPT_NEW_FILE_PERMS', 159);
define ('CURLOPT_APPEND', 50);
define ('CURLOPT_DIRLISTONLY', 48);
define ('CURLOPT_USE_SSL', 119);
define ('CURLUSESSL_ALL', 3);
define ('CURLUSESSL_CONTROL', 2);
define ('CURLUSESSL_NONE', 0);
define ('CURLUSESSL_TRY', 1);
define ('CURLOPT_SSH_HOST_PUBLIC_KEY_MD5', 10162);
define ('CURLOPT_PROXY_TRANSFER_MODE', 166);
/**
* Available since PHP 5.5.0 and cURL 7.18.0.
* @link http://www.php.net/manual/en/curl.constants.php
*/
define ('CURLPAUSE_ALL', 5);
/**
* Available since PHP 5.5.0 and cURL 7.18.0.
* @link http://www.php.net/manual/en/curl.constants.php
*/
define ('CURLPAUSE_CONT', 0);
/**
* Available since PHP 5.5.0 and cURL 7.18.0.
* @link http://www.php.net/manual/en/curl.constants.php
*/
define ('CURLPAUSE_RECV', 1);
/**
* Available since PHP 5.5.0 and cURL 7.18.0.
* @link http://www.php.net/manual/en/curl.constants.php
*/
define ('CURLPAUSE_RECV_CONT', 0);
/**
* Available since PHP 5.5.0 and cURL 7.18.0.
* @link http://www.php.net/manual/en/curl.constants.php
*/
define ('CURLPAUSE_SEND', 4);
/**
* Available since PHP 5.5.0 and cURL 7.18.0.
* @link http://www.php.net/manual/en/curl.constants.php
*/
define ('CURLPAUSE_SEND_CONT', 0);
define ('CURL_READFUNC_PAUSE', 268435457);
define ('CURL_WRITEFUNC_PAUSE', 268435457);
define ('CURLINFO_REDIRECT_URL', 1048607);
define ('CURLINFO_APPCONNECT_TIME', 3145761);
define ('CURLINFO_PRIMARY_IP', 1048608);
define ('CURLOPT_ADDRESS_SCOPE', 171);
define ('CURLOPT_CRLFILE', 10169);
define ('CURLOPT_ISSUERCERT', 10170);
define ('CURLOPT_KEYPASSWD', 10026);
define ('CURLSSH_AUTH_ANY', -1);
define ('CURLSSH_AUTH_DEFAULT', -1);
define ('CURLSSH_AUTH_HOST', 4);
define ('CURLSSH_AUTH_KEYBOARD', 8);
define ('CURLSSH_AUTH_NONE', 0);
define ('CURLSSH_AUTH_PASSWORD', 2);
define ('CURLSSH_AUTH_PUBLICKEY', 1);
define ('CURLINFO_CERTINFO', 4194338);
define ('CURLOPT_CERTINFO', 172);
define ('CURLOPT_PASSWORD', 10174);
define ('CURLOPT_POSTREDIR', 161);
define ('CURLOPT_PROXYPASSWORD', 10176);
define ('CURLOPT_PROXYUSERNAME', 10175);
define ('CURLOPT_USERNAME', 10173);
define ('CURLAUTH_DIGEST_IE', 16);
define ('CURLINFO_CONDITION_UNMET', 2097187);
define ('CURLOPT_NOPROXY', 10177);
define ('CURLOPT_PROTOCOLS', 181);
define ('CURLOPT_REDIR_PROTOCOLS', 182);
define ('CURLOPT_SOCKS5_GSSAPI_NEC', 180);
define ('CURLOPT_SOCKS5_GSSAPI_SERVICE', 10179);
define ('CURLOPT_TFTP_BLKSIZE', 178);
define ('CURLPROTO_ALL', -1);
define ('CURLPROTO_DICT', 512);
define ('CURLPROTO_FILE', 1024);
define ('CURLPROTO_FTP', 4);
define ('CURLPROTO_FTPS', 8);
define ('CURLPROTO_HTTP', 1);
define ('CURLPROTO_HTTPS', 2);
define ('CURLPROTO_LDAP', 128);
define ('CURLPROTO_LDAPS', 256);
define ('CURLPROTO_SCP', 16);
define ('CURLPROTO_SFTP', 32);
define ('CURLPROTO_TELNET', 64);
define ('CURLPROTO_TFTP', 2048);
define ('CURLOPT_SSH_KNOWNHOSTS', 10183);
define ('CURLINFO_RTSP_CLIENT_CSEQ', 2097189);
define ('CURLINFO_RTSP_CSEQ_RECV', 2097191);
define ('CURLINFO_RTSP_SERVER_CSEQ', 2097190);
define ('CURLINFO_RTSP_SESSION_ID', 1048612);
define ('CURLOPT_FTP_USE_PRET', 188);
define ('CURLOPT_MAIL_FROM', 10186);
define ('CURLOPT_MAIL_RCPT', 10187);
define ('CURLOPT_RTSP_CLIENT_CSEQ', 193);
define ('CURLOPT_RTSP_REQUEST', 189);
define ('CURLOPT_RTSP_SERVER_CSEQ', 194);
define ('CURLOPT_RTSP_SESSION_ID', 10190);
define ('CURLOPT_RTSP_STREAM_URI', 10191);
define ('CURLOPT_RTSP_TRANSPORT', 10192);
define ('CURLPROTO_IMAP', 4096);
define ('CURLPROTO_IMAPS', 8192);
define ('CURLPROTO_POP3', 16384);
define ('CURLPROTO_POP3S', 32768);
define ('CURLPROTO_RTSP', 262144);
define ('CURLPROTO_SMTP', 65536);
define ('CURLPROTO_SMTPS', 131072);
define ('CURL_RTSPREQ_ANNOUNCE', 3);
define ('CURL_RTSPREQ_DESCRIBE', 2);
define ('CURL_RTSPREQ_GET_PARAMETER', 8);
define ('CURL_RTSPREQ_OPTIONS', 1);
define ('CURL_RTSPREQ_PAUSE', 6);
define ('CURL_RTSPREQ_PLAY', 5);
define ('CURL_RTSPREQ_RECEIVE', 11);
define ('CURL_RTSPREQ_RECORD', 10);
define ('CURL_RTSPREQ_SETUP', 4);
define ('CURL_RTSPREQ_SET_PARAMETER', 9);
define ('CURL_RTSPREQ_TEARDOWN', 7);
define ('CURLINFO_LOCAL_IP', 1048617);
define ('CURLINFO_LOCAL_PORT', 2097194);
define ('CURLINFO_PRIMARY_PORT', 2097192);
define ('CURLOPT_FNMATCH_FUNCTION', 20200);
define ('CURLOPT_WILDCARDMATCH', 197);
define ('CURLPROTO_RTMP', 524288);
define ('CURLPROTO_RTMPE', 2097152);
define ('CURLPROTO_RTMPS', 8388608);
define ('CURLPROTO_RTMPT', 1048576);
define ('CURLPROTO_RTMPTE', 4194304);
define ('CURLPROTO_RTMPTS', 16777216);
define ('CURL_FNMATCHFUNC_FAIL', 2);
define ('CURL_FNMATCHFUNC_MATCH', 0);
define ('CURL_FNMATCHFUNC_NOMATCH', 1);
define ('CURLOPT_SAFE_UPLOAD', -1);
// End of curl v.
?>
|