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.
|
<?php
|
|
//等于==和全等于===
|
|
$a=10;
|
|
$b='10';
|
|
if($a==$b){
|
|
echo 'a的值等于b的值'.'<br>';
|
|
}
|
|
|
|
$c=10;
|
|
$d=10;
|
|
if($c===$d)
|
|
{
|
|
echo 'c的类型和值等于d的类型和值'.'<br>';
|
|
}
|
|
?>
|