PHP 7.0.6 Released

svn_mkdir

(PECL svn >= 0.4.0)

svn_mkdirCreates a directory in a working copy or repository

Description

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.

Return Values

Returns TRUE on success or FALSE on failure.

See Also

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

User Contributed Notes

ckozler at ckozler dot net
4 years ago
I would just like to note that there is either an error in the documentation or a bug in the code. When you run svn_mkdir it returns FALSE even on success. As an example you can do

<?php

var_dump
( svn_mkdir( "/path/to/your/repo/mydir" ) );

?>

And youll see that the output is

bool(false)
To Top