Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to return an array of strings. I do this:

$errors[] = toolbarCheckCreds($_COOKIE['uname'], $_COOKIE['pword'], $_COOKIE['rememberMe']);
    echo $errors[0];

and this in the function at the end:

return $errors;

and I set an error like this:

$errors[] = "error goes here!";

Basically, when I return my array, and echo it, it gives me the following output:

Array
share|improve this question

3 Answers

You need to loop through your array. There are multiple ways of doing this, with my personal preference being using a foreach loop.

For example, this will echo each error message in the array on a new line:

foreach ($errors as $error)
{
    echo "<br />Error: " . $error;
}
share|improve this answer
1  
The advantage here is that your errors object is still an array. +1 – jmort253 Apr 7 '12 at 3:31

Use PHP implode to convert your Array to a string that you can echo. Using echo on an array will just display the data type.

return implode(' ', $errors);

If you want to separate the errors with a delimiter other than a space, just replace the space in the first parameter:

return implode(' :: ', $errors);

For example, if your errors array contained three values:

[ "Invalid data" , "404" , "Syntax error" ]

then your string, if you used the ::, would look like this when you run echo on the result:

Invalid data :: 404 :: Syntax error

See the reference link I included for another example.

share|improve this answer
how would I modify my current code to add something like you provided in the second example, with the "::"? – droidus Apr 7 '12 at 3:35
@droidus - I updated my answer. – jmort253 Apr 7 '12 at 3:41

You can't echo out an array's content as-is.

If you want to check the array's contents, you can use print_r() or var_export() with the return parameter set to True.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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