Obtenir le type d’une instance ou d’une variable avec ‘gettype( )’

Author:


Download

<?php
class Personne {
}

$elem = new Personne(  );
echo gettype($elem);
$x=15;
echo gettype($x);
?>

Leave a Reply

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


− two = 6