mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-31 12:40:00 +00:00
Merge pull request #4972 from oleibman/doctypo
Minor Documentation Updates
This commit is contained in:
+3
-2
@@ -56,6 +56,7 @@ The short answer is that PhpSpreadsheet uses a measure where padding is
|
||||
included. See [how to set a column's width](./topics/recipes.md#setting-a-columns-width)
|
||||
for more details.
|
||||
|
||||
## I cannot serialize or json_encode my Spreadsheet
|
||||
## I cannot json_encode my Spreadsheet
|
||||
|
||||
No, you can't. Consider the Spreadsheet object as a PHP resource, which cannot be serialized.
|
||||
No, you can't. No use case has been proposed for it. However,
|
||||
standard Php serialization is now permitted.
|
||||
|
||||
@@ -33,7 +33,7 @@ $spreadsheet->getActiveSheet()->getCell('E11')->isFormula();
|
||||
```
|
||||
will return a boolean true/false, telling you whether that cell contains a formula or not, so you can determine if a call to `getCalculatedVaue()` will need to perform an evaluation.
|
||||
|
||||
For more details on working with array formulas, see the [the recipes documentationn](./recipes.md/#array-formulas).
|
||||
For more details on working with array formulas, see the [the recipes documentation](./recipes.md#array-formulas).
|
||||
|
||||
When writing a formula to a cell, formulas should always be set as they would appear in an English version of Microsoft Office Excel, and PhpSpreadsheet handles all formulas internally in this format. This means that the following rules hold:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user