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

90 lines
3.3 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>Return the integer object handle for given object</title>
</head>
<body class="docs"><div id="layout">
<div id="layout-content"><div id="function.spl-object-id" class="refentry">
<div class="refnamediv">
<h1 class="refname">spl_object_id</h1>
<p class="verinfo">(PHP 7 &gt;= 7.2.0)</p><p class="refpurpose"><span class="refname">spl_object_id</span> &mdash; <span class="dc-title">
Return the integer object handle for given object
</span></p>
</div>
<div class="refsect1 description" id="refsect1-function.spl-object-id-description">
<h3 class="title">说明</h3>
<div class="methodsynopsis dc-description">
<span class="methodname"><strong>spl_object_id</strong></span>
( <span class="methodparam"><span class="type">object</span> <code class="parameter">$obj</code></span>
) : <span class="type">int</span></div>
<p class="para rdfs-comment">
This function returns a unique identifier for the object. The object id is
unique for the lifetime of the object. Once the object is destroyed, its id
may be reused for other objects. This behavior is similar to
<span class="function"><a href="spl_object_hash.html" class="function">spl_object_hash()</a></span>.
</p>
</div>
<div class="refsect1 parameters" id="refsect1-function.spl-object-id-parameters">
<h3 class="title">参数</h3>
<p class="para">
<dl>
<dt>
<code class="parameter">object</code></dt>
<dd>
<p class="para">
Any object.
</p>
</dd>
</dl>
</p>
</div>
<div class="refsect1 returnvalues" id="refsect1-function.spl-object-id-returnvalues">
<h3 class="title">返回值</h3>
<p class="para">
An integer identifier that is unique for each currently existing object and
is always the same for each object.
</p>
</div>
<div class="refsect1 examples" id="refsect1-function.spl-object-id-examples">
<h3 class="title">范例</h3>
<p class="para">
<div class="example" id="example-4723">
<p><strong>Example #1 A <span class="function"><strong>spl_object_id()</strong></span> example</strong></p>
<div class="example-contents">
<div class="phpcode"><pre><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br />$id&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">spl_object_id</span><span style="color: #007700">(</span><span style="color: #0000BB">$object</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$storage</span><span style="color: #007700">[</span><span style="color: #0000BB">$id</span><span style="color: #007700">]&nbsp;=&nbsp;</span><span style="color: #0000BB">$object</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.spl-object-id-notes">
<h3 class="title">注释</h3>
<blockquote class="note"><p><strong class="note">Note</strong>:
<p class="para">
When an object is destroyed, its id may be reused for other objects.
</p>
</p></blockquote>
</div>
</div></div></div></body></html>