10 lines
107 B
PHP
10 lines
107 B
PHP
<?php
|
|
|
|
class Etudiant{
|
|
|
|
private $nom;
|
|
|
|
public function setNom($n){
|
|
$this->nom = $n;
|
|
}
|
|
} |