-3

重複の可能性:
許可されている場合を除き、すべてのHTMLタグを削除します

PHPは初めてです

これが私のコードです

<p>The filetype you are attempting to upload is not allowed.</p>

期待される出力:

The filetype you are attempting to upload is not allowed.

タグを削除する方法は<p>

4

4 に答える 4

3

strip_tags()HTMLタグを削除するために使用

http://php.net/manual/en/function.strip-tags.php

echo strip_tags("<p>The filetype you are attempting to upload is not allowed.</p>");

あなたに与えるThe filetype you are attempting to upload is not allowed.

于 2012-11-01T06:06:14.053 に答える
1
$string= '<p>The filetype you are attempting to upload is not allowed.</p>';
$new_string = strip_tags($string);
于 2012-11-01T06:07:03.347 に答える
1

strip_tags()文字列からhtmlタグを取り除くために使用します

$strip = '<p>The filetype you are attempting to upload is not allowed.</p>';
echo strip_tags($strip);

参照

于 2012-11-01T06:06:02.603 に答える
0
$str= '<p>The filetype you are attempting to upload is not allowed.</p>';
$new_string = strip_tags($str);
于 2012-11-01T06:28:54.307 に答える