PHP code example of chris1109873 / case-converter
1. Go to this page and download the library: Download chris1109873/case-converter 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/ */
chris1109873 / case-converter example snippets
use Chris\CaseConverter;
$converter = new CaseConverter('snake_to_camel');
echo $converter->snakeToCamel(); // 'snakeToCamel'
$converter = new CaseConverter('camelToSnake');
echo $converter->camelToSnake(); // 'camel_to_snake'