<td><img src="<?php echo (!empty($row['photo']))? '../images/'.$row['photo']:'../images/profile.jpg'; ?>" width="30px" height="30px"> <a href="#edit_photo" data-toggle="modal" class="pull-right photo" data-id="<?php echo $row['empid']; ?>"><span class="fa fa-edit"></span></a></td>语句再插入到echo “ ”;语句中时报错
时间: 2023-07-19 20:27:51 浏览: 168
php分页程序 通过<a href=?page=$j>$j</a>实现分页
5星 · 资源好评率100%
如果您想将以下代码:
```
<td><img src="<?php echo (!empty($row['photo']))? '../images/'.$row['photo']:'../images/profile.jpg'; ?>" width="30px" height="30px"> <a href="#edit_photo" data-toggle="modal" class="pull-right photo" data-id="<?php echo $row['empid']; ?>"><span class="fa fa-edit"></span></a></td>
```
插入到 `echo` 语句中,可以使用以下代码:
```
<?php
$photo_html = '<td><img src="' . ((!empty($row['photo'])) ? '../images/'.$row['photo'] : '../images/profile.jpg') . '" width="30px" height="30px"> <a href="#edit_photo" data-toggle="modal" class="pull-right photo" data-id="' . $row['empid'] . '"><span class="fa fa-edit"></span></a></td>';
echo "Some text here" . $photo_html . "Some more text here";
?>
```
在上面的代码中,我们将原始代码存储在 `$photo_html` 变量中,并使用字符串拼接运算符 `.` 将它插入到 `echo` 语句中。请注意,在拼接字符串时,我们使用了三个不同的字符串,用双引号将它们括起来。
阅读全文