0

データベースを使用して、html 文字を含む記事を表示します。

$row->記事:

<div class="article">
As is usual also in Buenos Aires, is held in that city again the official Asterisk Advanced course with the new agenda <a href="http://www.google.com">google page</a>
</div>

使用: character_limiter ($row->article, 160) 短いテキストですが、たまたまハイパーリンクが切れてしまい、html コードでエラーが発生したため、以前は関数 strip_tags() を解決していましたが、次のようになります。

<div class="article">
    As is usual also in Buenos Aires, is held in that city again the official Asterisk Advanced course with the new agendagoogle page...
    </div>

ご覧のとおり、関数はハイパーリンク ラベルを削除しますが、周囲のスペースも削除します。

この記事を読みました: PHP で strip_tags を使用する際の問題

...しかし、2 つのテキスト要素に設定された正規表現を使用します。似たようなものを使用できますが、ラベルは未定義です。あなたの助けを願っています

4

1 に答える 1