输入banner图图片脚本导航/分类

解析php中的==与===(双等号、三等号)

  1. if($config['urlrewrite']==1)
  2. if($config['urlrewrite']==='1')
  3. 来判断。

说明: $a == $b;// Equal TRUE if $a is equal to $b. $a === $b;// Identical TRUE if $a is equal to $b, and they are of the same type. (introduced in PHP 4) 意思为: ==是不判断二者是否是同一数据类型,而===是更为严格的比较,它不但要求二者值相等,而且还要求它们的数据类型也相同。