PHP Doku:: ASSIGN - internals2.opcodes.assign.html

Verlauf / Chronik / History: (3) anzeigen

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

Ein Service von Reinhard Neidl - Webprogrammierung.

Opcodes

<<ADD_VAR

ASSIGN_ADD>>

ASSIGN

PHP code

<?php
/*
 * assigns value1 to result
 * opcode number: 38
 */
$a=1;
$a='a';
$a=new A();
?>

PHP opcodes

Function name: (null)

Compiled variables: !0=$a

line#op fetchextreturn operands
60 ASSIGN     !0,1
71 ASSIGN     !0,'a'
82 ZEND_FETCH_CLASS   :2 'A'
 3 NEW   $3 :2
 4 DO_FCALL_BY_NAME  0   
 5 ASSIGN     !0,$3
96 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",...)