gpt4 book ai didi

php - 在最后一个 div 的 PHP 代码中添加跨度

转载 作者:太空宇宙 更新时间:2023-11-04 08:31:50 25 4
gpt4 key购买 nike

Add Span in php last div don't work :(

**如何在php代码中添加跨度**

 echo"
<tr>
<td>$id</td>
<td>$name</td>
<td>$lastname</td>
<td>$email</td>
<td>$login</td>
<td>$password</td>
<td class="td-actions">
<a class="btn btn-default btn-xs" href="logout.php">
<span class="glyphicon glyphicon-pencil"></span> Edit
</a>
</td>enter code here

</tr>";

最佳答案

由于您的 echo 使用 " 指示文本的开始和结束位置,因此您需要转义文本中的 "本身带有 \:

echo "
<tr>
<td>$id</td>
<td>$name</td>
<td>$lastname</td>
<td>$email</td>
<td>$login</td>
<td>$password</td>
<td class=\"td-actions\">
<a class=\"btn btn-default btn-xs\" href=\"logout.php\">
<span class=\"glyphicon glyphicon-pencil\"></span> Edit
</a>
</td>enter code here
</tr>";

关于php - 在最后一个 div 的 PHP 代码中添加跨度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44727677/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com