黄色电影一区二区,丰满熟妇AV,97成人资源,日韩在线性爱

PHP ftp_quit() 函數(shù)

PHP ftp_quit() 函數(shù)

PHP FTP 參考手冊 完整的 PHP FTP 參考手冊

定義和用法

ftp_quit() 函數(shù)關閉 FTP 連接。

語法

ftp_quit(ftp_connection)

參數(shù) 描述
ftp_connection 必需。規(guī)定要關閉的 FTP 連接。

提示和注釋

提示:該函數(shù)是 ftp_close() 函數(shù)的別名。

實例

<?php
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
//some code to be executed
ftp_quit($conn);
?>

PHP FTP 參考手冊 完整的 PHP FTP 參考手冊
相關文章