php 函数中的链接

发布于 2024-10-20 18:08:09 字数 1225 浏览 0 评论 0原文

我阅读并尝试了所有其他线程,但我似乎无法完成这项工作...

我有以下内容

$error_str .= "<tr><th>Warp Links</th><td>";
if($user['location'] > 0 && $user['location'] <= $uv_num_stars) {
    // ensure user is in a system that exists.
    print_link($star['link_1']); 
    print_link($star['link_2']);
    print_link($star['link_3']);
    print_link($star['link_4']);
    print_link($star['link_5']);
    print_link($star['link_6']);
    $error_str .= $auto_str."</td>";
    if(!empty($star['wormhole']))
        $error_str .= "<th>Wormhole</th><td><a href=Navigation.php?toloc=$star[wormhole]>$star[wormhole]</a></td>";`
}

,这会打印存储在我的数据库中的数字链接,例如

<1>

我需要用图像替换该数字。到目前为止我已经尝试过

print_link($link['link_1'])<img src='/public/img/mail.png'/>";

,但我得到了一个意外的 T_STRING

我的 print_link 函数是

function print_link($link_num)
{
    global $error_str;
    if($link_num) {
        $error_str .= "&lt;<a href=\"Navigation.php?toloc=$link_num\">$link_num</a>&gt; ";
}

我该怎么做?

感谢您的阅读。

这不是 WordPress 问题。

i read and tried all the other threads but i cannot seem to make this work...

i have the following

$error_str .= "<tr><th>Warp Links</th><td>";
if($user['location'] > 0 && $user['location'] <= $uv_num_stars) {
    // ensure user is in a system that exists.
    print_link($star['link_1']); 
    print_link($star['link_2']);
    print_link($star['link_3']);
    print_link($star['link_4']);
    print_link($star['link_5']);
    print_link($star['link_6']);
    $error_str .= $auto_str."</td>";
    if(!empty($star['wormhole']))
        $error_str .= "<th>Wormhole</th><td><a href=Navigation.php?toloc=$star[wormhole]>$star[wormhole]</a></td>";`
}

and this prints a number link stored in my database, e.g.

<1>

I need to replace this number with an image. So far i've tried

print_link($link['link_1'])<img src='/public/img/mail.png'/>";

but i get an unexpected T_STRING

My print_link function is

function print_link($link_num)
{
    global $error_str;
    if($link_num) {
        $error_str .= "<<a href=\"Navigation.php?toloc=$link_num\">$link_num</a>> ";
}

How can i do this?

Thank you for reading.

This is not a WordPress question.

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

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

发布评论

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

评论(1

稍尽春風 2024-10-27 18:08:09

我认为你应该从基础开始。找一本编程教程,买一本好的 php 书等等。即使我们给了你一个可行的答案,你也会遇到下一个问题。如果你想编写 PHP 代码,你就必须花一点精力学习编程。

一些链接:

I think you should start from the basics. Find a programming tutorial, buy a good php book etc. Even if we gave you a working answer you would be stuck with your next problem. You have to put a little effort in learning programming if you want to code PHP.

Some links:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文