PHP code example of rizaergun / text-helper

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

    

rizaergun / text-helper example snippets


use RizaErgun\TextHelper\TextHelper;

 consectetur adipisicing elit. Dolor, quasi.";
$limit = 5;

$character_shorter = TextHelper::character_shorter($text, $limit);
print_r($character_shorter);

$word_shorter = TextHelper::word_shorter($text, $limit);
print_r($word_shorter);

$censored_words = array('ipsum', 'sit');
$replacement = '***';
$word_censored = TextHelper::word_censored($text, $censored_words, $replacement);
print_r($word_censored);