Skip to content

Instantly share code, notes, and snippets.

@rockoo
Created March 25, 2020 16:36
Show Gist options
  • Save rockoo/1454d0fce2fa6b9c0980333a85e215ca to your computer and use it in GitHub Desktop.
Save rockoo/1454d0fce2fa6b9c0980333a85e215ca to your computer and use it in GitHub Desktop.
Example script to test debugger
<?php
$countries = ['Slovenia', 'Austria', 'Germany', 'Italy', 'France', 'Spain'];
foreach ($countries as $country) {
echo $country . ' ';
}
var_dump($countries);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment