public static function QueryPathEntities::replaceAllEntities in QueryPath 7.3
Same name and namespace in other branches
- 6 QueryPath/QueryPath.php \QueryPathEntities::replaceAllEntities()
- 7.2 QueryPath/QueryPath.php \QueryPathEntities::replaceAllEntities()
4 calls to QueryPathEntities::replaceAllEntities()
- QueryPath::html in QueryPath/
QueryPath.php - QueryPath::parseXMLString in QueryPath/
QueryPath.php - QueryPath::prepareInsert in QueryPath/
QueryPath.php - Prepare an item for insertion into a DOM.
- QueryPath::xml in QueryPath/
QueryPath.php
File
- QueryPath/
QueryPath.php, line 2069
Class
Code
public static function replaceAllEntities($string) {
return preg_replace_callback(self::$regex, 'QueryPathEntities::doReplacement', $string);
}