05-18-2009, 02:38 PM
|
#8 (permalink)
|
|
The Prestige
Join Date: Oct 2007
Location: Manchester, UK
Posts: 854
Thanks: 32
|
Yes, i believe its because internally it converts this:
e.g.
PHP Code:
@someFunction();
to this:
PHP Code:
error_reporting(0); someFunction(); error_reporting(WHATEVER IT WAS SET TO BEFORE);
__________________
mysql> SELECT * FROM `users` WHERE `users`.`clue` > 0;
Empty set (0.00 sec)
|
|
|
|