// texto exemplo <br/> $string = '\<p id="paragrafo1" class="paragrafo">O importante é oque mais importa! \<br /> No final tudo é 0 e 1.\</p>';
// Instancia a classe $strip = new StripTags;
// coloca a $string na função para remover as tags
-- A saída vai ser <br /> O importante é oque mais importa! No final tudo é 0 e 1.
-- A saída vai ser <br /> \<p>O importante é oque mais importa! No final tudo é 0 e 1.\</p>
// O segundo parâmetro pode ser string ou array usage.. <br /> $tags_permitidas = array('div', 'a', 'p');
-- A saída vai ser <br /> \<p class="paragrafo1">O importante é oque mais importa! No final tudo é 0 e 1.\</p>
// O terceiro parâmetro pode ser string ou array usage.. <br /> $tags_permitidas = array('div', 'a', 'p'); <br /> $atributos_permitidos = array('class', 'id', 'data-nome');
-- mode usage simple
// string exemple <br /> $string = '\<p id="paragrafo1" class="paragrafo">The important is what matters most \<br /> Not everything is 0 and 1.\</p>';
// Instance the class (invok) <br /> $strip = new StripTags;
// put the string in the function of remove the tags
-- output will be <br /> The important is what matters most Not everything is 0 and 1.
-- output will be <br /> \<p>The important is what matters most Not everything is 0 and 1.\</p>
// the second parameter can be string or array, usage <br /> $tags_allowed = array('div', 'a', 'p');
-- output will be <br /> \<p class="paragrafo1">The important is what matters most Not everything is 0 and 1.\</p>
// the third parameter can be string or array, usage <br /> $tags_allowed = array('div', 'a', 'p'); <br /> $attributes_allowed = array('class', 'id', 'data-name');
-- ass: Matheus Maydana'
Classes of Matheusz Maydana | > | PHP Strip Tags from Strings | > | Download .zip .tar.gz | > | Support forum | > | Blog | > | Latest changes |
|
|
Groups | Applications | Files |
Groups |
HTML | HTML generation and processing | View top rated classes |
PHP 5 | Classes using PHP 5 specific features | View top rated classes |
Parsers | Programming language interpreters and format parsers | View top rated classes |
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.
Download all files: strip-tags-php.tar.gz strip-tags-php.zip NOTICE: if you are using a download manager program like 'GetRight', please Login before trying to download this archive.
|