Whilst developing a php class i have run into a rather interesting thing within php. If i was to create a array, some single keys and some with arrays within that key, it only echos numbers rather than the arrays key. Why is that and how do i fix it?

<?php

    $example = array('name' => array('required' => true), 'email');

    foreach($example as $field => $value) {
        echo $field;
    }

?>

This returns name0 rather than nameemail

link|improve this question

7  
That's because email is a value, not a key. Your array actually looks like Array('name' => Array, 0 => 'email'). – animuson Feb 24 at 23:45
use is_array to tell if you need to call recursively or simply print – hackartist Feb 24 at 23:45
feedback

closed as too localized by animuson, casperOne Feb 26 at 5:34

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

3 Answers

up vote 3 down vote accepted

you probably want this ::

<?php

    $example = array('name' => array('required' => true), 'email');

    foreach($example as $field => $value) {
        if(is_array($value)){
          echo $field;
        }else{
          echo $value;
        }
    }

?>
link|improve this answer
1  
Thanks, i cant belive how silly my mistakes are at times :) – nblackburn Feb 24 at 23:51
feedback

Because you didn't define a key for the element 'email'. If you would have done this:

$example = array('name' => array('required' => true), 'email' => 'something@isp.com');

You would have gotten:

name email

You could have also done this:

$example = array('name' => array('required' => true), 'email' => '');

And not have had to define a value for the 'email' element.

link|improve this answer
feedback

i guess that "email" is not a key but an element. So strictly the array keys are "name", 0.

If u want to display nameemail

<?php

    $example = array('name' => array('required' => true), 'email'=>array());

    foreach($example as $field => $value) {
        echo $field;
    }

?>
link|improve this answer
Checking if each value is an array like @Pheonix stated would be more beneifical whilst creating a class as it doesnt require the need to create empty arrays but thanks alot for the idea. – nblackburn Feb 24 at 23:55
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.