ftp_base::delete() –

You appear to be a bot. Output may be restricted

Description

Usage

ftp_base::delete( $pathname );

Parameters

$pathname
( mixed ) required

Returns

void

Source

File name: wordpress/wp-admin/includes/class-ftp.php
Lines:

1 to 5 of 5
  function delete($pathname) {
    if(!$this->_exec("DELE ".$pathname, "delete")) return FALSE;
    if(!$this->ftp_base::_checkCode()) return FALSE;
    return TRUE;
  }
 

 View on GitHub View on Trac