Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
变量$rowad["1site"]是一个 URL。如何将整个 URL 保留在超链接中,但锚文本是 URL 的编辑版本,在 TLD 之后什么也不显示?
$rowad["1site"]
echo '<td style="" class="pointlink"><span class="pointlink"><a href="http://'.$rowad["1site"].'">'.$rowad["1site"].'</a></td>';
您可以分解 URL,例如:
$newUrl = explode('/', $rowad['1site']);
然后$newUrl[0]在你想要的地方添加。
$newUrl[0]