當前位置: 首頁>>代碼示例>>PHP>>正文


PHP D::getLogistics方法代碼示例

本文整理匯總了PHP中D::getLogistics方法的典型用法代碼示例。如果您正苦於以下問題:PHP D::getLogistics方法的具體用法?PHP D::getLogistics怎麽用?PHP D::getLogistics使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在D的用法示例。


在下文中一共展示了D::getLogistics方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: array

                                    <?php 
            $OrderAlipay = $cart['discount'];
            //  $OrderAlipay = substr($cart['discount'], 0, strlen($cart['discount']) - 1);
            echo $OrderAlipay / 10;
            ?>
折</span><?php 
        }
        ?>
                            <input type="hidden" id="discountt" value="<?php 
        echo $OrderAlipay / 10;
        ?>
">
                        </div>
                        <div style="width:26%; float:left; text-align: center"> <span >物流配送:</span> 
                            <?php 
        $status = D::getLogistics($cart["SellerID"]);
        ?>
                            <?php 
        //var_dump($cart["SellerID"]);
        ?>
                            <?php 
        echo CHtml::dropDownList('Logistics', $Logistics, $status, array('class' => 'width188 select Logistics', 'id' => $cart["SellerID"], 'style' => 'width:180px', 'empty' => '請選擇物流'));
        ?>
                        </div>
                        <div style="width:33%; float:left; text-align: center" class="log<?php 
        echo $cart["SellerID"];
        ?>
">
                            <label>物流公司:</label>
                            <input type="text" name="logistics[]" value=""  class="input abc"/>
開發者ID:zwq,項目名稱:unpei,代碼行數:30,代碼來源:delivery.php

示例2: array

                            <?php 
    $OrderAlipay = $goods['discount'] / 10;
    echo $OrderAlipay;
    ?>
折</span>
                    <?php 
}
?>
                    <input type="hidden" id="discountt" value="<?php 
echo $OrderAlipay;
?>
">
                </div>
                <div style="width:33%; float:left; text-align: center"><span>物流配送:</span> 
                    <?php 
$status = D::getLogistics($goods["SellerID"]);
?>
                    <?php 
//var_dump($cart["SellerID"]);
?>
                    <?php 
echo CHtml::dropDownList('Logistics', $Logistics, $status, array('class' => 'width188 select Logistics', 'style' => 'width:180px', 'empty' => '請選擇物流'));
?>
                    &nbsp;&nbsp;</div>  <div style="width:33%; float:left; text-align: center" class="logis"><label>物流公司:</label>
                    <input type="text" name="logistics[]" value=""  class="input abc"/></div>
                <input type="hidden"  name="goodsid" value="<?php 
echo $goods['GoodsID'];
?>
">
                <input type="hidden" name="goods_amount" value="<?php 
echo $amount;
開發者ID:zwq,項目名稱:unpei,代碼行數:31,代碼來源:buynow.php


注:本文中的D::getLogistics方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。