$html = 'Nowy<br/><br/>tekst|Stary tekst';
$html = strstr( preg_replace('/(<br *\/*>)+/', '<br>',
strip_tags( $html, '<b><br>')), '|', true);
23 maj 2016
$html = 'Nowy<br/><br/>tekst|Stary tekst';
$html = strstr( preg_replace('/(<br *\/*>)+/', '<br>',
strip_tags( $html, '<b><br>')), '|', true);
Usunięcie tagów html z tekstu
$art_text = preg_replace("/(align|class|style|clear)\=\"([^\"]*)\"/", '', $art_text);
$art_text = strip_tags($art_text, '<p><br><strong><b><em><u><strike>');
echo $art_text;
$html_keywords = $strona_fragment;
$html_description = substr(str_replace(' ', ' ',trim(strip_tags($strona_tresc))), 0, 250);