by removing * leading and trailing whitespace, ignoring line feeds, and replacing * carriage returns and tabs with spaces. While most useful for HTML * attributes specified as CDATA, it can also be applied to most CSS * values. * * @note This method is not entirely standards compliant, as trim() removes * more types of whitespace than specified in the spec. In practice, * this is rarely a problem, as those extra characters usually have * already been removed by HTMLPurifier_Encoder. * * @warning This processing is inconsistent with XML's whitespace handling * as specified by section 3.3.3 and referenced XHTML 1.0 section * 4.7. Compliant processing requires all line breaks normalized * to "\n", so the fix is not as simple as fixing it in this * function. Trim and whitespace collapsing are supposed to only * occur in NMTOKENs. However, note that we are NOT necessarily * parsing XML, thus, this behavior may still be correct. * * @public */ function parseCDATA($string) { $string = trim($string); $string = str_replace("\n", '', $string); $string = str_replace(array("\r", "\t"), ' ', $string); return $string; } /** * Factory method for creating this class from a string. * @param $string String construction info * @return Created AttrDef object corresponding to $string * @public */ function make($string) { // default implementation, return flyweight of this object // if overloaded, it is *necessary* for you to clone the // object (usually by instantiating a new copy) and return that return $this; } }