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


PHP Car::drive方法代码示例

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


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

示例1: Car

<?php

/**
 * GIT Playground Project
 */
require "lib/Car.php";
$car = new Car();
$car->drive(20);
// 50 is to fast :) 30 is alsoy too fast
echo "Car has driven " . $car->getKm() . " km.";
开发者ID:bcfasty,项目名称:git-playground,代码行数:10,代码来源:index.php

示例2: Point

<?php

include 'Car.php';
include 'Point.php';
$point = new Point(3, 4);
$point1 = new Point(2, 5);
$car = new Car(100, 2, $point, "Lada", 50);
echo $car;
$car->drive($point1);
echo $car;
开发者ID:Nisaiy,项目名称:DeveloperClub,代码行数:10,代码来源:main.php

示例3: __construct

    public $color = " ";
    public static $car_count = 0;
    private static $cars = [];
    public function __construct()
    {
        self::$car_count++;
        self::$cars[] = $this;
    }
    public static function getAllCars()
    {
        return self::$cars;
    }
    public static function getNumCars()
    {
        return self::$car_count;
    }
    public function drive($destination)
    {
        echo "we're in a {$this->color} car going to {$destination}";
    }
}
$car1 = new Car();
$car1->color = "blue";
$car1->drive("mars");
echo "<br>There are " . Car::getNumCars() . " instance(s) of car<br>";
echo "<br>";
$car2 = new Car();
$car2->color = "red";
$car2->drive("flagstaff");
echo "<br>There are " . Car::getNumCars() . " instance(s) of car<br>";
print_r(Car::getAllCars());
开发者ID:billyloc,项目名称:Random_projects,代码行数:31,代码来源:static.php

示例4: drive

 public function drive()
 {
     parent::drive();
     $this->prestige();
 }
开发者ID:svtokarevsv,项目名称:PHP_academy,代码行数:5,代码来源:car.php

示例5: turnKey

    public function turnKey()
    {
        $this->currentState->turnKey();
    }
    public function drive()
    {
        $this->currentState->drive();
        $this->gasoline -= 10;
    }
    public function stop()
    {
        $this->currentState->stop();
    }
    public function setState($state)
    {
        $this->currentState = $state;
    }
}
$car = new Car();
$car->fillTank();
echo '<br />';
$car->turnKey();
echo '<br />';
$car->turnKey();
echo '<br />';
$car->turnKey();
echo '<br />';
$car->drive();
echo '<br />';
$car->stop();
echo '<br />';
开发者ID:pers1307,项目名称:patterns,代码行数:31,代码来源:state.php

示例6: drive

    function __construct()
    {
        parent::__construct("car",4);
        $this->gas = 100;
    }
    function drive(){
        parent::drive();
        $this->gas-= 5;
        echo "Now I have $this->gas percent of gas left.<br>";}
}

$bike = new Bicycle("bell");
echo $bike->drive("bell"); //prints 'Riding a bike with 2 wheels'
echo '<br>';
$car = new Car();
echo $car->drive();//prints 'Driving a car with 4 wheels'

?>


</p>
<?php
/*
 *
 $_SESSION
$_POST
$_GET

These 3 are called "Superglobals"

seesion_start(); //every time you refresh, it will be built on top of previous work
开发者ID:hwaunhwan,项目名称:PHPIntermediate,代码行数:31,代码来源:Class+7.php

示例7: __construct

class Car
{
    public $color = '';
    public static $car_count = 0;
    private static $cars = [];
    public function __construct()
    {
        self::$car_count++;
        self::$cars[] = $this;
    }
    public static function getAllCars()
    {
        return self::$cars;
    }
    public static function getNumCars()
    {
        return self::$car_count;
    }
    public function drive($destination)
    {
        echo "we're in a {$this->color} car going to {$destination}";
    }
}
$car1 = new Car();
$car1->color = 'blue';
$car1->drive('mars');
echo 'There are ' . Car::getNumCars() . ' instances of car<br>';
$car2 = new Car();
$car2->color = 'red';
$car2->drive('flagstaff');
开发者ID:Rufio0425,项目名称:school,代码行数:30,代码来源:static.php


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