(PECL svn >= 0.4.0)
svn_delete — Delete items from a working copy or repository
   Deletes the file, directory or symbolic link at path
   from the working directory. The item will be deleted from the repository
   the next time you call svn_commit() on the working
   copy.
  
pathPath of item to delete.
Hinweis: 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 realpath() oder dirname(__FILE__) verwendet werden.
force
       If true, the file will be deleted even if it has local modifications.
       Otherwise, local modifications will result in a failure. Default is
       false
      
Diese Funktion ist EXPERIMENTELL. 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.
