关于html:在里面调用php函数< td>

Call php function inside <td>

本问题已经有最佳答案,请猛点这里访问。

我在HTML表中调用PHP函数时遇到困难。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
    <table>
        <thead class="table">
        <tr><th>Letter</th><th>Sender</th></tr>
        </thead>
        <tbody>
        <?php require_once 'assets/userFunctions.php';
        foreach ($myCvs as $cv){
            echo"<tr>
            <td>{$cv['cv']}</td>
            <td>getUsernameById({$cv['senderid']})</td>
            </tr>"
;
        }
        ?>
        </tbody>
    </table>

在表中我只看到了getUsernameById(2),例如…


您需要使用串联:

1
echo"<tr><td>" . $cv['cv'] ."</td><td>" . getUsernameById($cv['senderid']) ."</td></tr>";