<?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-raw.php',
    1 => 'ftp_raw',
    2 => 'Sendet ein beliebiges Kommando an den FTP-Server',
  ),
  'up' => 
  array (
    0 => 'ref.ftp.php',
    1 => 'FTP-Funktionen',
  ),
  'prev' => 
  array (
    0 => 'function.ftp-quit.php',
    1 => 'ftp_quit',
  ),
  'next' => 
  array (
    0 => 'function.ftp-rawlist.php',
    1 => 'ftp_rawlist',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'de',
    'path' => 'reference/ftp/functions/ftp-raw.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.ftp-raw" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">ftp_raw</h1>
  <p class="verinfo">(PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">ftp_raw</span> &mdash; <span class="dc-title">Sendet ein beliebiges Kommando an den FTP-Server</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.ftp-raw-description">
  <h3 class="title">Beschreibung</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>ftp_raw</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.string.php" class="type string">string</a></span> <code class="parameter">$command</code></span>): <span class="type"><span class="type"><a href="language.types.null.php" class="type null">?</a></span><span class="type"><a href="language.types.array.php" class="type array">array</a></span></span></div>

  <p class="para rdfs-comment">
   Sendet ein beliebiges Kommando <code class="parameter">command</code> an den
   FTP-Server.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.ftp-raw-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">command</code></dt>
     <dd>
      <p class="para">
       Das auszuführende Kommando.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.ftp-raw-returnvalues">
  <h3 class="title">Rückgabewerte</h3>
  <p class="para">
   Gibt die Serverantwort als ein Array von Zeichenketten zurück, oder <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong> im Fehlerfall.
   Die Antwort wird nicht ausgewertet und <span class="function"><strong>ftp_raw()</strong></span> versucht auch nicht
   festzustellen, ob das Kommando erfolgreich war.
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-function.ftp-raw-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-raw-examples">
  <h3 class="title">Beispiele</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Beispiel #1 <span class="function"><strong>ftp_raw()</strong></span> für den manuellen Login auf einem FTP-Server nutzen.</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />$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 /><br /></span><span style="color: #FF8000">/* Dies entspricht:<br />   ftp_login($ftp, "joeblow", "secret"); */<br /></span><span style="color: #0000BB">ftp_raw</span><span style="color: #007700">(</span><span style="color: #0000BB">$ftp</span><span style="color: #007700">, </span><span style="color: #DD0000">"USER joeblow"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">ftp_raw</span><span style="color: #007700">(</span><span style="color: #0000BB">$ftp</span><span style="color: #007700">, </span><span style="color: #DD0000">"PASS secret"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

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


 <div class="refsect1 seealso" id="refsect1-function.ftp-raw-seealso">
  <h3 class="title">Siehe auch</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.ftp-exec.php" class="function" rel="rdfs-seeAlso">ftp_exec()</a> - Fordert die Ausf&uuml;hrung eines Programmes auf dem FTP-Server an</span></li>
   </ul>
  </p>
 </div>


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