Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on Apr 29, 2024 via composer

symfony/polyfill-mbstring v1.28.0

Symfony polyfill for the Mbstring extension
Package summary
Share
0
issues
1
license
1
MIT
Package created
25 Oct 2015
Version published
28 Jul 2023
Maintainers
1
Total deps
1
Direct deps
0
License
MIT

Issues

0
This package has no issues

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
1 Packages, Including:
symfony/polyfill-mbstring@v1.28.0
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

0
All Dependencies CSV
β“˜ This is a list of symfony/polyfill-mbstring 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities

Visualizations

Frequently Asked Questions

What does symfony/polyfill-mbstring do?

The Symfony Polyfill Mbstring is a component that offers a partial, native PHP implementation for the Mbstring extension. This powerful tool allows PHP developers to write code that involves multibyte string handling even when this PHP extension is not installed on their servers.

How do you use symfony/polyfill-mbstring?

To use the Symfony Polyfill Mbstring, simply require the package in your project using Composer by running the command composer require symfony/polyfill-mbstring. After it is installed, you can use any Mbstring function as if the extension was enabled on your server. For example:

$text = "Hello, world!";
$length = mb_strlen($text);

In this example, mb_strlen() is a function provided by the Mbstring extension, but can be used without having the actual extension installed, thanks to the Symfony Polyfill Mbstring.

Where are the symfony/polyfill-mbstring docs?

The primary documentation for Symfony Polyfill Mbstring can be found on its GitHub page. Additional relevant information may also be found in the main Polyfill README offered by Symfony.