$sanitizer


Properties and Methods

$options

Introduced in Version 2.0

Description

$options = array(
// set to true to allow multiple lines
'multiLine' => false,
// maximum allowed characters for multibyte strings
'maxLength' => 255,
// maximum number of bytes allowed in the string (multibyte safe)
'maxBytes' => 1024,
// markup tags that are allowed. Example: "<br/><strong>"
'allowableTags' => '',
// character set of $value provided
'inCharset' => 'UTF-8',
// character set to convert to (if different from inCharset)
'outCharset' => 'UTF-8'
);

Post Comment