西安网上购物网店系统的主要亮点:(1)商品的分类更加细化和明朗,可以三级分类,价格可以多层次\多级别,按照后台设置的,吸引会员加入。(2)会员和非会员购物并存,订单直接支付和会员帐户支付并存,电话支付与网上支付多种支付方式。(3)自定义商品扩展属性,多种扩展属性定义模式,强大的商品管理功能,多重分类功能(4)灵活的会员积分系统,灵活的会员权限控制,模版丰富多彩,模版代码分离,方便修改模版(5)支付
';
}
interface Sourceable
{
function method();
}
// 被代理对象
class Source implements Sourceable
{
public function method() {
echoLine('call method');
}
}
// 代理对象
class Proxy implements Sourceable
{
private $sourceable = null;
// 代理关系在编译时确定
public function construct() {
$this->sourceable = new Source();
}
// 动态设置代理对象
public function setTarget(Sourceable $s) {
$this->sourceable = $s;
}
public function method() {
echoLine('before proxy!');
$this->sourceable->method();
echoLine('after proxy!');
}
}
// test code
$proxy = new Proxy();
$proxy->method();
$s = new Source();
$proxy->setTarget($s);
$proxy->method();










