Logo

Maarten Balliauw {blog}

ASP.NET, ASP.NET MVC, Azure, PHP, OpenXML, VSTS, ...

About the author

Maarten Balliauw is currently employed as .NET Technical Consultant at RealDolmen. His interests are mainly web applications developed in ASP.NET (C#) or PHP and the Windows Azure cloud platform.
More about me More about me
Send mail E-mail me


ASP.NET MVC Quickly Subscribe to my RSS feed Follow me on Twitter! View Maarten Balliauw's profile on LinkedIn
View Maarten Balliauw's MVP profile

Search

Latest Twitter

    Follow me on Twitter...

    My projects

    Disclaimer

    The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.

    © Copyright Maarten Balliauw 2010

    PHPExcel 1.3.5 released

    Just a quick note on the new PHPExcel 1.3.5 release. There are some cool new features included!

    One of the new features is rich text: one can now write coloured and styled text in a cell. Here's an example of how the feature demo result file looks:

    This is of course not all. Jakub had a couple of sleepless nights, but managed to port in the PEAR Spreadsheet classes. Meaningless? No! PHPExcel now supports Excel2007 and older versions, too. Want to write an Excel document for Excel200? No problem:

    $objWriter = new PHPExcel_Writer_Excel5($objPHPExcel);
    $objWriter->save('excel2000file.xls');

    There's even a cooler part related to this, and that is .xlsx to .xls conversion! Here's how:

    $objReader = new PHPExcel_Reader_Excel2007;
    $objPHPExcel = $objReader->load('excel2007file.xlsx');

    $objWriter = new PHPExcel_Writer_Excel5($objPHPExcel);
    $objWriter->save('excel2000file.xls');

    As always, you can get the new release on www.phpexcel.net!


    Categories: General | PHP | Projects | XML

    Add comment




      Country flag

    biuquote
    • Comment
    • Preview
    Loading