svn_export
svn_export
Export the contents of a SVN directory
bool **svn_export** string $frompath string $topath bool $working_copy int $revision_no
Export the contents of either a working copy or repository into a 'clean' directory.
frompathThe path to the current repository.
topathThe path to the new repository.
working_copyIf true, it will export uncommitted files from the working copy.
return.success
Voorbeeld: example
<?php
$working_dir = '../';
$new_working_dir = '/home/user/devel/foo/trunk';
svn_export($working_dir, $new_working_dir);
?>
svn_import