Création et appel des constantes en PHP

Author:

 constant
Download

<?php
class Employes {
    const DISPONIBILITE     = "partielle";
    const HEURE_TRAVAIL   = 4;
    public $status;
}
echo Employes::DISPONIBILITE;
?>

Leave a Reply

Your email address will not be published. Required fields are marked *


four − = 2