-
Notifications
You must be signed in to change notification settings - Fork 0
/
auto.php
58 lines (50 loc) · 1.02 KB
/
auto.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
/**
* Created by PhpStorm.
* User: prubilar
* Date: 13-12-18
* Time: 23:19
*/
modificado
class auto
{
var $marca;
var $color;
var $puertas;
var $vidrioss;
function __construct($marca,$color,$puertas)
{
$this->marca=$marca;
$this->color=$color;
$this->puertas=$puertas;
$this->vidrios=$vidrioss;
}
function acelerar(){
return "este auto esta acelerando";
}
function bocina(){
return "toca la bocina";
}
}
class auto2
{
var $marca;
var $color;
var $puertas;
function __construct($marca,$color,$puertas)
{
$this->marca=$marca;
$this->color=$color;
$this->puertas=$puertas;
}
function acelerar(){
return "este auto esta acelerando";
}
function bocina(){
return "toca la bocina";
}
}
$auto1 = new auto('mazda','plateado',4);
echo "Este auto es de marca $auto1->marca color $auto1->color y de $auto1->puertas puertas";
echo $auto1->acelerar();
echo $auto1->bocina();