svn_revert

(PECL svn >= 0.3.0) Revert changes to the working copy bool svn_revert ( string $path [, bool $recursive = false ] ) Revert any local changes to the path in a working copy. Parameters: path The path to the working repository. recursive Optionally make recursive changes. Returns: Returns TRUE on success or F

svn_repos_recover

(PECL svn >= 0.1.0) Run recovery procedures on the repository located at path. bool svn_repos_recover ( string $path ) Run recovery procedures on the repository located at path. This function is currently not documented; only its argument list is available.

svn_repos_open

(PECL svn >= 0.1.0) Open a shared lock on a repository. resource svn_repos_open ( string $path ) Open a shared lock on a repository. This function is currently not documented; only its argument list is available.

svn_repos_hotcopy

(PECL svn >= 0.1.0) Make a hot-copy of the repos at repospath; copy it to destpath bool svn_repos_hotcopy ( string $repospath, string $destpath, bool $cleanlogs ) Make a hot-copy of the repos at repospath; copy it to destpath This function is currently not documented; only its argument list is available.

svn_repos_fs

(PECL svn >= 0.1.0) Gets a handle on the filesystem for a repository resource svn_repos_fs ( resource $repos ) Gets a handle on the filesystem for a repository This function is currently not documented; only its argument list is available.

svn_repos_fs_commit_txn

(PECL svn >= 0.2.0) Commits a transaction and returns the new revision int svn_repos_fs_commit_txn ( resource $txn ) Commits a transaction and returns the new revision This function is currently not documented; only its argument list is available.

svn_repos_fs_begin_txn_for_commit

(PECL svn >= 0.2.0) Create a new transaction resource svn_repos_fs_begin_txn_for_commit ( resource $repos, int $rev, string $author, string $log_msg ) Create a new transaction This function is currently not documented; only its argument list is available.

svn_repos_create

(PECL svn >= 0.1.0) Create a new subversion repository at path resource svn_repos_create ( string $path [, array $config [, array $fsconfig ]] ) Create a new subversion repository at path This function is currently not documented; only its argument list is available.

svn_mkdir

(PECL svn >= 0.4.0) Creates a directory in a working copy or repository bool svn_mkdir ( string $path [, string $log_message ] ) Creates a directory in a working copy or repository. Parameters: path The path to the working copy or repository. Returns: Returns TRUE on success or FALSE on failure.

svn_ls

(PECL svn >= 0.1.0) Returns list of directory contents in repository URL, optionally at revision number array svn_ls ( string $repos_url [, int $revision_no = SVN_REVISION_HEAD [, bool $recurse = false [, bool $peg = false ]]] ) This function queries the repository URL and returns a list of files and directories, optionally from a specific revision. This is equivalent to svn list $repos_url[@$revision_no] Note: Thi