PHP code example of fwrw / text-helper

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

    

fwrw / text-helper example snippets

bash
  TextHelper::normalizeSpaces($text);
bash
  TextHelper::cut($text, $limit);
bash
  TextHelper::cut($text, $limit, $end);
bash
input
  TextHelper::cut($text, 20, "...");
bash
input
  TextHelper::cut($text, 20, "...", true);
bash
  TextHelper::stripAccents($text);
bash
  TextHelper::clear($text);