La présentation est en train de télécharger. S'il vous plaît, attendez

La présentation est en train de télécharger. S'il vous plaît, attendez

06:34:37 Programmation Web 2012-2013 1 PHP Fonctions associées aux tableaux Jérôme CUTRONA

Présentations similaires


Présentation au sujet: "06:34:37 Programmation Web 2012-2013 1 PHP Fonctions associées aux tableaux Jérôme CUTRONA"— Transcription de la présentation:

1 06:34:37 Programmation Web 2012-2013 1 PHP Fonctions associées aux tableaux Jérôme CUTRONA jerome.cutrona@univ-reims.fr

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

3 306:34:37 Programmation Web 2012-2013 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 01234pushpop

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

5 506:34:37 Programmation Web 2012-2013 Tableaux vus comme des piles/files  Enfiler int array_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 00123unshiftshift 1234

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

7 706:34:37 Programmation Web 2012-2013 Tris sur les tableaux $fruits =array("lemon", "orange", "banana", "apple"); "banana", "apple");  bool sort ( array &tab [, int sort_flags] ) sort($fruits); foreach ($fruits as $key => $val) { echo "fruits[".$key."] = ".$val."\n"; }  bool rsort ( array &tab [, int sort_flags] ) rsort($fruits); foreach ($fruits as $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

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

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

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

11 1106:34:37 Programmation Web 2012-2013 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] )

12 1206:34:37 Programmation Web 2012-2013 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); $home, $shell) = explode(":", $data); echo $user."\n"; echo $pass."\n"; foo*1023 Array ( [0] => piece1 [0] => piece1 [1] => piece2 [1] => piece2 [2] => piece3 [2] => piece3 [3] => piece4 [3] => piece4 [4] => piece5 [4] => piece5 [5] => piece6 [5] => piece6)

13 1306:34:37 Programmation Web 2012-2013 Implosion / explosion  string implode ( string glue, array pieces ) $array = array('lastname', 'email', 'phone'); $comma_separated = implode(",", $array); echo $comma_separated."\n"; lastname,email,phone

14 Récupération des clés / valeurs  array array_keys ( array input ) $array = array(0 => 100, " color " => " red " ); print_r(array_keys($array));  array array_values ( array input ) $array = array(0 => 100, "color" => "red"); print_r(array_values($array)); 1406:34:37 Programmation Web 2012-2013 Array ( [0] => 0 [0] => 0 [1] => color [1] => color) Array ( [0] => 100 [0] => 100 [1] => red [1] => red)

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


Télécharger ppt "06:34:37 Programmation Web 2012-2013 1 PHP Fonctions associées aux tableaux Jérôme CUTRONA"

Présentations similaires


Annonces Google