オペコードの説明とサンプル
PHP Manual

NOP

PHP コード

<?php
/*
 * no operation
 * opcode number: 0
 */
function A(){}; 
?>

PHP オペコード

関数名: (null)

コンパイルされた変数: none

line#op fetchextreturn operands
60 NOP      
71 RETURN     1

関数名: A

コンパイルされた変数: none

line#op fetchextreturn operands
60 RETURN     null

オペコードの説明とサンプル
PHP Manual