创建函数并调用它

Create function and call it

我有一段代码需要多次使用,但我不想得到一个包含很多相同代码的很长的页面。

我有这段代码:

<div class="av-product-specs-list-container">
    <input type="checkbox" id="chck1" checked>
    <label class="av-product-specs-title" for="chck1">Algemene informatie</label>
    <div class="av-product-specs-table-list first-spec-list">

        <?php if( $av_merk != "" ) : ?>
            <div class="av-product-specs-table-row">
                <div class="av-product-specs-table-row-left">Merk</div>
                <div class="av-product-specs-table-row-right">
                    <?php echo $av_merk; ?>
                </div>
            </div>
        <?php endif; ?>

        <?php 
            $av_attribute_group = $_product->getAttributes(37);

            foreach ($av_attribute_group as $av_attribute_groups):

                $av_attr_name = $av_attribute_groups->getName();
                $av_attr_label = $_product->getResource()->getAttribute($av_attr_name)->getFrontend()->getLabel($_product);
                $av_attr_value = $_product->getResource()->getAttribute($av_attr_name)->getFrontend()->getValue($_product);

                if( $av_attr_value != "" ) :

                ?>

                    <div class="av-product-specs-table-row">
                        <div class="av-product-specs-table-row-left"><?php echo $av_attr_label; ?></div>
                        <div class="av-product-specs-table-row-right">
                            <?php 
                                if( $av_attr_value == "Yes" || $av_attr_value == "Ja" ) : ?>
                                    <div class="av-spec-yes"></div>
                                <?php elseif( $av_attr_value == "No" || $av_attr_value == "Nee" ) : ?>
                                    <div class="av-spec-no"></div>
                                <?php else : 
                                    echo $av_attr_value;
                                endif; 
                            ?>
                        </div>
                    </div>

                <?php endif; ?>             
        <?php endforeach ?>

    </div>
</div>

我不需要创建这段代码 40 多次,而是需要创建一个我可以调用的函数,并且只更改 $av_attribute_group = $_product->getAttributes(37);因为我需要领导不同的id。

我该怎么做?

您可以将您的代码包含在 function 声明中。您需要包含 $_product$av_merk 变量作为参数,并传递一个 $id 值以传递给 $_product->getAttributes。例如:

function show_av($_product, $av_merk, $id) {
?>
... your code
<?php
}

show_av($_product, $av_merk, 37);
?>

在您的代码中,您将替换

$av_attribute_group = $_product->getAttributes(37);

$av_attribute_group = $_product->getAttributes($id);