how can I integrate the PHPExcel into my Zend app.
My actual folder structure is the following:
/application
controllers
views
etc...
/librar
Place the PHPExcel library into the /library folder, like this:
/application
...
/library
/PHPExcel
/PHPExcel.php
Next, in your application.ini config file, add the following:
autoloaderNamespaces[] = "PHPExcel_"
autoloaderNamespaces[] = "PHPExcel"
That should do it. Autoloader takes care of the rest, and you can just start using the example code to read an Excel file.
Update: Added the extra autoloaderNamespace as suggested by commenters