public function MbString::__construct in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/zendframework/zend-stdlib/src/StringWrapper/MbString.php \Zend\Stdlib\StringWrapper\MbString::__construct()
Constructor
Throws
Exception\ExtensionNotLoadedException
File
- vendor/
zendframework/ zend-stdlib/ src/ StringWrapper/ MbString.php, line 49
Class
Namespace
Zend\Stdlib\StringWrapperCode
public function __construct() {
if (!extension_loaded('mbstring')) {
throw new Exception\ExtensionNotLoadedException('PHP extension "mbstring" is required for this wrapper');
}
}