PHP ftp_quit() Function
Complete PHP FTP Reference
Definition and Usage
The ftp_quit() function closes an FTP connection.
Syntax
Parameter |
Description |
ftp_connection |
Required. Specifies the FTP connection to close |
Tips and Notes
Tip: This function is an alias of ftp_close().
Example
<?php
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
//some code to be executed
ftp_quit($conn);
?>
|
Complete PHP FTP Reference
|
|
|
See why there are 20,000+ Ektron integrations worldwide.
Request an INSTANT DEMO or download a FREE TRIAL today. |
|
|
|