php man page for svn_export

Query: svn_export

OS: php

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

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
isset(3) - php
svn_diff(3) - php
svn_import(3) - php
svn_update(3) - php
ziparchive.addglob(3) - php
Similar Topics in the Unix Linux Community
Svn export issue