ftp_base::nlist
Method of the class: ftp_base{}
No Hooks.
Returns
null. Nothing (null).
Usage
$ftp_base = new ftp_base(); $ftp_base->nlist( $pathname, $arg );
- $pathname
- .
Default:"" - $arg
- .
Default:""
ftp_base::nlist() ftp base::nlist code WP 7.0
function nlist($pathname="", $arg="") {
return $this->_list(($arg?" ".$arg:"").($pathname?" ".$pathname:""), "NLST", "nlist");
}