PHP code example of gugglegum / mb-str-pad
1. Go to this page and download the library: Download gugglegum/mb-str-pad 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/ */
gugglegum / mb-str-pad example snippets
ugglegum\mb_str_pad\MbString;
$input = 'Привет';
$pad_length = 20;
$pad_string = '÷˟‾҈';
$pad_type = STR_PAD_BOTH;
$encoding = 'UTF-8';
echo MbString::mb_str_pad($input, $pad_length, $pad_string, $pad_type, $encoding);