Skip to content

Instantly share code, notes, and snippets.

@TomislavBombas
Created February 26, 2022 12:40
Show Gist options
  • Save TomislavBombas/8acd5aad58384fcdc5cf07c7c73408d6 to your computer and use it in GitHub Desktop.
Save TomislavBombas/8acd5aad58384fcdc5cf07c7c73408d6 to your computer and use it in GitHub Desktop.
Various PHP snippets #php #arrays
<?php
// parse multidimensional arrays
function parseArray($arr, $ind = "") {
$indent = "&nbsp;&nbsp;&nbsp;&nbsp;";
foreach($arr as $key => $value)
{
if (!is_array($value)) {
print_r($ind . $key . ": " . $value . '<br/> ');
} else {
print_r($ind . $key . ": <br/>");
parseArray($value, $ind . $indent);
}
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment