当前位置: 首页>>代码示例>>PHP>>正文


PHP Car::setMakeModel方法代码示例

本文整理汇总了PHP中Car::setMakeModel方法的典型用法代码示例。如果您正苦于以下问题:PHP Car::setMakeModel方法的具体用法?PHP Car::setMakeModel怎么用?PHP Car::setMakeModel使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Car的用法示例。


在下文中一共展示了Car::setMakeModel方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: Car

    }
}
$porsche = new Car();
$porsche->setMakeModel("2014 Porsche 911");
$porsche->setPrice(114991);
$porsche->setMiles(7864);
$ford = new Car();
$ford->setMakeModel("2011 Ford F450");
$ford->setPrice(55995);
$ford->setMiles(14241);
$lexus = new Car();
$lexus->setMakeModel("2013 Lexus RX 350");
$lexus->setPrice(44700);
$lexus->setMiles(20000);
$mercedes = new Car();
$mercedes->setMakeModel("Mercedes Benz CLS550");
$mercedes->setPrice(39900);
$mercedes->setMiles(37979);
$cars = array($porsche, $ford, $lexus, $mercedes);
$cars_matching_search = array();
foreach ($cars as $car) {
    if ($car->worthBuying($_GET['price']) && $car->maxMiles($_GET['miles'])) {
        array_push($cars_matching_search, $car);
    }
}
?>

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
开发者ID:tolentino3575,项目名称:Php-Car-Dealership,代码行数:31,代码来源:car.php

示例2: worthBuying

    }
    function worthBuying($max_price)
    {
        if ($this->price <= $max_price) {
            return true;
        }
    }
}
$porsche = new Car("2014 Porshe 911", 110000, 7864);
$subaru = new Car("2002 Subaru Outback", 3800, 128000);
$toyota = new Car("1994 Toyota Tacoma", 5000, 195000);
$ford = new Car("1997 Ford Wrangler", 1000, 300000);
$porsche->setMakeModel("2014 Porsche 911");
$subaru->setMakeModel("2002 Subaru Forester");
$toyota->setMakeModel("1994 Toyota Tacoma");
$ford->setMakeModel("1997 Ford Wrangler");
$porsche->setPrice(110000.07);
$subaru->setPrice(3400.34);
$toyota->setPrice(5000.99);
$ford->setPrice(1001.19);
$cars = array($porsche, $subaru, $toyota, $ford);
$cars_matching_array = array();
foreach ($cars as $car) {
    if ($car->worthBuying($_GET["price"])) {
        array_push($cars_matching_array, $car);
    }
}
//for each car in our cars array, we will run the "worthBuying" function on it.
//if the function returns true, then it will push that car into the cars_matching_array.
?>
开发者ID:michaellor,项目名称:php-cars,代码行数:30,代码来源:Car.php


注:本文中的Car::setMakeModel方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。