uTools-Manuals/docs/php/setproctitle.html
2019-04-28 19:00:34 +08:00

98 lines
3.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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 process title</title>
</head>
<body class="docs"><div id="layout">
<div id="layout-content"><div id="function.setproctitle" class="refentry">
<div class="refnamediv">
<h1 class="refname">setproctitle</h1>
<p class="verinfo">(PECL proctitle &gt;= 0.1.0)</p><p class="refpurpose"><span class="refname">setproctitle</span> &mdash; <span class="dc-title">Set the process title</span></p>
</div>
<div class="refsect1 description" id="refsect1-function.setproctitle-description">
<h3 class="title">说明</h3>
<div class="methodsynopsis dc-description">
<span class="methodname"><strong>setproctitle</strong></span>
( <span class="methodparam"><span class="type">string</span> <code class="parameter">$title</code></span>
) : <span class="type"><span class="type void">void</span></span></div>
<p class="para rdfs-comment">
Sets the process title of the current process.
</p>
</div>
<div class="refsect1 parameters" id="refsect1-function.setproctitle-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 process title.
</p>
</dd>
</dl>
</p>
</div>
<div class="refsect1 returnvalues" id="refsect1-function.setproctitle-returnvalues">
<h3 class="title">返回值</h3>
<p class="para">
没有返回值。
</p>
</div>
<div class="refsect1 examples" id="refsect1-function.setproctitle-examples">
<h3 class="title">范例</h3>
<div class="example" id="example-2855">
<p><strong>Example #1 <span class="function"><strong>setproctitle()</strong></span> example</strong></p>
<div class="example-contents"><p>
Running the example below will change the process title (visible with
<em>ps a</em> for example).
</p></div>
<div class="example-contents">
<div class="phpcode"><pre><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br />setproctitle</span><span style="color: #007700">(</span><span style="color: #DD0000">"myscript"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?&gt;</span>
</span>
</pre></div>
</div>
<div class="example-contents"><p>以上例程的输出类似于:</p></div>
<div class="example-contents screen">
<div class="cdata"><pre>
$ ps a
PID TTY STAT TIME COMMAND
1168 pts/3 S 0:00 myscript
</pre></div>
</div>
</div>
</div>
<div class="refsect1 seealso" id="refsect1-function.setproctitle-seealso">
<h3 class="title">参见</h3>
<ul class="simplelist">
<li class="member"><span class="function"><a href="cli_set_process_title.html" class="function" rel="rdfs-seeAlso">cli_set_process_title()</a> - Sets the process title</span></li>
<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="setthreadtitle.html" class="function" rel="rdfs-seeAlso">setthreadtitle()</a> - Set the thread title</span></li>
</ul>
</div>
</div></div></div></body></html>