重複の可能性:
PHP クエリの結果を列に分割する
データベースから説明を取得する次のコード行があります。
私がやろうとしているのは<br/>
、説明に追加して、1 つの長いデータ列として表示されないようにすることです。
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'])
);