如何在heredoc

时间:2018-11-02 21:36:51

标签: php heredoc

我正在使用Heredoc语句来打印html,但是如何将php代码嵌入该html中,例如:

$results = $conn->query($sql);

$html = <<<html
<table class="table table-bordered table-striped table-hover">
    <thead>
        <tr>
            <th>ID</th>
            <th>Technician</th>
            <th>Project</th>
            <th>Region</th>
            <th>Date</th>
            <th>Type</th>
            <th>Notes</th>
        </tr>
    </thead>
    <tbody>
        <?php while($row = $results->fetch_assoc()): 
        <tr>
            <td>{$row['ID']}</td>
            <td>{$row['Technician']}</td>
            <td>{$row['Project']}</td>
            <td>{$row['Region']}</td>
            <td>{$row['Date']}</td>
            <td>{$row['Type']}</td>
            <td>{$row['Notes']}</td>
        </tr>
        <?php endwhile; ?>
    </tbody>
</table>
html;

我们该怎么做。 。

0 个答案:

没有答案