⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 quick.php

📁 用 php + mysql 驱动的在线商城系统
💻 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 + -