ftp_base::rawlistpublicWP 1.0

Метод класса: ftp_base{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$ftp_base = new ftp_base();
$ftp_base->rawlist( $pathname, $arg );
$pathname
.
По умолчанию: ""
$arg
.
По умолчанию: ""

Код ftp_base::rawlist() WP 7.0.4

function rawlist($pathname="", $arg="") {
	return $this->_list(($arg?" ".$arg:"").($pathname?" ".$pathname:""), "LIST", "rawlist");
}