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]