PHP:如何回显 URL 链接而不显示整个 url 地址

发布于 2024-10-14 19:12:06 字数 290 浏览 1 评论 0原文

我们如何回显此 url 链接,以便它显示名为 View 的链接,而不是生成的长 url 地址?目前我正在使用的是:

echo($value->url."
");

上面代码的输出会给我整个 url 地址,所以有人可以写如果我希望它是一个名为 View 的简单 link 该怎么办?谢谢..

PS 上面的代码目前不显示链接中的网址,我希望它是一个名为 View 的可点击链接。

How do we echo this url link so it displays a link named View instead of the long generated url address? It's this currently I'm using:

echo($value->url."<br>");

The output of the code above would give me the whole url address, so can someone writes how if I want it to be a simple link named View ? Thanks..

P.S The above code currently doesn't display the url in link, I want it to be a click-able link named View.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

她比我温柔 2024-10-21 19:12:06
echo '<a href="'.$value->url.'">View</a>';
echo '<a href="'.$value->url.'">View</a>';
看海 2024-10-21 19:12:06

我很惊讶没有人用“蛋糕”的方式来回答这个问题。对于直接链接,您必须进行一些修改,因为助手期望相对于控制器的路径,但这并不困难。如果您的 url 是站点内部的,即由 CakePHP 处理的操作/视图,那么这是最好的方法。

<?php echo $html->link('View', $value->url); ?>

http://book.cakephp.org/view/1442/link

编辑:

..当然,在 PHP 中更好的方法是利用双引号解析 -

<?php echo "<a href='$url'>View</a>"; ?>

或者,如果你想挑剔,

<?php echo "<a href=\"$url\">View</a>"; ?>

I'm surprised that nobody answered with the 'Cake' way to do this. For a straight link, you'll have to tinker a little as the helper expects a path relative to controllers, but it's not difficult. It's the best way to do it if your url is internal to the site, i.e. an action/view handled by CakePHP.

<?php echo $html->link('View', $value->url); ?>

http://book.cakephp.org/view/1442/link

edit:

...and of course a better way to do it in PHP would be to leverage the double quote parsing -

<?php echo "<a href='$url'>View</a>"; ?>

or, if you want to be picky,

<?php echo "<a href=\"$url\">View</a>"; ?>
究竟谁懂我的在乎 2024-10-21 19:12:06

echo '查看';

echo '<a href="'.$value->url.'">View</a>';

善良天后 2024-10-21 19:12:06
<?php echo '<a href="',$value->url,'">View</a>"'; ?>

在其中使用一些html。

<?php echo '<a href="',$value->url,'">View</a>"'; ?>

use some html in it.

老子叫无熙 2024-10-21 19:12:06

这种方式对我有用:

<td><?php print "<a href='$row[website]'> go </a>"; ?></td>

this way worked for me:

<td><?php print "<a href='$row[website]'> go </a>"; ?></td>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文