uTools-Manuals/docs/php/posix_isatty.html
2019-04-08 23:22:26 +08:00

77 lines
3.1 KiB
HTML

<!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>Determine if a file descriptor is an interactive terminal</title>
</head>
<body class="docs"><div id="layout">
<div id="layout-content"><div id="function.posix-isatty" class="refentry">
<div class="refnamediv">
<h1 class="refname">posix_isatty</h1>
<p class="verinfo">(PHP 4, PHP 5, PHP 7)</p><p class="refpurpose"><span class="refname">posix_isatty</span> &mdash; <span class="dc-title">Determine if a file descriptor is an interactive terminal</span></p>
</div>
<div class="refsect1 description" id="refsect1-function.posix-isatty-description">
<h3 class="title">说明</h3>
<div class="methodsynopsis dc-description">
<span class="methodname"><strong>posix_isatty</strong></span>
( <span class="methodparam"><span class="type"><a href="language.pseudo-types.html#language.types.mixed" class="type mixed">mixed</a></span> <code class="parameter">$fd</code></span>
) : <span class="type">bool</span></div>
<p class="para rdfs-comment">
Determines if the file descriptor <code class="parameter">fd</code> refers to a valid
terminal type device.
</p>
</div>
<div class="refsect1 parameters" id="refsect1-function.posix-isatty-parameters">
<h3 class="title">参数</h3>
<p class="para">
<dl>
<dt>
<code class="parameter">fd</code></dt>
<dd>
<p class="para">
The file descriptor, which is expected to be either a file
<span class="type"><a href="language.types.resource.html" class="type resource">resource</a></span> or an <span class="type"><a href="language.types.integer.html" class="type integer">integer</a></span>. An <span class="type"><a href="language.types.integer.html" class="type integer">integer</a></span>
will be assumed to be a file descriptor that can be passed directly to
the underlying system call.
</p>
<p class="para">
In almost all cases, you will want to provide a file <span class="type"><a href="language.types.resource.html" class="type resource">resource</a></span>.
</p>
</dd>
</dl>
</p>
</div>
<div class="refsect1 returnvalues" id="refsect1-function.posix-isatty-returnvalues">
<h3 class="title">返回值</h3>
<p class="para">
Returns <strong><code>TRUE</code></strong> if <code class="parameter">fd</code> is an open descriptor connected
to a terminal and <strong><code>FALSE</code></strong> otherwise.
</p>
</div>
<div class="refsect1 seealso" id="refsect1-function.posix-isatty-seealso">
<h3 class="title">参见</h3>
<p class="para">
<ul class="simplelist">
<li class="member"><span class="function"><a href="posix_ttyname.html" class="function" rel="rdfs-seeAlso">posix_ttyname()</a> - Determine terminal device name</span></li>
<li class="member"><span class="function"><a href="stream_isatty.html" class="function" rel="rdfs-seeAlso">stream_isatty()</a> - Check if a stream is a TTY</span></li>
</ul>
</p>
</div>
</div></div></div></body></html>