Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHPExcel : documentation for common functions [closed]

I am trying to find if PHPExcel has any documentation for simple functions like "getActiveSheet" as I would prefer not to get my nose inside the library's code. I've search a whole day through the links related to "PHPExcel functions documentation" and apart from https://docs.typo3.org/typo3cms/extensions/phpexcel_library/1.7.4/manual.html and https://github.com/cystbear/PHPExcel/tree/master/Documentation. There wasn't any documentation other than of simple functions as toArray() or "getActiveSheet()" .

My question is: does PHPExcel have any documentation for common functions related to manipulating the worksheet object like rangeToArray() or getHighestRow()? If it does, where can I find it?

like image 429
vladimir.gorea Avatar asked Sep 09 '26 17:09

vladimir.gorea


1 Answers

Human-generated documentation for can always be found on the PHPExcel wiki, and there are also the API Docs

The former is included in the repository in the Documentation folder

The latter you can also generate yourself from the source using PHPDocumentor

like image 62
Mark Baker Avatar answered Sep 12 '26 12:09

Mark Baker