<?php/* * * opcode number: 140 */ if($b){ class Foo { public static $my_static = 'foo'; public function staticValue() { return self::$my_static; } } class Bar extends Foo { public function fooStatic() { echo parent::$my_static; } }}?>
Function name: (null)
Compiled variables: !0=$b
Function name: staticValue
Compiled variables: !0=$my_static
Function name: fooStatic