Re: Hiding warnings
- From: "Richard Levasseur" <richardlev@xxxxxxxxx>
- Date: 17 Jul 2006 08:52:39 -0700
deciacco wrote:
I'm using the DOMDocument::loadHTML() method and it throws some
warnings:
DOMDocument::loadHTML() [function.loadHTML]: htmlParseEntityRef:
expecting ';' in Entity, line: 579
DOMDocument::loadHTML() [function.loadHTML]: Unexpected end tag : b in
Entity, line: 24
I believe these warnings are due to the loose formating of HTML so at
this point I'm not worried about them. (should I be?) I can use an
.htaccess file or settings in php.ini to hide these warnings, but I was
wondering if there was a better way. I was thinking I could use
error_reporting() to change the level before the loadHTML function and
then set it back. Any thoughts or suggestions?
Thanks!!
Use the @ operator, it supresses all errors related from the statement.
@implode("foo", "bar"); won't give any warnings, errors, notices, etc.
It also affects subcalls (so a function within a function won't display
errors).
This also means that @include('file'); won't display parse errors,
it'll just die silently.
.
- References:
- Hiding warnings
- From: deciacco
- Hiding warnings
- Prev by Date: Re: textarea curiousity
- Next by Date: Re: textarea curiousity
- Previous by thread: Hiding warnings
- Index(es):
Relevant Pages
|