本文整理汇总了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');
}