到目前为止,如何使用php数组显示图片使用html并不能正常显示字符串本身。这是我的代码:
$output = array(
'order_table' => $order_table,
'cart_item' => '<img src="samples/cart.png">' .count($_SESSION["shopping_cart"])
);
答案 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