PHP数组显示图像

时间:2017-11-26 06:13:00

标签: php html arrays image output

到目前为止,如何使用php数组显示图片使用html并不能正常显示字符串本身。这是我的代码:

      $output = array(  
            'order_table'       =>  $order_table,
            'cart_item'         =>  '<img src="samples/cart.png">' .count($_SESSION["shopping_cart"])
  );  

1 个答案:

答案 0 :(得分:2)

您必须在img标记周围添加引号,然后在php中使用echo显示

 $output = array(  
            'order_table'       =>  $order_table,
            'cart_item'         =>  '<img src="samples/cart.png">' .count($_SESSION["shopping_cart"]),
  );  

echo $output['cart_item']; //This will display the image