使用PHP将文本拆分为两列

前端之家收集整理的这篇文章主要介绍了使用PHP将文本拆分为两列前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道是否有可能将文本分成两部分.

在我的网站上我有一个产品描述(500-1000字),我想像这样显示

<div class="text-col">
    <?PHP echo nl2br($col1); ?>
</div>


<div class="text-col">
    <?PHP echo nl2br($col2); ?>
</div>
像这样的东西?
$len = strlen($input);
$space = strrpos($input," ",-$len/2);
$col1 = substr($input,$space);
$col2 = substr($input,$space);
// now output it
原文链接:https://www.f2er.com/php/133308.html

猜你在找的PHP相关文章