1
Votes

Reading Excel Documents from PHP applications

Posted By tamilsolai on Jun 09, 2010   FROM: advancedphptutorial.blogspot.com report abuse

php to read excel file, php read excel

In this article we will learn on how we can read Microsoft Excel Sheet in PHP. To achieve this we will be using Open Source Tool PHPExcelReader. It provides us with necessary API that allow us to read the Excel Sheet in PHP.

Directory Structure for ExcelReader:
When you will unzip the excelreader, you will find example.php that shows us how to read excel sheet using php code. And the most important thing is the Excel folder, it contains all the necessary files and API that will actually perform your operation. Keep the Excel folder as it is as files are included in the API code as per the directory structure.

Example:
Well the included example.php is sufficient to understand the functionality of the ExcelReader. But i am showing the same code here with slight modification.

< ?php

require_once 'Excel/reader.php';
$data = new Spreadsheet_Excel_Reader();

// Set output Encoding.
$data->setOutputEncoding('CP1251');

/***
* if you want you can change 'iconv' to mb_convert_encoding:
* $data->setUTFEncoder('mb');
*

**
/

/***
* By default rows & cols indeces start with 1
* For change initial index use:
*/
* $data->setRowColOffset(0);
*
*

/***
* Some function for formatting output.
* $data->setDefaultFormat('%.2f');
columns with unknown formatting
*
* $data->setColumnFormat(4, '%.3
* setDefaultFormat - set format fo
rf');
* setColumnFormat - set format for column (apply only to number fields)
*

**
/

Read Full Story from advancedphptutorial.blogspot.com

Post new comment

  • Allowed HTML tags: <a> <strong> <ul> <ol> <li> <table> <tr> <td> <tbody> <embed> <object> <param> <b> <p> <i> <div> <h3> <h4> <br> <img> <style>
  • Lines and paragraphs break automatically.

More information about formatting options