PHP : Fonction "fwrite"
Fermé
eXo
-
6 mai 2009 à 08:56
pyschopathe Messages postés 1974 Date d'inscription dimanche 2 mars 2008 Statut Membre Dernière intervention 22 mars 2010 - 6 mai 2009 à 12:56
pyschopathe Messages postés 1974 Date d'inscription dimanche 2 mars 2008 Statut Membre Dernière intervention 22 mars 2010 - 6 mai 2009 à 12:56
A voir également:
- PHP : Fonction "fwrite"
- Easy php - Télécharger - Divers Web & Internet
- \R php ✓ - Forum PHP
- Br php ✓ - Forum PHP
- Expert php - Télécharger - Langages
- Php echo image ✓ - Forum PHP
1 réponse
pyschopathe
Messages postés
1974
Date d'inscription
dimanche 2 mars 2008
Statut
Membre
Dernière intervention
22 mars 2010
135
6 mai 2009 à 12:56
6 mai 2009 à 12:56
Le code suivant devrait faire ce que tu veux :
<?php // Lecture du fichier csv $i=0; $lignes = array(); $handle = fopen( 'listePilote/pilotage.csv', 'r+' ); while ( $data = fgetcsv( $handle ) ) { if ( $i != $l ) { $lignes[$i] = $data; } else { $lignes[$i] = array(); } $i++; } // On insère notre nouvelle ligne à sa pasition dans la liste $lignes[$l] = array( $pilote, $dateu, $incident, $prise_incident, $environement, $job_er, $abend, $job_erreur, $job_repri, $relance, $hors_perim, $respect_20mn, $asset, $log_erreur, $diag_pilote, $topx, $escalade, $escalade_justif, $banque, $partition, $commentaire ); foreach ( $lignes as $line ) { fputcsv( $handle, $ligne ); } fclose( $handle ); ?>