mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-18 13:57:03 +08:00
94 lines
3.4 KiB
HTML
94 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>计算 e 的指数</title>
|
|
</head>
|
|
<body class="docs"><div id="layout">
|
|
<div id="layout-content"><div id="function.exp" class="refentry">
|
|
<div class="refnamediv">
|
|
<h1 class="refname">exp</h1>
|
|
<p class="verinfo">(PHP 4, PHP 5, PHP 7)</p><p class="refpurpose"><span class="refname">exp</span> — <span class="dc-title">计算 <strong><code>e</code></strong> 的指数</span></p>
|
|
|
|
</div>
|
|
<div class="refsect1 description" id="refsect1-function.exp-description">
|
|
<h3 class="title">说明</h3>
|
|
<div class="methodsynopsis dc-description">
|
|
<span class="methodname"><strong>exp</strong></span>
|
|
( <span class="methodparam"><span class="type">float</span> <code class="parameter">$arg</code></span>
|
|
) : <span class="type">float</span></div>
|
|
|
|
<p class="para rdfs-comment">
|
|
返回 <strong><code>e</code></strong> 的 <code class="parameter">arg</code> 次方值。
|
|
</p>
|
|
<blockquote class="note"><p><strong class="note">Note</strong>:
|
|
<p class="para">
|
|
用 '<strong><code>e</code></strong>' 作为自然对数的底
|
|
2.718282.
|
|
</p>
|
|
</p></blockquote>
|
|
</div>
|
|
|
|
<div class="refsect1 parameters" id="refsect1-function.exp-parameters">
|
|
<h3 class="title">参数</h3>
|
|
<p class="para">
|
|
<dl>
|
|
|
|
|
|
<dt>
|
|
<code class="parameter">arg</code></dt>
|
|
|
|
<dd>
|
|
|
|
<p class="para">
|
|
要处理的参数
|
|
</p>
|
|
</dd>
|
|
|
|
|
|
</dl>
|
|
|
|
</p>
|
|
</div>
|
|
|
|
<div class="refsect1 returnvalues" id="refsect1-function.exp-returnvalues">
|
|
<h3 class="title">返回值</h3>
|
|
<p class="para">
|
|
'e' raised to the power of <code class="parameter">arg</code>
|
|
</p>
|
|
</div>
|
|
|
|
<div class="refsect1 examples" id="refsect1-function.exp-examples">
|
|
<h3 class="title">范例</h3>
|
|
<p class="para">
|
|
<div class="example" id="example-4126">
|
|
<p><strong>Example #1 <span class="function"><strong>exp()</strong></span> 例子</strong></p>
|
|
<div class="example-contents">
|
|
<div class="phpcode"><pre><span style="color: #000000">
|
|
<span style="color: #0000BB"><?php<br /></span><span style="color: #007700">echo </span><span style="color: #0000BB">exp</span><span style="color: #007700">(</span><span style="color: #0000BB">12</span><span style="color: #007700">) . </span><span style="color: #DD0000">"\n"</span><span style="color: #007700">;<br />echo </span><span style="color: #0000BB">exp</span><span style="color: #007700">(</span><span style="color: #0000BB">5.7</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>
|
|
1.6275E+005
|
|
298.87
|
|
</pre></div>
|
|
</div>
|
|
</div>
|
|
</p>
|
|
</div>
|
|
|
|
<div class="refsect1 seealso" id="refsect1-function.exp-seealso">
|
|
<h3 class="title">参见</h3>
|
|
<p class="para">
|
|
<ul class="simplelist">
|
|
<li class="member"><span class="function"><a href="log.html" class="function" rel="rdfs-seeAlso">log()</a> - 自然对数</span></li>
|
|
<li class="member"><span class="function"><a href="pow.html" class="function" rel="rdfs-seeAlso">pow()</a> - 指数表达式</span></li>
|
|
</ul>
|
|
</p>
|
|
</div>
|
|
|
|
</div></div></div></body></html> |