PHP code example of zacksleo / wordwrap

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

    

zacksleo / wordwrap example snippets


$wordwrap = new Wordwrap();
$res = $wordwrap->str2arr('特价 澳洲进口Aptamil pro爱他美白金版牛奶4段900g/罐【包邮】【税费补贴】', 18);
print_r($res);

$res2 = $wordwrap->str2arr('日本Shiseido资生堂悦薇珀翡塑颜亮肤霜 50ml国际版【香港直邮】', 11);
print_r($res2);

$res3 = $wordwrap->str2arr("美国KIEHL'S科颜氏3件套套装高保湿面霜125ml+金盏花水500ml+牛油果眼霜28g【香港直邮】", 11);
print_r($res3);

$res4 = $wordwrap->str2arr("ALBION/奥尔滨 爽肤精萃液 330ML + 清新莹白渗透乳 保湿型 200G 组合装", 11);
print_r($res4);

$res5 = $wordwrap->str2arr("【3盒】韩国MEDIHEAL美迪惠尔/可莱丝NMF补水保湿针剂面膜 10片", 11);
print_r($res5);

$res6 = $wordwrap->str2arr("【韩国直邮】Sulwhasoo雪花秀 雪花秀 宫中蜜皂礼盒套装 100g", 11);
print_r($res6);