hi im starting phpexcel , make loop search values on cells , replace current value new 1 , im stucked right don't how that
would change "mt201501" "mt205481"
thanks help
<?php require_once 'c:/wamp/www/stage/classes/phpexcel/iofactory.php'; // chargement du fichier excel $objphpexcel = phpexcel_iofactory::load("hes.xlsx"); /** * récupération de la première feuille du fichier excel * @var phpexcel_worksheet $sheet */ $sheet = $objphpexcel->getsheet(0); echo '<table border="1">'; // on boucle sur les lignes foreach($sheet->getrowiterator() $row) { echo '<tr>'; // on boucle sur les cellule de la ligne foreach ($row->getcelliterator() $cell) { echo '<td>'; print_r($cell->getvalue()); echo '</td>'; } echo '</tr>'; } echo '</table>'; ?>
Comments
Post a Comment