PHP code example of iampersistent / get-off-my-case

1. Go to this page and download the library: Download iampersistent/get-off-my-case library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

iampersistent / get-off-my-case example snippets


// multipleWords
$converted = (new CamelCase)('Multiple_words');
// multiple-words
$converted = (new KebabCase)('Multiple_words');
// MultipleWords
$converted = (new PascalCase)('Multiple_words');
// multiple_words
$converted = (new SnakeCase)('multipleWords');