判断出得价格是否能卖商品,如果可以同时计算自己身上还剩多少钱。
主要是学习下,$this->money = $this->money - $mybid; 类似这样的用法。

<?php
header("Content-Type: text/html; charset=utf-8");    //编辑输出编码
    class Me {
        private $money = '100';   //我总共有的钱
        private $price= '60';  //商品价格
        public function Sell($mybid) {
            $this->mybid = $mybid;    //我出的价格
            if ($mybid < $this->price){ //判断我的出价是否小于商品价格
                echo '您出得钱太少了,我不卖!';
            }else {
                $this->money = $this->money - $mybid;   //计算我身上还有多少钱
                echo '欢迎光临,购买成功';
                echo '<br />';
                echo '收您'.$mybid.'元,'.'您现在还剩'.$this->money.'元';
            }
        }
    }
    $show = new Me();
    $show->Sell('59');
?>
最后修改:2015 年 08 月 27 日
如果觉得我的文章对你有用,请随意赞赏