Sintaxe
string strip_tags ( string $str [, string $allowable_tags ] )
Definição e Uso
É usado para string HTML e tags PHP de uma string.
Valores Retornados
Ele retorna a string removida
Parâmetros
Sr. Não |
Parâmetros e descrição |
1 |
string
Ele especifica a string para verificar
|
2 |
allow
Ele especifica as tags permitidas
|
Exemplo
Experimente o seguinte exemplo
<?php
echo strip_tags("Tutorials <b><i>Point</i></b>","<b>");
?>
Isso produzirá o seguinte resultado -
Tutorials Point