?? quick.php
字號:
<?php
/*
[ShoopD] modules/shipping/quick.php
Version: 1.5
Author: soolan (soolan@qq.com)
Copyright: soolan (www.shoopd.com)
Last Modified: 2006/1/16 10:00
*/
function expressions_quick($shipping_fee, $shipping_weight){
$cost_table = split("[:]" , $shipping_fee);
if ($shipping_weight <= $cost_table[0]) {
$shipping = $cost_table[3];
}else{
if ($shipping_weight > $cost_table[0]){
if ($shipping_weight <= $cost_table[1]){
$shipping_weight_add = $shipping_weight - $cost_table[0];
}else{
$shipping_weight_add = $cost_table[1] - $cost_table[0];
}
$mail_num = ceil($shipping_weight_add/$cost_table[2]);
$shipping = $cost_table[3] + $mail_num * $cost_table[4];
}
if($shipping_weight > $cost_table[1]){
$shipping_weight_add = $shipping_weight - $cost_table[1];
$mail_num = ceil($shipping_weight_add/$cost_table[2]);
$shipping = $shipping + $mail_num * $cost_table[5];
}
}
return $shipping;
}
?>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -