svn_export(3) php man page | unix.com

Man Page: svn_export

Operating Environment: php

Section: 3

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)
Related Man Pages
is_dir(3) - php
is_uploaded_file(3) - php
setrawcookie(3) - php
svn_cleanup(3) - php
svn_commit(3) - php
Similar Topics in the Unix Linux Community
Svn export issue