setQuoteStyle($options['quotestyle']); $this->setEncoding($options['encoding']); $this->setDoubleQuote($options['doublequote']); } /** * Returns the quoteStyle option * * @return int */ public function getQuoteStyle() { return $this->quoteStyle; } /** * Sets the quoteStyle option * * @param int $quoteStyle * @return self Provides a fluent interface */ public function setQuoteStyle($quoteStyle) { $this->quoteStyle = $quoteStyle; return $this; } /** * Get encoding * * @return string */ public function getEncoding() { return $this->encoding; } /** * Set encoding * * @param string $value * @return self */ public function setEncoding($value) { $this->encoding = (string) $value; return $this; } /** * Returns the charSet option * * Proxies to {@link getEncoding()} * * @return string */ public function getCharSet() { return $this->getEncoding(); } /** * Sets the charSet option * * Proxies to {@link setEncoding()} * * @param string $charSet * @return self Provides a fluent interface */ public function setCharSet($charSet) { return $this->setEncoding($charSet); } /** * Returns the doubleQuote option * * @return bool */ public function getDoubleQuote() { return $this->doubleQuote; } /** * Sets the doubleQuote option * * @param bool $doubleQuote * @return self Provides a fluent interface */ public function setDoubleQuote($doubleQuote) { $this->doubleQuote = (bool) $doubleQuote; return $this; } /** * Defined by Laminas\Filter\FilterInterface * * Returns the string $value, converting characters to their corresponding HTML entity * equivalents where they exist * * If the value provided is non-scalar, the value will remain unfiltered * * @param string $value * @return string|mixed * @throws Exception\DomainException On encoding mismatches. */ public function filter($value) { if (! is_scalar($value)) { return $value; } $value = (string) $value; $filtered = htmlentities($value, $this->getQuoteStyle(), $this->getEncoding(), $this->getDoubleQuote()); if (strlen($value) && ! strlen($filtered)) { if (! function_exists('iconv')) { throw new Exception\DomainException('Encoding mismatch has resulted in htmlentities errors'); } $enc = $this->getEncoding(); $value = iconv('', $this->getEncoding() . '//IGNORE', $value); $filtered = htmlentities($value, $this->getQuoteStyle(), $enc, $this->getDoubleQuote()); if (! strlen($filtered)) { throw new Exception\DomainException('Encoding mismatch has resulted in htmlentities errors'); } } return $filtered; } }