WP_Filesystem_SSH2::sftp_path()publicWP 4.4.0

Gets the ssh2.sftp PHP stream wrapper path to open for the given file.

This method also works around a PHP bug where the root directory (/) cannot be opened by PHP functions, causing a false failure. In order to work around this, the path is converted to /./ which is semantically the same as / See https://bugs.php.net/bug.php?id=64169 for more details.

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

Хуков нет.

Возвращает

Строку. The ssh2.sftp:// wrapped path to use.

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

$WP_Filesystem_SSH2 = new WP_Filesystem_SSH2();
$WP_Filesystem_SSH2->sftp_path( $path );
$path(строка) (обязательный)
The File/Directory path on the remote server to return

Список изменений

С версии 4.4.0 Введена.

Код WP_Filesystem_SSH2::sftp_path() WP 6.5.2

public function sftp_path( $path ) {
	if ( '/' === $path ) {
		$path = '/./';
	}

	return 'ssh2.sftp://' . $this->sftp_link . '/' . ltrim( $path, '/' );
}