SVN_EXPORT(3) 1 SVN_EXPORT(3)
svn_export - Export the contents of a SVN directory
SYNOPSIS
bool svn_export (string $frompath, string $topath, [bool $working_copy = true], [int $revision_no = -1])
DESCRIPTION
Export the contents of either a working copy or repository into a 'clean' directory.
PARAMETERS
o $frompath
- The path to the current repository.
o $topath
- The path to the new repository.
o $working_copy
- If TRUE, it will export uncommitted files from the working copy.
RETURN VALUES
Returns TRUE on success or FALSE on failure.
EXAMPLES
Example #1
svn_export(3) example
<?php
$working_dir = '../';
$new_working_dir = '/home/user/devel/foo/trunk';
svn_export($working_dir, $new_working_dir);
?>
SEE ALSO
svn_import(3).
PHP Documentation Group SVN_EXPORT(3)