Connecting Tech Pros Worldwide Help | Site Map

print_r and large arrays

  #1  
Old March 6th, 2006, 03:55 PM
meltedown
Guest
 
Posts: n/a
Normally, if I use
$result=print_r($array,TRUE);
print_r prints nothing and $result is equal to the readable array.

However, if $array is very large, print_r prints the array and returns
nothing.

Is this correct ? I don't see anything about this in the the manual.

I have tried limiting the size to array to see exactly how large the
array has to be to trigger this behavior, but the exact size seems to be
variable or it depends on some other factor. Can anyone explain what is
the deciding factor ?
  #2  
Old March 8th, 2006, 05:15 AM
Carl Vondrick
Guest
 
Posts: n/a

re: print_r and large arrays


meltdown wrote:[color=blue]
> Normally, if I use
> $result=print_r($array,TRUE);
> print_r prints nothing and $result is equal to the readable array.
>
> However, if $array is very large, print_r prints the array and returns
> nothing.
>
> Is this correct ? I don't see anything about this in the the manual.
>
> I have tried limiting the size to array to see exactly how large the
> array has to be to trigger this behavior, but the exact size seems to be
> variable or it depends on some other factor. Can anyone explain what is
> the deciding factor ?[/color]
You can use output buffering to get around this.

Just do:

ob_start();
print_r($array);
$value = ob_get_flush(); // or something like that!

I'm not sure why your problem is happening, but have you checked memory?
I bet it is a memory issue.

--
Carl Vondrick
www.carlsoft.net
usenet [at] carlsoft [dot] net
  #3  
Old March 9th, 2006, 04:55 PM
meltedown
Guest
 
Posts: n/a

re: print_r and large arrays


Carl Vondrick wrote:[color=blue]
> meltdown wrote:[color=green]
>> Normally, if I use
>> $result=print_r($array,TRUE);
>> print_r prints nothing and $result is equal to the readable array.
>>
>> However, if $array is very large, print_r prints the array and returns
>> nothing.
>>
>> Is this correct ? I don't see anything about this in the the manual.
>>
>> I have tried limiting the size to array to see exactly how large the
>> array has to be to trigger this behavior, but the exact size seems to
>> be variable or it depends on some other factor. Can anyone explain
>> what is the deciding factor ?[/color]
> You can use output buffering to get around this.
>
> Just do:
>
> ob_start();
> print_r($array);
> $value = ob_get_flush(); // or something like that![/color]

OK thanks.[color=blue]
>
> I'm not sure why your problem is happening, but have you checked memory?
> I bet it is a memory issue.
>[/color]

I assum you mean memory on the server. How do I check that ?
  #4  
Old March 10th, 2006, 07:25 AM
Carl Vondrick
Guest
 
Posts: n/a

re: print_r and large arrays


meltedown wrote:[color=blue]
> I assum you mean memory on the server. How do I check that ?[/color]

The best way is to use SSH and run the top command. This will display
the process information.

If you do not have SSH access, then try this:
http://www.php.net/manual/en/functio...-get-usage.php

--
Carl Vondrick
www.carlsoft.net
usenet [at] carlsoft [dot] net
Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
combining arrays into common subarrays rodeored answers 8 October 20th, 2008 12:35 PM
creating a 'print_r'-like function lawpoop@gmail.com answers 6 March 24th, 2007 04:25 PM
how to suggest a new function? Adam Scheinberg answers 8 December 5th, 2006 10:35 PM
in_array() to find an object inside an array Phil Powell answers 3 July 17th, 2005 10:54 AM