3v4l.org

run code in 500+ PHP versions simultaneously
<?php declare(strict_types=1); abstract class User { public const STATUS_ACTIVE = 'active'; public const STATUS_INACTIVE = 'inactive'; public function __construct(public string $email, public string $status = self::STATUS_ACTIVE) { } public function setStatus(string $status): void { assert( in_array($status, [self::STATUS_ACTIVE, self::STATUS_INACTIVE]), sprintf('Le status %s n\'est pas valide. Les status possibles sont : %s', $status, [self::STATUS_ACTIVE, self::STATUS_INACTIVE]) ); $this->status = $status; } public function getStatus(): string { return $this->status; } abstract public function getUsername(): string; } abstract class Player extends User { // Ajout d'un tableau de roles pour affiner les droits des administrateurs :) public function __construct(string $email, public string $username, string $status = self::STATUS_ACTIVE) { parent::__construct($email, $status); } // ... } class QueuingPlayer extends Player { public function getUsername(): string { return $this->username; } } $Qp = new QueuingPlayer('roland@gras.ros', 'Roland'); var_dump($Qp);
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/CpiJo
function name:  (null)
number of ops:  9
compiled vars:  !0 = $Qp
line      #* E I O op                               fetch          ext  return  operands
-----------------------------------------------------------------------------------------
   51     0  E >   NEW                                                  $1      'QueuingPlayer'
          1        SEND_VAL_EX                                                  'roland%40gras.ros'
          2        SEND_VAL_EX                                                  'Roland'
          3        DO_FCALL                                          0          
          4        ASSIGN                                                       !0, $1
   52     5        INIT_FCALL                                                   'var_dump'
          6        SEND_VAR                                                     !0
          7        DO_ICALL                                                     
          8      > RETURN                                                       1

Class User:
Function __construct:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/CpiJo
function name:  __construct
number of ops:  7
compiled vars:  !0 = $email, !1 = $status
line      #* E I O op                               fetch          ext  return  operands
-----------------------------------------------------------------------------------------
   10     0  E >   RECV                                                 !0      
          1        RECV_INIT                                            !1      <const ast>
          2        ASSIGN_OBJ                                                   'email'
          3        OP_DATA                                                      !0
          4        ASSIGN_OBJ                                                   'status'
          5        OP_DATA                                                      !1
   12     6      > RETURN                                                       null

End of function __construct

Function setstatus:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/CpiJo
function name:  setStatus
number of ops:  15
compiled vars:  !0 = $status
line      #* E I O op                               fetch          ext  return  operands
-----------------------------------------------------------------------------------------
   14     0  E >   RECV                                                 !0      
   16     1        ASSERT_CHECK                                                 
          2        INIT_FCALL                                                   'assert'
   17     3        IN_ARRAY                                             ~1      !0, <array>
          4        SEND_VAL                                                     ~1
   18     5        ROPE_INIT                                         4  ~4      'Le+status+'
          6        ROPE_ADD                                          1  ~4      ~4, !0
          7        ROPE_ADD                                          2  ~4      ~4, '+n%27est+pas+valide.+Les+status+possibles+sont+%3A+'
          8        CAST                                              6  ~2      <array>
          9        ROPE_END                                          3  ~3      ~4, ~2
         10        SEND_VAL                                                     ~3
   16    11        DO_ICALL                                                     
   21    12        ASSIGN_OBJ                                                   'status'
         13        OP_DATA                                                      !0
   22    14      > RETURN                                                       null

End of function setstatus

Function getstatus:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/CpiJo
function name:  getStatus
number of ops:  5
compiled vars:  none
line      #* E I O op                               fetch          ext  return  operands
-----------------------------------------------------------------------------------------
   26     0  E >   FETCH_OBJ_R                                          ~0      'status'
          1        VERIFY_RETURN_TYPE                                           ~0
          2      > RETURN                                                       ~0
   27     3*       VERIFY_RETURN_TYPE                                           
          4*     > RETURN                                                       null

End of function getstatus

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

End of function getusername

End of class User.

Class Player:
Function __construct:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/CpiJo
function name:  __construct
number of ops:  10
compiled vars:  !0 = $email, !1 = $username, !2 = $status
line      #* E I O op                               fetch          ext  return  operands
-----------------------------------------------------------------------------------------
   35     0  E >   RECV                                                 !0      
          1        RECV                                                 !1      
          2        RECV_INIT                                            !2      <const ast>
          3        ASSIGN_OBJ                                                   'username'
          4        OP_DATA                                                      !1
   37     5        INIT_STATIC_METHOD_CALL                                      
          6        SEND_VAR_EX                                                  !0
          7        SEND_VAR_EX                                                  !2
          8        DO_FCALL                                          0          
   38     9      > RETURN                                                       null

End of function __construct

Function setstatus:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/CpiJo
function name:  setStatus
number of ops:  15
compiled vars:  !0 = $status
line      #* E I O op                               fetch          ext  return  operands
-----------------------------------------------------------------------------------------
   14     0  E >   RECV                                                 !0      
   16     1        ASSERT_CHECK                                                 
          2        INIT_FCALL                                                   'assert'
   17     3        IN_ARRAY                                             ~1      !0, <array>
          4        SEND_VAL                                                     ~1
   18     5        ROPE_INIT                                         4  ~4      'Le+status+'
          6        ROPE_ADD                                          1  ~4      ~4, !0
          7        ROPE_ADD                                          2  ~4      ~4, '+n%27est+pas+valide.+Les+status+possibles+sont+%3A+'
          8        CAST                                              6  ~2      <array>
          9        ROPE_END                                          3  ~3      ~4, ~2
         10        SEND_VAL                                                     ~3
   16    11        DO_ICALL                                                     
   21    12        ASSIGN_OBJ                                                   'status'
         13        OP_DATA                                                      !0
   22    14      > RETURN                                                       null

End of function setstatus

Function getstatus:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/CpiJo
function name:  getStatus
number of ops:  5
compiled vars:  none
line      #* E I O op                               fetch          ext  return  operands
-----------------------------------------------------------------------------------------
   26     0  E >   FETCH_OBJ_R                                          ~0      'status'
          1        VERIFY_RETURN_TYPE                                           ~0
          2      > RETURN                                                       ~0
   27     3*       VERIFY_RETURN_TYPE                                           
          4*     > RETURN                                                       null

End of function getstatus

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

End of function getusername

End of class Player.

Class QueuingPlayer:
Function getusername:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/CpiJo
function name:  getUsername
number of ops:  5
compiled vars:  none
line      #* E I O op                               fetch          ext  return  operands
-----------------------------------------------------------------------------------------
   47     0  E >   FETCH_OBJ_R                                          ~0      'username'
          1        VERIFY_RETURN_TYPE                                           ~0
          2      > RETURN                                                       ~0
   48     3*       VERIFY_RETURN_TYPE                                           
          4*     > RETURN                                                       null

End of function getusername

Function __construct:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/CpiJo
function name:  __construct
number of ops:  10
compiled vars:  !0 = $email, !1 = $username, !2 = $status
line      #* E I O op                               fetch          ext  return  operands
-----------------------------------------------------------------------------------------
   35     0  E >   RECV                                                 !0      
          1        RECV                                                 !1      
          2        RECV_INIT                                            !2      <const ast>
          3        ASSIGN_OBJ                                                   'username'
          4        OP_DATA                                                      !1
   37     5        INIT_STATIC_METHOD_CALL                                      
          6        SEND_VAR_EX                                                  !0
          7        SEND_VAR_EX                                                  !2
          8        DO_FCALL                                          0          
   38     9      > RETURN                                                       null

End of function __construct

Function setstatus:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/CpiJo
function name:  setStatus
number of ops:  15
compiled vars:  !0 = $status
line      #* E I O op                               fetch          ext  return  operands
-----------------------------------------------------------------------------------------
   14     0  E >   RECV                                                 !0      
   16     1        ASSERT_CHECK                                                 
          2        INIT_FCALL                                                   'assert'
   17     3        IN_ARRAY                                             ~1      !0, <array>
          4        SEND_VAL                                                     ~1
   18     5        ROPE_INIT                                         4  ~4      'Le+status+'
          6        ROPE_ADD                                          1  ~4      ~4, !0
          7        ROPE_ADD                                          2  ~4      ~4, '+n%27est+pas+valide.+Les+status+possibles+sont+%3A+'
          8        CAST                                              6  ~2      <array>
          9        ROPE_END                                          3  ~3      ~4, ~2
         10        SEND_VAL                                                     ~3
   16    11        DO_ICALL                                                     
   21    12        ASSIGN_OBJ                                                   'status'
         13        OP_DATA                                                      !0
   22    14      > RETURN                                                       null

End of function setstatus

Function getstatus:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/CpiJo
function name:  getStatus
number of ops:  5
compiled vars:  none
line      #* E I O op                               fetch          ext  return  operands
-----------------------------------------------------------------------------------------
   26     0  E >   FETCH_OBJ_R                                          ~0      'status'
          1        VERIFY_RETURN_TYPE                                           ~0
          2      > RETURN                                                       ~0
   27     3*       VERIFY_RETURN_TYPE                                           
          4*     > RETURN                                                       null

End of function getstatus

End of class QueuingPlayer.

Generated using Vulcan Logic Dumper, using php 8.5.0


preferences:
158.13 ms | 2043 KiB | 15 Q