vote up 0 vote down star

I'm doing a print_r on a array stored on a session variable and for some unknown reason it's adding a number after the array prints.

Example:

Array
(
    [0] => 868
    [userid] => 868
)
1

If I do a print_r directly in the function itself and before the variable gets stored on session variable, it doesn't add that number 1.

Solution:

Almost at the same time as Paolo answered my question correctly I found the causing code.

A simple echo on print_r

Well, there we go, sometimes I guess we blind for minutes and just don't see stuff. Oh we coders...daaa

flag

2 Answers

vote up 0 vote down check

Can you post the code you are using to do this around print_r? The most common reason for getting a 1 is when you try to print a boolean:

$my_bool = true;
print $my_bool; // will be printed as 1
print_r($my_bool); // will also be printed as 1
link|flag
vote up 1 vote down

I had the same issue. You're probably echoing out the return value of print_r() which is 'true'. You'll have to set print_r() to return the formatted text rather that its success or failure.

echo "Session: ".print_r($_SESSION,true)."<br />\n";
link|flag
Strange, I would have guessed this was the cause but the other answer (Paolo Bergantino) has been accepted. – Adam Backstrom Apr 6 at 15:55
Thank You for your comments – Codex73 Apr 6 at 19:36

Your Answer

Get an OpenID
or

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