Home  >  Article  >  Backend Development  >  php通过rmdir删除目录的简单用法_PHP

php通过rmdir删除目录的简单用法_PHP

WBOY
WBOYOriginal
2016-06-01 11:06:11950browse

本文实例讲述了php通过rmdir删除目录的简单用法。分享给大家供大家参考。具体分析如下:

php可以通过rmdir()函数删除服务器上的目录,下面代码里用到了is_dir()函数,该函数用于判断指定的字符串是否是目录,删除成功返回True,否则返回False

<&#63;php
if (!is_dir('exampledir')) {
  mkdir('exampledir');
}
rmdir('exampledir');
&#63;>

希望本文所述对大家的php程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn