Re: [PHP] print_r output to a file

2002-11-07 Thread Kerry Kobashi
ahahahaha... i plead insanity "Ernest E Vogelsinger" <[EMAIL PROTECTED]> wrote in message news:5.1.1.6.2.20021107115742.02c2a228@;mail.vogelsinger.at... > At 11:12 07.11.2002, Kerry Kobashi said: > [snip] > >Is there a way to send print_r output to a file?

Re: [PHP] print_r output to a file

2002-11-07 Thread Jason Wong
On Thursday 07 November 2002 18:12, Kerry Kobashi wrote: > Is there a way to send print_r output to a file? Try something like this: ob_start(); if ($title) { $title = '[' . date('Y-m-d H:i:s') . "] {$_SERVER['HTTP_HOST']}{$_SERVER['PHP_SELF']}::$title"; echo "$title\n";

Re: [PHP] print_r output to a file

2002-11-07 Thread Ernest E Vogelsinger
At 11:12 07.11.2002, Kerry Kobashi said: [snip] >Is there a way to send print_r output to a file? [snip] rtfm :) pardon me, but I couldn't resist... ok, specifically: http://www.php.net/manual/en/function.print-r.php

[PHP] print_r output to a file

2002-11-07 Thread Kerry Kobashi
Is there a way to send print_r output to a file? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php