Source for file EntityParser.php
Documentation is available at EntityParser.php
// if want to implement error collecting here, we'll need to use some sort
// of global data (probably trigger_error) because it's impossible to pass
// $config or $context to the callback functions.
* Handles referencing and derefencing character entities
* Reference to entity lookup table.
* Callback regex string for parsing entities.
'/&(?:[#]x([a-fA-F0-9]+)|[#]0*(\d+)|([A-Za-z_:][A-Za-z0-9.\-_:]*));?/';
// 1. hex 2. dec 3. string (XML style)
* Decimal to parsed string conversion table for special entities.
* Stripped entity names to decimal conversion table for special entities.
* Substitutes non-special entities with their parsed equivalents. Since
* running this whenever you have parsed character is t3h 5uck, we run
* it before everything else.
* @param $string String to have non-special entities parsed.
* @returns Parsed string.
// it will try to detect missing semicolons, but don't rely on it
array($this, 'nonSpecialEntityCallback'),
* Callback function for substituteNonSpecialEntities() that does the work.
* @param $matches PCRE matches array, with 0 the entire match, and
* either index 1, 2 or 3 set with a hex value, dec value,
* or string (respectively).
* @returns Replacement string.
// replaces all but big five
$is_num =
(@$matches[0][1] ===
'#');
$is_hex =
(@$entity[2] ===
'x');
$code =
$is_hex ?
hexdec($matches[1]) : (int)
$matches[2];
// abort for special characters
* Substitutes only special entities with their parsed equivalents.
* @notice We try to avoid calling this function because otherwise, it
* would have to be called a lot (for every parsed section).
* @param $string String to have non-special entities parsed.
* @returns Parsed string.
array($this, 'specialEntityCallback'),
* Callback function for substituteSpecialEntities() that does the work.
* This callback has same syntax as nonSpecialEntityCallback().
* @param $matches PCRE-style matches array, with 0 the entire match, and
* either index 1, 2 or 3 set with a hex value, dec value,
* or string (respectively).
* @returns Replacement string.
$is_num =
(@$matches[0][1] ===
'#');
$is_hex =
(@$entity[2] ===
'x');
$int =
$is_hex ?
hexdec($matches[1]) : (int)
$matches[2];
Documentation generated on Thu, 19 Jun 2008 18:49:09 -0400 by phpDocumentor 1.4.2