fork download
  1. <?php
  2.  
  3. $anonHeight = 169; //Рост Анона
  4.  
  5. $classmates = array(
  6. 'Антон' => 172,
  7. 'Семен' => 165,
  8. 'Лена' => 189,
  9. 'Иван' => 171,
  10. 'Петр' => 182,
  11. 'Сидор' => 176,
  12. 'Аня' => 180,
  13. 'Таня' => 179,
  14. 'Маня' => 171
  15. );
  16.  
  17. $array = array_filter($classmates, function($classmate) use ($anonHeight) {
  18. if ($classmate > $anonHeight) {
  19. return true;
  20. } else {
  21. return false;
  22. }
  23. });
  24.  
  25. var_dump($array);
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /v1/AUTH_c9431196-4479-4dec-853d-65d315e3c26e/ocs-ideone-files/221690620 was not found on this server.</p>
<hr>
<address>Apache/2.4.18 (Ubuntu) Server at ocs-pl.oktawave.com Port 80</address>
</body></html>