本文整理匯總了PHP中Price::get方法的典型用法代碼示例。如果您正苦於以下問題:PHP Price::get方法的具體用法?PHP Price::get怎麽用?PHP Price::get使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Price
的用法示例。
在下文中一共展示了Price::get方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: elseif
<input name="factory_st" value="<?php
echo $order->factory_st;
?>
" class="required" />
粒,共
<input name="factory_st_weight" value="<?php
echo $order->factory_st_weight;
?>
" class="required" />
克拉
</div>
<?php
} elseif ($type === 'Customer') {
?>
<div class="more-info">
<span>客戶下單當天的金價為</span>
<span>PT950:<?php
echo Price::get('PT950', $order->submit_time);
?>
元/克</span>
<span>AU750:<?php
echo Price::get('AU750', $order->submit_time);
?>
元/克</span>
</div>
<?php
}
?>
<input type="submit" value="確定">
</form>
示例2: Prices
public function Prices($PricePageID)
{
return Price::get()->filter(array('PricePageID' => $PageID))->sort('Created', 'ASC');
}