标签: php
$example="this is an example of [link](http://webpage.com)"
这是link
如何使用php函数实现这一点?
答案 0 :(得分:2)
这是一个简单的正则表达式解决方案:
$example="this is an example of [link](http://webpage.com)"; echo preg_replace("/\[(.+?)\]\((.+?)\)/", "<a href=\"$2\">$1</a>", $example);
答案 1 :(得分:0)
那是Markdown语法。您可以从here获得PHP的实现。