Focus mode

PHP Temel

Karşılaştırma Operatörleri

Karşılaştırma Operatörleri

Bu operatörlerde matematiksel olarak yaptıklarını programlama alanında da yaparlar. Operatörlerimiz;


$a = 3;
$b = 4;

echo $a == $b; // Sonuç: false
echo $a === $b; // Sonuç: false
echo $a != $b; // Sonuç: true
echo $a !== $b; // Sonuç: true
echo $a < $b; // Sonuç: true
echo $a > $b; // Sonuç: false
echo $a <= $b; // Sonuç: true
echo $a >= $b; // Sonuç: false
echo $a <=> $b; // Sonuç: -1

left-disk

Programs to Accelerate Your Progress in a Software Career

Join our 4-8 month intensive Patika+ bootcamps, start with the fundamentals and gain comprehensive knowledge to kickstart your software career!

right-cube

Comments

You need to enroll in the course to be able to comment!