fork download
  1. <?php
  2. $ar = array( 'color' => 'цвет', 'one' => 1, 's' => 0 );
  3. foreach($ar as $kay => $val) {
  4. if( $kay !== 'color' && $val !== 0 ){
  5. print $val . '<br>';
  6. }
  7. }
  8. // your code goes here
Success #stdin #stdout 0.01s 82560KB
stdin
Standard input is empty
stdout
1<br>