File tree 4 files changed +7
-7
lines changed
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -426,9 +426,9 @@ for ($row = 1; $row <= $highestRow; ++$row) {
426
426
echo '</table >' . PHP_EOL;
427
427
```
428
428
429
- Note that we can't use a & lt ; = comparison here, because 'AA' would match
430
- as & lt ; = 'B', so we increment the highest column letter and then loop
431
- while \ $ col != the incremented highest column.
429
+ Note that we can't use a ` <= ` comparison here, because ` 'AA' ` would match
430
+ as ` < = 'B'` , so we increment the highest column letter and then loop
431
+ while ` $col != ` the incremented highest column.
432
432
433
433
## Using value binders to facilitate data entry
434
434
Original file line number Diff line number Diff line change @@ -285,8 +285,8 @@ $columnFilter->createRule()
285
285
286
286
We also set the rule type to CUSTOMFILTER.
287
287
288
- This defined two rules, filtering numbers that are & gt ; = -20 OR & lt ; =
289
- 20, so we also need to modify the join condition to reflect AND rather
288
+ This defined two rules, filtering numbers that are ` > = -20` OR `< =
289
+ 20` , so we also need to modify the join condition to reflect AND rather
290
290
than OR.
291
291
292
292
``` php
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ will take care of displaying the formula according the applications
132
132
language. Translation is taken care of by the application!
133
133
134
134
The following line of code writes the formula
135
- ` =IF(C4> 500,"profit","loss") ` into the cell B8. Note that the
135
+ ` =IF(C4> 500,"profit","loss") ` into the cell B8. Note that the
136
136
formula must start with ` = ` to make PhpSpreadsheet recognise this as a
137
137
formula.
138
138
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ $spreadsheet->createSheet();
69
69
```
70
70
71
71
A new worksheet created using this method will be called
72
- " Worksheet& lt ; n & gt ; " where " & lt ; n & gt ; " is the lowest number possible to
72
+ ` Worksheet<n> ` where ` <n> ` is the lowest number possible to
73
73
guarantee that the title is unique.
74
74
75
75
Alternatively, you can instantiate a new worksheet (setting the title to
You can’t perform that action at this time.
0 commit comments