svn_delete

(PECL svn >= 0.4.0)

svn_deleteDelete items from a working copy or repository

Descrição

svn_delete ( string $path [, bool $force = FALSE ] ) : bool

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.

Parâmetros

path

Path of item to delete.

Nota: Caminhos relativos serão resolvidos como se o diretório atual fosse aquele que contém o binário do PHP. Para usar o diretório de trabalho do script, utilize antes realpath() ou 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

Valor Retornado

Retorna TRUE em caso de sucesso ou FALSE em caso de falha.

Notas

Aviso

Esta função é EXPERIMENTAL. O comportamento, seu nome e documentação podem mudar sem aviso em futuras versões do PHP. Utilize por sua própria conta e risco.