From 89eac0feed805bdaf2c5cbced29578fd451b91a0 Mon Sep 17 00:00:00 2001 From: MarkBaker Date: Wed, 2 Jun 2021 18:53:22 +0200 Subject: [PATCH] Further documentation update with reference to phone numbers with a leading sign --- docs/topics/accessing-cells.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/topics/accessing-cells.md b/docs/topics/accessing-cells.md index 7330a719..65538b9b 100644 --- a/docs/topics/accessing-cells.md +++ b/docs/topics/accessing-cells.md @@ -561,7 +561,9 @@ $spreadsheet->getActiveSheet()->setCellValue('B5', '21 December 1983'); Alternatively, a `\PhpOffice\PhpSpreadsheet\Cell\StringValueBinder` class is available if you want to preserve all string content as strings. This might be appropriate if you were loading a file containing values that could be interpreted as numbers (e.g. numbers -with leading zeroes such as phone numbers), but that should be retained as strings. +with leading sign such as international phone numbers like `+441615579382`), but that +should be retained as strings (non-international phone numbers with leading zeroes are +already maintained as strings). **Creating your own value binder is relatively straightforward.** When more specialised value binding is required, you can implement the