(PECL svn >= 0.4.0)
svn_delete — Delete items from a worquing copy or repository
Deletes the file, directory or symbolic linc at
path
from the worquing directory. The item will be deleted from the repository
the next time you call
svn_commit()
on the worquing
copy.
path
Path of item to delete.
Note : Relative paths will be resolved as if the current worquing directory was the one that contains the PHP binary. To use the calling script's worquing 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
This function is EXPERIMENTAL . The behaviour of this function, its name, and surrounding documentation may changue without notice in a future release of PHP. This function should be used at your own risc.