Guest User

Untitled

a guest
Jan 17th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <?php
  2. $ord_nomes = array();
  3. $nomes = array('andre' => 1 , 'paulo' =>5, 'fabio' => 2,'tiago' =>
  4. asort($nomes);
  5. foreach ($nomes as $key => $value){
  6. if(strcasecmp($key[0],"t") != 0){
  7. echo "O valor é: ".$value." e o índice é ".$key."<br/>";
  8. }
  9. }
  10. ?>
  11.  
  12. <?php
  13. $ord_nomes = array();
  14. $nomes = array('andre' => 1 , 'paulo' =>5, 'fabio' => 2,'tiago' =>
  15. asort($nomes);
  16. foreach ($nomes as $key => $value){
  17. if(strcasecmp($key[0],"t") != 0){
  18. echo "O valor é: ".$value." e o índice é ".$key."<br/>";
  19. }
  20. }
  21. ?>
Add Comment
Please, Sign In to add comment