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
|
<?php
// Start of ftp v.
/**
* Opens an FTP connection
* @link http://www.php.net/manual/en/function.ftp-connect.php
* @param host string <p>
* The FTP server address. This parameter shouldn't have any trailing
* slashes and shouldn't be prefixed with ftp://.
* </p>
* @param port int[optional] <p>
* This parameter specifies an alternate port to connect to. If it is
* omitted or set to zero, then the default FTP port, 21, will be used.
* </p>
* @param timeout int[optional] <p>
* This parameter specifies the timeout for all subsequent network operations.
* If omitted, the default value is 90 seconds. The timeout can be changed and
* queried at any time with ftp_set_option and
* ftp_get_option.
* </p>
* @return resource a FTP stream on success or false on error.
*/
function ftp_connect ($host, $port = null, $timeout = null) {}
/**
* Opens an Secure SSL-FTP connection
* @link http://www.php.net/manual/en/function.ftp-ssl-connect.php
* @param host string <p>
* The FTP server address. This parameter shouldn't have any trailing
* slashes and shouldn't be prefixed with ftp://.
* </p>
* @param port int[optional] <p>
* This parameter specifies an alternate port to connect to. If it is
* omitted or set to zero, then the default FTP port, 21, will be used.
* </p>
* @param timeout int[optional] <p>
* This parameter specifies the timeout for all subsequent network operations.
* If omitted, the default value is 90 seconds. The timeout can be changed and
* queried at any time with ftp_set_option and
* ftp_get_option.
* </p>
* @return resource a SSL-FTP stream on success or false on error.
*/
function ftp_ssl_connect ($host, $port = null, $timeout = null) {}
/**
* Logs in to an FTP connection
* @link http://www.php.net/manual/en/function.ftp-login.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @param username string <p>
* The username (USER).
* </p>
* @param password string <p>
* The password (PASS).
* </p>
* @return bool Returns true on success, false on failure.
* If login fails, PHP will also throw a warning.
*/
function ftp_login ($ftp_stream, $username, $password) {}
/**
* Returns the current directory name
* @link http://www.php.net/manual/en/function.ftp-pwd.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @return string the current directory name or false on error.
*/
function ftp_pwd ($ftp_stream) {}
/**
* Changes to the parent directory
* @link http://www.php.net/manual/en/function.ftp-cdup.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @return bool Returns true on success, false on failure.
*/
function ftp_cdup ($ftp_stream) {}
/**
* Changes the current directory on a FTP server
* @link http://www.php.net/manual/en/function.ftp-chdir.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @param directory string <p>
* The target directory.
* </p>
* @return bool Returns true on success, false on failure.
* If changing directory fails, PHP will also throw a warning.
*/
function ftp_chdir ($ftp_stream, $directory) {}
/**
* Requests execution of a command on the FTP server
* @link http://www.php.net/manual/en/function.ftp-exec.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @param command string <p>
* The command to execute.
* </p>
* @return bool true if the command was successful (server sent response code:
* 200); otherwise returns false.
*/
function ftp_exec ($ftp_stream, $command) {}
/**
* Sends an arbitrary command to an FTP server
* @link http://www.php.net/manual/en/function.ftp-raw.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @param command string <p>
* The command to execute.
* </p>
* @return array the server's response as an array of strings.
* No parsing is performed on the response string, nor does
* ftp_raw determine if the command succeeded.
*/
function ftp_raw ($ftp_stream, $command) {}
/**
* Creates a directory
* @link http://www.php.net/manual/en/function.ftp-mkdir.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @param directory string <p>
* The name of the directory that will be created.
* </p>
* @return string the newly created directory name on success or false on error.
*/
function ftp_mkdir ($ftp_stream, $directory) {}
/**
* Removes a directory
* @link http://www.php.net/manual/en/function.ftp-rmdir.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @param directory string <p>
* The directory to delete. This must be either an absolute or relative
* path to an empty directory.
* </p>
* @return bool Returns true on success, false on failure.
*/
function ftp_rmdir ($ftp_stream, $directory) {}
/**
* Set permissions on a file via FTP
* @link http://www.php.net/manual/en/function.ftp-chmod.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @param mode int <p>
* The new permissions, given as an octal value.
* </p>
* @param filename string <p>
* The remote file.
* </p>
* @return int the new file permissions on success or false on error.
*/
function ftp_chmod ($ftp_stream, $mode, $filename) {}
/**
* Allocates space for a file to be uploaded
* @link http://www.php.net/manual/en/function.ftp-alloc.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @param filesize int <p>
* The number of bytes to allocate.
* </p>
* @param result string[optional] <p>
* A textual representation of the servers response will be returned by
* reference in result if a variable is provided.
* </p>
* @return bool Returns true on success, false on failure.
*/
function ftp_alloc ($ftp_stream, $filesize, &$result = null) {}
/**
* Returns a list of files in the given directory
* @link http://www.php.net/manual/en/function.ftp-nlist.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @param directory string <p>
* The directory to be listed. This parameter can also include arguments, eg.
* ftp_nlist($conn_id, "-la /your/dir");
* Note that this parameter isn't escaped so there may be some issues with
* filenames containing spaces and other characters.
* </p>
* @return array an array of filenames from the specified directory on success or
* false on error.
*/
function ftp_nlist ($ftp_stream, $directory) {}
/**
* Returns a detailed list of files in the given directory
* @link http://www.php.net/manual/en/function.ftp-rawlist.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @param directory string <p>
* The directory path. May include arguments for the LIST
* command.
* </p>
* @param recursive bool[optional] <p>
* If set to true, the issued command will be LIST -R.
* </p>
* @return mixed an array where each element corresponds to one line of text. Returns
* false when passed directory is invalid.
* </p>
* <p>
* The output is not parsed in any way. The system type identifier returned by
* ftp_systype can be used to determine how the results
* should be interpreted.
*/
function ftp_rawlist ($ftp_stream, $directory, $recursive = null) {}
/**
* Returns the system type identifier of the remote FTP server
* @link http://www.php.net/manual/en/function.ftp-systype.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @return string the remote system type, or false on error.
*/
function ftp_systype ($ftp_stream) {}
/**
* Turns passive mode on or off
* @link http://www.php.net/manual/en/function.ftp-pasv.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @param pasv bool <p>
* If true, the passive mode is turned on, else it's turned off.
* </p>
* @return bool Returns true on success, false on failure.
*/
function ftp_pasv ($ftp_stream, $pasv) {}
/**
* Downloads a file from the FTP server
* @link http://www.php.net/manual/en/function.ftp-get.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @param local_file string <p>
* The local file path (will be overwritten if the file already exists).
* </p>
* @param remote_file string <p>
* The remote file path.
* </p>
* @param mode int <p>
* The transfer mode. Must be either FTP_ASCII or
* FTP_BINARY.
* </p>
* @param resumepos int[optional] <p>
* The position in the remote file to start downloading from.
* </p>
* @return bool Returns true on success, false on failure.
*/
function ftp_get ($ftp_stream, $local_file, $remote_file, $mode, $resumepos = null) {}
/**
* Downloads a file from the FTP server and saves to an open file
* @link http://www.php.net/manual/en/function.ftp-fget.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @param handle resource <p>
* An open file pointer in which we store the data.
* </p>
* @param remote_file string <p>
* The remote file path.
* </p>
* @param mode int <p>
* The transfer mode. Must be either FTP_ASCII or
* FTP_BINARY.
* </p>
* @param resumepos int[optional] <p>
* The position in the remote file to start downloading from.
* </p>
* @return bool Returns true on success, false on failure.
*/
function ftp_fget ($ftp_stream, $handle, $remote_file, $mode, $resumepos = null) {}
/**
* Uploads a file to the FTP server
* @link http://www.php.net/manual/en/function.ftp-put.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @param remote_file string <p>
* The remote file path.
* </p>
* @param local_file string <p>
* The local file path.
* </p>
* @param mode int <p>
* The transfer mode. Must be either FTP_ASCII or
* FTP_BINARY.
* </p>
* @param startpos int[optional] <p>The position in the remote file to start uploading to.</p>
* @return bool Returns true on success, false on failure.
*/
function ftp_put ($ftp_stream, $remote_file, $local_file, $mode, $startpos = null) {}
/**
* Uploads from an open file to the FTP server
* @link http://www.php.net/manual/en/function.ftp-fput.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @param remote_file string <p>
* The remote file path.
* </p>
* @param handle resource <p>
* An open file pointer on the local file. Reading stops at end of file.
* </p>
* @param mode int <p>
* The transfer mode. Must be either FTP_ASCII or
* FTP_BINARY.
* </p>
* @param startpos int[optional] <p>The position in the remote file to start uploading to.</p>
* @return bool Returns true on success, false on failure.
*/
function ftp_fput ($ftp_stream, $remote_file, $handle, $mode, $startpos = null) {}
/**
* Returns the size of the given file
* @link http://www.php.net/manual/en/function.ftp-size.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @param remote_file string <p>
* The remote file.
* </p>
* @return int the file size on success, or -1 on error.
*/
function ftp_size ($ftp_stream, $remote_file) {}
/**
* Returns the last modified time of the given file
* @link http://www.php.net/manual/en/function.ftp-mdtm.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @param remote_file string <p>
* The file from which to extract the last modification time.
* </p>
* @return int the last modified time as a Unix timestamp on success, or -1 on
* error.
*/
function ftp_mdtm ($ftp_stream, $remote_file) {}
/**
* Renames a file or a directory on the FTP server
* @link http://www.php.net/manual/en/function.ftp-rename.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @param oldname string <p>
* The old file/directory name.
* </p>
* @param newname string <p>
* The new name.
* </p>
* @return bool Returns true on success, false on failure.
*/
function ftp_rename ($ftp_stream, $oldname, $newname) {}
/**
* Deletes a file on the FTP server
* @link http://www.php.net/manual/en/function.ftp-delete.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @param path string <p>
* The file to delete.
* </p>
* @return bool Returns true on success, false on failure.
*/
function ftp_delete ($ftp_stream, $path) {}
/**
* Sends a SITE command to the server
* @link http://www.php.net/manual/en/function.ftp-site.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @param command string <p>
* The SITE command. Note that this parameter isn't escaped so there may
* be some issues with filenames containing spaces and other characters.
* </p>
* @return bool Returns true on success, false on failure.
*/
function ftp_site ($ftp_stream, $command) {}
/**
* Closes an FTP connection
* @link http://www.php.net/manual/en/function.ftp-close.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @return bool Returns true on success, false on failure.
*/
function ftp_close ($ftp_stream) {}
/**
* Set miscellaneous runtime FTP options
* @link http://www.php.net/manual/en/function.ftp-set-option.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @param option int <p>
* Currently, the following options are supported:
* <table>
* Supported runtime FTP options
*
*
* <tr valign="top">
* <td>FTP_TIMEOUT_SEC</td>
* <td>
* Changes the timeout in seconds used for all network related
* functions. value must be an integer that
* is greater than 0. The default timeout is 90 seconds.
* </td>
* </tr>
* <tr valign="top">
* <td>FTP_AUTOSEEK</td>
* <td>
* When enabled, GET or PUT requests with a
* resumepos or startpos
* parameter will first seek to the requested position within the file.
* This is enabled by default.
* </td>
* </tr>
*
*
* </table>
* </p>
* @param value mixed <p>
* This parameter depends on which option is chosen
* to be altered.
* </p>
* @return bool true if the option could be set; false if not. A warning
* message will be thrown if the option is not
* supported or the passed value doesn't match the
* expected value for the given option.
*/
function ftp_set_option ($ftp_stream, $option, $value) {}
/**
* Retrieves various runtime behaviours of the current FTP stream
* @link http://www.php.net/manual/en/function.ftp-get-option.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @param option int <p>
* Currently, the following options are supported:
* <table>
* Supported runtime FTP options
*
*
* <tr valign="top">
* <td>FTP_TIMEOUT_SEC</td>
* <td>
* Returns the current timeout used for network related operations.
* </td>
* </tr>
* <tr valign="top">
* <td>FTP_AUTOSEEK</td>
* <td>
* Returns true if this option is on, false otherwise.
* </td>
* </tr>
*
*
* </table>
* </p>
* @return mixed the value on success or false if the given
* option is not supported. In the latter case, a
* warning message is also thrown.
*/
function ftp_get_option ($ftp_stream, $option) {}
/**
* Retrieves a file from the FTP server and writes it to an open file (non-blocking)
* @link http://www.php.net/manual/en/function.ftp-nb-fget.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @param handle resource <p>
* An open file pointer in which we store the data.
* </p>
* @param remote_file string <p>
* The remote file path.
* </p>
* @param mode int <p>
* The transfer mode. Must be either FTP_ASCII or
* FTP_BINARY.
* </p>
* @param resumepos int[optional] <p>The position in the remote file to start downloading from.</p>
* @return int FTP_FAILED or FTP_FINISHED
* or FTP_MOREDATA.
*/
function ftp_nb_fget ($ftp_stream, $handle, $remote_file, $mode, $resumepos = null) {}
/**
* Retrieves a file from the FTP server and writes it to a local file (non-blocking)
* @link http://www.php.net/manual/en/function.ftp-nb-get.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @param local_file string <p>
* The local file path (will be overwritten if the file already exists).
* </p>
* @param remote_file string <p>
* The remote file path.
* </p>
* @param mode int <p>
* The transfer mode. Must be either FTP_ASCII or
* FTP_BINARY.
* </p>
* @param resumepos int[optional] <p>The position in the remote file to start downloading from.</p>
* @return int FTP_FAILED or FTP_FINISHED
* or FTP_MOREDATA.
*/
function ftp_nb_get ($ftp_stream, $local_file, $remote_file, $mode, $resumepos = null) {}
/**
* Continues retrieving/sending a file (non-blocking)
* @link http://www.php.net/manual/en/function.ftp-nb-continue.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @return int FTP_FAILED or FTP_FINISHED
* or FTP_MOREDATA.
*/
function ftp_nb_continue ($ftp_stream) {}
/**
* Stores a file on the FTP server (non-blocking)
* @link http://www.php.net/manual/en/function.ftp-nb-put.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @param remote_file string <p>
* The remote file path.
* </p>
* @param local_file string <p>
* The local file path.
* </p>
* @param mode int <p>
* The transfer mode. Must be either FTP_ASCII or
* FTP_BINARY.
* </p>
* @param startpos int[optional] <p>The position in the remote file to start uploading to.</p>
* @return int FTP_FAILED or FTP_FINISHED
* or FTP_MOREDATA.
*/
function ftp_nb_put ($ftp_stream, $remote_file, $local_file, $mode, $startpos = null) {}
/**
* Stores a file from an open file to the FTP server (non-blocking)
* @link http://www.php.net/manual/en/function.ftp-nb-fput.php
* @param ftp_stream resource <p>
* The link identifier of the FTP connection.
* </p>
* @param remote_file string <p>
* The remote file path.
* </p>
* @param handle resource <p>
* An open file pointer on the local file. Reading stops at end of file.
* </p>
* @param mode int <p>
* The transfer mode. Must be either FTP_ASCII or
* FTP_BINARY.
* </p>
* @param startpos int[optional] <p>The position in the remote file to start uploading to.</p>
* @return int FTP_FAILED or FTP_FINISHED
* or FTP_MOREDATA.
*/
function ftp_nb_fput ($ftp_stream, $remote_file, $handle, $mode, $startpos = null) {}
/**
* &Alias; <function>ftp_close</function>
* @link http://www.php.net/manual/en/function.ftp-quit.php
* @param ftp
*/
function ftp_quit ($ftp) {}
/**
* <p></p>
* @link http://www.php.net/manual/en/ftp.constants.php
*/
define ('FTP_ASCII', 1);
/**
* <p></p>
* @link http://www.php.net/manual/en/ftp.constants.php
*/
define ('FTP_TEXT', 1);
/**
* <p></p>
* @link http://www.php.net/manual/en/ftp.constants.php
*/
define ('FTP_BINARY', 2);
/**
* <p></p>
* @link http://www.php.net/manual/en/ftp.constants.php
*/
define ('FTP_IMAGE', 2);
/**
* <p>
* Automatically determine resume position and start position for GET and PUT requests
* (only works if FTP_AUTOSEEK is enabled)
* </p>
* @link http://www.php.net/manual/en/ftp.constants.php
*/
define ('FTP_AUTORESUME', -1);
/**
* <p>
* See ftp_set_option for information.
* </p>
* @link http://www.php.net/manual/en/ftp.constants.php
*/
define ('FTP_TIMEOUT_SEC', 0);
/**
* <p>
* See ftp_set_option for information.
* </p>
* @link http://www.php.net/manual/en/ftp.constants.php
*/
define ('FTP_AUTOSEEK', 1);
/**
* <p>
* Asynchronous transfer has failed
* </p>
* @link http://www.php.net/manual/en/ftp.constants.php
*/
define ('FTP_FAILED', 0);
/**
* <p>
* Asynchronous transfer has finished
* </p>
* @link http://www.php.net/manual/en/ftp.constants.php
*/
define ('FTP_FINISHED', 1);
/**
* <p>
* Asynchronous transfer is still active
* </p>
* @link http://www.php.net/manual/en/ftp.constants.php
*/
define ('FTP_MOREDATA', 2);
// End of ftp v.
?>
|