fork download
  1. <?php
  2.  
  3. $error = array('test');
  4. $correct = array();
  5.  
  6. (bool)$error,
  7. (bool)$correct,
  8. (bool)count($error),
  9. (bool)count($correct),
  10. (bool)(count($error) > 0),
  11. (bool)(count($correct) > 0)
  12. );
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
bool(true)
bool(false)
bool(true)
bool(false)
bool(true)
bool(false)