コード例 #1
0
ファイル: deprecated.inc.php プロジェクト: Dirty-Butter/v6
function priceFormat($price, $dispNull = true)
{
    trigger_error('priceFormat() is deprecated. Please use Tax::priceFormat(float $price [, bool $display_null]) instead.', E_USER_NOTICE);
    $tax = new Tax();
    return $tax->priceFormat($price, $dispNull);
}