mirror of
https://github.com/easy-wi/developer.git
synced 2025-02-20 11:23:28 +08:00
ini_get returns the value of the configuration option as a string on success, or an empty string for null values. Returns FALSE if the configuration option doesn't exist (http://php.net/manual/de/function.ini-get.php). Therefore isset($max) can never be false. We should use empty($max) to check for setups not using suhosin.