0
"My Text"というテキストを含むSVG四角形を作成しました。 href属性(または他のもの)を使用して、別のPHPファイルにサイトをリダイレクトするために、テキスト "My Text"にクリック可能なリンクを追加したいと思います。 しかし、私は常に、テキストなしの「My Text」の矩形だけをリンクなしで取得します。href link from svg object
<?php
echo "<svg width='1100' height='1620'>";
echo "<rect x='450' y='30' width='200' height='30' style='fill:white stroke:black;stroke-width:2'></rect>";
$my_text = "My Text";
echo "<text x='473' y='51' font-family='Verdana' font-size='18' fill='black' > <a href='index.php'>$my_text</a></text>";
echo "</svg>";
?>