Home > Backend Development > PHP Tutorial > 正则替换link标签有关问题

正则替换link标签有关问题

WBOY
Release: 2016-06-13 13:23:28
Original
950 people have browsed it

正则替换link标签问题
$segname=
preg_replace( '/]*>/i', '', $segname );
替换失败,正则该如何写

------解决方案--------------------

PHP code
$segname='aa<link href="css/content.css" rel="stylesheet" type="text/css">bb';
echo preg_replace( '/<link>]*>/i', '', $segname ); <div class="clear">
                 
              
              
        
            </div>
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template