Jump to content

Help exploring an "unknown" array *solved*


alhefner

Recommended Posts

I am really new to php and need a little help exploring an array.

I am running a script that uses the $_SESSION global as a multi-dimensional array. I don't know how many dimensions the array has.

What I would like to do is loop through all of the array and echo the variable name, key names, and values.

This will help me in my efforts to develope simple mods to my site without duplicating information or stepping on information already stored in the $_SESSION global.

Thanks in advance!
Al
Link to comment
https://forums.phpfreaks.com/topic/24484-help-exploring-an-unknown-array-solved/
Share on other sites

well to loop thru the array you can use a foreach statement.

[code]<?php
foreach($_SESSION as $key => $val){
  if(is_array($val)){
    foreach($val as $key2 => $val2){
      echo "$key: $key2 -- $val2<br>";
    }
  } else {
    echo "$key: $val<br>";
  }
}
?>[/code]

Ray

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.