PHP Classes

File: libraries/vendor/phpseclib/phpseclib/phpseclib/bootstrap.php

Recommend this page to a friend!
  Classes of Duong Huynh Nghia   PHP Slim Framework 3 Modular Application   libraries/vendor/phpseclib/phpseclib/phpseclib/bootstrap.php   Download  
File: libraries/vendor/phpseclib/phpseclib/phpseclib/bootstrap.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Slim Framework 3 Modular Application
Create modular applications using Slim Framework
Author: By
Last change:
Date: 6 years ago
Size: 432 bytes
 

Contents

Class file image Download
<?php
/**
 * Bootstrapping File for phpseclib
 *
 * @license http://www.opensource.org/licenses/mit-license.html MIT License
 */

if (extension_loaded('mbstring')) {
   
// 2 - MB_OVERLOAD_STRING
   
if (ini_get('mbstring.func_overload') & 2) {
        throw new \
UnexpectedValueException(
           
'Overloading of string functions using mbstring.func_overload ' .
           
'is not supported by phpseclib.'
       
);
    }
}