-
Notifications
You must be signed in to change notification settings - Fork 0
/
Acteur.php
42 lines (28 loc) · 997 Bytes
/
Acteur.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
<?php
class Acteur extends Personne {
private array $_casting;
// recupère les variables du parent "Personne"
public function __construct(string $nom, string $prenom, string $sexe, string $naissance) {
parent::__construct($nom,$prenom,$sexe,$naissance);
$this->_casting = [];
}
// GETTER
public function getDate() {
return $this->_naissance;
}
// reprend les GETTER de "Personne"
//SETTER
//reprend les SETTER de "Personne"
// FONCTION
public function AddCasting($NewCasting) {
$this->_casting[] = $NewCasting;
}
public function afficherFilmographie() {
$result = "<h2>Filmographie de ".$this->getPrenom()." ".$this->getNom()."</h2>";
foreach ($this->_casting as $casting) {
$result .= $casting->getFilm()." dans le rôle de : ".$casting->getRole()."<br>";
}
return $result;
}
}
// $a .= $b $a = $a . $b Concaténation d'une chaîne de caractères