HTMLタグを実際に画面に印刷したい。HTML タグをエスケープする方法がわかりません。
期待される出力
<div>Hey, you can see the div tag on the screen.</div>
タグはdiv
HTML タグとして取り込まれるべきではなく、画面に出力したいのです。どうやってやるの?
echo htmlspecialchars('<div>Hey, you can see the div tag on the screen.</div>');
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>');
ここで見られるように、 htmlspecialchars()関数を使用できます。
echo htmlspecialchars('<div>Hey, you can see the div tag on the screen.</div>');