Search
 
SCRIPT & CODE EXAMPLE
 

PHP

php strip tags

<?php
$text = '<p>Test paragraph.</p><!-- Comment --> <a href="#fragment">Other text</a>';
echo strip_tags($text);
//Test paragraph. Other text

// Allow <p> and <a>
echo strip_tags($text, '<p><a>');
//<p>Test paragraph.</p> <a href="#fragment">Other text</a>
// as of PHP 7.4.0 the line above can be written as:
// echo strip_tags($text, ['p', 'a']);
?>

Comment

PHP strip_tags — Strip HTML and PHP tags from a string

<?php
$text = '<p>Test paragraph.</p><!-- Comment --> <a href="#fragment">Other text</a>';
echo strip_tags($text);
echo "
";

// Allow <p> and <a>
echo strip_tags($text, '<p><a>');

// as of PHP 7.4.0 the line above can be written as:
// echo strip_tags($text, ['p', 'a']);
?>
Comment

strip html tag php

$text = '<a href="https://workforcenow.adp.com/mascsr/default/mdf/recruitment/recruitment.html?cid=ed2438b9-d7f4-45be-b3d8-8c924068c18a&amp;ccId=2036080543_6069&amp;jobId=329838&amp;source=CC2&amp;lang=en_US">https://workforcenow.adp.com/mascsr/default/mdf/recruitment/recruitment.html?cid=ed2438b9-d7f4-45be-b3d8-8c924068c18a&amp;ccId=2036080543_6069&amp;jobId=329838&amp;source=CC2&amp;lang=en_US</a>';
Comment

strip html tag php

$text = '<p>Test paraagraph.</p><!-- Comment --> <a href="#fragment">Other text</a>';
Comment

PREVIOUS NEXT
Code Example
Php :: check if input file is set codeigniter 
Php :: magento colloction query 
Php :: extract all arrays from sql response in php 
Php :: get http method php 
Php :: used resoure route how to add another route 
Php :: laravel save relationship to authorized user with parameter 
Php :: php qatorni teskari aylantirish 
Php :: php transform associative array to array 
Php :: joomla redirect 
Php :: laravel form method delete 
Php :: symfony call another controller 
Php :: php get content phpinfo without show 
Php :: Wordpress SVG Manually - function.php 
Php :: php string ends with 
Php :: php merge 2 arrays 
Php :: teruglopende for loop php 
Php :: capitlise php 
Php :: use if in laravel blade 
Php :: laravel human readable date 
Php :: foreach skip first php 
Php :: convert object to array php 
Php :: display nav menu in frontend using Wordpress 
Php :: php get prameter 
Php :: Git delete single branch 
Php :: laravel subdays 
Php :: laravel blade @guest 
Php :: generating-random-token-php 
Php :: link to another page php 
Php :: mac install multiple php versions 
Php :: php convert object to array 
ADD CONTENT
Topic
Content
Source link
Name
4+3 =