divineomega/php-camel-caser

Lets you use built-in PHP functions in camel case

v2.0.0 2018-10-23 12:18 UTC

This package is auto-updated.

Last update: 2024-04-24 04:25:39 UTC


README

Build Status Coverage Status StyleCI Packagist

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...