Jump to content

[SOLVED] Sorting through multidimensional array


hostfreak

Recommended Posts

I've got an array that produces the following:

Array
(
    [username] => Array
        (
            [0] => Username must be entered
            [1] => Username must be at least 6 characters
        )

    [Password] => Array
        (
            [0] => Password must be entered
        )

)

 

What would be the best way to sort through it. I know a method (see below), but would like opinions on what people think is the way to go.

 

Method I am currently using:

foreach ($this->errors as $errors) //$this->errors is the array
{
    while (list($k, $v) = each ($errors))
    {
        echo $v . '<br />';
    }
}

 

To me it seems a little makeshift seeing as I don't actually need to list the key.

Sorry to bring this topic back up, however there is another question I would like to ask. I want to be able to group the errors under what multidimensional array they fall under. So I would need to extract the name of the array, for example:

[username] => Array //Only want to e

 

I would need to extract "Username". All suggestions are appreciated, thanks.

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.