PHP code example of phlak / twine
1. Go to this page and download the library: Download phlak/twine 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/ */
phlak / twine example snippets
use PHLAK\Twine;
$string = new Twine\Str('john pinkerton');
$string = Twine\Str::make('john pinkerton');
$string = str('john pinkerton');
echo $string; // Echos 'john pinkerton'
str_shuffle($string) // Returns something like 'enoipo ktnjhnr'
strlen($string); // Returns 14
$string->echo(); // Echos 'john pinkerton'
$string->shuffle(); // Returns something like 'enoipo ktnjhnr'
$string->length(); // Returns 14
// or some more interesting methods
$string->reverse(); // Returns 'notreknip nhoj'
$string->contains('pink'); // Returns true
$string->replace('pink', 'purple'); // Returns 'john purpleton'
$string->snakeCase(); // Returns 'john_pinkerton'
$string = new Twine\Str('john pinkerton');
$string->substring(5, 4)->equals('pink'); // Returns true
$string = new Twine\Str(file_get_contents('garbage.bin'));
$string->base64()->wrap(76, "\r\n", Twine\Config\Wrap::HARD);