ludovicm67 / strings
Some useful functions for working with strings
v2.0.0
2021-01-17 13:58 UTC
Requires
- php: ^7.3|^8.0
Requires (Dev)
This package is auto-updated.
Last update: 2024-12-12 14:08:46 UTC
README
Some useful functions for working with strings
Installation
Just run the following command: composer require ludovicm67/strings
to add it to your PHP project!
Getting started
If you installed using composer, you can now create a file with the following code:
<?php // import here the composer autoloader require('./vendor/autoload.php'); // use the namespace for this library use ludovicm67\Strings\Strings;
clean strings
You can clean strings using the static method: Strings::clean("My string")
.
Example:
echo Strings::clean("test& ""~ "@éa/-âå€ÊÂøʱæ€ûýþ<b>bold</b>"); // will display: test& ""~ "@éa/-âå€ÊÂøʱæ€ûýþ<b>bold</b>
get a string from camelCase
Using Strings::fromCamelCase("myString")
(will return: my-string
).
Example:
echo Strings::fromCamelCase('testFromCamelCase'); // will display: test-from-camel-case
transform a string to camelCase
Using Strings::toCamelCase("my-string")
(will return: myString
).
Example:
echo Strings::toCamelCase('test-to-camel-case'); // will display: testToCamelCase
Want to contribute?
Just fork, commit and open a pull-request. Or just open an issue here: https://github.com/ludovicm67/php-strings/issues .