Source of: /manual/ro/internals2.opcodes.mul.php
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/internals2.opcodes.list.inc";
$setup = array (
'home' =>
array (
0 => 'index.php',
1 => 'PHP Manual',
),
'head' =>
array (
0 => 'UTF-8',
1 => 'ro',
),
'this' =>
array (
0 => 'internals2.opcodes.mul.php',
1 => 'MUL',
),
'up' =>
array (
0 => 'internals2.opcodes.list.php',
1 => 'Opcode Descriptions and Examples',
),
'prev' =>
array (
0 => 'internals2.opcodes.mod.php',
1 => 'MOD',
),
'next' =>
array (
0 => 'internals2.opcodes.new.php',
1 => 'NEW',
),
'alternatives' =>
array (
),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);
manual_header();
?>
<div id="internals2.opcodes.mul" class="section">
<h2 class="title">MUL</h2>
<div class="section" id="internals2.opcodes.mul.code">
<h2 class="title">PHP code</h2>
<div class="example-contents">
<div class="phpcode"><code><span style="color: #000000">
<span style="color: #0000BB"><?php<br /></span><span style="color: #FF8000">/*<br /> * Multiplys "value1" by "value2" and stores the result into "result".<br /> * opcode number: 3<br /> */<br /></span><span style="color: #007700">echo </span><span style="color: #0000BB">2</span><span style="color: #007700">*</span><span style="color: #0000BB">3</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">?></span>
</span>
</code></div>
</div>
</div>
<div class="section" id="internals2.opcodes.mul.listing">
<h2 class="title">PHP opcodes</h2>
<p class="simpara">Function name: (null)</p>
<p class="simpara">Compiled variables: none </p>
<table class="doctable informaltable">
<thead>
<tr>
<th>line</th><th>#</th><th>op</th>
<th>fetch</th><th>ext</th><th>return</th>
<th>operands</th>
</tr>
</thead>
<tbody class="tbody">
<tr>
<td>6</td><td>0</td>
<td>MUL</td><td class="empty"> </td>
<td class="empty"> </td><td>~0</td>
<td>2,3</td>
</tr>
<tr>
<td class="empty"> </td><td>1</td>
<td>ECHO</td><td class="empty"> </td>
<td class="empty"> </td><td class="empty"> </td>
<td>~0</td>
</tr>
<tr>
<td>7</td><td>2</td>
<td>RETURN</td><td class="empty"> </td>
<td class="empty"> </td><td class="empty"> </td>
<td>1</td>
</tr>
</tbody>
</table>
</div>
</div><?php manual_footer(); ?>