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