Re: [PHP] Re: PHP-CLI Debugging Question

2005-03-15 Thread Jochem Maas
Jason Barnett wrote: Davy Durham wrote: No, I was looking for php to print each line of the code as it executes it. In that case, you want ob_implicit_flush() http://php.net/manual/en/function.ob-implicit-flush.php I think he is looking to print out the actual line of sourcecode that are being run

Re: [PHP] Re: PHP-CLI Debugging Question

2005-03-15 Thread Jason Barnett
Jochem Maas wrote: > Jason Barnett wrote: > >> Davy Durham wrote: >> >>> No, I was looking for php to print each line of the code as it >>> executes it. >>> >> >> >> In that case, you want ob_implicit_flush() >> >> http://php.net/manual/en/function.ob-implicit-flush.php > > > I think he is looking

Re: [PHP] Re: PHP-CLI Debugging Question

2005-03-15 Thread Jason Barnett
Davy Durham wrote: > No, I was looking for php to print each line of the code as it executes it. > In that case, you want ob_implicit_flush() http://php.net/manual/en/function.ob-implicit-flush.php signature.asc Description: OpenPGP digital signature

Re: [PHP] Re: PHP-CLI Debugging Question

2005-03-15 Thread Davy Durham
No, I was looking for php to print each line of the code as it executes it. Jason Barnett wrote: Davy Durham wrote: Hi.. I'm working on converting some CLI (not CGI) bash scripts to php and was wondering if there's an equivalent to 'set -x' from bash in php set -x in bash basically causes the st

[PHP] Re: PHP-CLI Debugging Question

2005-03-15 Thread Jason Barnett
Davy Durham wrote: > Hi.. I'm working on converting some CLI (not CGI) bash scripts to php > and was wondering if there's an equivalent to 'set -x' from bash in php > > set -x in bash basically causes the statements to be printed to stderr > as they are executed. Does php have something similar? >