<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.runkit7.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'en',
  ),
  'this' => 
  array (
    0 => 'function.runkit7-object-id.php',
    1 => 'runkit7_object_id',
    2 => 'Return the integer object handle for given object',
  ),
  'up' => 
  array (
    0 => 'ref.runkit7.php',
    1 => 'runkit7 Functions',
  ),
  'prev' => 
  array (
    0 => 'function.runkit7-method-rename.php',
    1 => 'runkit7_method_rename',
  ),
  'next' => 
  array (
    0 => 'function.runkit7-superglobals.php',
    1 => 'runkit7_superglobals',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/runkit7/functions/runkit7-object-id.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.runkit7-object-id" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">runkit7_object_id</h1>
  <p class="verinfo">(PECL runkit7 &gt;= Unknown)</p><p class="refpurpose"><span class="refname">runkit7_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.runkit7-object-id-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>runkit7_object_id</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.object.php" class="type object">object</a></span> <code class="parameter">$obj</code></span>): <span class="type"><a href="language.types.integer.php" class="type int">int</a></span></div>

  <p class="simpara">
   This function is equivalent to <span class="function"><a href="function.spl-object-id.php" class="function">spl_object_id()</a></span>.
  </p>
  <p class="simpara">
   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="function.spl-object-hash.php" class="function">spl_object_hash()</a></span>.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.runkit7-object-id-parameters">
  <h3 class="title">Parameters</h3>
  <dl>
   
    <dt><code class="parameter">obj</code></dt>
    <dd>
     <span class="simpara">
      Any object.
     </span>
    </dd>
   
  </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.runkit7-object-id-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="simpara">
   An integer identifier that is unique for each currently existing object and
   is always the same for each object.
  </p>
 </div>


 <div class="refsect1 notes" id="refsect1-function.runkit7-object-id-notes">
  <h3 class="title">Notes</h3>
  <blockquote class="note"><p><strong class="note">Note</strong>: 
   <span class="simpara">
    When an object is destroyed, its id may be reused for other objects.
   </span>
  </p></blockquote>
 </div>

 <div class="refsect1 seealso" id="refsect1-function.runkit7-object-id-seealso">
  <h3 class="title">See Also</h3>
  <ul class="simplelist">
   <li><span class="function"><a href="function.spl-object-id.php" class="function" rel="rdfs-seeAlso">spl_object_id()</a> - Return the integer object handle for given object</span></li>
  </ul>
 </div>

</div><?php manual_footer($setup); ?>