图像未使用php echo加载

时间:2016-06-29 10:35:27

标签: php laravel

我试图逐个回显表字段。 但我无法回应图像领域。 我的代码是:

if ($data->Prophylaxis_Indicated == 1) {
    echo "<td><span title='true_logo'> <img src='url('images/1-icon.png')' height='20' width='20'></span></td>";
} else {
    echo "<td> <span title='true_logo'><img src='url('images/0-icon.png')'height='20' width='20'></span></td>";
}

3 个答案:

答案 0 :(得分:1)

这对我有用

if(($data->Prophylaxis_Indicated)==1){
                echo " 
                <td>
                <span title='true_logo'>

                <img src='/../images/1-icon.png' height='20' width='20'> 
                </span>
                </td>";

              }
              else{

               echo "<td> <span title='true_logo'>
               <img src='/../images/0-icon.png' height='20' width='20'> 


               </span></td>";
             }

答案 1 :(得分:0)

我认为问题是你正试图在控制器中使用刀片语法。

使用此代码可以使用

 if(($data->Prophylaxis_Indicated)==1){
                echo " <td><span title='true_logo'>
                <img src='images/1-icon.png'
                height='20' width='20'>
                </span></td>";

              }
              else{

               echo "<td> <span title='true_logo'>
               <img src='images/0-icon.png'
               height='20' width='20'>
               </span></td>";
             }

答案 2 :(得分:0)

使用双下划线,因此可能不会 cz语法错误

 src="url('images/0-icon.png')"

改为

src='url('images/0-icon.png')'