ftp_base::rawlist
Метод класса: ftp_base{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$ftp_base = new ftp_base(); $ftp_base->rawlist( $pathname, $arg );
- $pathname
- .
По умолчанию:"" - $arg
- .
По умолчанию:""
Код ftp_base::rawlist() ftp base::rawlist WP 7.0.4
function rawlist($pathname="", $arg="") {
return $this->_list(($arg?" ".$arg:"").($pathname?" ".$pathname:""), "LIST", "rawlist");
}