Home > Backend Development > PHP Tutorial > PHP regular connection Chinese text program_PHP tutorial

PHP regular connection Chinese text program_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-15 13:22:18
Original
812 people have browsed it

$htm = "<a href=&#39;http://www.php100.net&#39;>test1</a><br />" .
          "<a href=&#39;http://www.php100.net&#39;>test2</a><br />" .
          "<a href=&#39;http://www.php100.net&#39;>test3</a><br />" .
          "<a href=&#39;http://www.php100.net&#39;>test4</a><br />" .
          "<a href=&#39;http://www.php100.net&#39;>test5</a><br />";

   echo $htm . "<br />";
   echo stripthetag($htm);

function stripthetag($link) {

   return (preg_replace(&#39;@<[/!]*?[^<>]*?>@si&#39;, &#39; &#39;, $link));
}
Copy after login

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/447011.htmlTechArticle$htm = a href=http://www.php100.nettest1/abr / . a href=http://www.php100.nettest2/abr / . a href=http://www.php100.nettest3/abr / . a href=http://www.php100.nettest4/abr / . a hre...
Related labels:
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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template