3v4l.org

run code in 300+ PHP versions simultaneously
<?php $health = array('healthy', 'fit', 'happy'); $wealth = array('Bank Account' => 15000000, 'House' => 'Mansion on the water','Net Worth' => '65000000 net worth'); $stuff = array('cars'=> array('Ferrari California','Lexus RC', 'Mercedes AMG', 'Range Rover'), 'toys'=> array('yacht', 'jet skis','private jet','pool house','man cave', 'vacation homes', 'spa', 'golf', 'bbqs', 'private dinners', 'f cups')); $relationships = array('danee', 'family', 'friends', 'universe', 'my creator'); $success = array('famous', 'billion dollar business', 'ceo', 'actor', 'opportunities', 'investments'); $myLife = array('health' => $health,'wealth' => $wealth, 'relationships' => $relationships, 'success' => $success, 'stuff' => $stuff); function element($array) { for ($i=0; $i < count($array); $i++) { echo $array[$i] . ', '; } } echo 'I have an amazing life.</br></br>'; echo 'In health, ' . 'I have ' ; for($i=0;$i<count($health); $i++) { echo $health[$i] . ', '; } echo '</br></br>'; echo 'In wealth, I have ' ; foreach($wealth as $element=>$what){ echo $what . ', '; } echo '</br></br>'; echo 'In relationships, I have '; for($i=0;$i<count($relationships); $i++) { echo $relationships[$i] . ', ';} echo '</br></br>'; echo 'In success, I have '; for($i=0;$i<count($success); $i++) { echo $success[$i] . ', ';} echo '</br></br>';
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.4, 8.3.6
I have an amazing life.</br></br>In health, I have healthy, fit, happy, </br></br>In wealth, I have 15000000, Mansion on the water, 65000000 net worth, </br></br>In relationships, I have danee, family, friends, universe, my creator, </br></br>In success, I have famous, billion dollar business, ceo, actor, opportunities, investments, </br></br>
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 I have an amazing life.</br></br>In health, I have healthy, fit, happy, </br></br>In wealth, I have 15000000, Mansion on the water, 65000000 net worth, </br></br>In relationships, I have danee, family, friends, universe, my creator, </br></br>In success, I have famous, billion dollar business, ceo, actor, opportunities, investments, </br></br>

preferences:
271.26 ms | 402 KiB | 376 Q