You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PHP Deprecated: uasort(): Returning bool from comparison function is deprecated, return an integer less than, equal to, or greater than zero in /www/example.com/httpdocs/opcache.php
PHP Deprecated: uasort(): Returning bool from comparison function is deprecated, return an integer less than, equal to, or greater than zero in /www/example.com/httpdocs/opcache.php
To fix this :
Find :
uasort($status['scripts'], function ($a, $b) { return $a['hits'] < $b ['hits']; });
Replace :
uasort($status['scripts'], function ($a, $b) { return $b['hits'] <=> $a ['hits']; });
I hope this helps someone.
The text was updated successfully, but these errors were encountered: