php 匹配关键字 添加A标签
更新:HHH   时间:2023-1-7


<?php 

/*

 * 类似QQ聊天时候,有某些关键字可以为他添加上超链接

*/

$string = "aabbcc";


$patterns = array("/a/","/b/","/c/");


$replacements = array_pad(array(),count($patterns),"<a href='#'>$0</a>");


print preg_replace($patterns, $replacements, $string, 1);


?>


返回web开发教程...