$controlCharacters
$controlCharacters : array<mixed,string>
Control characters array
Text
controlCharacterPHP2OOXML(string $value = '') : string
Convert from PHP control character to OpenXML escaped control character
That's correct, control characters are stored directly in the shared-strings table.
We do encode characters that cannot be represented in XML using the following escape sequence:
xHHHH where H represents a hexadecimal character in the character's value...
So you could end up with something like x0008 in a string (either in a cell value (
string | $value | Value to escape |
Loading…