|
Posted by Oli Filth on 04/10/06 19:04
comp.lang.php said the following on 10/04/2006 16:51:
> Erwin Moller wrote:
>> In both cases, make sure you have errorreporting on, to E_ALL & E_STRICT
>>
>
> Sorry I did all of that, including putting the line
> error_reporting(E_ALL & E_STRICT) right before the
> imagecreatefromjpeg() functional command, to no avail.
Ah well you don't want to do that. (E_ALL & E_STRICT) == 0, which
results in no errors reported at all.
You want (E_ALL | E_STRICT).
--
Oli
Navigation:
[Reply to this message]
|