<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.svn.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'de',
  ),
  'this' => 
  array (
    0 => 'function.svn-delete.php',
    1 => 'svn_delete',
    2 => 'Delete items from a working copy or repository',
  ),
  'up' => 
  array (
    0 => 'ref.svn.php',
    1 => 'SVN Funktionen',
  ),
  'prev' => 
  array (
    0 => 'function.svn-commit.php',
    1 => 'svn_commit',
  ),
  'next' => 
  array (
    0 => 'function.svn-diff.php',
    1 => 'svn_diff',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/svn/functions/svn-delete.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.svn-delete" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">svn_delete</h1>
  <p class="verinfo">(PECL svn &gt;= 0.4.0)</p><p class="refpurpose"><span class="refname">svn_delete</span> &mdash; <span class="dc-title">Delete items from a working copy or repository</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.svn-delete-description">
  <h3 class="title">Beschreibung</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>svn_delete</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$path</code></span>, <span class="methodparam"><span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span> <code class="parameter">$force</code><span class="initializer"> = <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong></span></span>): <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span></div>

  <p class="simpara">
   Deletes the file, directory or symbolic link at <code class="parameter">path</code>
   from the working directory. The item will be deleted from the repository
   the next time you call <span class="function"><a href="function.svn-commit.php" class="function">svn_commit()</a></span> on the working
   copy.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.svn-delete-parameters">
  <h3 class="title">Parameter-Liste</h3>
  <dl>
   
    <dt><code class="parameter">path</code></dt>
    <dd>
     <span class="simpara">
      Path of item to delete.
     </span>
     <blockquote class="note"><p><strong class="note">Hinweis</strong>: <span class="simpara">Relative Pfade werden so aufgelöst, als ob das aktuelle Verzeichnis das wäre,
in dem sich das PHP-Binary befindet. Um stattdessen das aktuelle Verzeichnis des aufrufenden Skripts zu nutzen,
muss die Funktion <span class="function"><a href="function.realpath.php" class="function">realpath()</a></span> oder dirname(__FILE__) verwendet werden.</span></p></blockquote>
    </dd>
   
   
    <dt><code class="parameter">force</code></dt>
    <dd>
     <span class="simpara">
      If <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong>, the file will be deleted even if it has local modifications.
      Otherwise, local modifications will result in a failure. Default is
      <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong>
     </span>
    </dd>
   
  </dl>

 </div>

 <div class="refsect1 returnvalues" id="refsect1-function.svn-delete-returnvalues">
  <h3 class="title">Rückgabewerte</h3>
  <p class="simpara">
   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 notes" id="refsect1-function.svn-delete-notes">
  <h3 class="title">Anmerkungen</h3>
  <div class="warning"><strong class="warning">Warnung</strong><p class="simpara">Diese Funktion ist
<em>EXPERIMENTELL</em>. Das Verhalten, der Funktionsname und die
zugehörige Dokumentation können sich in zukünftigen PHP-Versionen ohne
Ankündigung ändern. Die Verwendung dieser Funktion erfolgt auf eigene Gefahr.
</p></div>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.svn-delete-seealso">
  <h3 class="title">Siehe auch</h3>
  <ul class="simplelist">
   <li><a href="http://svnbook.red-bean.com/en/1.2/svn.ref.svn.c.delete.html" class="link external">&raquo;&nbsp;SVN documentation on svn
   delete</a></li>
  </ul>
 </div>


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