You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
241 B

  1. <?php
  2. //等于==和全等于===
  3. $a=10;
  4. $b='10';
  5. if($a==$b){
  6. echo 'a的值等于b的值'.'<br>';
  7. }
  8. $c=10;
  9. $d=10;
  10. if($c===$d)
  11. {
  12. echo 'c的类型和值等于d的类型和值'.'<br>';
  13. }
  14. ?>