Home > PHP > Function > SSH2 > ssh2_scp_send()

ssh2_scp_send()

ssh2_scp_send - Send a file via SCP

Syntax

bool ssh2_scp_send (resource $session, string $local_file, string $remote_file, int $create_mode)

Arguments

  • session - An SSH connection link identifier, obtained from a call to ssh2_connect().
  • local_file - Path to the local file.
  • remote_file - Path to the remote file.
  • create_mode - The file will be created with the mode specified by create_mode.

Description

Copy a file from the local filesystem to the remote server using the SCP protocol.

Version

PHP PECL ssh2 >= 0.9.0

Return value

Returns TRUE on success or FALSE on failure.