protected function QueryPath::isXMLish in QueryPath 7.2
Same name and namespace in other branches
- 6 QueryPath/QueryPath.php \QueryPath::isXMLish()
- 7.3 QueryPath/QueryPath.php \QueryPath::isXMLish()
1 call to QueryPath::isXMLish()
- QueryPath::__construct in QueryPath/
QueryPath.php
File
- QueryPath/
QueryPath.php, line 1818
Class
Code
protected function isXMLish($string) {
return strpos($string, '<') !== FALSE && strpos($string, '>') !== FALSE;
}