<?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 => 'en',
  ),
  'this' => 
  array (
    0 => 'function.ssh2-sftp-rename.php',
    1 => 'ssh2_sftp_rename',
    2 => 'Rename a remote file',
  ),
  'up' => 
  array (
    0 => 'ref.ssh2.php',
    1 => 'SSH2 Functions',
  ),
  'prev' => 
  array (
    0 => 'function.ssh2-sftp-realpath.php',
    1 => 'ssh2_sftp_realpath',
  ),
  'next' => 
  array (
    0 => 'function.ssh2-sftp-rmdir.php',
    1 => 'ssh2_sftp_rmdir',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/ssh2/functions/ssh2-sftp-rename.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.ssh2-sftp-rename" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">ssh2_sftp_rename</h1>
  <p class="verinfo">(PECL ssh2 &gt;= 0.9.0)</p><p class="refpurpose"><span class="refname">ssh2_sftp_rename</span> &mdash; <span class="dc-title">Rename a remote file</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.ssh2-sftp-rename-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>ssh2_sftp_rename</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">$from</code></span>, <span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$to</code></span>): <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span></div>

  <p class="simpara">
   Renames a file on the remote filesystem.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.ssh2-sftp-rename-parameters">
  <h3 class="title">Parameters</h3>
  <dl>
   
    <dt><code class="parameter">sftp</code></dt>
    <dd>
     <span class="simpara">
      An SSH2 SFTP resource opened by <span class="function"><a href="function.ssh2-sftp.php" class="function">ssh2_sftp()</a></span>.
     </span>
    </dd>
   
   
    <dt><code class="parameter">from</code></dt>
    <dd>
     <span class="simpara">
      The current file that is being renamed.
     </span>
    </dd>
   
   
    <dt><code class="parameter">to</code></dt>
    <dd>
     <span class="simpara">
      The new file name that replaces <code class="parameter">from</code>.
     </span>
    </dd>
   
  </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.ssh2-sftp-rename-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="simpara">
   Returns <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> on success or <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> on failure.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.ssh2-sftp-rename-examples">
  <h3 class="title">Examples</h3>
  <div class="example" id="example-1">
   <p><strong>Example #1 Renaming a file via sftp</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">ssh2_sftp_rename</span><span style="color: #007700">(</span><span style="color: #0000BB">$sftp</span><span style="color: #007700">, </span><span style="color: #DD0000">'/home/username/oldname'</span><span style="color: #007700">, </span><span style="color: #DD0000">'/home/username/newname'</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
   </div>

  </div>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.ssh2-sftp-rename-seealso">
  <h3 class="title">See Also</h3>
  <ul class="simplelist">
   <li><span class="function"><a href="function.rename.php" class="function" rel="rdfs-seeAlso">rename()</a> - Renames a file or directory</span></li>
  </ul>
 </div>


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