0

strpos()HTMLタグの検索を使用できますか?無効な結果が生成されるようです。また、に変換しようとしましたhtmlentities()-それでも運がありません。太字、斜体、下線などのテキスト装飾を適切に検索するにはどうすればよいですか?

:(デモ

/* HTML Tags to search for. */
$html_tags = array(
    'bold' => array(
        'before' => '<strong>',
        'after' => '</strong>'
    ),
    'italics' => array(
        'before' => '<em>',
        'after' => '</em>'
    ),
    'underline' => array(
        'before' => '<span style="text-decoration: underline;">',
        'after' => '</span>'
    )
);
/* Sample Strings... */
$html_test = array(
    'bold_with_html' => '<strong>Some string containing HTML tags.</strong>',
    'italics_with_html' => '<em>Some string containing HTML tags.</em>',
    'underline_with_html' => '<span style="text-decoration: underline;">Some string containing HTML tags.</span>',
    'without_html' => 'Some string containing no HTML tags.'
);
/* Check for HTML Tags. */
$results = array();
foreach($html_test as $key => $value){
    foreach($html_tags as $decoration => $html_tag){
        if(stripos($html_tag['before'], $value) !== false && strripos($html_tag['after'], $value) !== false){
            $results[$key][$decoration] = 'Located HTML: '.$decoration.'!';
        } else{
            $results[$key][$decoration] = 'No HTML located.';
        }
    }
}
print_r($results);
4

2 に答える 2

1

パラメータの順序が間違っていstriposます。干し草の山、次に針...

if(stripos($value,$html_tag['before']) !== false && strripos($value,$html_tag['after']) !== false){
于 2013-02-20T23:30:48.767 に答える
0

なぜ正規表現でこれを実行したいのですか?あなたの最善の策はDOMです。

RegExは、XHTML自己完結型タグを除くオープンタグと一致します

于 2013-02-20T23:27:10.617 に答える