PHP code example of yuloh / neko

1. Go to this page and download the library: Download yuloh/neko 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/ */

    

yuloh / neko example snippets


use function Yuloh\Neko\snake_case;

echo snake_case('Hello World'); // hello_world

use function Yuloh\Neko\kebab_case;

echo kebab_case('Hello World'); // hello-world

use function Yuloh\Neko\pascal_case;

echo pascal_case('Hello World'); // HelloWorld

use function Yuloh\Neko\camel_case;

echo camel_case('Hello World'); //helloWorld