1 / 15

PHP Fonctions associées aux tableaux

PHP Fonctions associées aux tableaux. Jérôme CUTRONA jerome.cutrona@univ-reims.fr. Rappels. Tableaux associatifs fait correspondre des valeurs à des clés clés : entier ou chaîne de caractères valeurs : ce que l'on souhaite, pas forcément homogène Syntaxe

tino
Download Presentation

PHP Fonctions associées aux tableaux

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. PHPFonctions associées aux tableaux Jérôme CUTRONA jerome.cutrona@univ-reims.fr Programmation Web 2012-2013

  2. Rappels • Tableaux associatifs • fait correspondre des valeurs à des clés • clés : entier ou chaîne de caractères • valeurs : ce que l'on souhaite, pas forcément homogène • Syntaxe • $t=array(1, 'a');$t=array('b'=>1, 2=>'a'); • $t[]= 'b';$t['z']= 's'; • Parcours • foreach($tas$val){...} • foreach($tas$cle=>$val){...} Programmation Web 2012-2013

  3. Tableaux vus comme des piles/files • Empiler int array_push ( array &tab, mixed var [, mixed ...] ) considère tab comme une pile, et empile les variables var, ... à la fin de tab retourne le nouveau nombre d'éléments du tableau. • Dépiler mixed array_pop ( array &tab ) dépile et retourne le dernier élément du tableau tab 0 1 2 3 4 pop push Programmation Web 2012-2013

  4. Tableaux vus comme des piles/files Array(    [0] => orange    [1] => banane    [2] => pomme) framboise $stack=array("orange", "banane"); array_push($stack, "pomme", "framboise"); print_r($stack); $stack=array("orange", "banane", "pomme", "framboise"); $fruit=array_pop($stack); print_r($stack); echo$fruit."\n"; Array(    [0] => orange    [1] => banane    [2] => pomme    [3] => framboise) Programmation Web 2012-2013

  5. Tableaux vus comme des piles/files • Enfiler intarray_unshift ( array &tab, mixed var [, mixed ...] ) considère tab comme une file, et enfile les variables var, ... au début de tab retourne le nouveau nombre d'éléments du tableau. • Défiler mixed array_shift ( array &tab ) défile et retourne le premier élément du tableau tab 0 0 1 2 3 unshift shift 1 2 3 4 Programmation Web 2012-2013

  6. Tableaux vus comme des piles/files Array(    [0] => banane    [1] => pomme    [2] => framboise) orange $queue=array("orange", "banane"); array_unshift($queue, "pomme", "framboise"); print_r($queue); $stack=array("orange", "banane", "pomme", "framboise"); $fruit=array_shift($stack); print_r($stack); echo$fruit."\n"; Array(    [0] => pomme    [1] => framboise    [2] => orange    [3] => banane) Programmation Web 2012-2013

  7. Tris sur les tableaux $fruits=array("lemon", "orange", "banana", "apple"); • bool sort ( array &tab [, int sort_flags] ) sort($fruits); foreach($fruitsas$key=>$val){ echo "fruits[".$key."] = ".$val."\n";} • bool rsort ( array &tab [, int sort_flags] ) rsort($fruits); foreach($fruitsas$key=>$val){ echo "fruits[".$key."] = ".$val."\n";} fruits[0] = orange fruits[1] = lemon fruits[2] = banana fruits[3] = apple fruits[0] = apple fruits[1] = banana fruits[2] = lemon fruits[3] = orange Programmation Web 2012-2013

  8. Tris sur les tableaux $fruits=array("lemon", "orange", "banana", "apple"); • bool asort ( array &tab [, int sort_flags] ) asort($fruits); foreach($fruitsas$key=>$val){ echo "fruits[".$key."] = ".$val."\n";} • bool arsort ( array &tab [, int sort_flags] ) arsort($fruits); foreach($fruitsas$key=>$val){ echo "fruits[".$key."] = ".$val."\n";} fruits[1] = orange fruits[0] = lemon fruits[2] = banana fruits[3] = apple fruits[3] = apple fruits[2] = banana fruits[0] = lemon fruits[1] = orange Programmation Web 2012-2013

  9. Tris sur les tableaux $fruits= array("d"=>"lemon", "a"=>"orange", "b"=>"banana", "c"=>"apple"); • bool ksort ( array &tab [, int sort_flags] ) ksort($fruits); foreach($fruitsas$key=>$val){ echo "fruits[".$key."] = ".$val."\n";} • bool krsort ( array &tab [, int sort_flags] ) krsort($fruits); foreach($fruitsas$key=>$val){ echo "fruits[".$key."] = ".$val."\n";} fruits[d] = lemon fruits[c] = apple fruits[b] = banana fruits[a] = orange fruits[a] = orange fruits[b] = banana fruits[c] = apple fruits[d] = lemon Programmation Web 2012-2013

  10. Mélanges aléatoires sur les tableaux $numbers=range(1, 10); • bool shuffle ( array &tab ) shuffle($numbers); foreach($numbersas$number){ echo "$number"; } 9 7 6 5 2 4 1 3 10 8 Programmation Web 2012-2013

  11. Fonctions utiles sur les tableaux • int count ( mixed var [, int mode] ) • bool array_key_exists ( mixed key, array search ) • array array_keys ( array input [, mixed search_value [, bool strict]] ) • array array_values ( array input ) • mixed array_search ( mixed needle, array haystack [, bool strict] ) • bool in_array ( mixed needle, array haystack [, bool strict] ) Programmation Web 2012-2013

  12. Implosion / explosion • array explode ( string delimiter, string string [, int limit] ) $pizza= "piece1 piece2 piece3 piece4 piece5 piece6"; $pieces=explode("", $pizza); print_r($pieces); $data= "foo:*:1023:1000::/home/foo:/bin/sh"; list($user, $pass, $uid, $gid, $gecos, $home, $shell)=explode(":", $data); echo$user."\n";echo$pass."\n"; foo * 1023 Array ( [0] => piece1 [1] => piece2 [2] => piece3 [3] => piece4 [4] => piece5 [5] => piece6 ) Programmation Web 2012-2013

  13. Implosion / explosion • string implode ( string glue, arraypieces ) $array= array('lastname', 'email', 'phone'); $comma_separated=implode(",", $array); echo$comma_separated."\n"; lastname,email,phone Programmation Web 2012-2013

  14. Récupération des clés / valeurs Array ( [0] => 0 [1] => color ) Array ( [0] => 100 [1] => red ) Programmation Web 2012-2013 arrayarray_keys ( arrayinput )$array=array(0=>100, "color" => "red");print_r(array_keys($array)); arrayarray_values ( arrayinput ) $array=array(0=>100, "color" => "red");print_r(array_values($array));

  15. Toujours plus de fonctionnalités Programmation Web 2012-2013 Consulter la documentation officielle http://fr.php.net/manual/fr/book.array.php

More Related