オペコードの説明とサンプル
PHP Manual

FETCH_RW

PHP コード

<?php
/*
 * Fetch the value of the varible of "name" to assign it to a variable?
 * opcode number: 86
 */
$x 1;
$a 'x';
$
$a++;
?>

PHP オペコード

関数名: (null)

コンパイルされた変数: !0=$x, !1=$a

line#op fetchextreturn operands
60 ASSIGN     !0,1
71 ASSIGN     !1,'x'
82 FETCH_RWlocal  $2 !1
 3 POST_INC   ~3 $2
 4 FREE     ~3
95 RETURN     1

オペコードの説明とサンプル
PHP Manual