Re: [PHP] problem using error_reporting() PHP 5.0.2 (cli)

2004-10-24 Thread Yashesh Bhatia
thanks. anyplace i can find which errors are reported by E_STRICT at runtime and which ones at compile time ? thx. yashesh bhatia. On Sun, 24 Oct 2004 15:24:34 +, Curt Zirzow <[EMAIL PROTECTED]> wrote: > * Thus wrote Yashesh Bhatia: > > > > My question is why is the funtion call > > > > err

Re: [PHP] problem using error_reporting() PHP 5.0.2 (cli)

2004-10-24 Thread Curt Zirzow
* Thus wrote Yashesh Bhatia: > > My question is why is the funtion call > > error_reporting(E_ALL|E_STRICT); > > not enabling E_STRICT at runtime ? Note: The following error types cannot be handled with a user defined function: E_ERROR, E_PARSE, E_CORE_ERROR, E_CORE_WARNING, E_COMPILE_ERROR,

Re: [PHP] problem using error_reporting() PHP 5.0.2 (cli)

2004-10-24 Thread Greg Donald
On Sun, 24 Oct 2004 16:41:16 +0530, Yashesh Bhatia <[EMAIL PROTECTED]> wrote: > error_reporting(E_STRICT|E_ALL); This does appear broken. I was unable to get E_STRICT to work at all on my setup. PHP 5.02, and Apache 2.0.51. -- Greg Donald Zend Certified Engineer http://gdconsultants.com/ http

[PHP] problem using error_reporting() PHP 5.0.2 (cli)

2004-10-24 Thread Yashesh Bhatia
Hi: I'm using [EMAIL PROTECTED] etc]# php -version PHP 5.0.2 (cli) (built: Oct 9 2004 01:47:08) Copyright (c) 1997-2004 The PHP Group Zend Engine v2.0.2, Copyright (c) 1998-2004 Zend Technologies and have the following entry in the php.ini file error_reporting = E_ALL i then invoke the sc