mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-17 21:16:57 +08:00
97 lines
3.4 KiB
HTML
97 lines
3.4 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>Set the thread title</title>
|
||
</head>
|
||
<body class="docs"><div id="layout">
|
||
<div id="layout-content"><div id="function.setthreadtitle" class="refentry">
|
||
<div class="refnamediv">
|
||
<h1 class="refname">setthreadtitle</h1>
|
||
<p class="verinfo">(PECL proctitle >= 0.1.2)</p><p class="refpurpose"><span class="refname">setthreadtitle</span> — <span class="dc-title">Set the thread title</span></p>
|
||
|
||
</div>
|
||
|
||
<div class="refsect1 description" id="refsect1-function.setthreadtitle-description">
|
||
<h3 class="title">说明</h3>
|
||
<div class="methodsynopsis dc-description">
|
||
<span class="methodname"><strong>setthreadtitle</strong></span>
|
||
( <span class="methodparam"><span class="type">string</span> <code class="parameter">$title</code></span>
|
||
) : <span class="type">bool</span></div>
|
||
|
||
<p class="para rdfs-comment">
|
||
Sets the thread title.
|
||
</p>
|
||
</div>
|
||
|
||
|
||
<div class="refsect1 parameters" id="refsect1-function.setthreadtitle-parameters">
|
||
<h3 class="title">参数</h3>
|
||
<p class="para">
|
||
<dl>
|
||
|
||
|
||
<dt>
|
||
<code class="parameter">title</code></dt>
|
||
|
||
<dd>
|
||
|
||
<p class="para">
|
||
The title to use as the thread title.
|
||
</p>
|
||
</dd>
|
||
|
||
|
||
</dl>
|
||
|
||
</p>
|
||
</div>
|
||
|
||
|
||
<div class="refsect1 returnvalues" id="refsect1-function.setthreadtitle-returnvalues">
|
||
<h3 class="title">返回值</h3>
|
||
<p class="para">
|
||
成功时返回 <strong><code>TRUE</code></strong>, 或者在失败时返回 <strong><code>FALSE</code></strong>。
|
||
</p>
|
||
</div>
|
||
|
||
|
||
<div class="refsect1 examples" id="refsect1-function.setthreadtitle-examples">
|
||
<h3 class="title">范例</h3>
|
||
<div class="example" id="example-2856">
|
||
<p><strong>Example #1 <span class="function"><strong>setthreadtitle()</strong></span> example</strong></p>
|
||
<div class="example-contents"><p>
|
||
Running the example below will change the thread title (visible with
|
||
<em>ps c</em> for example).
|
||
</p></div>
|
||
<div class="example-contents">
|
||
<div class="phpcode"><pre><span style="color: #000000">
|
||
<span style="color: #0000BB"><?php<br />setthreadtitle</span><span style="color: #007700">(</span><span style="color: #DD0000">"myscript"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?></span>
|
||
</span>
|
||
</pre></div>
|
||
</div>
|
||
|
||
<div class="example-contents"><p>以上例程的输出类似于:</p></div>
|
||
<div class="example-contents screen">
|
||
<div class="cdata"><pre>
|
||
$ ps c
|
||
PID TTY STAT TIME COMMAND
|
||
1178 pts/3 S 0:00 myscript
|
||
</pre></div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
|
||
<div class="refsect1 seealso" id="refsect1-function.setthreadtitle-seealso">
|
||
<h3 class="title">参见</h3>
|
||
<ul class="simplelist">
|
||
<li class="member"><span class="function"><a href="pcntl_fork.html" class="function" rel="rdfs-seeAlso">pcntl_fork()</a> - 在当前进程当前位置产生分支(子进程)。译注:fork是创建了一个子进程,父进程和子进程
|
||
都从fork的位置开始向下继续执行,不同的是父进程执行过程中,得到的fork返回值为子进程
|
||
号,而子进程得到的是0。</span></li>
|
||
<li class="member"><span class="function"><a href="setproctitle.html" class="function" rel="rdfs-seeAlso">setproctitle()</a> - Set the process title</span></li>
|
||
</ul>
|
||
</div>
|
||
|
||
|
||
</div></div></div></body></html> |