📄 function.ftp-get.html
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html> <head> <title>Downloads a file from the FTP server</title> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> </head> <body><div style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="function.ftp-get-option.html">ftp_get_option</a></div> <div class="next" style="text-align: right; float: right;"><a href="function.ftp-login.html">ftp_login</a></div> <div class="up"><a href="ref.ftp.html">FTP Functions</a></div> <div class="home"><a href="index.html">PHP Manual</a></div></div><hr /><div id="function.ftp-get" class="refentry"> <div class="refnamediv"> <h1 class="refname">ftp_get</h1> <p class="verinfo">(PHP 4, PHP 5)</p><p class="refpurpose"><span class="refname">ftp_get</span> — <span class="dc-title">Downloads a file from the FTP server</span></p> </div> <div class="refsect1 description"> <h3 class="title">Description</h3> <div class="methodsynopsis dc-description"> <span class="type">bool</span> <span class="methodname"><b><b>ftp_get</b></b></span> ( <span class="methodparam"><span class="type">resource</span> <tt class="parameter">$ftp_stream</tt></span> , <span class="methodparam"><span class="type">string</span> <tt class="parameter">$local_file</tt></span> , <span class="methodparam"><span class="type">string</span> <tt class="parameter">$remote_file</tt></span> , <span class="methodparam"><span class="type">int</span> <tt class="parameter">$mode</tt></span> [, <span class="methodparam"><span class="type">int</span> <tt class="parameter">$resumepos</tt></span> ] )</div> <p class="para rdfs-comment"> <b>ftp_get()</b> retrieves a remote file from the FTP server, and saves it into a local file. </p> </div> <div class="refsect1 parameters"> <h3 class="title">Parameters</h3> <p class="para"> <dl> <dt> <span class="term"><i><tt class="parameter">ftp_stream</tt></i></span> <dd> <p class="para"> The link identifier of the FTP connection. </p> </dd> </dt> <dt> <span class="term"><i><tt class="parameter">local_file</tt></i></span> <dd> <p class="para"> The local file path (will be overwritten if the file already exists). </p> </dd> </dt> <dt> <span class="term"><i><tt class="parameter">remote_file</tt></i></span> <dd> <p class="para"> The remote file path. </p> </dd> </dt> <dt> <span class="term"><i><tt class="parameter">mode</tt></i></span> <dd> <p class="para"> The transfer mode. Must be either <b><tt>FTP_ASCII</tt></b> or <b><tt>FTP_BINARY</tt></b>. </p> </dd> </dt> <dt> <span class="term"><i><tt class="parameter">resumepos</tt></i></span> <dd> <p class="para"> The position in the remote file to start downloading from. </p> </dd> </dt> </dl> </p> </div> <div class="refsect1 returnvalues"> <h3 class="title">Return Values</h3> <p class="para"> Returns <b><tt>TRUE</tt></b> on success or <b><tt>FALSE</tt></b> on failure. </p> </div> <div class="refsect1 examples"> <h3 class="title">Examples</h3> <p class="para"> <div class="example"> <p><b>Example #1 <b>ftp_get()</b> example</b></p> <div class="example-contents"><div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB"><?php<br /><br /></span><span style="color: #FF8000">// define some variables<br /></span><span style="color: #0000BB">$local_file </span><span style="color: #007700">= </span><span style="color: #DD0000">'local.zip'</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">$server_file </span><span style="color: #007700">= </span><span style="color: #DD0000">'server.zip'</span><span style="color: #007700">;<br /><br /></span><span style="color: #FF8000">// set up basic connection<br /></span><span style="color: #0000BB">$conn_id </span><span style="color: #007700">= </span><span style="color: #0000BB">ftp_connect</span><span style="color: #007700">(</span><span style="color: #0000BB">$ftp_server</span><span style="color: #007700">);<br /><br /></span><span style="color: #FF8000">// login with username and password<br /></span><span style="color: #0000BB">$login_result </span><span style="color: #007700">= </span><span style="color: #0000BB">ftp_login</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn_id</span><span style="color: #007700">, </span><span style="color: #0000BB">$ftp_user_name</span><span style="color: #007700">, </span><span style="color: #0000BB">$ftp_user_pass</span><span style="color: #007700">);<br /><br /></span><span style="color: #FF8000">// try to download $server_file and save to $local_file<br /></span><span style="color: #007700">if (</span><span style="color: #0000BB">ftp_get</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn_id</span><span style="color: #007700">, </span><span style="color: #0000BB">$local_file</span><span style="color: #007700">, </span><span style="color: #0000BB">$server_file</span><span style="color: #007700">, </span><span style="color: #0000BB">FTP_BINARY</span><span style="color: #007700">)) {<br /> echo </span><span style="color: #DD0000">"Successfully written to $local_file\n"</span><span style="color: #007700">;<br />} else {<br /> echo </span><span style="color: #DD0000">"There was a problem\n"</span><span style="color: #007700">;<br />}<br /><br /></span><span style="color: #FF8000">// close the connection<br /></span><span style="color: #0000BB">ftp_close</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn_id</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">?></span></span></code></div> </div> </div> </p> </div> <div class="refsect1 changelog"> <h3 class="title">ChangeLog</h3> <p class="para"> <table class="informaltable"> <colgroup> <thead valign="middle"> <tr valign="middle"> <th colspan="1">Version</th> <th colspan="1">Description</th> </tr> </thead> <tbody valign="middle" class="tbody"> <tr valign="middle"> <td colspan="1" rowspan="1" align="left">4.3.0</td> <td colspan="1" rowspan="1" align="left"> <i><tt class="parameter">resumepos</tt></i> was added. </td> </tr> </tbody> </colgroup> </table> </p> </div> <div class="refsect1 seealso"> <h3 class="title">See Also</h3> <p class="para"> <ul class="simplelist"> <li class="member"><a href="function.ftp-pasv.html" class="function" rel="rdfs-seeAlso">ftp_pasv()</a></li> <li class="member"><a href="function.ftp-fget.html" class="function" rel="rdfs-seeAlso">ftp_fget()</a></li> <li class="member"><a href="function.ftp-nb-get.html" class="function" rel="rdfs-seeAlso">ftp_nb_get()</a></li> <li class="member"><a href="function.ftp-nb-fget.html" class="function" rel="rdfs-seeAlso">ftp_nb_fget()</a></li> </ul> </p> </div></div><hr /><div style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="function.ftp-get-option.html">ftp_get_option</a></div> <div class="next" style="text-align: right; float: right;"><a href="function.ftp-login.html">ftp_login</a></div> <div class="up"><a href="ref.ftp.html">FTP Functions</a></div> <div class="home"><a href="index.html">PHP Manual</a></div></div></body></html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -