This commit is contained in:
fofolee
2019-04-08 23:22:26 +08:00
commit 7ca94f1141
5960 changed files with 530244 additions and 0 deletions

140
docs/php/rmdir.html Normal file
View File

@@ -0,0 +1,140 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>删除目录</title>
</head>
<body class="docs"><div id="layout">
<div id="layout-content"><div id="function.rmdir" class="refentry">
<div class="refnamediv">
<h1 class="refname">rmdir</h1>
<p class="verinfo">(PHP 4, PHP 5, PHP 7)</p><p class="refpurpose"><span class="refname">rmdir</span> &mdash; <span class="dc-title">删除目录</span></p>
</div>
<div class="refsect1 description" id="refsect1-function.rmdir-description">
<h3 class="title">说明</h3>
<div class="methodsynopsis dc-description">
<span class="methodname"><strong>rmdir</strong></span>
( <span class="methodparam"><span class="type">string</span> <code class="parameter">$dirname</code></span>
[, <span class="methodparam"><span class="type">resource</span> <code class="parameter">$context</code></span>
] ) : <span class="type">bool</span></div>
<p class="para rdfs-comment">
尝试删除 <code class="parameter">dirname</code> 所指定的目录。
该目录必须是空的,而且要有相应的权限。
失败时会产生一个 <strong><code>E_WARNING</code></strong> 级别的错误。
</p>
</div>
<div class="refsect1 parameters" id="refsect1-function.rmdir-parameters">
<h3 class="title">参数</h3>
<p class="para">
<dl>
<dt>
<code class="parameter">dirname</code></dt>
<dd>
<p class="para">
目录的路径。
</p>
</dd>
<dt>
<code class="parameter">context</code></dt>
<dd>
<blockquote class="note"><p><strong class="note">Note</strong>: <span class="simpara">在 PHP 5.0.0
中增加了对上下文Context的支持。有关<em>上下文Context</em>的说明参见
<a href="book.stream.html" class="xref">Streams</a></span></p></blockquote>
</dd>
</dl>
</p>
</div>
<div class="refsect1 returnvalues" id="refsect1-function.rmdir-returnvalues">
<h3 class="title">返回值</h3>
<p class="para">
成功时返回 <strong><code>TRUE</code></strong> 或者在失败时返回 <strong><code>FALSE</code></strong>
</p>
</div>
<div class="refsect1 changelog" id="refsect1-function.rmdir-changelog">
<h3 class="title">更新日志</h3>
<p class="para">
<table class="doctable informaltable">
<thead>
<tr>
<th>版本</th>
<th>说明</th>
</tr>
</thead>
<tbody class="tbody">
<tr>
<td>5.0.0</td>
<td>
自 PHP 5.0.0 起 <span class="function"><strong>rmdir()</strong></span> 也可用于<em class="emphasis">某些</em>
URL 封装协议。参见<a href="wrappers.html" class="xref">支持的协议和封装协议</a>
的列表看看 <span class="function"><strong>rmdir()</strong></span> 支持哪些 URL 封装协议。
</td>
</tr>
</tbody>
</table>
</p>
</div>
<div class="refsect1 examples" id="refsect1-function.rmdir-examples">
<h3 class="title">范例</h3>
<p class="para">
<div class="example" id="example-2843">
<p><strong>Example #1 <span class="function"><strong>rmdir()</strong></span> 例子</strong></p>
<div class="example-contents">
<div class="phpcode"><pre><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br /></span><span style="color: #007700">if&nbsp;(!</span><span style="color: #0000BB">is_dir</span><span style="color: #007700">(</span><span style="color: #DD0000">'examples'</span><span style="color: #007700">))&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">mkdir</span><span style="color: #007700">(</span><span style="color: #DD0000">'examples'</span><span style="color: #007700">);<br />}<br /><br /></span><span style="color: #0000BB">rmdir</span><span style="color: #007700">(</span><span style="color: #DD0000">'examples'</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?&gt;</span>
</span>
</pre></div>
</div>
</div>
</p>
</div>
<div class="refsect1 notes" id="refsect1-function.rmdir-notes">
<h3 class="title">注释</h3>
<blockquote class="note"><p><strong class="note">Note</strong>: <span class="simpara">当启用
<a href="features.safe_mode.html" class="link">安全模式</a>时,
PHP 会在执行脚本时检查被脚本操作的目录是否与被执行的脚本有相同的 UID所有者</span></p></blockquote>
</div>
<div class="refsect1 seealso" id="refsect1-function.rmdir-seealso">
<h3 class="title">参见</h3>
<p class="para">
<ul class="simplelist">
<li class="member"><span class="function"><a href="is_dir.html" class="function" rel="rdfs-seeAlso">is_dir()</a> - 判断给定文件名是否是一个目录</span></li>
<li class="member"><span class="function"><a href="mkdir.html" class="function" rel="rdfs-seeAlso">mkdir()</a> - 新建目录</span></li>
<li class="member"><span class="function"><a href="unlink.html" class="function" rel="rdfs-seeAlso">unlink()</a> - 删除文件</span></li>
</ul>
</p>
</div>
</div></div></div></body></html>