You are here

protected function QueryPath::isXMLish in QueryPath 6

Same name and namespace in other branches
  1. 7.3 QueryPath/QueryPath.php \QueryPath::isXMLish()
  2. 7.2 QueryPath/QueryPath.php \QueryPath::isXMLish()
1 call to QueryPath::isXMLish()
QueryPath::__construct in QueryPath/QueryPath.php

File

QueryPath/QueryPath.php, line 1818

Class

QueryPath

Code

protected function isXMLish($string) {
  return strpos($string, '<') !== FALSE && strpos($string, '>') !== FALSE;
}