123456789101112131415161718192021 |
- <?php
- if (extension_loaded('mbstring')) {
-
- if (ini_get('mbstring.func_overload') & 2) {
- throw new UnexpectedValueException(
- 'Overloading of string functions using mbstring.func_overload ' .
- 'is not supported by phpseclib.'
- );
- }
- }
|