denis acf01 | Bonjour, Jai un array qui m'affiche le résultat et j'aimerais changé le texte d'une valeur par une image exemple: affiche dans le tableau "pomme" et a la place je voudrais
y a t'il un moyen? merci
je veux modifier juste $matches[15]
Code :
- $connect = array();
- foreach ($file as $line)
- {
- $line = trim($line);
- if(false != preg_match("/([^:]+)\:([^:]+)\:([^:]+)\:([^:]+)\:([^:]+)\:([^:]+)\:([^:]+)\:([^:]+)\:([^:]+)\:([^:]+)\:([^:]+)\:([^:]+)\:([^:]+)\:([^:]+)\:([^:]+)\:([^:DafWings*]+)/", $line, $matches))
- {
- $connect[] = array(
- $matches[15],
- $matches[4],
- $matches[2],
- $matches[3],
- $matches[12],
- $matches[14],
- $matches[10],
- );
- }
- }
- function array_remplace_value( $oldValue, $newValue, &$array ) { if( ! ( $key = array_search( $oldValue, $array ) ) || count( array_keys( $array, $key ) ) > [15] ) { return FALSE; } else { $array[$matches] = $newValue; return TRUE; } }
- /**
- * Ouverture du tableau HTML
- */
- $sTableau = <<<CODE_HTML
- <table>
- <thead>
- <tr>
- <th class="style3" style="height: 7px; width: 7px;">Airline</th>
- <th class="style3" style="height: 7px; width: 7px;">Function</th>
- <th class="style3" style="height: 7px; width: 2px;">Callsign</th>
- <th class="style3" style="height: 7px; width: 150px;">Name</th>
- <th class="style3" style="height: 7px; width: 33px;">Departure</th>
- <th class="style3" style="height: 7px; width: 31px;">Arrival</th>
- <th class="style3" style="height: 7px; width: 9px;">Aircraft</th>
- </tr>
- </thead>
- <tbody>
- CODE_HTML;
- /**
- * Construction des lignes du tableau
- */
- foreach($connect as $ligne):
- $Airline = htmlentities($ligne[0]);
- $Function = htmlentities($ligne[1]);
- $callsign = htmlentities($ligne[2]);
- $name = htmlentities($ligne[3]);
- $Departure = htmlentities($ligne[4]);
- $Arrival = htmlentities($ligne[5]);
- $Aircraft = htmlentities($ligne[6]);
- $sTableau .= <<<CODE_HTML
- <tr>
- <td class="style40" style="height: 9px; width: 9px;">{$Airline}</td>
- <td class="style40" style="height: 9px; width: 9px;">{$Function}</td>
- <td class="style40" style="height: 9px; width: 9px;">{$callsign}</td>
- <td class="style40" style="height: 9px; width: 9px;">{$name}</td>
- <td class="style40" style="height: 9px; width: 9px;">{$Departure}</td>
- <td class="style40" style="height: 9px; width: 9px;">{$Arrival}</td>
- <td class="style40" style="height: 9px; width: 9px;">{$Aircraft}</td>
- </tr>
- CODE_HTML;
- endforeach;
- /**
- * Fermeture du tableau HTML
- */
- $sTableau .= <<<CODE_HTML
- </tbody>
- </table>
- CODE_HTML;
- $sTableau .= <<<CODE_HTML
- </tbody>
- </table>
- CODE_HTML;
- /**
-
- * Affichage du tableau HTML
- */
- echo($sTableau);
- ?>
|
|