I have an error "A non well formed numeric value encountered" in this code on my localhost:
Yii::app()->cache->set($cache_key, $res, 60*60*24*3);
It obviously points to "60*60*24*3". I know I can typecast it to integer and problem is solved, but the same code works fine on server.
On my localhost I have php7.2 installed, and on server is old php5.3.
What could be the reason of problem?