我是 php 的绝对新手,所以请温柔一点。
我有以下行...
define('TEXT_INFORMATION', '<b>Note:</b> You can check their rate calculator here, and you are welcome to contact us.');
我想放置一个指向邮局网站的 html 链接,上面写着“这里”,还有一个链接到我的联系页面,上面写着“联系我们”。请问怎么办?
这就是你要找的
define('TEXT_INFORMATION', '<b>Note:</b> You can check their rate calculator here, and you are welcome to <a href="your link">here</a>.');
在我放置“您的链接”的 href 标记中替换您与我们联系页面的链接
您可以将单词包装在 HTML 锚标记中,如下所示:
define('TEXT_INFORMATION', '... <a href="YOUR URL">here</a> ...'