emanuelecoppola / smartwrap
Smarter wordwrap for PHP
Fund package maintenance!
EmanueleCoppola
Buy Me A Coffee
Requires
- php: >=7.2
- ext-mbstring: *
Requires (Dev)
- phpunit/phpunit: ^8.5
README
I wrote this package because I faced the same problem as in this StackOverflow question.
Installation
composer require emanuelecoppola/smartwrap
Usage
use EmanueleCoppola\SmartWrap\SmartWrap; $sw = new SmartWrap(); $wrapped = $sw->smartwrap('hello! heeeeeeeeeeeeeeereisaverylongword', 20, "\n", true); print($wrapped); // Or by using the global function $wrapped = smartwrap('hello! heeeeeeeeeeeeeeereisaverylongword', 20, "\n", true); print($wrapped);
Sample input/output
$output = wordwrap('hello! heeeeeeeeeeeeeeereisaverylongword', 20, "\n", true); // The output will be ↓ $output == "hello!\nheeeeeeeeeeeeeeereis\naverylongword"; $output = smartwrap('hello! heeeeeeeeeeeeeeereisaverylongword', 20, "\n", true); // The output will be ↓ $output == "hello! heeeeeeeeeeee\neeereisaverylongword";