<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.phpdbg.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'en',
  ),
  'this' => 
  array (
    0 => 'function.phpdbg-break-method.php',
    1 => 'phpdbg_break_method',
    2 => 'Inserts a breakpoint at entry to a method',
  ),
  'up' => 
  array (
    0 => 'ref.phpdbg.php',
    1 => 'phpdbg Functions',
  ),
  'prev' => 
  array (
    0 => 'function.phpdbg-break-function.php',
    1 => 'phpdbg_break_function',
  ),
  'next' => 
  array (
    0 => 'function.phpdbg-break-next.php',
    1 => 'phpdbg_break_next',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/phpdbg/functions/phpdbg-break-method.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.phpdbg-break-method" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">phpdbg_break_method</h1>
  <p class="verinfo">(PHP 5 &gt;= 5.6.3, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">phpdbg_break_method</span> &mdash; <span class="dc-title">Inserts a breakpoint at entry to a method</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.phpdbg-break-method-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>phpdbg_break_method</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$class</code></span>, <span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$method</code></span>): <span class="type"><a href="language.types.void.php" class="type void">void</a></span></div>

  <p class="simpara">
   Insert a breakpoint at the entry to the given <code class="parameter">method</code>
   of the given <code class="parameter">class</code>.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.phpdbg-break-method-parameters">
  <h3 class="title">Parameters</h3>
  <dl>
   
    <dt><code class="parameter">class</code></dt>
    <dd>
     <span class="simpara">
      The name of the class.
     </span>
    </dd>
   
   
    <dt><code class="parameter">method</code></dt>
    <dd>
     <span class="simpara">
      The name of the method.
     </span>
    </dd>
   
  </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.phpdbg-break-method-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="simpara">
   No value is returned.
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.phpdbg-break-method-seealso">
  <h3 class="title">See Also</h3>
  <ul class="simplelist">
   <li><span class="function"><a href="function.phpdbg-break-file.php" class="function" rel="rdfs-seeAlso">phpdbg_break_file()</a> - Inserts a breakpoint at a line in a file</span></li>
   <li><span class="function"><a href="function.phpdbg-break-function.php" class="function" rel="rdfs-seeAlso">phpdbg_break_function()</a> - Inserts a breakpoint at entry to a function</span></li>
   <li><span class="function"><a href="function.phpdbg-break-next.php" class="function" rel="rdfs-seeAlso">phpdbg_break_next()</a> - Inserts a breakpoint at the next opcode</span></li>
   <li><span class="function"><a href="function.phpdbg-clear.php" class="function" rel="rdfs-seeAlso">phpdbg_clear()</a> - Clears all breakpoints</span></li>
  </ul>
 </div>


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