Удалить атрибут стиля из тегов HTML - PullRequest
39 голосов
/ 01 апреля 2011

Я не слишком хорош с регулярными выражениями, но с PHP я хочу удалить атрибут style из тегов HTML в строке, возвращаемой из TinyMCE.просто ваниль <p>Test</p>.

Как бы я достиг этого с помощью функции preg_replace()?

Ответы [ 7 ]

118 голосов
/ 01 апреля 2011

Прагматическое регулярное выражение (<[^>]+) style=".*?" решит эту проблему во всех разумных случаях. Часть совпадения, которая не является первой захваченной группой, должна быть удалена, например:

$output = preg_replace('/(<[^>]+) style=".*?"/i', '$1', $input);

Совпадение с <, за которым следует один или несколько символов "не >", пока мы не достигнем space и части style="...". /i позволяет работать даже с STYLE="...". Замените это совпадение на $1, которое является захваченной группой. Тег останется как есть, если тег не содержит style="...".

39 голосов
/ 01 апреля 2011

Примерно так должно работать (предупреждение о непроверенном коде):

<?php

$html = '<p style="asd">qwe</p><br /><p class="qwe">qweqweqwe</p>';

$domd = new DOMDocument();
libxml_use_internal_errors(true);
$domd->loadHTML($html);
libxml_use_internal_errors(false);

$domx = new DOMXPath($domd);
$items = $domx->query("//p[@style]");

foreach($items as $item) {
  $item->removeAttribute("style");
}

echo $domd->saveHTML();
23 голосов
/ 24 сентября 2013

Я прокомментировал функцию @Mayerln.Это работает, но DOMDocument действительно содержит кодировку.Вот моя простая версия

function stripAttributes($html,$attribs) {
    $dom = new simple_html_dom();
    $dom->load($html);
    foreach($attribs as $attrib)
        foreach($dom->find("*[$attrib]") as $e)
            $e->$attrib = null; 
    $dom->load($dom->save());
    return $dom->save();
}
4 голосов
/ 01 апреля 2011

Вот, пожалуйста:

<?php

$html = '<p style="border: 1px solid red;">Test</p>';
echo preg_replace('/<p style="(.+?)">(.+?)<\/p>/i', "<p>$2</p>", $html);

?>

Кстати, как отмечают другие, регулярные выражения для этого не предлагаются.

3 голосов
/ 21 апреля 2013

Я использую это:

function strip_word_html($text, $allowed_tags = '<a><ul><li><b><i><sup><sub><em><strong><u><br><br/><br /><p><h2><h3><h4><h5><h6>')
{
    mb_regex_encoding('UTF-8');
    //replace MS special characters first
    $search = array('/&lsquo;/u', '/&rsquo;/u', '/&ldquo;/u', '/&rdquo;/u', '/&mdash;/u');
    $replace = array('\'', '\'', '"', '"', '-');
    $text = preg_replace($search, $replace, $text);
    //make sure _all_ html entities are converted to the plain ascii equivalents - it appears
    //in some MS headers, some html entities are encoded and some aren't
    //$text = html_entity_decode($text, ENT_QUOTES, 'UTF-8');
    //try to strip out any C style comments first, since these, embedded in html comments, seem to
    //prevent strip_tags from removing html comments (MS Word introduced combination)
    if(mb_stripos($text, '/*') !== FALSE){
        $text = mb_eregi_replace('#/\*.*?\*/#s', '', $text, 'm');
    }
    //introduce a space into any arithmetic expressions that could be caught by strip_tags so that they won't be
    //'<1' becomes '< 1'(note: somewhat application specific)
    $text = preg_replace(array('/<([0-9]+)/'), array('< $1'), $text);
    $text = strip_tags($text, $allowed_tags);
    //eliminate extraneous whitespace from start and end of line, or anywhere there are two or more spaces, convert it to one
    $text = preg_replace(array('/^\s\s+/', '/\s\s+$/', '/\s\s+/u'), array('', '', ' '), $text);
    //strip out inline css and simplify style tags
    $search = array('#<(strong|b)[^>]*>(.*?)</(strong|b)>#isu', '#<(em|i)[^>]*>(.*?)</(em|i)>#isu', '#<u[^>]*>(.*?)</u>#isu');
    $replace = array('<b>$2</b>', '<i>$2</i>', '<u>$1</u>');
    $text = preg_replace($search, $replace, $text);
    //on some of the ?newer MS Word exports, where you get conditionals of the form 'if gte mso 9', etc., it appears
    //that whatever is in one of the html comments prevents strip_tags from eradicating the html comment that contains
    //some MS Style Definitions - this last bit gets rid of any leftover comments */
    $num_matches = preg_match_all("/\<!--/u", $text, $matches);
    if($num_matches){
        $text = preg_replace('/\<!--(.)*--\>/isu', '', $text);
    }
    $text = preg_replace('/(<[^>]+) style=".*?"/i', '$1', $text);
return $text;
}
1 голос
/ 28 мая 2014

В дополнение к ответу Лоренцо Маркона:

Использование preg_replace для выбора всего, кроме атрибута стиля:

$html = preg_replace('/(<p.+?)style=".+?"(>.+?)/i', "$1$2", $html);
0 голосов
/ 01 апреля 2011

Вы можете справиться с этим на стороне клиента, проще всего было бы с jQuery.Что-то вроде:

$("#tinyMce p").removeAttr("style");
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...