PHP Doku:: FETCH_IS - internals2.opcodes.fetch-is.html

Verlauf / Chronik / History: (1) anzeigen

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

Ein Service von Reinhard Neidl - Webprogrammierung.

Opcodes

<<FETCH_FUNC_ARG

FETCH_OBJ_FUNC_ARG>>

FETCH_IS

PHP code

<?php
/*
 * Fetch the value from variable which is to be used to test if it is set or not, through isset()/isempty().
 * opcode number: 89
 */
echo isset($_SESSION['userid']);
echo isset(
$_SESSION['userid'][1]);
echo isset(
$_SESSION->prop->prop);
?>

PHP opcodes

Function name: (null)

Compiled variables: none

line#op fetchextreturn operands
60 FETCH_IS   $0 '_SESSION'
 1 ZEND_ISSET_ISEMPTY_DIM_OBJ  1~1 $0,'userid'
 2 ECHO     ~1
73 FETCH_IS   $2 '_SESSION'
 4 FETCH_DIM_IS   $3 $2,'userid'
 5 ZEND_ISSET_ISEMPTY_DIM_OBJ  1~4 $3,1
 6 ECHO     ~4
87 FETCH_IS   $5 '_SESSION'
 8 FETCH_OBJ_IS   $6 $5,'prop'
 9 ZEND_ISSET_ISEMPTY_PROP_OBJ   ~7 $6,'prop'
 10 ECHO     ~7
911 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",...)