<?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 => 'it',
  ),
  'this' => 
  array (
    0 => 'function.runkit7-method-add.php',
    1 => 'runkit7_method_add',
    2 => 'Dynamically adds a new method to a given class',
  ),
  'up' => 
  array (
    0 => 'ref.runkit7.php',
    1 => 'runkit7 Funzioni',
  ),
  'prev' => 
  array (
    0 => 'function.runkit7-import.php',
    1 => 'runkit7_import',
  ),
  'next' => 
  array (
    0 => 'function.runkit7-method-copy.php',
    1 => 'runkit7_method_copy',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/runkit7/functions/runkit7-method-add.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.runkit7-method-add" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">runkit7_method_add</h1>
  <p class="verinfo">(PECL runkit7 &gt;= Unknown)</p><p class="refpurpose"><span class="refname">runkit7_method_add</span> &mdash; <span class="dc-title">Dynamically adds a new method to a given class</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.runkit7-method-add-description">
  <h3 class="title">Descrizione</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>runkit7_method_add</strong></span>(<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$class_name</code></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$method_name</code></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$argument_list</code></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$code</code></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$flags</code><span class="initializer"> = RUNKIT7_ACC_PUBLIC</span></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$doc_comment</code><span class="initializer"> = <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong></span></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$return_type</code><span class="initializer"> = ?</span></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span> <code class="parameter">$is_strict</code><span class="initializer"> = ?</span></span><br>): <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span></div>

  <div class="methodsynopsis dc-description"><span class="methodname"><strong>runkit7_method_add</strong></span>(<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$class_name</code></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$method_name</code></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="class.closure.php" class="type Closure">Closure</a></span> <code class="parameter">$closure</code></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$flags</code><span class="initializer"> = RUNKIT7_ACC_PUBLIC</span></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$doc_comment</code><span class="initializer"> = <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong></span></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$return_type</code><span class="initializer"> = ?</span></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span> <code class="parameter">$is_strict</code><span class="initializer"> = ?</span></span><br>): <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span></div>

 </div>

 <div class="refsect1 parameters" id="refsect1-function.runkit7-method-add-parameters">
  <h3 class="title">Elenco dei parametri</h3>
  <dl>
   
    <dt><code class="parameter">class_name</code></dt>
    <dd>
     <span class="simpara">
       The class to which this method will be added
     </span>
    </dd>
   
   
    <dt><code class="parameter">method_name</code></dt>
    <dd>
     <span class="simpara">
       The name of the method to add
     </span>
    </dd>
   
    
     <dt><code class="parameter">argument_list</code></dt>
     <dd>
      <span class="simpara">
       Comma-delimited list of arguments for the newly-created method
      </span>
     </dd>
    
    
     <dt><code class="parameter">code</code></dt>
     <dd>
      <span class="simpara">
       The code to be evaluated when <code class="parameter">method_name</code>
       is called
      </span>
     </dd>
    
    
     <dt><code class="parameter">closure</code></dt>
     <dd>
      <span class="simpara">
       A <span class="classname"><a href="class.closure.php" class="classname">closure</a></span> that defines the method.
      </span>
     </dd>
    
    
     <dt><code class="parameter">flags</code></dt>
     <dd>
      <span class="simpara">
       The type of method to create, can be
       <strong><code><a href="runkit7.constants.php#constant.runkit7-acc-public">RUNKIT7_ACC_PUBLIC</a></code></strong>,
       <strong><code><a href="runkit7.constants.php#constant.runkit7-acc-protected">RUNKIT7_ACC_PROTECTED</a></code></strong> or
       <strong><code><a href="runkit7.constants.php#constant.runkit7-acc-private">RUNKIT7_ACC_PRIVATE</a></code></strong> optionally combined via bitwise OR with
       <strong><code><a href="runkit7.constants.php#constant.runkit7-acc-static">RUNKIT7_ACC_STATIC</a></code></strong>
      </span>
     </dd>
    
    
     <dt><code class="parameter">doc_comment</code></dt>
     <dd>
      <span class="simpara">
       The doc comment of the method.
      </span>
     </dd>
    
   
    <dt><code class="parameter">return_type</code></dt>
    <dd>
     <span class="simpara">
      The return type of the method.

     </span>
    </dd>
   
   
    <dt><code class="parameter">is_strict</code></dt>
    <dd>
     <span class="simpara">
      Whether the method behaves as if it were declared in a file with <code class="literal">strict_types=1</code>
     </span>
    </dd>
   
  </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.runkit7-method-add-returnvalues">
  <h3 class="title">Valori restituiti</h3>
  <p class="simpara">
   Restituisce <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> in caso di successo, <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> in caso di fallimento.
  </p>
 </div>



 <div class="refsect1 examples" id="refsect1-function.runkit7-method-add-examples">
  <h3 class="title">Esempi</h3>
  <div class="example" id="example-1">
   <p><strong>Example #1 <span class="function"><strong>runkit7_method_add()</strong></span> example</strong></p>
   <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /></span><span style="color: #007700">class </span><span style="color: #0000BB">Example </span><span style="color: #007700">{<br />    function </span><span style="color: #0000BB">foo</span><span style="color: #007700">() {<br />        echo </span><span style="color: #DD0000">"foo!\n"</span><span style="color: #007700">;<br />    }<br />}<br /><br /></span><span style="color: #FF8000">// create an Example object<br /></span><span style="color: #0000BB">$e </span><span style="color: #007700">= new </span><span style="color: #0000BB">Example</span><span style="color: #007700">();<br /><br /></span><span style="color: #FF8000">// Add a new public method<br /></span><span style="color: #0000BB">runkit7_method_add</span><span style="color: #007700">(<br />    </span><span style="color: #DD0000">'Example'</span><span style="color: #007700">,<br />    </span><span style="color: #DD0000">'add'</span><span style="color: #007700">,<br />    </span><span style="color: #DD0000">'$num1, $num2'</span><span style="color: #007700">,<br />    </span><span style="color: #DD0000">'return $num1 + $num2;'</span><span style="color: #007700">,<br />    </span><span style="color: #0000BB">RUNKIT7_ACC_PUBLIC<br /></span><span style="color: #007700">);<br /><br /></span><span style="color: #FF8000">// add 12 + 4<br /></span><span style="color: #007700">echo </span><span style="color: #0000BB">$e</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">add</span><span style="color: #007700">(</span><span style="color: #0000BB">12</span><span style="color: #007700">, </span><span style="color: #0000BB">4</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
   </div>

   <div class="example-contents"><p>Il precedente esempio visualizzerà:</p></div>
   <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">16</pre>
</div>
   </div>
  </div>
 </div>

 <div class="refsect1 seealso" id="refsect1-function.runkit7-method-add-seealso">
  <h3 class="title">Vedere anche:</h3>
  <ul class="simplelist">
   <li><span class="function"><a href="function.runkit7-method-copy.php" class="function" rel="rdfs-seeAlso">runkit7_method_copy()</a> - Copies a method from class to another</span></li>
   <li><span class="function"><a href="function.runkit7-method-redefine.php" class="function" rel="rdfs-seeAlso">runkit7_method_redefine()</a> - Dynamically changes the code of the given method</span></li>
   <li><span class="function"><a href="function.runkit7-method-remove.php" class="function" rel="rdfs-seeAlso">runkit7_method_remove()</a> - Dynamically removes the given method</span></li>
   <li><span class="function"><a href="function.runkit7-method-rename.php" class="function" rel="rdfs-seeAlso">runkit7_method_rename()</a> - Dynamically changes the name of the given method</span></li>
   <li><span class="function"><a href="function.runkit7-function-add.php" class="function" rel="rdfs-seeAlso">runkit7_function_add()</a> - Add a new function, similar to create_function</span></li>
  </ul>
 </div>

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