Plus petite valeur superieure ou égale à un nombre November 5, 2012 Author: user {filelink=13291} <html> <head> <title> Fonction Mathématique</title> </head> <body> <?php $nombre = ceil(6); // 6 echo $nombre."<br/>"; // 7 $nombre = ceil(6.2); echo $nombre."<br/>"; $nombre = ceil(6.9); //7 echo $nombre."<br/>"; ?> </body> </html> Categories: Uncategorized