POST /translate_t?langpair=en|ru HTTP/1.0 Host: translate.google.com Content-Type: application/x-www-form-urlencoded Content-Length: 32 hl=en&ie=UTF8&text=it+is+example
<?php $a = 1; $b = 2; $c = '1'; if ($a = $b) { //return TRUE } if ($a = $c ) { //return FALSE } ?>
<?php $a = 1; $b = 2; $c = '1'; if ($a == $b) { //return FALSE } if ($a == $c ) { //return TRUE } ?>
<?php $a = 1; $b = 2; $c = '1'; $d = 2; if ($a === $b) { //return FALSE } if ($a === $c ) { //return FALSE } if ($b === $d ) { //return TRUE } ?>
<pre> <?php echo '(true == 1) : ', (true == 1 ? 'true':'false' ), '<br>', '(true === 1) : ', (true === 1 ? 'true':'false' ); ?> </pre>