PHP字符串

时间:2016-09-26 15:35:47

标签: php string word-break

我想把一个字符串分成max 35 character,但是有智能休息。假设我有以下字符串:

street name, sector name, city, state, pincode

ABC Heights, Golf Road, City Test, City Sector

现在,我希望这些字符串无论如何都要打破,但是如果不打破任何错误的行,它应该是明智的。

EG。休息可以

ABC Heights, Golf Road,<br/> 
City Test, City Sector

不是

ABC Heights, Golf Road,City Te<br/>
st, City Sector

我在这里尝试了答案

SMart Wrap

但没有运气。

1 个答案:

答案 0 :(得分:1)

喜欢什么?

<?php
    $string = "ABC Heights, Golf Road, City Test, City Sector";
    echo wordwrap($string, 35, "<br />\n");
?>

哪会导致

ABC Heights, Golf Road, City Test,
City Sector

有关详细信息,请参阅http://php.net/manual/en/function.wordwrap.php