divineomega / php-camel-caser
Lets you use built-in PHP functions in camel case
Fund package maintenance!
DivineOmega
Requires
- php: ^7.1
- ext-json: >=1.5
Requires (Dev)
- kint-php/kint: ^2.2
- mediact/testing-suite: @stable
- php-coveralls/php-coveralls: ^2.0
This package is auto-updated.
Last update: 2024-10-24 05:34:54 UTC
README
This package lets you use built-in PHP functions in camel case.
Installation
PHP Camel Caser can be easily installed using Composer. Just run the following command from the root of your project.
composer require divineomega/php-camel-caser
If you have never used the Composer dependency manager before, head to the Composer website for more information on how to get started.
Usage
After installing PHP Camel Caser, the new functions are available straight away.
Some example usage is shown below.
require_once __DIR__.'/vendor/autoload.php'; strReplace('c', 'b', 'cat'); // bat strWordCount("Hello world!"); // 2 inArray('Picard', ['Picard', 'Janeway']); // true // and so on...