<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.ssh2.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'uk',
  ),
  'this' => 
  array (
    0 => 'function.ssh2-sftp-realpath.php',
    1 => 'ssh2_sftp_realpath',
    2 => 'Resolve the realpath of a provided path string',
  ),
  'up' => 
  array (
    0 => 'ref.ssh2.php',
    1 => 'SSH2 Функції',
  ),
  'prev' => 
  array (
    0 => 'function.ssh2-sftp-readlink.php',
    1 => 'ssh2_sftp_readlink',
  ),
  'next' => 
  array (
    0 => 'function.ssh2-sftp-rename.php',
    1 => 'ssh2_sftp_rename',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/ssh2/functions/ssh2-sftp-realpath.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.ssh2-sftp-realpath" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">ssh2_sftp_realpath</h1>
  <p class="verinfo">(PECL ssh2 &gt;= 0.9.0)</p><p class="refpurpose"><span class="refname">ssh2_sftp_realpath</span> &mdash; <span class="dc-title">Resolve the realpath of a provided path string</span></p>

 </div>
 
 <div class="refsect1 description" id="refsect1-function.ssh2-sftp-realpath-description">
  <h3 class="title">Опис</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>ssh2_sftp_realpath</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span> <code class="parameter">$sftp</code></span>, <span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$filename</code></span>): <span class="type"><a href="language.types.string.php" class="type string">string</a></span></div>

  <p class="para rdfs-comment">
   Translates <code class="parameter">filename</code> into the effective real path
   on the remote filesystem.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.ssh2-sftp-realpath-parameters">
  <h3 class="title">Параметри</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">sftp</code></dt>
     <dd>
      <p class="para">
       An SSH2 SFTP resource opened by <span class="function"><a href="function.ssh2-sftp.php" class="function">ssh2_sftp()</a></span>.
      </p>
     </dd>
    
    
     <dt><code class="parameter">filename</code></dt>
     <dd>
      <p class="para">
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.ssh2-sftp-realpath-returnvalues">
  <h3 class="title">Значення, що повертаються</h3>
  <p class="para">
   Returns the real path as a string.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.ssh2-sftp-realpath-examples">
  <h3 class="title">Приклади</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Приклад #1 Resolving a pathname</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />$connection </span><span style="color: #007700">= </span><span style="color: #0000BB">ssh2_connect</span><span style="color: #007700">(</span><span style="color: #DD0000">'shell.example.com'</span><span style="color: #007700">, </span><span style="color: #0000BB">22</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">ssh2_auth_password</span><span style="color: #007700">(</span><span style="color: #0000BB">$connection</span><span style="color: #007700">, </span><span style="color: #DD0000">'username'</span><span style="color: #007700">, </span><span style="color: #DD0000">'password'</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$sftp </span><span style="color: #007700">= </span><span style="color: #0000BB">ssh2_sftp</span><span style="color: #007700">(</span><span style="color: #0000BB">$connection</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">$realpath </span><span style="color: #007700">= </span><span style="color: #0000BB">ssh2_sftp_realpath</span><span style="color: #007700">(</span><span style="color: #0000BB">$sftp</span><span style="color: #007700">, </span><span style="color: #DD0000">'/home/username/../../../..//./usr/../etc/passwd'</span><span style="color: #007700">);<br /></span><span style="color: #FF8000">/* $realpath is now: '/etc/passwd' */<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

   </div>   
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.ssh2-sftp-realpath-seealso">
  <h3 class="title">Прогляньте також</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.realpath.php" class="function" rel="rdfs-seeAlso">realpath()</a> - Returns canonicalized absolute pathname</span></li>
    <li><span class="function"><a href="function.ssh2-sftp-symlink.php" class="function" rel="rdfs-seeAlso">ssh2_sftp_symlink()</a> - Create a symlink</span></li>
    <li><span class="function"><a href="function.ssh2-sftp-readlink.php" class="function" rel="rdfs-seeAlso">ssh2_sftp_readlink()</a> - Return the target of a symbolic link</span></li>
   </ul>
  </p>
 </div>


</div><?php manual_footer($setup); ?>