3v4l.org

run code in 300+ PHP versions simultaneously
<?php /* Challenge 2: Implement AnswerInterface and get Question to echo "4". */ class Question { public function __construct(AnswerInterface $answer) { echo "What is 2 + 2?\n"; $answer = $answer->get()->the()->answer(); if ($answer instanceof AnswerInterface) { echo $answer . PHP_EOL; } } } interface AnswerInterface { public function get(); public function the(); public function answer(); } class Answer implements AnswerInterface { private $output; public function __construct($output = 4) { $this->output = $output; } public function getOutput() { return $this->output; } public function get() { return $this; } public function the() { return $this; } public function answer() { return $this->getOutput(); } } // start editing here // end editing here $answer = new Answer; $question = new Question($answer);
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/Acg7W
function name:  (null)
number of ops:  9
compiled vars:  !0 = $answer, !1 = $question
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   27     0  E >   DECLARE_CLASS                                            'answer'
   62     1        NEW                                              $2      'Answer'
          2        DO_FCALL                                      0          
          3        ASSIGN                                                   !0, $2
   63     4        NEW                                              $5      'Question'
          5        SEND_VAR_EX                                              !0
          6        DO_FCALL                                      0          
          7        ASSIGN                                                   !1, $5
          8      > RETURN                                                   1

Class Question:
Function __construct:
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 43) Position 1 = 11, Position 2 = 13
Branch analysis from position: 11
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 13
filename:       /in/Acg7W
function name:  __construct
number of ops:  14
compiled vars:  !0 = $answer
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    9     0  E >   RECV                                             !0      
   11     1        ECHO                                                     'What+is+2+%2B+2%3F%0A'
   12     2        INIT_METHOD_CALL                                         !0, 'get'
          3        DO_FCALL                                      0  $1      
          4        INIT_METHOD_CALL                                         $1, 'the'
          5        DO_FCALL                                      0  $2      
          6        INIT_METHOD_CALL                                         $2, 'answer'
          7        DO_FCALL                                      0  $3      
          8        ASSIGN                                                   !0, $3
   14     9        INSTANCEOF                                               !0, 'AnswerInterface'
         10      > JMPZ                                                     ~5, ->13
   15    11    >   CONCAT                                           ~6      !0, '%0A'
         12        ECHO                                                     ~6
   17    13    > > RETURN                                                   null

End of function __construct

End of class Question.

Class AnswerInterface:
Function get:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/Acg7W
function name:  get
number of ops:  1
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   22     0  E > > RETURN                                                   null

End of function get

Function the:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/Acg7W
function name:  the
number of ops:  1
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   23     0  E > > RETURN                                                   null

End of function the

Function answer:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/Acg7W
function name:  answer
number of ops:  1
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   24     0  E > > RETURN                                                   null

End of function answer

End of class AnswerInterface.

Class Answer:
Function __construct:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/Acg7W
function name:  __construct
number of ops:  4
compiled vars:  !0 = $output
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   31     0  E >   RECV_INIT                                        !0      4
   33     1        ASSIGN_OBJ                                               'output'
          2        OP_DATA                                                  !0
   34     3      > RETURN                                                   null

End of function __construct

Function getoutput:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/Acg7W
function name:  getOutput
number of ops:  3
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   38     0  E >   FETCH_OBJ_R                                      ~0      'output'
          1      > RETURN                                                   ~0
   39     2*     > RETURN                                                   null

End of function getoutput

Function get:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/Acg7W
function name:  get
number of ops:  3
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   43     0  E >   FETCH_THIS                                       ~0      
          1      > RETURN                                                   ~0
   44     2*     > RETURN                                                   null

End of function get

Function the:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/Acg7W
function name:  the
number of ops:  3
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   48     0  E >   FETCH_THIS                                       ~0      
          1      > RETURN                                                   ~0
   49     2*     > RETURN                                                   null

End of function the

Function answer:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/Acg7W
function name:  answer
number of ops:  4
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   53     0  E >   INIT_METHOD_CALL                                         'getOutput'
          1        DO_FCALL                                      0  $0      
          2      > RETURN                                                   $0
   54     3*     > RETURN                                                   null

End of function answer

End of class Answer.

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
164.28 ms | 1399 KiB | 13 Q