Posted by Michael Fesser on 08/28/07 23:55
..oO(Fabio)
>One question.
>
>I set to php.ini this
>
>error_reporting=E_ALL & ~E_NOTICE
Should be E_ALL.
>to be a list of error messages and some warnings/tips on the code written.
>
>All good, but if I have code like
>
>------------------------
>function foo(string $x)
>{
> echo($x);
>}
Should be
function foo($x) {
echo $x;
}
Micha
[Back to original message]
|