<?php class Articles { var $nom; function Articles( $nom="Articles") { $this->nom = $nom; } function modifierNom( $n) { $this->nom = $n; } function afficherNom () { return $this->nom; } } $Articles = new Articles("PC portable"); print $Articles->afficherNom (); ?>