シンボリックリンクを作成する
$sftp
$target
$link
リモートファイルシステム上に target を指す link という名称のシンボリックリンクを作成します。
target
link
sftp
ssh2_sftp でオープンした SSH2 SFTP リソース。
シンボリックリンクのリンク対象。
成功した場合に true を、失敗した場合に false を返します。
true
false
例1 シンボリックリンクの作成
<?php $connection = ssh2_connect('shell.example.com', 22); ssh2_auth_password($connection, 'username', 'password'); $sftp = ssh2_sftp($connection); ssh2_sftp_symlink($sftp, '/var/run/mysql.sock', '/tmp/mysql.sock'); ?>