PHP:如何回显 URL 链接而不显示整个 url 地址
我们如何回显此 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
我很惊讶没有人用“蛋糕”的方式来回答这个问题。对于直接链接,您必须进行一些修改,因为助手期望相对于控制器的路径,但这并不困难。如果您的 url 是站点内部的,即由 CakePHP 处理的操作/视图,那么这是最好的方法。
http://book.cakephp.org/view/1442/link
编辑:
..当然,在 PHP 中更好的方法是利用双引号解析 -
或者,如果你想挑剔,
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.
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 -
or, if you want to be picky,
echo '查看';
echo '<a href="'.$value->url.'">View</a>';
在其中使用一些html。
use some html in it.
这种方式对我有用:
this way worked for me: