PHP Doku:: UNSET_VAR - internals2.opcodes.unset-var.html

Verlauf / Chronik / History: (3) anzeigen

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

Ein Service von Reinhard Neidl - Webprogrammierung.

Opcodes

<<UNSET_OBJ

USER_OPCODE>>

UNSET_VAR

PHP code

<?php
/*
 * Unset the variable and store the original value into "result".
 * opcode number: 74
 */
$x 1;
$a='x';
unset($
$a);
?>

PHP opcodes

Function name: (null)

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

line#op fetchextreturn operands
60 ASSIGN     !0,1
71 ASSIGN     !1,'x'
82 UNSET_VAR   $2 !1
93 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",...)