3v4l.org

run code in 300+ PHP versions simultaneously
<?php function totaal($bedragen, $btw = false) { $ftotaal = array_sum($bedragen); if($btw) { $ftotaal *= 1.19; } return number_format($ftotaal, 2); } $bedragen = array(5.45, 9.95, 34.95); echo 'totaal excl. btw: '.totaal($bedragen).'<br>'; echo 'totaal excl. btw: '.totaal($bedragen), true.'<br>'; // 15-16 kunnen we ook zo schrijven: echo 'totaal excl. btw: '; echo totaal($bedragen); echo '<br>'; echo 'totaal excl. btw: '; echo totaal($bedragen); echo true; // het zelfde als echo '1'; echo '<br>'; ?> <?php // Functie definiƫren function calcTotaal($aBedragen, $bBtw = false) { // Totaal van prijzen berekenen $fTotaal = array_sum($aBedragen); // Controleren of BTW berekend moet worden if($bBtw) { // Het totaal * 1.19 (19% BTW) $fTotaal *= 1.19; } // Geef het berekende totaal terug return number_format($fTotaal, 2); } // Functie aanroepen $aBedragen = array(5.45, 9.95, 34.95); echo 'Totaal excl. BTW: '.calcTotaal($aBedragen).'<br />'; echo 'Totaal incl. BTW: '.calcTotaal($aBedragen, true).'<br />'; // 48-49 kunnen we ook zo schrijven: echo 'Totaal excl. BTW: '; echo calcTotaal($aBedragen); echo '<br />'; echo 'Totaal incl. BTW: '; echo calcTotaal($aBedragen, true); echo '<br />'; ?>
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/KYWtn
function name:  (null)
number of ops:  55
compiled vars:  !0 = $bedragen, !1 = $aBedragen
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   14     0  E >   ASSIGN                                                   !0, <array>
   15     1        INIT_FCALL                                               'totaal'
          2        SEND_VAR                                                 !0
          3        DO_FCALL                                      0  $3      
          4        CONCAT                                           ~4      'totaal+excl.+btw%3A+', $3
          5        CONCAT                                           ~5      ~4, '%3Cbr%3E'
          6        ECHO                                                     ~5
   16     7        INIT_FCALL                                               'totaal'
          8        SEND_VAR                                                 !0
          9        DO_FCALL                                      0  $6      
         10        CONCAT                                           ~7      'totaal+excl.+btw%3A+', $6
         11        ECHO                                                     ~7
         12        ECHO                                                     '1%3Cbr%3E'
   19    13        ECHO                                                     'totaal+excl.+btw%3A+'
   20    14        INIT_FCALL                                               'totaal'
         15        SEND_VAR                                                 !0
         16        DO_FCALL                                      0  $8      
         17        ECHO                                                     $8
   21    18        ECHO                                                     '%3Cbr%3E'
   22    19        ECHO                                                     'totaal+excl.+btw%3A+'
   23    20        INIT_FCALL                                               'totaal'
         21        SEND_VAR                                                 !0
         22        DO_FCALL                                      0  $9      
         23        ECHO                                                     $9
   24    24        ECHO                                                     <true>
   25    25        ECHO                                                     '%3Cbr%3E'
   28    26        ECHO                                                     '%0A'
   48    27        ASSIGN                                                   !1, <array>
   49    28        INIT_FCALL                                               'calctotaal'
         29        SEND_VAR                                                 !1
         30        DO_FCALL                                      0  $11     
         31        CONCAT                                           ~12     'Totaal+excl.+BTW%3A+', $11
         32        CONCAT                                           ~13     ~12, '%3Cbr+%2F%3E'
         33        ECHO                                                     ~13
   50    34        INIT_FCALL                                               'calctotaal'
         35        SEND_VAR                                                 !1
         36        SEND_VAL                                                 <true>
         37        DO_FCALL                                      0  $14     
         38        CONCAT                                           ~15     'Totaal+incl.+BTW%3A+', $14
         39        CONCAT                                           ~16     ~15, '%3Cbr+%2F%3E'
         40        ECHO                                                     ~16
   53    41        ECHO                                                     'Totaal+excl.+BTW%3A+'
   54    42        INIT_FCALL                                               'calctotaal'
         43        SEND_VAR                                                 !1
         44        DO_FCALL                                      0  $17     
         45        ECHO                                                     $17
   55    46        ECHO                                                     '%3Cbr+%2F%3E'
   56    47        ECHO                                                     'Totaal+incl.+BTW%3A+'
   57    48        INIT_FCALL                                               'calctotaal'
         49        SEND_VAR                                                 !1
         50        SEND_VAL                                                 <true>
         51        DO_FCALL                                      0  $18     
         52        ECHO                                                     $18
   58    53        ECHO                                                     '%3Cbr+%2F%3E'
   59    54      > RETURN                                                   1

Function totaal:
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 43) Position 1 = 7, Position 2 = 8
Branch analysis from position: 7
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 8
filename:       /in/KYWtn
function name:  totaal
number of ops:  14
compiled vars:  !0 = $bedragen, !1 = $btw, !2 = $ftotaal
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    2     0  E >   RECV                                             !0      
          1        RECV_INIT                                        !1      <false>
    4     2        INIT_FCALL                                               'array_sum'
          3        SEND_VAR                                                 !0
          4        DO_ICALL                                         $3      
          5        ASSIGN                                                   !2, $3
    6     6      > JMPZ                                                     !1, ->8
    8     7    >   ASSIGN_OP                                     3          !2, 1.19
   11     8    >   INIT_FCALL                                               'number_format'
          9        SEND_VAR                                                 !2
         10        SEND_VAL                                                 2
         11        DO_ICALL                                         $6      
         12      > RETURN                                                   $6
   12    13*     > RETURN                                                   null

End of function totaal

Function calctotaal:
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 43) Position 1 = 7, Position 2 = 8
Branch analysis from position: 7
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 8
filename:       /in/KYWtn
function name:  calcTotaal
number of ops:  14
compiled vars:  !0 = $aBedragen, !1 = $bBtw, !2 = $fTotaal
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   31     0  E >   RECV                                             !0      
          1        RECV_INIT                                        !1      <false>
   34     2        INIT_FCALL                                               'array_sum'
          3        SEND_VAR                                                 !0
          4        DO_ICALL                                         $3      
          5        ASSIGN                                                   !2, $3
   37     6      > JMPZ                                                     !1, ->8
   40     7    >   ASSIGN_OP                                     3          !2, 1.19
   44     8    >   INIT_FCALL                                               'number_format'
          9        SEND_VAR                                                 !2
         10        SEND_VAL                                                 2
         11        DO_ICALL                                         $6      
         12      > RETURN                                                   $6
   45    13*     > RETURN                                                   null

End of function calctotaal

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
181.33 ms | 1461 KiB | 24 Q