请输入您要查询的百科知识:

 

词条 ftp_delete
释义

定义

(PHP 4, PHP 5)

ftp_delete — 删除 FTP 服务器上的一个文件。

语法

bool ftp_delete ( resource $ftp_stream , string $path )

ftp_delete() 函数用来删除 FTP 服务器上的一个由参数 path 指定的的文件。

成功时返回 TRUE, 或者在失败时返回 FALSE.

参数 描述

ftp_connection 必需。规定要使用的 FTP 连接(FTP 连接的标识符)。

path 必需。规定要删除的文件的路径。

说明

ftp_delete() 函数用来删除 FTP 服务器上的一个由参数 path 指定的的文件。

例子

<?php

$conn = ftp_connect($ftp_server) or die("Could not connect");

ftp_login($conn,"admin","ert456");

echo ftp_delete($conn,"test.txt");

ftp_close($conn);

?>

输出:

1

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/12/23 6:18:25