Re: Problem z klienci -> wydruki
Krzysztof Szwaba wrote:
PHP Warning: date() expects parameter 2 to be long, string given in /usr/share/lms/modules/customerprint.php on line 156,
PHP Warning: date() expects parameter 2 to be long, string given in /usr/share/lms/modules/customerprint.php on line 157,
Czy problem może występować tutaj
$yearstart = date('Y',$DB->GetOne('SELECT MIN(dt) FROM stats')); $yearend = date('Y',$DB->GetOne('SELECT MAX(dt) FROM stats'));
i jest związany z wersją 5 PHP ?
tak, możesz zamienić na
$yearstart = date('Y', (int) $DB->GetOne('SELECT MIN(dt) FROM stats')); $yearend = date('Y', (int) $DB->GetOne('SELECT MAX(dt) FROM stats'));
ale raczej te warningi nie powinny powodować problemów z wyświetleniem strony. Ja mam PHP 5.1.6 i nie mam ani problemu z wyświetleniem strony, ani nawet tych warningów, więc nie wiem czy to bugi w php, czy kwestia jakiś ustawień.
uczestnicy (1)
-
A.L.E.C