ftp_base::rawlist()publicWP 1.0

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

Хуков нет.

Возвращает

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

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

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

Код ftp_base::rawlist() WP 6.4.3

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