PHP code example of praetoriantechnology / php-slugger
1. Go to this page and download the library: Download praetoriantechnology/php-slugger 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/ */
praetoriantechnology / php-slugger example snippets
\
use Praetorian\Slugger\Slugger;
$slugger = new Slugger();
echo $slugger->slugify('sample$$@#%$ test ąęćźż'); //sample-test-aeczz
echo PHP_EOL;
echo $slugger->slugify('sample$$@#%$ test ąęćźż', divider: '_'); //sample_test_aeczz