Re: [PHP] baffled on error_reporting

2003-10-27 Thread Gerard Samuel
On Monday 27 October 2003 09:08 am, Curt Zirzow wrote: > * Thus wrote Marek Kilimajer ([EMAIL PROTECTED]): > > This should be reported at least as a documentation bug (if it's not > > already mentioned, I'm lazy to search :) > > I dunno, this seems like a php bug to me. The @ should only effect >

Re: [PHP] baffled on error_reporting

2003-10-27 Thread Curt Zirzow
* Thus wrote Marek Kilimajer ([EMAIL PROTECTED]): > This should be reported at least as a documentation bug (if it's not > already mentioned, I'm lazy to search :) I dunno, this seems like a php bug to me. The @ should only effect the reporting status of the current line, not disabling certain f

Re: [PHP] baffled on error_reporting

2003-10-27 Thread Marek Kilimajer
This should be reported at least as a documentation bug (if it's not already mentioned, I'm lazy to search :) Gerard Samuel wrote: Yes I know about turning off error reporting, but what happens after that point. An example. -- common.php -- // php.ini error reporting is set to E_ALL error_rep

Re: [PHP] baffled on error_reporting

2003-10-26 Thread Gerard Samuel
On Sunday 26 October 2003 07:12 pm, Dan McCullough wrote: > No I believe that is a feature the ability to turn off error reporting. > You can do the same with mysql functions. > > @mysql_ Yes I know about turning off error reporting, but what happens after that point. An example. -- common.php

RE: [PHP] baffled on error_reporting

2003-10-26 Thread Dan McCullough
No I believe that is a feature the ability to turn off error reporting. You can do the same with mysql functions. @mysql_ -Original Message- From: Gerard Samuel [mailto:[EMAIL PROTECTED] Sent: Sunday, October 26, 2003 7:04 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] baffled on

Re: [PHP] baffled on error_reporting

2003-10-26 Thread Gerard Samuel
On Sunday 26 October 2003 12:19 pm, Gerard Samuel wrote: > I have a common included file with error_reporting set to 0 > If I do a var_dump(error_reporting()) right after it it returns 0 > In a file that includes this common file, if I var_dump(error_reporting()) > there it return 2047, which I bel

Re: [PHP] baffled on error_reporting

2003-10-26 Thread Gerard Samuel
On Sunday 26 October 2003 06:45 pm, Gerard Samuel wrote: > On Sunday 26 October 2003 12:19 pm, Gerard Samuel wrote: > > I have a common included file with error_reporting set to 0 > > If I do a var_dump(error_reporting()) right after it it returns 0 > > In a file that includes this common file, if