1

可能重复:
将 PHP 查询的结果拆分为列

我有以下代码行从数据库中提取描述,

我想要做的是添加<br/>到描述中,这样它就不会显示为一长串数据。

mb_substr(strip_tags(html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8')), 0, 100) . '..'

当前的:

数据 数据 数据 数据 数据 数据 数据 数据 数据 数据 数据 数据

必需的:

数据数据

数据数据

数据数据

完整代码:

            $this->data['products'][] = array(
                'product_id'  => $result['product_id'],
                'thumb'       => $image,
                'name'        => $result['name'],
                'description' => mb_substr(strip_tags(html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8')), 0, 100) . '..',
                'price'       => $price,
                'special'     => $special,
                'tax'         => $tax,
                'rating'      => $result['rating'],
                'reviews'     => sprintf($this->language->get('text_reviews'), (int)$result['reviews']),
                'href'        => $this->url->link('product/product', 'path=' . $this->request->get['path'] . '&product_id=' . $result['product_id'])
            );
4

3 回答 3

2
<?php

$text = 'Data Data Data Data Data';

$data = explode(' ', $text);

foreach($data as $key => $value) {
    if ($key % 2 == 0) {
        echo '<br />';
    }
    echo $value . ' ';
}
于 2012-07-11T04:49:49.833 回答
2

wordwrap()使用例如可能更合适

$text = 'Data Data Data Data Data';
echo wordwrap($text, 10, '<br />', true);

结果:

Data Data
Data Data
Data Data
于 2012-07-11T05:09:05.093 回答
1

我通过执行以下操作解决了这个问题:

编辑 -> catelog/view/theme/default/template/product/product.tpl

在上面的 .tpl 文档中,我调整了数组中的第 196 行:

从:

'description' => mb_substr(strip_tags(html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8')), 0, 100) . '..'

到:

'description' => strip_tags(html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8'),'<p>'),
于 2012-07-11T08:18:28.303 回答