PHP Doku:: Export the contents of a SVN directory - function.svn-export.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige DiensteSubversionSVN Funktionensvn_export

Ein Service von Reinhard Neidl - Webprogrammierung.

SVN Funktionen

<<svn_diff

svn_fs_abort_txn>>

svn_export

(PECL svn >= 0.3.0)

svn_exportExport the contents of a SVN directory

Beschreibung

bool svn_export ( string $frompath , string $topath [, bool $working_copy = true ] )

Export the contents of either a working copy or repository into a 'clean' directory.

Parameter-Liste

frompath

The path to the current repository.

topath

The path to the new repository.

working_copy

If TRUE, it will export uncommitted files from the working copy.

Rückgabewerte

Gibt bei Erfolg TRUE zurück. Im Fehlerfall wird FALSE zurückgegeben.

Beispiele

Beispiel #1 svn_export() example

<?php
$working_dir     
'../';
$new_working_dir '/home/user/devel/foo/trunk';

svn_export($working_dir$new_working_dir);
?>

Siehe auch

  • svn_import() - Imports an unversioned path into a repository


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)