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()); var_dump($this->suits); // match flush foreach ($this->suits as $face => $count) { ($count == 5 ? $this->flush = true : $this->flush = false); } echo '~~ is it a flush? '.$this->flush; 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; } echo "\n\nStraight??? ".$this->straight; return $this->straight; } public function isStraightFlush(){ return ($this->isFlush() && $this->isStraight()); } } echo "\n\nThird Hand: 2h 3h 4h 5h 6h\n\n"; $h = new Hand('2h 3h 4h 5h 6h'); var_dump($h->isFlush()); echo "\nIs straight?"; var_dump($h->isStraight()); echo "\nIs straight flush?"; var_dump($h->isStraightFlush());
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/h3OEf
function name:  (null)
number of ops:  23
compiled vars:  !0 = $h
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
  204     0  E >   ECHO                                                     '%0A%0AThird+Hand%3A+2h+3h+4h+5h+6h%0A%0A'
  205     1        NEW                                              $1      'Hand'
          2        SEND_VAL_EX                                              '2h+3h+4h+5h+6h'
          3        DO_FCALL                                      0          
          4        ASSIGN                                                   !0, $1
  208     5        INIT_FCALL                                               'var_dump'
          6        INIT_METHOD_CALL                                         !0, 'isFlush'
          7        DO_FCALL                                      0  $4      
          8        SEND_VAR                                                 $4
          9        DO_ICALL                                                 
  209    10        ECHO                                                     '%0AIs+straight%3F'
  210    11        INIT_FCALL                                               'var_dump'
         12        INIT_METHOD_CALL                                         !0, 'isStraight'
         13        DO_FCALL                                      0  $6      
         14        SEND_VAR                                                 $6
         15        DO_ICALL                                                 
  211    16        ECHO                                                     '%0AIs+straight+flush%3F'
  212    17        INIT_FCALL                                               'var_dump'
         18        INIT_METHOD_CALL                                         !0, 'isStraightFlush'
         19        DO_FCALL                                      0  $8      
         20        SEND_VAR                                                 $8
         21        DO_ICALL                                                 
         22      > RETURN                                                   1

Function %00%7Bclosure%7D%2Fin%2Fh3OEf%3A58%240:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/h3OEf
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%2Fh3OEf%3A58%240

Function %00%7Bclosure%7D%2Fin%2Fh3OEf%3A63%241:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/h3OEf
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%2Fh3OEf%3A63%241

Class Card:
Function __construct:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/h3OEf
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/h3OEf
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/h3OEf
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/h3OEf
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/h3OEf
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%2Fh3OEf%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%2Fh3OEf%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/h3OEf
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/h3OEf
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/h3OEf
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/h3OEf
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/h3OEf
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/h3OEf
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:       /in/h3OEf
function name:  isTwoPair
number of ops:  9
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
  126     0  E >   FETCH_OBJ_R                                      ~0      'pairs'
          1        COUNT                                            ~1      ~0
          2        IS_EQUAL                                                 ~1, 2
          3      > JMPZ                                                     ~2, ->6
          4    >   QM_ASSIGN                                        ~3      <true>
          5      > JMP                                                      ->7
          6    >   QM_ASSIGN                                        ~3      <false>
          7    > > RETURN                                                   ~3
  127     8*     > RETURN                                                   null

End of function istwopair

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

End of function getthrees

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

End of function getfours

Function hasace:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/h3OEf
function name:  hasAce
number of ops:  4
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
  138     0  E >   FETCH_OBJ_IS                                     ~0      'hands'
          1        ISSET_ISEMPTY_DIM_OBJ                         0  ~1      ~0, 14
          2      > RETURN                                                   ~1
  139     3*     > RETURN                                                   null

End of function hasace

Function isfullhouse:
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 46) Position 1 = 4, Position 2 = 8
Branch analysis from position: 4
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 8
filename:       /in/h3OEf
function name:  isFullHouse
number of ops:  10
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
  142     0  E >   FETCH_OBJ_R                                      ~0      'pairs'
          1        COUNT                                            ~1      ~0
          2        IS_EQUAL                                         ~2      ~1, 1
          3      > JMPZ_EX                                          ~2      ~2, ->8
          4    >   FETCH_OBJ_R                                      ~3      'threes'
          5        COUNT                                            ~4      ~3
          6        IS_EQUAL                                         ~5      ~4, 1
          7        BOOL                                             ~2      ~5
          8    > > RETURN                                                   ~2
  143     9*     > RETURN                                                   null

End of function isfullhouse

Function isflush:
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 77) Position 1 = 13, Position 2 = 26
Branch analysis from position: 13
2 jumps found. (Code = 78) Position 1 = 14, Position 2 = 26
Branch analysis from position: 14
2 jumps found. (Code = 43) Position 1 = 17, Position 2 = 21
Branch analysis from position: 17
1 jumps found. (Code = 42) Position 1 = 24
Branch analysis from position: 24
1 jumps found. (Code = 42) Position 1 = 13
Branch analysis from position: 13
Branch analysis from position: 21
1 jumps found. (Code = 42) Position 1 = 13
Branch analysis from position: 13
Branch analysis from position: 26
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 26
filename:       /in/h3OEf
function name:  isFlush
number of ops:  33
compiled vars:  !0 = $count, !1 = $face
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
  146     0  E >   INIT_FCALL                                               'array_count_values'
          1        INIT_METHOD_CALL                                         'getSuits'
          2        DO_FCALL                                      0  $3      
          3        SEND_VAR                                                 $3
          4        DO_ICALL                                         $4      
          5        ASSIGN_OBJ                                               'suits'
          6        OP_DATA                                                  $4
  147     7        INIT_FCALL                                               'var_dump'
          8        FETCH_OBJ_R                                      ~5      'suits'
          9        SEND_VAL                                                 ~5
         10        DO_ICALL                                                 
  150    11        FETCH_OBJ_R                                      ~7      'suits'
         12      > FE_RESET_R                                       $8      ~7, ->26
         13    > > FE_FETCH_R                                       ~9      $8, !0, ->26
         14    >   ASSIGN                                                   !1, ~9
  151    15        IS_EQUAL                                                 !0, 5
         16      > JMPZ                                                     ~11, ->21
         17    >   ASSIGN_OBJ                                       ~12     'flush'
         18        OP_DATA                                                  <true>
         19        QM_ASSIGN                                        ~13     ~12
         20      > JMP                                                      ->24
         21    >   ASSIGN_OBJ                                       ~14     'flush'
         22        OP_DATA                                                  <false>
         23        QM_ASSIGN                                        ~13     ~14
         24    >   FREE                                                     ~13
  150    25      > JMP                                                      ->13
         26    >   FE_FREE                                                  $8
  154    27        FETCH_OBJ_R                                      ~15     'flush'
         28        CONCAT                                           ~16     '%7E%7E+is+it+a+flush%3F+', ~15
         29        ECHO                                                     ~16
  156    30        FETCH_OBJ_R                                      ~17     'flush'
         31      > RETURN                                                   ~17
  157    32*     > RETURN                                                   null

End of function isflush

Function isstraightace:
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 46) Position 1 = 9, Position 2 = 15
Branch analysis from position: 9
2 jumps found. (Code = 46) Position 1 = 16, Position 2 = 22
Branch analysis from position: 16
2 jumps found. (Code = 46) Position 1 = 23, Position 2 = 29
Branch analysis from position: 23
2 jumps found. (Code = 46) Position 1 = 30, Position 2 = 36
Branch analysis from position: 30
2 jumps found. (Code = 43) Position 1 = 37, Position 2 = 40
Branch analysis from position: 37
1 jumps found. (Code = 42) Position 1 = 42
Branch analysis from position: 42
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 40
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 36
Branch analysis from position: 29
Branch analysis from position: 22
Branch analysis from position: 15
filename:       /in/h3OEf
function name:  isStraightAce
number of ops:  45
compiled vars:  !0 = $cards
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
  160     0  E >   INIT_METHOD_CALL                                         'getValues'
          1        DO_FCALL                                      0  $1      
          2        ASSIGN                                                   !0, $1
  162     3        INIT_FCALL                                               'array_search'
          4        SEND_VAL                                                 14
          5        SEND_VAR                                                 !0
          6        DO_ICALL                                         $3      
          7        TYPE_CHECK                                  1018  ~4      $3
          8      > JMPZ_EX                                          ~4      ~4, ->15
  163     9    >   INIT_FCALL                                               'array_search'
         10        SEND_VAL                                                 2
         11        SEND_VAR                                                 !0
         12        DO_ICALL                                         $5      
         13        TYPE_CHECK                                  1018  ~6      $5
         14        BOOL                                             ~4      ~6
         15    > > JMPZ_EX                                          ~4      ~4, ->22
  164    16    >   INIT_FCALL         

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
175.21 ms | 1433 KiB | 29 Q