<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.ftp.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'de',
  ),
  'this' => 
  array (
    0 => 'function.ftp-alloc.php',
    1 => 'ftp_alloc',
    2 => 'Reserviert Platz f&uuml;r eine hochzuladende Datei',
  ),
  'up' => 
  array (
    0 => 'ref.ftp.php',
    1 => 'FTP-Funktionen',
  ),
  'prev' => 
  array (
    0 => 'ref.ftp.php',
    1 => 'FTP-Funktionen',
  ),
  'next' => 
  array (
    0 => 'function.ftp-append.php',
    1 => 'ftp_append',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'de',
    'path' => 'reference/ftp/functions/ftp-alloc.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.ftp-alloc" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">ftp_alloc</h1>
  <p class="verinfo">(PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">ftp_alloc</span> &mdash; <span class="dc-title">Reserviert Platz für eine hochzuladende Datei</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.ftp-alloc-description">
  <h3 class="title">Beschreibung</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>ftp_alloc</strong></span>(<span class="methodparam"><span class="type"><a href="class.ftp-connection.php" class="type FTP\Connection">FTP\Connection</a></span> <code class="parameter">$ftp</code></span>, <span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$size</code></span>, <span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter reference">&$response</code><span class="initializer"> = <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong></span></span>): <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span></div>

  <p class="para rdfs-comment">
   Sendet ein <code class="literal">ALLO</code>-Kommando an den entfernten
   FTP-Server, um Platz für eine hochzuladende Datei zu reservieren.
  </p>
  <blockquote class="note"><p><strong class="note">Hinweis</strong>: 
   <p class="para">
    Viele FTP-Server unterstützen dieses Kommando nicht. Diese Server können
    einen Fehlercode (<strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong>) zurückgeben, der angibt, dass das Kommando
    nicht unterstützt wird, oder einen Erfolgscode (<strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong>), der angibt, dass
    die Reservierung nicht notwendig ist und dass der Client so weiterarbeiten
    soll als wenn die Operation erfolgreich gewesen wäre. Daher ist es am
    besten, diese Funktion nur für Server zu verwenden, die die Reservierung
    explizit unterstützen.
   </p>
  </p></blockquote>
  <p class="para">
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.ftp-alloc-parameters">
  <h3 class="title">Parameter-Liste</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">ftp</code></dt>
     <dd>
      <p class="para">Eine <span class="classname"><a href="class.ftp-connection.php" class="classname">FTP\Connection</a></span>-Instanz.</p>
     </dd>
    
    
     <dt><code class="parameter">size</code></dt>
     <dd>
      <p class="para">
       Die Anzahl der zu reservierenden Bytes.
      </p>
     </dd>
    
    
     <dt><code class="parameter">response</code></dt>
     <dd>
      <p class="para">
       Eine Textdarstellung der Serverantwort wird als Referenz
       in <code class="parameter">response</code> zurückgegeben, wenn eine
       Variable übergeben wird.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.ftp-alloc-returnvalues">
  <h3 class="title">Rückgabewerte</h3>
  <p class="para">
   Gibt bei Erfolg <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> zurück. Bei einem Fehler wird <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> zurückgegeben.
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-function.ftp-alloc-changelog">
  <h3 class="title">Changelog</h3>
  <table class="doctable informaltable">
   
    <thead>
     <tr>
      <th>Version</th>
      <th>Beschreibung</th>
     </tr>

    </thead>

    <tbody class="tbody">
     <tr>
 <td>8.1.0</td>
 <td>
  Der Parameter <code class="parameter">ftp</code> erwartet nun eine
  <span class="classname"><a href="class.ftp-connection.php" class="classname">FTP\Connection</a></span>-Instanz; vorher wurde eine <a href="language.types.resource.php" class="link">Ressource</a>
  erwartet.
 </td>
</tr>

    </tbody>
   
  </table>

 </div>


 <div class="refsect1 examples" id="refsect1-function.ftp-alloc-examples">
  <h3 class="title">Beispiele</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Beispiel #1 <span class="function"><strong>ftp_alloc()</strong></span>-Beispiel</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /><br />$file </span><span style="color: #007700">= </span><span style="color: #DD0000">"/home/user/myfile"</span><span style="color: #007700">;<br /><br /></span><span style="color: #FF8000">// Verbindung aufbauen<br /></span><span style="color: #0000BB">$ftp </span><span style="color: #007700">= </span><span style="color: #0000BB">ftp_connect</span><span style="color: #007700">(</span><span style="color: #DD0000">'ftp.example.com'</span><span style="color: #007700">);<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">$ftp</span><span style="color: #007700">, </span><span style="color: #DD0000">'anonymous'</span><span style="color: #007700">, </span><span style="color: #DD0000">'user@example.com'</span><span style="color: #007700">);<br /><br />if (</span><span style="color: #0000BB">ftp_alloc</span><span style="color: #007700">(</span><span style="color: #0000BB">$ftp</span><span style="color: #007700">, </span><span style="color: #0000BB">filesize</span><span style="color: #007700">(</span><span style="color: #0000BB">$file</span><span style="color: #007700">), </span><span style="color: #0000BB">$result</span><span style="color: #007700">)) {<br />  echo </span><span style="color: #DD0000">"Platz wurde erfolgreich auf dem Server reseviert. </span><span style="color: #0000BB">$file</span><span style="color: #DD0000"> wird gesendet.\n"</span><span style="color: #007700">;<br />  </span><span style="color: #0000BB">ftp_put</span><span style="color: #007700">(</span><span style="color: #0000BB">$ftp</span><span style="color: #007700">, </span><span style="color: #DD0000">'/incoming/myfile'</span><span style="color: #007700">, </span><span style="color: #0000BB">$file</span><span style="color: #007700">, </span><span style="color: #0000BB">FTP_BINARY</span><span style="color: #007700">);<br />} else {<br />  echo </span><span style="color: #DD0000">"Platz konnte nicht auf dem Server reserviert werden. Serverantwort: </span><span style="color: #0000BB">$result</span><span style="color: #DD0000">\n"</span><span style="color: #007700">;<br />}<br /><br /></span><span style="color: #0000BB">ftp_close</span><span style="color: #007700">(</span><span style="color: #0000BB">$ftp</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

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


 <div class="refsect1 seealso" id="refsect1-function.ftp-alloc-seealso">
  <h3 class="title">Siehe auch</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.ftp-put.php" class="function" rel="rdfs-seeAlso">ftp_put()</a> - L&auml;dt eine Datei auf einen FTP-Server</span></li>
    <li><span class="function"><a href="function.ftp-fput.php" class="function" rel="rdfs-seeAlso">ftp_fput()</a> - &Uuml;bertr&auml;gt eine ge&ouml;ffnete Datei auf einen FTP-Server</span></li>
   </ul>
  </p>
 </div>


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