PHP code example of oukhennicheabdelkrim / slug
1. Go to this page and download the library: Download oukhennicheabdelkrim/slug 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/ */
oukhennicheabdelkrim / slug example snippets
khennicheabdelkrim\slug\Slug;
$title = 'my title';
$titleId = 3;
$mySlug = Slug::getSlug($title); // my-title
$mySlug = Slug::getSlug($title,$titleId); // my-title-3
class Conf
{
/**
* string Delimiter
*/
const DELIMITER = '.';
/**
* string position of id (right or left)
*/
const ID_POSITION = 'left';
}
khennicheabdelkrim\slug\Slug;
$title = 'my title';
$titleId = 3;
$mySlug = Slug::getSlug($title); // my.title
$mySlug = Slug::getSlug($title,$titleId); // 3.my.title