products.php

2021-04-08 08:26

阅读:616

标签:rod   products   cti   tsp   order   aci   table   price   images   

$products = [
    [‘id‘ => 1, ‘productName‘ => ‘商品1‘, ‘productsPrice‘ => 500, ‘productImage‘ => ‘a1.jpg‘],
    [‘id‘ => 2, ‘productName‘ => ‘商品1‘, ‘productsPrice‘ => 500, ‘productImage‘ => ‘a1.jpg‘],
    [‘id‘ => 3, ‘productName‘ => ‘商品1‘, ‘productsPrice‘ => 500, ‘productImage‘ => ‘a1.jpg‘],
    [‘id‘ => 4, ‘productName‘ => ‘商品1‘, ‘productsPrice‘ => 500, ‘productImage‘ => ‘a1.jpg‘],
    [‘id‘ => 5, ‘productName‘ => ‘商品1‘, ‘productsPrice‘ => 500, ‘productImage‘ => ‘a1.jpg‘],
    [‘id‘ => 6, ‘productName‘ => ‘商品1‘, ‘productsPrice‘ => 500, ‘productImage‘ => ‘a1.jpg‘],
    [‘id‘ => 7, ‘productName‘ => ‘商品1‘, ‘productsPrice‘ => 500, ‘productImage‘ => ‘a1.jpg‘],
    [‘id‘ => 8, ‘productName‘ => ‘商品1‘, ‘productsPrice‘ => 500, ‘productImage‘ => ‘a1.jpg‘],
];
$html = ‘‘;
$html .= ‘
‘;
$html .= ‘
‘;
$html .= ‘
‘;
$html .= ‘
‘;
$html .= ‘
‘;
$html .= ‘
‘;
foreach($products as product){
    $html .= ‘
‘;
    $html .= ‘
‘;
    $html .= ‘
‘;
    $html .= ‘
‘;
    //a1.jpg
    $html .= ‘
‘;
    $html .= ‘
‘;
}
$html .= ‘
编号 商品名称 价格 图片
‘ . $product[‘id‘] . ‘ ‘ . $product[‘productName‘] . ‘ ‘ . $product[‘productsPrice‘] . ‘
‘;
echo $html;

products.php

标签:rod   products   cti   tsp   order   aci   table   price   images   

原文地址:https://www.cnblogs.com/lujieting/p/12466228.html


评论


亲,登录后才可以留言!