ludovicm67/strings

Some useful functions for working with strings

v2.0.0 2021-01-17 13:58 UTC

This package is auto-updated.

Last update: 2024-06-12 13:07:23 UTC


README

Some useful functions for working with strings

Latest Stable Version Total Downloads Coverage Status

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&amp; &quot;&quot;~ &quot;@éa/-âå€ÊÂøʱæ€ûýþ&lt;b&gt;bold&lt;/b&gt;

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 .