2008年(1812)
分类:
2008-05-03 20:06:56
/****************************************** 函数:priceOfHouseDoor($num,$price) 功能:计算所有的门的价格总和 参数:$num 门的数量,$price 每扇门的价格 备注:surfchen @ ******************************************/ function priceHouseDoor($num,$price) { return $num*$price; } echo priceHouseDoor(2,5);//输出价格
$doors=2;//门数量 $price=5;//每扇门的价格 echo $doors*$price;//输出价格
class house { /****************************************** 函数:getDoorPrice($num,$price) 功能:计算所有的门的价格总和 参数:$num 门的数量,$price 每扇门的价格 备注:surfchen @ ******************************************/ function getDoorPrice($num,$price) { return $num*$price; } } $house=new house; echo $house->getDoorPrice(2,5);//输出价格
class house { var $doors;//门的数量 var $pricePerDoors;//每扇门的价格 function setNumOfDoors($num){$this->doors=$num;}//设定门数量 function setPricePerDoor($price){$this->pricePerDoors=$price;}//设定每扇门的价格 /*************\ *获得门的价格 * \*************/ function getDoorPrice() { return ($this->doors)*($this->pricePerDoors); } } $house=new house; $house->setNumOfDoors(2);//设定门数量 $house->setPricePerDoor(5);//设定每扇门的价格 echo $house->getDoorPrice();//输出
/****************************************** 函数:priceOfHouseDoor($num,$price) 功能:计算所有的门的价格总和 参数:$num 门的数量,$price 每扇门的价格 备注:surfchen @ ******************************************/ function priceHouseDoor($num,$price) { return $num*$price; } echo priceHouseDoor(2,5);//输出价格
$doors=2;//门数量 $price=5;//每扇门的价格 echo $doors*$price;//输出价格
class house { /****************************************** 函数:getDoorPrice($num,$price) 功能:计算所有的门的价格总和 参数:$num 门的数量,$price 每扇门的价格 备注:surfchen @ ******************************************/ function getDoorPrice($num,$price) { return $num*$price; } } $house=new house; echo $house->getDoorPrice(2,5);//输出价格
class house { var $doors;//门的数量 var $pricePerDoors;//每扇门的价格 function setNumOfDoors($num){$this->doors=$num;}//设定门数量 function setPricePerDoor($price){$this->pricePerDoors=$price;}//设定每扇门的价格 /*************\ *获得门的价格 * \*************/ function getDoorPrice() { return ($this->doors)*($this->pricePerDoors); } } $house=new house; $house->setNumOfDoors(2);//设定门数量 $house->setPricePerDoor(5);//设定每扇门的价格 echo $house->getDoorPrice();//输出