0

HTMLタグを実際に画面に印刷したい。HTML タグをエスケープする方法がわかりません。

期待される出力

<div>Hey, you can see the div tag on the screen.</div>

タグはdivHTML タグとして取り込まれるべきではなく、画面に出力したいのです。どうやってやるの?

4

4 に答える 4

4
echo htmlspecialchars('<div>Hey, you can see the div tag on the screen.</div>');
于 2013-08-08T09:43:54.840 に答える
3

htmlentities()またはhtmlspecialchars()を使用できます

お気に入り、

echo htmlentities( '<div>Hey, you can see the div tag on the screen.</div>');
echo htmlspecialchars( '<div>Hey, you can see the div tag on the screen.</div>');
于 2013-08-08T09:44:05.500 に答える
0

ここで見られるように、 htmlspecialchars()関数を使用できます。

echo htmlspecialchars('<div>Hey, you can see the div tag on the screen.</div>');
于 2013-08-08T09:49:38.613 に答える