Ejemplo n.º 1
0
 /**
  * Return the target of a remote link.
  *
  * @param string $link
  *
  * @return string
  */
 public function readlink($link)
 {
     ssh2_sftp_readlink($this->resource, $link);
 }
Ejemplo n.º 2
0
 /**
  * Returns the target of a symbolic link
  *
  * @param  string $link The path of the symbolic link
  *
  * @return string The target of the symbolic link
  */
 public function readlink($link)
 {
     return ssh2_sftp_readlink($this->getResource(), $link);
 }
Ejemplo n.º 3
0
 /**
  * @{inheritDoc}
  */
 public function readlink($link = '')
 {
     return $this->doRun(__METHOD__, func_get_args(), ssh2_sftp_readlink($this->sftp, $link));
 }
Ejemplo n.º 4
0
 public function readlink($link)
 {
     return ssh2_sftp_readlink($this->_sftp, $link);
 }