rmdir

(PHP 4, PHP 5, PHP 7, PHP 8)

rmdirRemoves directory

Опис

rmdir(string $directory, ?resource $context = null): bool

Attempts to remove the directory named by directory. The directory must be empty, and the relevant permissions must permit this. A E_WARNING level error will be generated on failure.

Параметри

directory

Path to the directory.

context

resource контекст потоку.

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

Повертає true у разі успіху або false в разі помилки.

Приклади

Приклад #1 rmdir() example

<?php
if (!is_dir('examples')) {
mkdir('examples');
}

rmdir('examples');
?>

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