Source of: /manual/en/internals2.opcodes.assign-concat.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 => 'en',
),
'this' =>
array (
0 => 'internals2.opcodes.assign-concat.php',
1 => 'ASSIGN_CONCAT',
),
'up' =>
array (
0 => 'internals2.opcodes.list.php',
1 => 'Opcode Descriptions and Examples',
),
'prev' =>
array (
0 => 'internals2.opcodes.assign-bw-xor.php',
1 => 'ASSIGN_BW_XOR',
),
'next' =>
array (
0 => 'internals2.opcodes.assign-dim.php',
1 => 'ASSIGN_DIM',
),
'alternatives' =>
array (
),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);
manual_header();
?>
<div id="internals2.opcodes.assign-concat" class="section">
<h2 class="title">ASSIGN_CONCAT</h2>
<div class="section" id="internals2.opcodes.assign-concat.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 /> * Concats string values result and value1 and store in variable indicated by result<br /> * opcode number: 30<br /> */<br /></span><span style="color: #0000BB">$a </span><span style="color: #007700">.= </span><span style="color: #DD0000">'z'</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">?></span>
</span>
</code></div>
</div>
</div>
<div class="section" id="internals2.opcodes.assign-concat.listing">
<h2 class="title">PHP opcodes</h2>
<p class="simpara">Function name: (null)</p>
<p class="simpara">Compiled variables: !0=$a </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>ASSIGN_CONCAT</td><td class="empty"> </td>
<td class="empty"> </td><td class="empty"> </td>
<td>!0,'z'</td>
</tr>
<tr>
<td>7</td><td>1</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(); ?>