Quel signe est inférieur ou égal à PHP
// Less than or equal to comparison operator: <=
if ($someInt <= $otherInt) {
// Do your logic ;)
}
MaestroError
// Less than or equal to comparison operator: <=
if ($someInt <= $otherInt) {
// Do your logic ;)
}
// Greater than or equal to comparison operator: >=
if ($someInt >= $otherInt) {
// Do your logic ;)
}