Warning: include_once(): http:// wrapper is disabled in the server configuration by allow_url_include=0 in /home/users/2/moriya-h5/web/confrage/php/process/strip_tags/strip_tags.php on line 2

Warning: include_once(http://www.confrage.com/bin/header.php): failed to open stream: no suitable wrapper could be found in /home/users/2/moriya-h5/web/confrage/php/process/strip_tags/strip_tags.php on line 2

Warning: include_once(): Failed opening 'http://www.confrage.com/bin/header.php' for inclusion (include_path='.:/usr/local/php/7.4/lib/php') in /home/users/2/moriya-h5/web/confrage/php/process/strip_tags/strip_tags.php on line 2
HTMLタグ除去 | PHP

Warning: include_once(/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/menu.php): failed to open stream: No such file or directory in /home/users/2/moriya-h5/web/confrage/php/process/strip_tags/strip_tags.php on line 27

Warning: include_once(): Failed opening '/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/menu.php' for inclusion (include_path='.:/usr/local/php/7.4/lib/php') in /home/users/2/moriya-h5/web/confrage/php/process/strip_tags/strip_tags.php on line 27
 
トップページ >  PHP >  HTMLタグ除去
初版2008/11/21: 最終更新日2008/11/21
HTMLタグ除去
目次
HTMLタグ除去
サンプルコード
サンプル
HTMLタグ除去
strip_tags関数を使うと、テキストボックスに入力されたデータ中に含まれるHTMLのタグを完全に除去できます。
受け取ったテキストデータが代入された変数を引数に指定すると、HTMLタグが除去された文字列が返されます。
また、strip_tags関数の第2引数に、除去の対象外にするタグを指定できます。

以下がサンプルになります。

サンプルコード
(php部)
<?php
// 「送信」ボタンが押された時
if (isset($_POST[btnExec])) {
	print "全てのタグを除去した場合 : ";
	print strip_tags($_POST[memo]);
	print "<B>タグ以外を除去した場合 : ";
	print strip_tags($_POST[memo],"<b>");
	print "<U>タグ以外を除去した場合 : ";
	print strip_tags($_POST[memo],"<u>");
}
?>

(html部)
<form method="post">
	<input type="text" name="memo" size="50">
	<input type="submit" name="btnExec" value="送信">
</form>

サンプル

テキストにHTMLタグを含む文字列を入力し、「送信」ボタンを押します。






タグが除去された形で表示されます。↓


Warning: Use of undefined constant btnExec - assumed 'btnExec' (this will throw an Error in a future version of PHP) in /home/users/2/moriya-h5/web/confrage/php/process/strip_tags/strip_tags.php on line 108

Warning: include_once(/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/side_bar.php): failed to open stream: No such file or directory in /home/users/2/moriya-h5/web/confrage/php/process/strip_tags/strip_tags.php on line 130

Warning: include_once(): Failed opening '/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/side_bar.php' for inclusion (include_path='.:/usr/local/php/7.4/lib/php') in /home/users/2/moriya-h5/web/confrage/php/process/strip_tags/strip_tags.php on line 130