0 / 60 seg.

What below script will print?

  if( 1 == true){
        echo "1";
  }
  if( 1 === true){
      echo "2";
  }
  if("php" == true){
      echo "3";
  }
  if("php" === false){
      echo "4";
  }