NOP

Operation

Do nothing.

Operands

None

Form

ZEND_NOP = 0 (0x00)

Description

Just do nothing.

Example

<?php
  echo "Ddd";
?>

Implementation

ZEND_VM_HANDLER(0, ZEND_NOP, ANY, ANY)
{
        ZEND_VM_NEXT_OPCODE();
}