PHP Doku:: FE_RESET - internals2.opcodes.fe-reset.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchPHP im Kern: Das Entwicklerhandbuch für die Zend EngineZend Engine 2 opcode listOpcodesFE_RESET

Ein Service von Reinhard Neidl - Webprogrammierung.

Opcodes

<<FE_FETCH

FREE>>

FE_RESET

PHP code

<?php
/*
 * Initialize an iterator on array-value.  If the array is empty, jump to address.  Followed by FE_FETCH.
 * opcode number: 77
 */
$a = array(1,2,3);
foreach(
$a as $num){
    print 
$num;
}
?>

PHP opcodes

Function name: (null)

Compiled variables: !0=$a, !1=$num

line#op fetchextreturn operands
60 INIT_ARRAY   ~0 1
 1 ADD_ARRAY_ELEMENT   ~0 2
 2 ADD_ARRAY_ELEMENT   ~0 3
 3 ASSIGN     !0,~0
74 FE_RESET   $2 !0,->11
 5 FE_FETCH   $3 $2,->11
 6 ZEND_OP_DATA      
 7 ASSIGN     !1,$3
88 PRINT   ~5 !1
 9 FREE     ~5
910 JMP     ->5
 11 SWITCH_FREE     $2
1012 RETURN     1

Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)