svn_fs_change_node_prop

(PECL svn >= 0.2.0) Return true if everything is ok, false otherwise bool svn_fs_change_node_prop ( resource $root, string $path, string $name, string $value ) Return true if everything is ok, false otherwise This function is currently not documented; only its argument list is available.

svn_fs_begin_txn2

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

svn_fs_apply_text

(PECL svn >= 0.2.0) Creates and returns a stream that will be used to replace resource svn_fs_apply_text ( resource $root, string $path ) Creates and returns a stream that will be used to replace This function is currently not documented; only its argument list is available.

svn_fs_abort_txn

(PECL svn >= 0.2.0) Abort a transaction, returns true if everything is okay, false otherwise bool svn_fs_abort_txn ( resource $txn ) Abort a transaction, returns true if everything is okay, false otherwise This function is currently not documented; only its argument list is available.

svn_export

(PECL svn >= 0.3.0) Export the contents of a SVN directory bool svn_export ( string $frompath, string $topath [, bool $working_copy = true [, int $revision_no = -1 ]] ) Export the contents of either a working copy or repository into a 'clean' directory. Parameters: frompath The path to the current repository. topath The path to the

svn_diff

(PECL svn >= 0.1.0) Recursively diffs two paths array svn_diff ( string $path1, int $rev1, string $path2, int $rev2 ) Recursively diffs two paths, path1 and path2. Note: This is not a general-purpose diff utility. Only local files that are versioned may be diffed: other files will fail. Parameters: path1 First path to diff. This can be a URL to a file/directory in

svn_delete

(PECL svn >= 0.4.0) Delete items from a working copy or repository. bool svn_delete ( string $path [, bool $force = false ] ) Deletes the file, directory or symbolic link at path from the working directory. The item will be deleted from the repository the next time you call svn_commit() on the working copy. Parameters: path Path of item to delete. Note: Relative path

svn_commit

(PECL svn >= 0.1.0) Sends changes from the local working copy to the repository array svn_commit ( string $log, array $targets [, bool $recursive = true ] ) Commits changes made in the local working copy files enumerated in the targets array to the repository, with the log message log. Directories in the targets array will be recursively committed unless recursive is set to FALSE. Note: This function does not have any

svn_client_version

(PECL svn >= 0.1.0) Returns the version of the SVN client libraries string svn_client_version ( void ) Returns the version of the SVN client libraries Returns: String version number, usually in form of x.y.z. Examples: Basic example <?php echo svn_client_version(); ?> The above example will output something si

svn_cleanup

(PECL svn >= 0.1.0) Recursively cleanup a working copy directory, finishing incomplete operations and removing locks bool svn_cleanup ( string $workingdir ) Recursively cleanup working copy directory workingdir, finishing any incomplete operations and removing working copy locks. Use when a working copy is in limbo and needs to be usable again. Parameters: workingdir S