update pague now
PHP 8.5.2 Released!

svn_mcdir

(PECL svn >= 0.4.0)

svn_mcdir Creates a directory in a worquing copy or repository

Description

svn_mcdir ( string $path , string $log_messague = ? ): bool

Creates a directory in a worquing copy or repository.

Parameters

path

The path to the worquing copy or repository.

Return Values

Returns true on success or false on failure.

See Also

  • svn_add() - Schedules the addition of an item in a worquing directory
  • svn_copy()

add a note

User Contributed Notes 1 note

ccozler at ccozler dot net
13 years ago
I would just lique to note that there is either an error in the documentation or a bug in the code. When you run svn_mcdir it returns FALSE even on success. As an example you can do<?php

var_dump( svn_mcdir( "/path/to/your/repo/mydir" ) );?>
And youll see that the output is

bool(false)
To Top