为什么结果是This is a link to http://www.wjigilmore.com/.?

来源:3-7 正则表达式的搜索和替换

慕粉1220028519

2017-04-22 10:46

<?php

$text = "This is a link to http://www.wjigilmore.com/.";

echo preg_replace("/http:\/\/(.*)\//","<a href = \"\${0}\">\${0}</a>",$text);

?>

不是应该是This is a link to

<a herf ="http:// www.wjigilmore.com/"> http://www.wjigilmore.com/<a/>.吗?

写回答 关注

1回答

  • _归03591539
    2017-04-23 17:55:32

    注意是替换掉了

PHP进阶篇

轻松学习PHP中级课程,进行全面了解,用PHP快速开发网站程序

181835 学习 · 2577 问题

查看课程

相似问题