3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Card { private $suit; private $val; public function __construct($val, $suit) { $values = array( 'J' => 11, 'Q' => 12, 'K' => 13, 'A' => 14, ); $suits = array( 'H' => 'Hearts', 'C' => 'Clubs', 'D' => 'Diamonds', 'S' => 'Spades' ); $this->suit = $suits[$suit]; $this->val = $values[$val] ?? $val; } public function getSuit() { return $this->suit; } public function getVal() { return $this->val; } public function setVal($val) { $this->val = $val; } } class Hand { private $cards; private $matches = array(); private $values = array(); private $flush; public function __construct($hand) { $cards = explode(' ', $hand); foreach ($cards as $card) { $val = substr($card, 0, -1); $suit = strtoupper(substr($card, -1)); $this->cards[] = new Card($val, $suit); } // get values of cards in hand $this->values = array_map(function ($card) { return $card->getVal(); }, $this->cards); // get suits of cards in hand $this->suits = array_map(function ($card) { return $card->getSuit(); }, $this->cards); // get pairs of threes and fours $this->pairs = $this->threes = $this->fours = []; // might be a straight $this->possibleStraight = true; $this->hands = array_count_values($this->values); // if there are more than 2 same card values, it can't be a straight if (max($this->hands) > 1) { $this->possibleStraight = false; } // match for pairs foreach ($this->hands as $face => $count) { // one or two pairs if ($count === 2) { $this->pairs[] = $face; } // three of a kind if ($count === 3) { $this->threes[] = $face; } // four of a kind if ($count === 4) { $this->fours[] = $face; } } } public function getCards() { return $this->cards; } public function getValues() { return $this->values; } public function getSuits() { return $this->suits; } public function getHighCard() { return max($this->getValues()); } public function getPairs() { return $this->pairs; } public function isOnePair(){ return (count($this->pairs) == 1 ? true : false); } public function isTwoPair(){ return (count($this->pairs) == 2 ? true : false); } public function getThrees() { return $this->threes; } public function getFours() { return $this->fours; } public function hasAce() { return isset($this->hands['14']); } public function isFullHouse() { return count($this->pairs) == 1 && count($this->threes) == 1; } public function isFlush() { $this->suits = array_count_values($this->getSuits()); // match flush foreach ($this->suits as $face => $count) { ($count == 5 ? $this->flush = true : $this->flush = false); } return $this->flush; } public function isStraightAce() { $cards = $this->getValues(); if (array_search(14, $cards) !== FALSE && array_search(2, $cards) !== FALSE && array_search(3, $cards) !== FALSE && array_search(4, $cards) !== FALSE && array_search(5, $cards) !== FALSE) { $this->straight = true; } else { $this->straight = false; } return $this->straight; } public function isStraightRegular() { $cards = $this->getValues(); if (max($cards) - min($cards) == 4) { $this->straight = true; } else { $this->straight = false; } return $this->straight; } public function isStraight(){ if($this->isStraightAce()){ $this->straight = true; } else if ($this->isStraightRegular()) { $this->straight = true; } else { $this->straight = false; } return $this->straight; } public function isStraightFlush(){ if ($this->isFlush() && $this->isStraight()){ return true; } else { return false; } } } echo "First Card: 2s 3h 4h 5h As\n\n"; $h = new Hand('2s 3h 4h 5h As'); var_dump($h->getHighCard()); var_dump($h->isOnePair()); var_dump($h->isTwoPair()); var_dump($h->getThrees()); var_dump($h->getFours()); var_dump($h->isFullHouse()); var_dump($h->isFlush()); var_dump($h->isStraight()); var_dump($h->isStraightFlush()); echo "\n\nSecond Card: 2s 3h 4h 5h 6s\n\n"; $h = new Hand('2s 3h 4h 5h 6s'); var_dump($h->getHighCard()); var_dump($h->isOnePair()); var_dump($h->isTwoPair()); var_dump($h->getThrees()); var_dump($h->getFours()); var_dump($h->isFullHouse()); var_dump($h->isFlush()); var_dump($h->isStraight()); var_dump($h->isStraightFlush()); echo "\n\nThird Card: 2h 3h 4h 5h 6h\n\n"; $h = new Hand('2h 3h 4h 5h 6h'); var_dump($h->getHighCard()); var_dump($h->isOnePair()); var_dump($h->isTwoPair()); var_dump($h->getThrees()); var_dump($h->getFours()); var_dump($h->isFullHouse()); var_dump($h->isFlush()); var_dump($h->isStraight()); var_dump($h->isStraightFlush());
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/I2K25
function name:  (null)
number of ops:  151
compiled vars:  !0 = $h
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
  205     0  E >   ECHO                                                     'First+Card%3A+2s+3h+4h+5h+As%0A%0A'
  206     1        NEW                                              $1      'Hand'
          2        SEND_VAL_EX                                              '2s+3h+4h+5h+As'
          3        DO_FCALL                                      0          
          4        ASSIGN                                                   !0, $1
  208     5        INIT_FCALL                                               'var_dump'
          6        INIT_METHOD_CALL                                         !0, 'getHighCard'
          7        DO_FCALL                                      0  $4      
          8        SEND_VAR                                                 $4
          9        DO_ICALL                                                 
  209    10        INIT_FCALL                                               'var_dump'
         11        INIT_METHOD_CALL                                         !0, 'isOnePair'
         12        DO_FCALL                                      0  $6      
         13        SEND_VAR                                                 $6
         14        DO_ICALL                                                 
  210    15        INIT_FCALL                                               'var_dump'
         16        INIT_METHOD_CALL                                         !0, 'isTwoPair'
         17        DO_FCALL                                      0  $8      
         18        SEND_VAR                                                 $8
         19        DO_ICALL                                                 
  211    20        INIT_FCALL                                               'var_dump'
         21        INIT_METHOD_CALL                                         !0, 'getThrees'
         22        DO_FCALL                                      0  $10     
         23        SEND_VAR                                                 $10
         24        DO_ICALL                                                 
  212    25        INIT_FCALL                                               'var_dump'
         26        INIT_METHOD_CALL                                         !0, 'getFours'
         27        DO_FCALL                                      0  $12     
         28        SEND_VAR                                                 $12
         29        DO_ICALL                                                 
  213    30        INIT_FCALL                                               'var_dump'
         31        INIT_METHOD_CALL                                         !0, 'isFullHouse'
         32        DO_FCALL                                      0  $14     
         33        SEND_VAR                                                 $14
         34        DO_ICALL                                                 
  214    35        INIT_FCALL                                               'var_dump'
         36        INIT_METHOD_CALL                                         !0, 'isFlush'
         37        DO_FCALL                                      0  $16     
         38        SEND_VAR                                                 $16
         39        DO_ICALL                                                 
  215    40        INIT_FCALL                                               'var_dump'
         41        INIT_METHOD_CALL                                         !0, 'isStraight'
         42        DO_FCALL                                      0  $18     
         43        SEND_VAR                                                 $18
         44        DO_ICALL                                                 
  216    45        INIT_FCALL                                               'var_dump'
         46        INIT_METHOD_CALL                                         !0, 'isStraightFlush'
         47        DO_FCALL                                      0  $20     
         48        SEND_VAR                                                 $20
         49        DO_ICALL                                                 
  218    50        ECHO                                                     '%0A%0ASecond+Card%3A+2s+3h+4h+5h+6s%0A%0A'
  219    51        NEW                                              $22     'Hand'
         52        SEND_VAL_EX                                              '2s+3h+4h+5h+6s'
         53        DO_FCALL                                      0          
         54        ASSIGN                                                   !0, $22
  221    55        INIT_FCALL                                               'var_dump'
         56        INIT_METHOD_CALL                                         !0, 'getHighCard'
         57        DO_FCALL                                      0  $25     
         58        SEND_VAR                                                 $25
         59        DO_ICALL                                                 
  222    60        INIT_FCALL                                               'var_dump'
         61        INIT_METHOD_CALL                                         !0, 'isOnePair'
         62        DO_FCALL                                      0  $27     
         63        SEND_VAR                                                 $27
         64        DO_ICALL                                                 
  223    65        INIT_FCALL                                               'var_dump'
         66        INIT_METHOD_CALL                                         !0, 'isTwoPair'
         67        DO_FCALL                                      0  $29     
         68        SEND_VAR                                                 $29
         69        DO_ICALL                                                 
  224    70        INIT_FCALL                                               'var_dump'
         71        INIT_METHOD_CALL                                         !0, 'getThrees'
         72        DO_FCALL                                      0  $31     
         73        SEND_VAR                                                 $31
         74        DO_ICALL                                                 
  225    75        INIT_FCALL                                               'var_dump'
         76        INIT_METHOD_CALL                                         !0, 'getFours'
         77        DO_FCALL                                      0  $33     
         78        SEND_VAR                                                 $33
         79        DO_ICALL                                                 
  226    80        INIT_FCALL                                               'var_dump'
         81        INIT_METHOD_CALL                                         !0, 'isFullHouse'
         82        DO_FCALL                                      0  $35     
         83        SEND_VAR                                                 $35
         84        DO_ICALL                                                 
  227    85        INIT_FCALL                                               'var_dump'
         86        INIT_METHOD_CALL                                         !0, 'isFlush'
         87        DO_FCALL                                      0  $37     
         88        SEND_VAR                                                 $37
         89        DO_ICALL                                                 
  228    90        INIT_FCALL                                               'var_dump'
         91        INIT_METHOD_CALL                                         !0, 'isStraight'
         92        DO_FCALL                                      0  $39     
         93        SEND_VAR                                                 $39
         94        DO_ICALL                                                 
  229    95        INIT_FCALL                                               'var_dump'
         96        INIT_METHOD_CALL                                         !0, 'isStraightFlush'
         97        DO_FCALL                                      0  $41     
         98        SEND_VAR                                                 $41
         99        DO_ICALL                                                 
  231   100        ECHO                                                     '%0A%0AThird+Card%3A+2h+3h+4h+5h+6h%0A%0A'
  232   101        NEW                                              $43     'Hand'
        102        SEND_VAL_EX                                              '2h+3h+4h+5h+6h'
        103        DO_FCALL                                      0          
        104        ASSIGN                                                   !0, $43
  234   105        INIT_FCALL                                               'var_dump'
        106        INIT_METHOD_CALL                                         !0, 'getHighCard'
        107        DO_FCALL                                      0  $46     
        108        SEND_VAR                                                 $46
        109        DO_ICALL                                                 
  235   110        INIT_FCALL                                               'var_dump'
        111        INIT_METHOD_CALL                                         !0, 'isOnePair'
        112        DO_FCALL                                      0  $48     
        113        SEND_VAR                                                 $48
        114        DO_ICALL                                                 
  236   115        INIT_FCALL                                               'var_dump'
        116        INIT_METHOD_CALL                                         !0, 'isTwoPair'
        117        DO_FCALL                                      0  $50     
        118        SEND_VAR                                                 $50
        119        DO_ICALL                                                 
  237   120        INIT_FCALL                                               'var_dump'
        121        INIT_METHOD_CALL                                         !0, 'getThrees'
        122        DO_FCALL                                      0  $52     
        123        SEND_VAR                                                 $52
        124        DO_ICALL                                                 
  238   125        INIT_FCALL                                               'var_dump'
        126        INIT_METHOD_CALL                                         !0, 'getFours'
        127        DO_FCALL                                      0  $54     
        128        SEND_VAR                                                 $54
        129        DO_ICALL                                                 
  239   130        INIT_FCALL                                               'var_dump'
        131        INIT_METHOD_CALL                                         !0, 'isFullHouse'
        132        DO_FCALL                                      0  $56     
        133        SEND_VAR                                                 $56
        134        DO_ICALL                                                 
  240   135        INIT_FCALL                                               'var_dump'
        136        INIT_METHOD_CALL                                         !0, 'isFlush'
        137        DO_FCALL                                      0  $58     
        138        SEND_VAR                                                 $58
        139        DO_ICALL                                                 
  241   140        INIT_FCALL                                               'var_dump'
        141        INIT_METHOD_CALL                                         !0, 'isStraight'
        142        DO_FCALL                                      0  $60     
        143        SEND_VAR                                                 $60
        144        DO_ICALL                                                 
  242   145        INIT_FCALL                                               'var_dump'
        146        INIT_METHOD_CALL                                         !0, 'isStraightFlush'
        147        DO_FCALL                                      0  $62     
        148        SEND_VAR                                                 $62
        149        DO_ICALL                                                 
        150      > RETURN                                                   1

Function %00%7Bclosure%7D%2Fin%2FI2K25%3A58%240:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/I2K25
function name:  {closure}
number of ops:  5
compiled vars:  !0 = $card
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   58     0  E >   RECV                                             !0      
   59     1        INIT_METHOD_CALL                                         !0, 'getVal'
          2        DO_FCALL                                      0  $1      
          3      > RETURN                                                   $1
   60     4*     > RETURN                                                   null

End of function %00%7Bclosure%7D%2Fin%2FI2K25%3A58%240

Function %00%7Bclosure%7D%2Fin%2FI2K25%3A63%241:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/I2K25
function name:  {closure}
number of ops:  5
compiled vars:  !0 = $card
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   63     0  E >   RECV                                             !0      
   64     1        INIT_METHOD_CALL                                         !0, 'getSuit'
          2        DO_FCALL                                      0  $1      
          3      > RETURN                                                   $1
   65     4*     > RETURN                                                   null

End of function %00%7Bclosure%7D%2Fin%2FI2K25%3A63%241

Class Card:
Function __construct:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/I2K25
function name:  __construct
number of ops:  13
compiled vars:  !0 = $val, !1 = $suit, !2 = $values, !3 = $suits
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    8     0  E >   RECV                                             !0      
          1        RECV                                             !1      
    9     2        ASSIGN                                                   !2, <array>
   16     3        ASSIGN                                                   !3, <array>
   23     4        FETCH_DIM_R                                      ~7      !3, !1
          5        ASSIGN_OBJ                                               'suit'
          6        OP_DATA                                                  ~7
   24     7        FETCH_DIM_IS                                     ~9      !2, !0
          8        COALESCE                                         ~10     ~9
          9        QM_ASSIGN                                        ~10     !0
         10        ASSIGN_OBJ                                               'val'
         11        OP_DATA                                                  ~10
   25    12      > RETURN                                                   null

End of function __construct

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

End of function getsuit

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

End of function getval

Function setval:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/I2K25
function name:  setVal
number of ops:  4
compiled vars:  !0 = $val
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   35     0  E >   RECV                                             !0      
   36     1        ASSIGN_OBJ                                               'val'
          2        OP_DATA                                                  !0
   37     3      > RETURN                                                   null

End of function setval

End of class Card.

Class Hand:
Function __construct:
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 77) Position 1 = 7, Position 2 = 30
Branch analysis from position: 7
2 jumps found. (Code = 78) Position 1 = 8, Position 2 = 30
Branch analysis from position: 8
1 jumps found. (Code = 42) Position 1 = 7
Branch analysis from position: 7
Branch analysis from position: 30
2 jumps found. (Code = 43) Position 1 = 67, Position 2 = 69
Branch analysis from position: 67
2 jumps found. (Code = 77) Position 1 = 71, Position 2 = 89
Branch analysis from position: 71
2 jumps found. (Code = 78) Position 1 = 72, Position 2 = 89
Branch analysis from position: 72
2 jumps found. (Code = 43) Position 1 = 75, Position 2 = 78
Branch analysis from position: 75
2 jumps found. (Code = 43) Position 1 = 80, Position 2 = 83
Branch analysis from position: 80
2 jumps found. (Code = 43) Position 1 = 85, Position 2 = 88
Branch analysis from position: 85
1 jumps found. (Code = 42) Position 1 = 71
Branch analysis from position: 71
Branch analysis from position: 88
Branch analysis from position: 83
Branch analysis from position: 78
Branch analysis from position: 89
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 89
Branch analysis from position: 69
Branch analysis from position: 30
filename:       /in/I2K25
function name:  __construct
number of ops:  91
compiled vars:  !0 = $hand, !1 = $cards, !2 = $card, !3 = $val, !4 = $suit, !5 = $count, !6 = $face
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   48     0  E >   RECV                                             !0      
   49     1        INIT_FCALL                                               'explode'
          2        SEND_VAL                                                 '+'
          3        SEND_VAR                                                 !0
          4        DO_ICALL                                         $7      
          5        ASSIGN                                                   !1, $7
   51     6      > FE_RESET_R                                       $9      !1, ->30
          7    > > FE_FETCH_R                                               $9, !2, ->30
   52     8    >   INIT_FCALL                                               'substr'
          9        SEND_VAR                                                 !2
         10        SEND_VAL                                                 0
         11        SEND_VAL                                                 -1
         12        DO_ICALL                                         $10     
         13        ASSIGN                                                   !3, $10
   53    14        INIT_FCALL                                               'strtoupper'
         15        INIT_FCALL                                               'substr'
         16        SEND_VAR                                                 !2
         17        SEND_VAL                                                 -1
         18        DO_ICALL                                         $12     
         19        SEND_VAR                                                 $12
         20        DO_ICALL                                         $13     
         21        ASSIGN                                                   !4, $13
   54    22        NEW                                              $17     'Card'
         23        SEND_VAR_EX                                              !3
         24        SEND_VAR_EX                                              !4
         25        DO_FCALL                                      0          
         26        FETCH_OBJ_W                                      $15     'cards'
         27        ASSIGN_DIM                                               $15
         28        OP_DATA                                                  $17
   51    29      > JMP                                                      ->7
         30    >   FE_FREE                                                  $9
   58    31        INIT_FCALL                                               'array_map'
         32        DECLARE_LAMBDA_FUNCTION                                  '%00%7Bclosure%7D%2Fin%2FI2K25%3A58%240'
   60    33        SEND_VAL                                                 ~20
         34        FETCH_OBJ_R                                      ~21     'cards'
         35        SEND_VAL                                                 ~21
         36        DO_ICALL                                         $22     
   58    37        ASSIGN_OBJ                                               'values'
   60    38        OP_DATA                                                  $22
   63    39        INIT_FCALL                                               'array_map'
         40        DECLARE_LAMBDA_FUNCTION                                  '%00%7Bclosure%7D%2Fin%2FI2K25%3A63%241'
   65    41        SEND_VAL                                                 ~24
         42        FETCH_OBJ_R                                      ~25     'cards'
         43        SEND_VAL                                                 ~25
         44        DO_ICALL                                         $26     
   63    45        ASSIGN_OBJ                                               'suits'
   65    46        OP_DATA                                                  $26
   68    47        ASSIGN_OBJ                                       ~29     'fours'
         48        OP_DATA                                                  <array>
         49        ASSIGN_OBJ                                       ~28     'threes'
         50        OP_DATA                                                  ~29
         51        ASSIGN_OBJ                                               'pairs'
         52        OP_DATA                                                  ~28
   71    53        ASSIGN_OBJ                                               'possibleStraight'
         54        OP_DATA                                                  <true>
   73    55        INIT_FCALL                                               'array_count_values'
         56        FETCH_OBJ_R                                      ~32     'values'
         57        SEND_VAL                                                 ~32
         58        DO_ICALL                                         $33     
         59        ASSIGN_OBJ                                               'hands'
         60        OP_DATA                                                  $33
   76    61        INIT_FCALL                                               'max'
         62        FETCH_OBJ_R                                      ~34     'hands'
         63        SEND_VAL                                                 ~34
         64        DO_ICALL                                         $35     
         65        IS_SMALLER                                               1, $35
         66      > JMPZ                                                     ~36, ->69
   77    67    >   ASSIGN_OBJ                                               'possibleStraight'
         68        OP_DATA                                                  <false>
   81    69    >   FETCH_OBJ_R                                      ~38     'hands'
         70      > FE_RESET_R                                       $39     ~38, ->89
         71    > > FE_FETCH_R                                       ~40     $39, !5, ->89
         72    >   ASSIGN                                                   !6, ~40
   83    73        IS_IDENTICAL                                             !5, 2
         74      > JMPZ                                                     ~42, ->78
   84    75    >   FETCH_OBJ_W                                      $43     'pairs'
         76        ASSIGN_DIM                                               $43
         77        OP_DATA                                                  !6
   88    78    >   IS_IDENTICAL                                             !5, 3
         79      > JMPZ                                                     ~45, ->83
   89    80    >   FETCH_OBJ_W                                      $46     'threes'
         81        ASSIGN_DIM                                               $46
         82        OP_DATA                                                  !6
   93    83    >   IS_IDENTICAL                                             !5, 4
         84      > JMPZ                                                     ~48, ->88
   94    85    >   FETCH_OBJ_W                                      $49     'fours'
         86        ASSIGN_DIM                                               $49
         87        OP_DATA                                                  !6
   81    88    > > JMP                                                      ->71
         89    >   FE_FREE                                                  $39
   97    90      > RETURN                                                   null

End of function __construct

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

End of function getcards

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

End of function getvalues

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

End of function getsuits

Function gethighcard:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/I2K25
function name:  getHighCard
number of ops:  7
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
  114     0  E >   INIT_FCALL                                               'max'
          1        INIT_METHOD_CALL                                         'getValues'
          2        DO_FCALL                                      0  $0      
          3        SEND_VAR                                                 $0
          4        DO_ICALL                                         $1      
          5      > RETURN                                                   $1
  115     6*     > RETURN                                                   null

End of function gethighcard

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

End of function getpairs

Function isonepair:
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 43) Position 1 = 4, Position 2 = 6
Branch analysis from position: 4
1 jumps found. (Code = 42) Position 1 = 7
Branch analysis from position: 7
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 6
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/I2K25
function name:  isOnePair
number of ops:  9
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
  122     0  E >   FETCH_OBJ_R                                      ~0      'pairs'
          1        COUNT                                            ~1      ~0
          2        IS_EQUAL                                                 ~1, 1
          3      > JMPZ                                                     ~2, ->6
          4    >   QM_ASSIGN                                        ~3      <true>
          5      > JMP                                                      ->7
          6    >   QM_ASSIGN                                        ~3      <false>
          7    > > RETURN                                                   ~3
  123     8*     > RETURN                                                   null

End of function isonepair

Function istwopair:
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 43) Position 1 = 4, Position 2 = 6
Branch analysis from position: 4
1 jumps found. (Code = 42) Position 1 = 7
Branch analysis from position: 7
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 6
1 jumps found. (Code = 62) Position 1 = -2
filename:       /i

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
182.85 ms | 1428 KiB | 27 Q