<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.reflectionfiber.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'it',
  ),
  'this' => 
  array (
    0 => 'reflectionfiber.gettrace.php',
    1 => 'ReflectionFiber::getTrace',
    2 => 'Get the backtrace of the current execution point',
  ),
  'up' => 
  array (
    0 => 'class.reflectionfiber.php',
    1 => 'ReflectionFiber',
  ),
  'prev' => 
  array (
    0 => 'reflectionfiber.getfiber.php',
    1 => 'ReflectionFiber::getFiber',
  ),
  'next' => 
  array (
    0 => 'class.reflectionintersectiontype.php',
    1 => 'ReflectionIntersectionType',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/reflection/reflectionfiber/gettrace.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="reflectionfiber.gettrace" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">ReflectionFiber::getTrace</h1>
  <p class="verinfo">(PHP 8 &gt;= 8.1.0)</p><p class="refpurpose"><span class="refname">ReflectionFiber::getTrace</span> &mdash; <span class="dc-title">Get the backtrace of the current execution point</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-reflectionfiber.gettrace-description">
  <h3 class="title">Descrizione</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>ReflectionFiber::getTrace</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$options</code><span class="initializer"> = <strong><code><a href="reserved.constants.php#constant.debug-backtrace-provide-object">DEBUG_BACKTRACE_PROVIDE_OBJECT</a></code></strong></span></span>): <span class="type"><a href="language.types.array.php" class="type array">array</a></span></div>

  <p class="para rdfs-comment">
   Get the backtrace of the current execution point in the reflected <span class="classname"><a href="class.fiber.php" class="classname">Fiber</a></span>.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-reflectionfiber.gettrace-parameters">
  <h3 class="title">Elenco dei parametri</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">options</code></dt>
     <dd>
      <p class="para">
       The value of <code class="parameter">options</code> can be any of
       the following flags.
      </p>
      <p class="para">
       <table class="doctable table">
        <caption><strong>Available options</strong></caption>
        
         <thead>
          <tr>
           <th>Option</th>
           <th>Descrizione</th>
          </tr>

         </thead>

         <tbody class="tbody">
          <tr>
           <td>
            <strong><code><a href="reserved.constants.php#constant.debug-backtrace-provide-object">DEBUG_BACKTRACE_PROVIDE_OBJECT</a></code></strong>
           </td>
           <td>
            Default.
           </td>
          </tr>

          <tr>
           <td>
            <strong><code><a href="reserved.constants.php#constant.debug-backtrace-ignore-args">DEBUG_BACKTRACE_IGNORE_ARGS</a></code></strong>
           </td>
           <td>
            Don&#039;t include the argument information for functions in the stack
            trace.
           </td>
          </tr>

         </tbody>
        
       </table>

      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-reflectionfiber.gettrace-returnvalues">
  <h3 class="title">Valori restituiti</h3>
  <p class="para">
   The backtrace of the current execution point in the fiber.
  </p>
 </div>



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