svn_delete

(PECL svn >= 0.4.0)

svn_deleteDelete 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.

Параметри

path

Path of item to delete.

Зауваження: Relative paths will be resolved as if the current working directory was the one that contains the PHP binary. To use the calling script's working directory, use realpath() or dirname(__FILE__).

force

If TRUE, the file will be deleted even if it has local modifications. Otherwise, local modifications will result in a failure. Default is FALSE

Значення, що повертаються

Повертає TRUE в успішному випадку або FALSE в разі помилки.

Примітки

Увага

This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a future release of PHP. This function should be used at your own risk.

Прогляньте Також

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top