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.

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.