Maison > Article > développement back-end > Comment implémenter la transposition matricielle d'un tableau à deux dimensions en php
Comment implémenter la transposition d'une matrice de tableau bidimensionnel en PHP : définissez d'abord un tableau bidimensionnel ; puis déterminez le nombre de lignes du tableau transposé ; puis implémentez l'échange de lignes et de colonnes, et parcourez le tableau avant de transposer ; enfin, transposez simplement le tableau.
Recommandé : "Tutoriel vidéo PHP"
Transposition de tableaux et de matrices bidimensionnels en php
Transpose de matrice, transposition de tableau bidimensionnel, un petit code très simple.
<?php //定义一个二维数组 $arr=array(array(1,2,3,),array(4,5,6)); $arr1=array(); for($j=0;$j<count($arr[0]);$j++){ $arr1[$j]=array();//确定转置后的数组有几行 } for($i=0;$i<count($arr);$i++){ for($j=0;$j<count($arr[$i]);$j++){ $arr1[$j][$i]= $arr[$i][$j];//行列互换 echo $arr[$i][$j];//转置前遍历数组。 } echo '<br/>'; } //下面来对数组进行转置 //遍历转置后的数组 for($k=0;$k<count($arr1);$k++){ for($n=0;$n<count($arr1[$k]);$n++){ echo $arr1[$k][$n]; } echo '<br/>'; } ?>
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!