fork download
  1. <?php
  2. // для вопроса http://h...content-available-to-author-only...e.ru/questions/381070
  3. $a = array( 0, 0, -1, 0, 1, 0);
  4.  
  5. $result = array_reduce( $a, function( $r, $e){ return $r || $e > 0;}, FALSE);
  6.  
  7. var_dump($result);
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
bool(true)