3v4l.org

run code in 300+ PHP versions simultaneously
<?php $checks = []; foreach($onboarding_data as $checked) { $id = $checked->getDocument_Id()->getId(); if ($checked->getStatus() == '1') { $checks[$id] = 'checked'; continue; } $checks[$id] = ''; } foreach($document_collection as $onboarding): ?> <tr> <td> <?= $onboarding->getDocument(); ?> </td> <td align="center"> <?= anchor($onboarding->getUrl(), "Download"); ?> </td> <td class=""> <label class="option block mn"> <input type="checkbox" name="status" value="1" <?= $checks[$onboarding->getId()] ?? '' ?>> <span class="checkbox mn"></span> </label> </td> </tr> </tbody> <?php endforeach;?>
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.19, 8.3.0 - 8.3.4, 8.3.6 - 8.3.7
Warning: Undefined variable $onboarding_data in /in/iLE4E on line 4 Warning: foreach() argument must be of type array|object, null given in /in/iLE4E on line 4 Warning: Undefined variable $document_collection in /in/iLE4E on line 14 Warning: foreach() argument must be of type array|object, null given in /in/iLE4E on line 14
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 Warning: Undefined variable $onboarding_data in /in/iLE4E on line 4 Warning: foreach() argument must be of type array|object, null given in /in/iLE4E on line 4 Warning: Undefined variable $document_collection in /in/iLE4E on line 14 Warning: foreach() argument must be of type array|object, null given in /in/iLE4E on line 14
Output for 7.1.26 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.3.33, 7.4.0 - 7.4.25, 7.4.27 - 7.4.33
Notice: Undefined variable: onboarding_data in /in/iLE4E on line 4 Warning: Invalid argument supplied for foreach() in /in/iLE4E on line 4 Notice: Undefined variable: document_collection in /in/iLE4E on line 14 Warning: Invalid argument supplied for foreach() in /in/iLE4E on line 14
Output for 7.3.32, 7.4.26
Warning: Invalid argument supplied for foreach() in /in/iLE4E on line 4 Warning: Invalid argument supplied for foreach() in /in/iLE4E on line 14

preferences:
136.63 ms | 401 KiB | 186 Q