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