Source of: /manual/ja/internals2.opcodes.pre-dec.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 => 'ja',
),
'this' =>
array (
0 => 'internals2.opcodes.pre-dec.php',
1 => 'PRE_DEC',
),
'up' =>
array (
0 => 'internals2.opcodes.list.php',
1 => 'オペコードの説明とサンプル',
),
'prev' =>
array (
0 => 'internals2.opcodes.post-inc-obj.php',
1 => 'POST_INC_OBJ',
),
'next' =>
array (
0 => 'internals2.opcodes.pre-dec-obj.php',
1 => 'PRE_DEC_OBJ',
),
'alternatives' =>
array (
),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);
manual_header();
?>
<div id="internals2.opcodes.pre-dec" class="section">
<h2 class="title">PRE_DEC</h2>
<div class="section" id="internals2.opcodes.pre-dec.code">
<h2 class="title">PHP コード</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 /> * decrements variable indicated by value1 by 1 (before performing other operations) and stores in results<br /> * opcode number: 35<br /> */<br /></span><span style="color: #007700">--</span><span style="color: #0000BB">$a</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">?></span>
</span>
</code></div>
</div>
</div>
<div class="section" id="internals2.opcodes.pre-dec.listing">
<h2 class="title">PHP オペコード</h2>
<p class="simpara">関数名: (null)</p>
<p class="simpara">コンパイルされた変数: !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>PRE_DEC</td><td class="empty"> </td>
<td class="empty"> </td><td class="empty"> </td>
<td>!0</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(); ?>