![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/demo.cartinsight.co/vendor/openspout/openspout/src/Common/Helper/Escaper/ |
<?php declare(strict_types=1); namespace OpenSpout\Common\Helper\Escaper; /** * @internal */ final class ODS implements EscaperInterface { /** * Escapes the given string to make it compatible with XLSX. * * @param string $string The string to escape * * @return string The escaped string */ public function escape(string $string): string { /* * 'ENT_DISALLOWED' ensures that invalid characters in the given document type are replaced. * Otherwise control characters like a vertical tab "\v" will make the XML document unreadable by the XML processor. * * @see https://github.com/box/spout/issues/329 */ return htmlspecialchars($string, ENT_QUOTES | ENT_DISALLOWED, 'UTF-8'); } /** * Unescapes the given string to make it compatible with XLSX. * * @param string $string The string to unescape * * @return string The unescaped string */ public function unescape(string $string): string { // ============== // = WARNING = // ============== // It is assumed that the given string has already had its XML entities decoded. // This is true if the string is coming from a DOMNode (as DOMNode already decode XML entities on creation). // Therefore there is no need to call "htmlspecialchars_decode()". return $string; } }